

/* Start:/local/templates/spiritfit-v3/components/custom/list.ajax/reviews/style.css?17503796625372*/
.review__item {
    width: 540px;
    background: #000;
    color: white;
    padding: 72px 64px 40px;
    position: relative;
    margin: 40px 20px 0;
    min-height: 470px;
}
.review__user-name {
    font-size: 28px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 24px;
}
.review__content {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    height: 130px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}
.review__content:after{
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: 0px 1px 18px 18px black;
}
.review__content-detail {
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #E23834 3.26%, #7A27F1 98.07%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    border:none;
}
.review__src-source {
    background-repeat: no-repeat;
    background-size: auto 90%;
}
.review__user-img {
    position: absolute;
    width: 80px;
    height: 80px;
    background-size: cover;
    border-radius: 50%;
    top: -40px;
    left: 64px;
}
.review__src-link {
    font-size: 16px;
    font-weight: 300;
    max-width: 80%;
    text-decoration: underline;
    line-height: 24px;
    margin-top: 5px;
}
.review-rating__container {
    display: flex;
    /* justify-content: space-between; */
    align-items: baseline;
    /* font-size: 16px; */
    /* font-weight: 300; */
    text-transform: uppercase;
    background: linear-gradient(90deg, #E23834 3.26%, #7A27F1 98.07%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: max-content;
    margin-top: 20px;
}
.rating-value {
    font-size: 32px;
    font-weight: 400;
    margin-left: 10px;
}
.review__user-img.gradient {
    background: linear-gradient(90deg, #E23834 3.26%, #7A27F1 98.07%);
    text-align: center;
    padding: 19px;
    font-size: 32px;
}
a.review-link {
    text-transform: none;
}
@media screen and (max-width: 592px) {
    .review__user-img {
        position: static;
        width: 50px;
        height: 50px;
    }
    .review__user-img.gradient {
        font-size: 20px;
        padding: 14px;
    }
    .review__user {
        display: flex;
        align-items: center;
        flex-direction: row;
        margin-bottom: 20px;
    }
    .review__user-name {
        margin: 0;
        margin-left: 15px;
    }
    .reviews-slider__container {
        margin: 0 -12px;
    }
    .reviews--list.slick-initialized{
        margin:0 -24px;
    }
    .review__item{
        margin: 20px 24px 0;
        padding:40px;
    }
}

.review-detail__popup-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff94;
    z-index: 999;
    display: none;
}
.review-detail__popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.review-detail__popup .review__item{
    height: unset!important;
    max-height: 830px;
    opacity: 1;
    display: block;
}
.review-detail__popup .review__content-detail{
    display: none;
}
.review-detail__popup .review__content{
    height: unset;
    max-height: 500px;
    overflow:auto;
    padding-bottom: 15px;
}
.review-detail__popup .review__content:after{
    content: none;
}

.review__content::-webkit-scrollbar {
    width: 5px;
}
.review__content::-webkit-scrollbar-track {
    background: rgba(137, 137, 137, 0.58);
}
.review__content::-webkit-scrollbar-thumb {
    background-image: linear-gradient(135deg, #E23834 3.26%, #8428DD 98.07%);    /* цвет бегунка */
    border-radius: 3px;       /* округлось бегунка */
}
.review-detail__popup-closer {
    position: absolute;
    top: 60px;
    right: 40px;
    z-index: 10;
    cursor: pointer;
    transition: 0.3s;
    transform: rotate(0deg);
}
.review-detail__popup-closer:hover{
    transform: rotate(180deg);
}

@media screen and (max-width: 1024px) {
    .review-detail__popup .review__item{
        max-height: 75vh;
    }
    .review-detail__popup .review__content {
        max-height: 36vh;
    }
}

@media screen and (max-width: 768px) {
    .review-detail__popup .review__item {
        max-height: 90vh;
        margin: 0;
        width: 90vw;
    }
    .review-detail__popup .review__content {
        height: 43vh;
    }
    .review-detail__popup-container{
        z-index: 1001;
    }
    .review-detail__popup-closer{
        top: 25px;
        right: 25px;
    }
}

.reviews--list {
    margin-top: 32px;
}

.review__item{
    opacity: 0;
    display: none;
    transition:opacity .3s ease-out;
}
.slick-initialized .review__item{
    display: block;
    opacity:1;
}
.review-filter-block {
    width: calc(25% - 30px / 4);
    margin-left: 10px;
}
.review-filter-block:first-child {
    margin-left: 0;
}

@media screen and (max-width: 1120px) {
    .review-filter-block {
        width: calc(50% - 32px / 2);
        margin-left: 32px;
    }
}
@media screen and (max-width: 768px) {
    .review-filter-block {
        margin-left: 0;
        width: 100%;
        margin-top: 16px;
    }
}


.review__add-btn {
    margin-top: 32px;
    width: max-content;
}

@media screen and (max-width: 425px) {
    .review__add-btn{
        width: 100%;
    }
    .review__add-btn>a {
        width: 100%;
    }
}
/* End */


/* Start:/local/templates/spiritfit-v3//css/select2-light-theme.css?17503796625784*/
.select2-container--light{
    background: #F5F5F4;
    border-radius: 8px;
    padding: 10px;
    color:black;
    height: 48px;
}

.select2-container--light span.select2-selection.select2-selection--single{
    border:none;
    line-height: 28px;
}
.select2-container--light .select2-selection__arrow{
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 100%;
}
.select2-container--light  .select2-selection__arrow:before{
    content: '';
    position: absolute;
    right: 14px;
    display: block;
    width: 9px;
    height: 9px;
    border: 2px solid currentColor;
    border-width: 0 2px 2px 0;
    top: 50%;
    transform: rotate(45deg) translate(-50%,-50%);
}
.select2-container--light.select2-container--open:not(.select2-container--below) {
    padding: 0;
}
.select2-container--light .select2-dropdown {
    background: none;
    border: none;
    border-radius: 0;
    margin-top: -48px;
}
.select2-container--light .select2-search--dropdown {
    margin-bottom: 5px;
    padding: 0;
}
.select2-container--light .select2-search__field {
    background-color: #F5F5F4;
    font-size: 18px;
    padding: 13px 20px!important;
    border-radius: 8px;
    color:black;
    outline: none;
    border:none;
}
.select2-container--light.dropdown-black .select2-search__field {
    background-color: #232323;
    color:white;
}
.select2-container--light .select2-results__options {
    padding: 10px 20px;
    background-color: #F5F5F4;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
}
.select2-container--light.dropdown-black .select2-results__options{
    background-color: #232323;
}
.select2-container--light .select2-results__option {
    padding: 10px 20px!important;
    color: black;
    padding-left: 60px!important;
    position: relative;
}

.select2-container--light.dropdown-black .select2-results__option{
    background-color: #232323;
    color:white;

}

.select2-container--light .select2-selection--multiple .select2-search__field{
    background-color: #F5F5F4;
    color:black
}
.select2-container--light.select2-container--open .select2-selection--multiple .select2-search__field{
    background-color: #232323;
    color:white
}

.select2-container--light .select2-selection--multiple{
    height: 48px;
}
.select2-container--light .select2-selection--multiple .select2-search__field{
    display: block;
    margin: 0!important;
    width: 100%!important;
}
.select2-container--light .select2-selection--multiple{
    margin:-10px
}
.select2-container--light .select2-selection--multiple .select2-selection__rendered{
    width: 100%;
    padding: 0!important;
}
.select2-container--light .select2-search--inline{
    width: 100%;
}
.select2-container--light span.select2-selection__clear {
    display: none;
}
.select2-container--light li.select2-selection__choice {
    display: none;
}
.select2-container--light .select2-results__option.select2-results__option--highlighted{
    background: #e2e2e2;
}

.select2-container--light.dropdown-black .select2-results__option.select2-results__option--highlighted{
    background: black;
}

/*.select2-container--light .select2-results__option[aria-selected="true"]{*/
/*    background: linear-gradient(90deg,#e23834 3.26%,#7a27f1 98.07%)!important;*/
/*    color:white;*/
/*}*/
/*.select2-container--light.dropdown-black .select2-results__options[aria-multiselectable="true"]{*/
/*    margin-top:50px*/
/*}*/


.select2-container--light.dropdown-black .select2-results__option:before{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid #FFEDED;
    opacity: 0.19;
    border-radius: 5px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
/*.select2-container--light.dropdown-black .select2-results__option.select2-results__option--highlighted:after {*/
/*    width: 16px;*/
/*    height: 16px;*/
/*    content: '';*/
/*    display: block;*/
/*    position: absolute;*/
/*    background: linear-gradient(90deg, #E23834 3.26%, #7A27F1 98.07%);*/
/*    left: 26px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    border-radius: 2px;*/
/*}*/
.select2-container--light .select2-results__option[aria-selected="true"]{
    color: white;
}
.select2-container--light .select2-results__option[aria-selected="true"]:after {
    width: 16px;
    height: 16px;
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(90deg, #E23834 3.26%, #7A27F1 98.07%);
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
}

.selected-options {
    position: absolute;
    bottom: 120%;
    left: 90%;
    border-radius: 16px;
    background: #F5F5F4;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.09);
    padding: 20px 24px;
    width: max-content;
    min-width: 390px;
    opacity: 0;
    transition: 0.3s;
    z-index: 10000;
}
@media screen and (max-width: 768px) {
    .selected-options{
        display: none;
    }
}
span.selected-options-list__title {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    display: block;
    margin-bottom: 8px;
}
span.selected-options-list__item {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    display: block;
}
.selected-options-count {
    border-radius: 4px;
    background: linear-gradient(180deg, #E43932 0%, #7827F6 100%);
    padding: 5px;
    width: 32px;
    color: white;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.select2-container--light .select2-search--inline .select2-search__field {
    padding-right: 56px!important;
    text-overflow: ellipsis;
}
.select2-container:hover .selected-options{
    opacity: 1;
}
/* End */


/* Start:/local/templates/spiritfit-v3//vendor/slick/slick.css?17503796621776*/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* End */
/* /local/templates/spiritfit-v3/components/custom/list.ajax/reviews/style.css?17503796625372 */
/* /local/templates/spiritfit-v3//css/select2-light-theme.css?17503796625784 */
/* /local/templates/spiritfit-v3//vendor/slick/slick.css?17503796621776 */
