/* comments */
#comment_counter {
    padding-left: 10px;
    margin: 50px auto;
    font-weight: 400!important;
}

#commentblock {
    margin-top: 20px;
}

.comment {
    display: block;
    position: relative;
    height: auto;
    min-height: 90px;
    width: 90%;
    padding: 10px;
    margin-bottom: 30px;
    /*background: #f9f9f9;*/
}

.comment_avatar {
    display: block;
    position: absolute;
    height: 70px;
    width: 70px;
}

.comment_avatar img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
}

.comment_content {
    display: block;
    position: relative;
    top: 0;
    left: 100px;
    font-size: 16px;
}

.comment_title {
    display: block;
    margin-bottom: 10px;
}

.comment .author {
    font-weight: 600;
    font-size: 18px;
}

.comment .date {
    font-size: 15px;
    color: #666;
    margin-left: 5px;
}


/* comments form */
#leave_reply {
    font-weight: 400;
    padding-left: 10px;
    margin-top: 60px;
}

#commentsform {
    margin-top: 10px;
    padding: 10px;
}

#commentsform input:not(#submit),
#commentsform textarea {
    font-size: 16px!important;
    width: 30%;
    margin-bottom: 10px;
    padding: 10px!important;
    border: none;
    border: 2px solid #c9c9c9;

    -webkit-transition: 0.15s all ease-in-out;
    -o-transition: 0.15s all ease-in-out;
    transition: 0.15s all ease-in-out;
}

#commentsform input:focus:not(#submit),
#commentsform textarea:focus {
    border-color: #222!important;
}

label span {
    margin-left: 5px;
    font-weight: 600;
}

#commentsform textarea {
    font-family: "Lato";
    font-size: 16px;
    width: 90%;
    overflow: auto;
}

#required_fields {
    font-weight: 700;
    font-size: 14px;
}

#submit {
    color: #222;
    font: 500 20px "Lato", sans-serif;
    padding: 7px 21px;
    cursor: pointer;
    background: #fff;
    border-radius: 25px;
    border: 2px solid #222!important;
    margin-top: 20px;
    
    -webkit-transition: 0.15s all ease-in-out;
    -o-transition: 0.15s all ease-in-out;
    transition: 0.15s all ease-in-out;
}

#submit:hover {
    color: #fff;
    background: #222;
}

@media only screen and (max-width: 870px){
    .comment_avatar {
        position: relative!important;
    }
    
    .comment_content {
        left: 0!important;
    }
}