#review{
    margin-bottom: 50px;
}
#review .content_form{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#review .top-content-form{
    display: grid;
    grid-template-columns: 4fr repeat(2, 3fr);
    gap: 5px;
}
#review input[tupe="text"],#review input[type="email"]{
    width: 100%;
}
#review textarea{
    background: #f4f4f4;
    border: none;
    min-height: 48px;
    width: 100%;
    margin: 0px;
    height: 48px;
    box-shadow: none;
    resize: none;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
    height: 150px;
}

#review .footer-form{
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 5px;
}

#review input[type='submit']{
    padding: 10px 0;
	background-color: #71bf44;
    width: 100%;
    color: #fff;
    font-weight: 400;
    border: 1px solid #71bf44;
    transition: .15s background-color, .15s color;
    font-size: 16px;
}
#review input[type='submit']:hover{
    background-color: #fff;
	color: #71bf44;
}

/**/

.review_tabs{
    display: flex;
    max-width: 100%;
    overflow: auto;
    gap: 3px;
}
.review_tabs li{
    background: #0F246F;
    padding: 15px 0;
    text-align: center;
    min-width: 160px;
    color: #fff;
    font-weight: 500;
    transition: .3s background;
    cursor: pointer;
}
.review_tabs li.active{
    background: #71bf44;
}
/**/
.review_tab{
    border: 1px solid #f4f4f4;
    padding: 25px 8px;
}
.review_text_list{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.review_item{
    position: relative;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 15px;
    background: #f4f4f4;
    overflow: hidden;
}
.review_item .left_review{
    position: relative;
    max-height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.review_item .left_review picture{
    height: 100%;
}
.review_item img{
    height: 100%;
    width: auto;
    object-fit: cover;
}
.review_item .rigth_review{
    padding: 3px 30px 3px 0;
    display: flex;
    flex-direction:column;
    justify-content: space-between;
}
.review_item .date_and_link{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.review_item .rating .star {
    color: #a7a7a7;
    font-size: 18px;
}
.review_item .rating .star.active {
    color: #71bf44;
}
.review_item .date_review{
    font-size: 20px;
}
.review_item .text_review{
    margin-top: 15px;
    margin-bottom: 15px;
}
.review_item .line_rev{
    display: grid;
    grid-template-columns: 120px 1fr;
    margin-top: 3px;
}
.review_item .advantages_rev,.review_item .disadvantages_rev, 
.review_item .advantages_rev_text,.review_item .disadvantages_rev_text{
    padding: 2px 15px;
    background-color: #d9d9d9;
}
.review_item .advantages_rev,.review_item .disadvantages_rev{
    background-color: #ececec;
}
.review_item .bottom_right{
    margin-top: 15px;
    margin-bottom: 5px;
    display: flex;
    justify-content: flex-end;
}
.video-reviews{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    position: relative;
    gap: 7px;
}
.video-review-wrapper{
    position: relative;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
} 
.video-review-wrapper video{
    width: 100%;
    height: 100%;
}
.video-review-wrapper img{
    object-fit: cover;
    height: 275px;
}
.video-review-wrapper svg{
    position: absolute;
    z-index: 99;
    transform: rotate(90deg);
    width: 40px;
    height: 40px;
    background: #68b354;
    border: 2px solid #fff;
    padding: 5px 5px 7px 5px;
    border-radius: 50%;
    transition: .3s transform;
}
.video-review-wrapper svg path{
    fill: #fff;
}
.video-review-wrapper:hover svg{
    transform: rotate(90deg) scale(1.1);
}
@media (max-width:768px){
    .review_item .line_rev{
        grid-template-columns: 1fr;
    }
    #review input[type='submit']{
        order: 0;
    }
    #review .inlineFeedback__checkbox-inner{
        order: 1;
    }
    #review .footer-form{
        grid-template-columns: 1fr;
    }
    #review .top-content-form{
        grid-template-columns: 1fr;
    }
    .review_item{
        grid-template-columns: 1fr;
        gap:5px;
    }
    .review_item .rigth_review{
        padding: 0px 10px 3px 10px;
    }
    .review_item a.left_review{
        margin: 0;
    }
    .review_item img{
        height: 175px;
        width: 100%;
        object-fit: cover;
    }
    .review_text_list{
        gap:15px;
    }
    .video-reviews{
        grid-template-columns: repeat(2, 1fr);
    }
}