/* COMMENTS */
.comments { 
    width: 100%;
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.comments .comment-title { 
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1px solid #555;
    padding: 0 0 10px 0;
}
.comments .comment-top { 
    width: 100%;
}
.comments .comment-top > img { 
    width: 40px !important;
    float: left;
    margin: 7px;
}
.comments .comment-name { 
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.comments .comment-date { 
    font-size: 12px;
    color: #757575;
    display: flex;
} 
.comments .comment-date > img { 
    width: initial !important;
    margin-right: 5px;
}
.comments .comment-middle { 
    font-size: 15px;
    margin-bottom: 30px;
    margin-top: 10px;
}
.comments .comment-middle a { 
    font-size: 15px;
}

/* FORM */
#commentForm { 
    width: 100%;
    margin-bottom: 40px;
}
#commentForm .form-title { 
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}
#commentForm input[name="f_name"] { 
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    color: #222;
    font-size: 15px;
    padding-left: 10px;
    line-height: 30px;
    margin-bottom: 20px;
    box-sizing: border-box;
}
#commentForm textarea { 
    width: 100%;
    height: 150px;
    background: #fff;
    border: 1px solid #ddd;
    color: #222;
    font-size: 15px;
    padding: 10px;
    line-height: 1.5;
    margin-bottom: 20px;
    box-sizing: border-box;
}
#commentForm .captcha > div { 
    max-width: 100%;
    margin-right: 20px;
    display: inline-block;
}
#commentForm .captcha input[name="nc_captcha_code"] { 
    width: 200px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    color: #222;
    font-size: 15px;
    padding-left: 10px;
    line-height: 30px;
    margin-bottom: 20px;
    box-sizing: border-box;
    display: inline-block;
}
#commentForm .captcha button { 
    background: #fff;
    border: 2px solid #999;
    color: #555;
    padding: 2px 5px;
    font-size: 12px;
}
#commentForm input[type="submit"] { 
    background: #529ACE;
    border: 2px solid #529ACE;
    color: #fff;
    padding: 2px 7px;
    line-height: 20px;
    font-size: 16px;
}
#commentForm .error { 
    color: #f00;
    font-size: 15px;
    padding: 10px 0;
}

/* ANSWER */
.comments .comment-answer { 
    margin-left: 55px;
    padding-left: 15px;
    border-left: 1px solid #eee;    
}