@charset "UTF-8";
.woocommerce #reviews_block #reviews{
  display: block!important;
}
.reviews-top{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.reviews-top .btn{
    padding: 15px 20px;
    border-radius: 50px;
    background: #37b87f;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    border: none;
    outline: none;
    text-decoration: none;
    margin-left: 25px;
}
.reviews-top .btn:hover{
    opacity: 0.8;
}
.review_form_wrapper{
    display: none;
}
.stars-selected{
    font-size: 0;
}
.stars-selected a{
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0 2px;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
}
.stars-selected a:before{
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 1;
    text-indent: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 16.2372L3.81966 19L4.54032 12.2749L0 7.25735L6.62573 5.86382L10 0L13.3743 5.86382L20 7.25735L15.4597 12.2749L16.1803 19L10 16.2372Z' fill='%23B0B0B0'/%3E%3C/svg%3E") 50% no-repeat;
}
.stars-selected a.active:before{
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 16.2372L3.81966 19L4.54032 12.2749L0 7.25735L6.62573 5.86382L10 0L13.3743 5.86382L20 7.25735L15.4597 12.2749L16.1803 19L10 16.2372Z' fill='%23F2C94C' /%3E%3C/svg%3E") 50% no-repeat;
}
.stars-selected a:not(.active):before{
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 16.2372L3.81966 19L4.54032 12.2749L0 7.25735L6.62573 5.86382L10 0L13.3743 5.86382L20 7.25735L15.4597 12.2749L16.1803 19L10 16.2372Z' fill='%23F2C94C' /%3E%3C/svg%3E") 50% no-repeat;
}
.stars-selected a.active~a:before{
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 16.2372L3.81966 19L4.54032 12.2749L0 7.25735L6.62573 5.86382L10 0L13.3743 5.86382L20 7.25735L15.4597 12.2749L16.1803 19L10 16.2372Z' fill='%23B0B0B0'/%3E%3C/svg%3E") 50% no-repeat;
}

.list-review {
  column-count: 4;
  column-gap: 15px; 
  padding: 0;
}

.list-review__item {  
  break-inside: avoid; 
  box-sizing: border-box;
    padding: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    background: #fff;
    border-radius: 2px;
    margin-bottom: 15px;
}
.list-review__name{
    font-size: 16px;
    line-height: 1.3;
    font-weight: bold;
    padding-bottom: 7px;
}
.list-review__name span.verify{
    display: inline-block;
    margin-left: 5px;
    width: 15px;
    height: 15px;
    background: #000;
    border-radius: 50%;
    position: relative;
}
.list-review__name span.verify .verify-text{
    position: absolute;
    left: 18px;
    top: 1px;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    display: block;
}
.list-review__name span.verify:after{
    display: block;
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 3px;
    height: 6px;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    transform: rotate(45deg);
}
.list-review__date{
    font-size: 11px;
    line-height: 1.3;
    color: #73777B;
    padding-bottom: 7px;
}
.list-review__item p{
    margin: 0;
    padding: 15px 0 0 0;
}
.input-file{
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
    align-items: center;
    margin-bottom: 15px;
}
.input-file input{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.input-file .btn{
    padding: 10px 20px;
    border-radius: 50px;
    background: #37b87f;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    border: none;
    outline: none;
    text-decoration: none;
    margin-right: 15px;
    pointer-events: none;
    white-space: nowrap;
}
#file-name{
    width: 100%;
}
.list-review__img{
    margin: -10px -10px 15px -10px;
}
.list-review__img img{
    display: block;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}
.cr-upload-local-images input{
    height: 48px;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .05);
    border: none;
    background: #f3f3f3;
    outline: none;
    width: 100%;
    padding: 11px 10px 11px 10px;
}
.box-product-reviews .inner_block{
    max-width: 1326px;
    margin: 0 auto;
}
.box-product-reviews{
    padding: 0 20px 50px 20px;
}
.woocommerce #reviews_block #reviews #review_form_wrapper{
    padding-bottom: 20px;
}
@media (max-width: 1023px) {
    .list-review {
      column-count: 3;
    }
}
@media (max-width: 767px) {
    .list-review {
      column-count: 2;
    }
}
















