
/* ------- Reset ------- */

* {
    margin: 0;
    padding: 0;
}

body{

}

/* ------- The main content ------- */

.shoutbox {
    color: #4B535C;
    font:8px Arial, Helvetica, sans-serif;
    width: 100%;
}
/*
h1 {
    background-color:  #000000;
    box-shadow: 0px 1px 1px 0.00px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
    height: 25px;
    text-align: left;
    margin: 0;
    padding-left: 20px;
    color:  #ffffff;
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
}

h1 img {
    position: absolute;
    top: 3px;
    right: 35px;
    width: 17px;
    height: 18px;
    float:right;
    cursor: pointer;
}
*/
/* ------- The comments content ------- */

.shoutbox-content {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    color:  #df377a;
    font-size: 10px;
    font-weight: 700;
    text-align: left;
    overflow-y: scroll;
    max-height: 300px;
}

.shoutbox-content li {
    padding: 5px;
    border-bottom: 1px solid #d5dbe1;
}

.shoutbox-username {
    display: inline;
    color:  #df377a;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    margin-right: 5px;
}

.shoutbox-comment {
    display: inline;
    color:  #717c87;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
}

.shoutbox-comment-details {
    width: 100%;
    margin: 5px auto;
    height: 11px;
}

.shoutbox-comment-reply {
    display: inline-block;
    float: left;
    color:  #5896cb;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    text-align: left;
    height: 9px;
    cursor: pointer;
}

.shoutbox-comment-ago {
    display: inline-block;
    float: right;
    color:  #9aa1a7;
    font-size: 10px;
    font-weight: normal;
    line-height: 10px;
    text-align: right;
    height: 10px;
}


/* ------- Writing a new comment form ------- */

.shoutbox-form form {
    display: none;
    background-color:  #f9fafb;
    box-shadow: 0px 2px 0px 0.00px #e2e8eb;
    max-width: 100%;
    text-align: left;

}

.shoutbox-form form #shoutbox-comment {
    background-color: #ffffff;
    box-shadow: 1px 3px 0px 0.00px rgba(0, 0, 0, 0.04);
    border: 1px solid #bfcdda;
    outline: none;
/*    max-width: 320px; */
    width: 100%;
    height: 40px;

    resize: none;
    font-weight: normal;
    font: inherit;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
    color:inherit;
}

.shoutbox-form form input[type=submit] {
text-align:center;
}

