.post-inner-comments, .post-inner-comments-form, .post-inner-comments-form{
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    margin-top: 3.47222vw;
    padding-top: 3.47222vw;
}
.post-inner-comments .title,.post-inner-comments-form .title{
    color: #000;
    text-align: center;
    font-family: "NeueMachina";
    font-size: 1.38889vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    margin-bottom: 5.47vw;
}
.post-inner-comments-form .title{
    margin-bottom: 3.47vw;
}

.comments-section{
    margin: 0 3.61111vw;
}
.comments-section .comment{
    display: flex;
    flex-direction: column;
}
.comments-section .comment .comment-content{
    width: 50%;
}
.comment-content .comment-text p{
    color: #000;
    font-family: "NeueMachina";
    font-size: 1.6vw;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}
.comment-content .comment-text{
    margin-bottom: 2vw;
}
.comment-content .comment-user-info{
    display: flex;
}
.comment-content .comment-user-info .avatar img{
    width: 3vw;
    height: 3vw;
    border-radius: 1vw;
}
.comment-content .comment-user-info .avatar{
    margin-right: 1.2vw;
}
.comment-content .comment-user-info .user-name{
    display: flex;
    flex-direction: column;
}
.comment-content .comment-user-info .user-name label{
    color: #000;
    font-family: "NeueMachina";
    font-size: 1.1vw;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.comment-content .comment-user-info .user-name span{
    color: #000;
    font-family: "NeueMachina";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;

    opacity: 0.4;
}
.comment{
    border-bottom: 1px solid rgba(0,0,0,0.1);

    padding-top: 3.83vw;
    padding-bottom: 3.83vw;
}
.comment:first-child{
    padding-top: 0!important;
}
.comment:last-child{
    border-bottom: unset!important;
}

.answer-ch{
    align-self: flex-end;
    margin-top: 1vw;
}
.answer-ch .comment-text p{
    text-align: right;
}
.answer-ch .comment-user-info{
    text-align: right;
    justify-content: flex-start;
    flex-direction: row-reverse;
}
.answer-ch .comment-user-info .avatar{
    margin-left: 1.2vw;
    margin-right: 0;
}

.sidebar-box {
    /*max-height: 43vw;*/
    position: relative;
    overflow: hidden;
}
.sidebar-box .read-more {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    text-align: center;
    margin: 0;

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);

    min-height: 4.7vw;
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;
}
.sidebar-box .read-more .btn{
    display: inline-block;
    border-radius: 8px;

    padding: 8px 28px;

    background: black;

    color: #FFF;
    font-family: "NeueMachina";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;

    text-decoration: none;
}

.comments-form input, .comments-form textarea{
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.02);

    padding: 14px 22px;

    color: #000;
    font-family: "NeueMachina";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;

    margin-bottom: 6px;

    transition: 0.3s;

    outline: none!important;

    width: 100%;

    box-sizing: border-box;
}

.comments-form input:hover, .comments-form textarea:hover, .comments-form input:focus, .comments-form textarea:focus{
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.05);
}

.comments-form textarea{
    height: 106px;

    margin-bottom: 22px;
}
.g-recaptcha{
    margin-bottom: 22px;
}
.comments-form{

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}
.comments-form form{
    display: flex;
    flex-direction: column;

    max-width: 60%;
    width: 35%;
}

.comments-form button{
    display: flex;
    width: 100%;
    padding: 20px 32px 18px 32px;
    justify-content: center;
    align-items: center;

    color: #FFF;
    font-family: "NeueMachina";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
    text-transform: uppercase;

    background: #FF771D;

    box-sizing: border-box;
    border: 0;

    cursor: pointer;

    margin-bottom: 16px;
}

.comments-form  span{
    color: rgba(0, 0, 0, 0.40);
    font-family: "NeueMachina";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}

.comments-form  span a{
    color: #FF771D;
    font-family: "NeueMachina";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-decoration-line: underline;
}

@media(max-width: 960px){
    .comments-form form {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        width: 100%;
    }

    .post-inner-comments .title, .post-inner-comments-form .title {
        font-size: 4.389vw;
    }

    .comments-section .comment .comment-content {
        width: 100%;
    }

    .comment-content .comment-text p{
        font-size: 3.6vw;
    }

    .comment-content .comment-user-info .avatar img {
        width: 9vw;
        height: 9vw;
        border-radius: 1vw;
    }

    .comment-content .comment-user-info .user-name label {
        font-size: 3.1vw;
    }

    .answer-ch {
        align-self: flex-end;
        margin-top: 6vw;
    }
}