/**
  Tutorial : Comments System with Reply Usong jQuery & Ajax
  Author: Amine Kacem
  Author URI: http://www.webcodo.com
*/

/* the comments container  */
.cmt-container-story {
    width: auto;
    height: auto;
    min-height: 30px;
   
    margin-bottom: 20px;
}

.cmt-container header {
    height: 15px;
    border-bottom: solid 3px #990700;
    margin-bottom: 20px;
    padding-left: 20px;
}

.cmt-container .heading {
    line-height: 30px;
    font-size: 1em;
    text-transform: uppercase;
    float: left;
    background: #fff;
    padding-left: 5px;
    padding-right: 5px;
}

.cmt-container i {
    font-size: 12px !important;
    color: blue;
    line-height: 13px;
}

.cmt-container .sub {
    margin-left: 43px;
}

.cmt-item {
    height: auto;
    min-height: 50px;
    padding: 10px;
    border-left: solid 1px #d8dfea;
    border-bottom: solid 1px #d8dfea;
    margin-left: 16px;
    /*overflow: auto;*/
}
    
    .cmt-item .icon {
        margin: 20px 20px 0 -28px;
        width: 32px;
        height: 32px;
        float: left;
        background: url(../images/comment/comment.png) no-repeat top left;
    }

.cmt-item-detail {
    padding-left: 25px;
    font-size: 0.9em !important;
}

.cmt-item-detail .note {
    font-size:0.9em;
    color:#0000ff;
    }


    .cmt-item-detail h5 {
        display: inline;
        float: left;
        font-size: 14px;
        color: #c00;
        margin: 0 5px 0 0;
    }

    .cmt-item-detail .date {
        display: inline;
        float: left;
        font-size: 0.8em;
        color: #ccc;
    }

    .cmt-item-detail p {
        width: auto;
        margin: 0px;
        color: #4e5665;
    }

    .cmt-item-detail a.cmt-rep-btn {
        float: right;
        background: url(../images/comment/reply.gif) no-repeat top left;
        display: inline-block;
        width: 13px;
        height: 13px;
        cursor: pointer;
        margin-left: 10px;
    }

    .cmt-item-detail a.liked {
        pointer-events: none;
        cursor: default;
        color: #848484 !important;
        background: url(../images/comment/liked.png) no-repeat top right !important;
    }

    .cmt-item-detail a.cmt-like-btn {
        float: right;
        background: url(../images/comment/like.png) no-repeat top right;
        display: inline-block;
        line-height: 13px;
        cursor: pointer;
        padding-right: 15px;
        font-size: 10px;
        color: blue;
        font-weight: bold;
    }

a.cmt-more-btn {
    text-align: center;
    display: block;
    margin-top: -2px;
}

.cmt-new-btn {
    width: 100%;
    line-height: 35px;
    background-color: #4e5665;
    border: 1px solid #d8dfea;
    cursor: text;
}

    .cmt-new-btn span {
        display: inline;
        margin-left: 10px;
        line-height: 30px;
        color: #edeff4;
    }

.cmt-new-form {
    height: auto;
    padding: 10px;
    display: none;
    margin-bottom: 10px;
    background: #f8f8f8;
    border-bottom: solid 2px #990700;
    -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.3);
    box-shadow: 0 1px 5px rgba(0,0,0,0.3);
    z-index: 6;
}
    .cmt-new-form .error {
       float:left;
    }

.cmt-comment { /* textarea */
    width: 100%;
    height: auto;
    min-height: 70px;
    margin-bottom: 10px;
     box-sizing:border-box;
-moz-box-sizing:border-box; /* Firefox */
}

.cmt-new-form input[type="text"],.cmt-new-form input[type="email"] {
    margin-bottom: 10px;
    margin-right: 5px;
}

.cmt-container textarea:focus, .new-com-cnt input[type="text"]:focus {
    border-color: rgba(82, 168, 236, 0.8);
    outline: 0;
    outline: thin dotted \9;
    /* IE6-9 */
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.4);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.4);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.4);
}

.cmt-collapse a.collapse-btn {
    text-decoration: none;
    outline: none;
    width: 11px;
    height: 11px;
    display: inline-block;
}

.cmt-collapse a.expand-icon {
    background: url(../images/comment/expand.png) no-repeat top left;
}

.cmt-collapse a.collapse-icon {
    background: url(../images/comment/collapse.png) no-repeat top left;
}

.cmt-collapse .cmt-collapse-hidden span {
    display: none;
}


.cmt-collapse a.cmt-collapse-btn {
    text-decoration: none;
    outline: none;
    width: 11px;
    height: 11px;
    display: inline-block;
}
