/* Comments */
.comments-row {
    position: relative;
    margin: 0 0 80px 0;
    padding: 0 0 80px 0;
}
.comments-row:after {
    content: "";
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(to right,#FFF 0,#eee 45%,#eee 55%,#FFF 100%);
    background: -ms-linear-gradient(left,#fff 0,#eee 45%,#eee 55%,#fff 100%);
    background: -o-linear-gradient(left,#fff 0,#eee 45%,#eee 55%,#fff 100%);
    background: -webkit-linear-gradient(left,#FFF 0,#eee 45%,#eee 55%,#FFF 100%);
    background: -moz-linear-gradient(left,#fff 0,#eee 45%,#eee 55%,#fff 100%);
    background: -webkit-gradient(linear,left top,right top,color-stop(0%,#FFF),color-stop(45%,#eee),color-stop(55%,#eee),color-stop(100%,#FFF));
}
.post-box-title {
    margin: 80px 0 40px 0;
    text-align: center;
}
.post-box-title h5 {
    margin: 0;
    font-size: 24px;
}
.comments .thecomment {
    display: table;
    width: 100%;
}
.comments .author-img {
    display: table-cell;
    width: 60px;
    vertical-align: top;
    padding-top: 5px;
}
.comments .comment-text {
    display: table-cell;
    vertical-align: top;
    padding-left: 20px;
}
.comments .comment-text .author {
    text-transform: capitalize;
    font-size: 90%;
}
.comments .comment-text .date {
    display: block;
    margin: 10px 0 0 0;
    text-align: right;
    font-size: 12px;
    font-style: italic;
}
.comments .comment-text .date svg {
    margin-right: 5px;
}
.comments .comment-text .reply {
    float: right;
}
.comments .comment-text .reply {
    margin-left: 10px;
}
.comments .comment-text .reply a {
    position: relative;
    top: -3px;
    display: inline-block;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 6px;
    border: 1px solid #efefef;
    background-color: #fff;
}
.comments .comment-text .reply a + a {
    margin-left: 6px;
}
.comments .comment-text p {
    margin: 20px 0 0 0;
    font-size: 85%;
}
.comments .comment-text p + p {
    margin: 10px 0 0 0;
}
.comments ul li + li {
    margin: 40px 0 0 0;
    padding: 40px 0 0 0;
    border-top: 1px solid #efefef;
}
.comments ul .children {
    margin: 40px 0;
    padding: 40px 0 40px 20px;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}
.comment-respond {
    max-width: 660px;
    margin: 0 auto;
    margin-top: 40px;
}
.comment-reply-title {
    font-size: 24px;
    text-align: center;
}
.comment-reply-title small {
    display: block;
}
.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"] {
    width: 100%;
    height: 40px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #efefef;
    background: #fcfcfc;
    transition: transform .3s;
}
.comment-form textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus {
    background-color: #fff;
}
.comment-form textarea {
    height: 180px;
    padding: 10px;
}
.comment-form label {
    display: block;
}
.comment-form .comment-form-cookies-consent {
    display: none;
}
.comment-form .comment-form-cookies-consent input {
    top: 9px;
    position: relative;
    float: left;
    display: inline-block;
    width: 14px;
    margin-right: 6px;
}
.comment-form .comment-form-cookies-consent label {
    display: inline-block;
    font-size: 12px;
}
.comment-form-author,
.comment-form-email {
    float: left;
    width: 50%;
}
.comment-form-author {
    padding-right: 20px;
}
.comment-form-email {
    padding-left: 20px;
}
.comment-form-cookies-consent:before {
    content: "";
    display: table;
    width: 100%;
}
.comment-form .form-submit:before {
    content: "";
    display: table;
    width: 100%;
}
.comment-form .form-submit {
    margin: 40px 0 0 0;
    text-align: center;
}
.comment-form input[type="submit"] {
    margin: 20px 0 0 0;
    padding: 14px 34px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    border: 0;
    border-radius: 6px;
    background-color: #E6007E;
}
@media (max-width: 769px) {
    .comments-row {
        margin: 0 0 20px 0;
        padding: 0 0 20px 0;
    }
    .post-box-title {
        margin: 20px 0 20px 0;
    }
    .comments ul li + li {
        margin: 20px 0 0 0;
        padding: 20px 0 0 0;
    }
    .comments .author-img {
        width: 30px;
    }
    .comments .author-img img {
        width: 30px;
        height: auto;
    }
    .comments .comment-text .author {
        font-size: 100%;
    }
    .comments .comment-text p {
        font-size: 100%;
    }
    .comment-respond {
        max-width: 100%;
        margin: 0 auto;
        margin-top: 20px;
    }
    .comment-form textarea {
        height: 120px;
    }
    .comment-form .form-submit {
        margin: 20px 0 0 0;
    }
}