body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: normal;
    overflow-x: hidden;
}
body * {
    transition: transform 0.35s ease;
}

.main-container {
    margin-top: 200px;
}

@media (max-width: 420px) {
    body {
        font-size: 12px;
    }
}

/* --- containers ---*/
.max-width-screen {
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}

.grid-md {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 26px;
}

.grid-lg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 38px;
}

@media (max-width: 1280px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 94%;
    }

    .grid-md {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .grid-lg {
        grid-gap: 26px;
    }
}

@media (max-width: 767.98px) {
    .grid-md {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 16px;
    }
}

@media (max-width: 480px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 100%;
    }

    .grid-md {
        grid-template-columns: repeat(1, 1fr);
    }
}

section {
    margin: 70px 0;
}

.section-title {
    font-size: 50px;
    line-height: normal;
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    section {
        margin: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 380px) {
    .section-title {
        font-size: 20px;
    }
}

/* --- common ---*/

.crop-desc-3 {
    margin: 0;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-blue {
    color: rgba(0, 0, 178, 1);
}

.text-violet {
    color: rgba(163, 163, 243, 1);
}

.bg-lilac {
    background-color: rgba(215, 150, 250, 1);
}

.bg-violet {
    background-color: rgba(215, 210, 250, 1);
}

.bg-pink {
    background-color: rgba(251, 215, 236, 1);
}

.bg-yellow {
    background-color: rgba(255, 250, 161, 1);
}

.bg-gray {
    background-color: rgb(239 239 239);
}

.bg-gray__dark {
    background-color: rgba(42, 45, 47, 1);
}

.btn {
    width: fit-content;
    height: 36px;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
    border-radius: 0;
    cursor: pointer;
    padding: 8px 28px;
    text-decoration: none;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    border-color: transparent;
}

.btn-white {
    background: #FFFFFF;
    color: rgba(42, 45, 47, 1);
}

.btn-white:hover {
    background: rgba(163, 163, 243, 1);
    color: #FFFFFF;
}

.btn-white:hover svg path {
    stroke: #ffffff
}

.btn-white:active,
.btn-white:first-child:active {
    background: rgba(163, 163, 243, 1);
    color: #FFFFFF;
}

.btn-white:active svg path {
    stroke: #ffffff
}

.btn-gray {
    background: rgba(102, 102, 102, 0.39);
    color: #ffffff;
}

.btn-gray:hover {
    background: #ffffff;
    color: rgba(42, 45, 47, 1);
}

.btn-gray:hover svg path {
    fill: rgba(42, 45, 47, 1)
}

.btn-gray:active,
.btn-gray:first-child:active,
:not(.btn-gray) + .btn-gray:active {
    background: rgba(163, 163, 243, 1);
    color: #FFFFFF;
}

.btn-gray:active svg path,
.btn-gray:first-child:active svg path {
    fill: #FFFFFF;
}

.btn-primary,
.btn-lilac {
    background-color: rgba(163, 163, 243, 1);
    color: #FFFFFF;
}

.products-item.in-basket .btn-lilac {
    background-color: #0000B2;
}

.btn-lilac:hover,
.btn-lilac:active,
.btn-lilac:first-child:active,
:not(.btn-lilac) + .btn-lilac:active {
    color: #FFFFFF;
    background-color: rgba(0, 0, 178, 1);
}

.btn-transparent {
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
}

.btn-link {
    color: #FFFFFF;
}

.btn-link:hover {
    color: #fff;
}

.btn-catalog {
    height: 42px;
}

.btn-search {
    height: 42px;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-search:hover,
.btn-search:active,
.btn-search:focus,
.btn-search:focus:active,
.btn-search:focus-visible {
    color: rgba(42, 45, 47, 1);
    background-color: #FFFFFF;
    border-color: rgba(163, 163, 243, 1);
}

.btn-search:hover svg g path {
    fill: rgba(163, 163, 243, 1);
}

.form-control__search {
    height: 42px;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-right: none;
}

.form-control__search:active,
.form-control__search:hover,
.form-control__search:focus {
    outline: 0;
    outline-offset: 0;
    box-shadow: none;
    border-color: #ffffff;
}

input.form-control__search::placeholder {
    color: #ffffff;
}

.search-flex {
    width: 600px;
}

@media (max-width: 1440px) {
    .btn {
        padding: 8px 16px;
    }

    .btn-search {
        font-size: 14px;
    }
}

@media (max-width: 1400px) {

    .search-flex {
        width: 100%;
        margin-right: 30px;
    }
}

@media (max-width: 1100px) {
    .search-flex {
        margin-right: 16px;
    }

    .form-control__search ~ .btn {
        font-size: 14px;
        padding: 8px;
    }
}

@media (max-width: 991.98px) {
    .search-flex {
        margin-right: 0;
    }

    .btn-search {
        background-color: rgb(255 255 255 / 30%);
        border: 1px solid #ffffff;
        width: auto !important;
        border-left: none;
    }

    .btn-search svg g path {
        fill: #ffffff
    }


    .form-control__search {
        color: #ffffff;
        background-color: rgb(255 255 255 / 30%);
        border-right: none;
    }

    input.form-control__search::placeholder {
        color: #ffffff;
    }
}

@media (max-width: 575.98px) {
    .btn-link svg {
        max-width: 18px;
    }
}

@media (max-width: 420px) {
    .btn {
        font-size: 12px;
        padding: 4px 16px;
    }
}

@media (max-width: 380px) {
    .btn-link__phone {
        display: none;
    }
}

/* --- text ---*/
.text-xs {
    font-size: 14px;
    line-height: normal;
}

.text-sm {
    font-size: 16px;
    line-height: normal;
}

.text-md {
    font-size: 20px;
    line-height: normal;
}

.text-xl {
    font-size: 24px;
    line-height: normal;
}

.z-index-1 {
    z-index: 1;
}

.z-index-6 {
    z-index: 6;
}

@media (max-width: 767.98px) {
    .text-xl {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .text-xl {
        font-size: 18px;
    }

    .text-md {
        font-size: 16px;
    }
}


@media (max-width: 420px) {
    .text-xl {
        font-size: 14px;
    }
}

/* --- header ---*/

.header {
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
    /*background: transparent;*/
    background: rgb(200 200 200 / 50%);
    z-index: 110;
}

.js-navbar .nav-link {
    color: #ffffff;
}

.js-navbar .nav-link.active {
    color: #ffffff;
}

.header-bg {
    width: 100%;
    overflow: hidden;
}

.header-slick {
    width: 100%;
}

.header-slick .slick-slide {
    margin: 0;
}

.m-1440-md,
.m-1280-md {
    display: none;
}

.header-slick .slick-dots li button:before {
    color: #ffffff;
}

.header-slick .slick-dots li.slick-active button:before {
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
}

.header-slick__bg picture img {
    width: 100%;
}

.item-pc {
    display: inline;
}

.item-mobi {
    display: none;
}

.navbar-menu.actions [data-block="count"] {
    position: absolute;
    background-color: #a3a3f3;
    border-radius: 100%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -5px;
    top: -5px;
    color: #fff;
    font-size: 10px;
}

@media (max-width: 1520px) {
}

@media (max-width: 1400px) {
    .m-1440-lg {
        display: none;
    }

    .m-1440-md {
        display: block;
    }
}

@media (max-width: 1280px) {
    .m-1280-lg {
        display: none;
    }

    .m-1280-md {
        display: block;
    }

    .navbar-brand {
        max-width: 200px;
    }
}

@media (max-width: 991.98px) {
    .header {
        background: linear-gradient(0deg, rgb(255 255 255 / 0%) 0%, rgb(154 147 147) 80%);
    }

    .navbar #smart-title-search-new,
    .navbar {
        width: 100%;
    }

    .item-pc {
        display: none;
    }

    .item-mobi {
        display: inline;
    }

    .js-navbar .navbar-toggler-icon {
        background-image: url('../images/ico/menu.svg');
    }

    .js-navbar-collapse {
        position: absolute;
        width: 100%;
        height: max-content;
        top: 28px;
        left: 0;
        padding: 0 16px 16px 16px;
        border-radius: 0 0 14px 14px;
        border-top: 1px solid rgba(204, 204, 204, 1);
        margin-top: 10px;
        background: #ffffff;
        z-index: 6;
    }

    .offcanvas.is-show {
        visibility: visible;
        transform: none;
        display: block;
    }

    .js-backdrop.is-show {
        display: block !important;
        opacity: 0.5;
    }

    .m-1440-lg,
    .m-1440-md,
    .m-1280-lg,
    .m-1280-md {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .header-slick__bg picture {
        display: block;
        width: 100%;
        /*aspect-ratio: 4 / 5;*/
        overflow: hidden;
    }

    .header-slick__bg picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 575.98px) {
    .js-navbar .navbar-toggler-icon {
        max-width: 20px;
    }

    .navbar-brand {
        max-width: 140px;
    }
}


/* --- header dots ---*/

.header-slick .slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.header-slick .slick-dots {
    position: absolute;
    bottom: 32px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-slide {
    margin: 0 16px;
}

/* --- header-scrolled ---*/
.header.header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header-not-main {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header-not-main .btn-link svg path,
.header-scrolled .btn-link svg path {
    fill: rgb(0, 0, 178);
}

.header-not-main .btn-link,
.header-not-main a.btn-link,
.header-not-main .btn-link button,

.header-scrolled .btn-link,
.header-scrolled a.btn-link,
.header-scrolled .btn-link button {
    color: rgb(0, 0, 178);
}

.header-not-main .js-navbar .nav-link,
.header-scrolled .js-navbar .nav-link {
    color: rgba(74, 73, 85, 1);
}

.header-not-main .js-navbar .nav-link.active,
.header-scrolled .js-navbar .nav-link.active {
    color: rgba(74, 73, 85, 1);
}

.header-not-main .hidden-menu svg path,
.header-scrolled .hidden-menu svg path {
    stroke: rgba(74, 73, 85, 1)
}

.header-not-main .dropdown-top .dropbtn,
.header-scrolled .dropdown-top .dropbtn {
    color: #FFFFFF;
    background-color: rgba(163, 163, 243, 1);
}

.header-not-main .dropdown-top .dropbtn::before,
.header-scrolled .dropdown-top .dropbtn::before {
    content: url('../images/ico/dropdown-open-light.svg');
}

.header-not-main .form-control__search,
.header-scrolled .form-control__search {
    border: 1px solid rgba(102, 102, 102, 0.39);
    color: rgba(42, 45, 47, 1);
    border-right: none;
}

.header-not-main input.form-control__search::placeholder,
.header-scrolled input.form-control__search::placeholder {
    color: rgba(102, 102, 102, 0.39);
}

.header-not-main .btn-search,
.header-scrolled .btn-search {
    color: rgba(42, 45, 47, 1);
    background-color: transparent;
    border: 1px solid rgba(163, 163, 243, 1);
}

.header-not-main .btn-search svg g path,
.header-scrolled .btn-search svg g path {
    fill: rgba(163, 163, 243, 1)
}

.header-not-main .navbar-icon svg path,
.header-scrolled .navbar-icon svg path {
    fill: rgba(102, 102, 102, 0.39);
}

.header-not-main .navbar-icon__like svg path,
.header-scrolled .navbar-icon__like svg path {
    /*fill: rgba(251, 215, 236, 1);*/
}

@media (max-width: 991.98px) {

    .navbar .hidden-menu {
        margin-left: 0px;
    }
    .navbar .js-menu-content {
         display: block;
         position: relative;
         min-width: auto;
         border: none;
     }


    .header-not-main .btn-search,
    .header-scrolled .btn-search {
        border: 1px solid rgba(102, 102, 102, 0.39);
        border-left: none;
    }

    .js-navbar .nav-link.active {
        color: rgba(42, 45, 47, 1);
    }

    .js-navbar .nav-link {
        color: rgba(42, 45, 47, 1);
        padding: 12px 0;
    }

    .header-scrolled .js-navbar .navbar-toggler-icon {
        background-image: url('../images/ico/menu-dark.svg');
    }
    .main-container {
        margin-top: 150px;
    }
}

@media (max-width: 420px) {
    .js-navbar .nav-link {
        font-size: 16px;
    }
}

/* --- dropdown menu ---*/

.list-inline li {
    margin-bottom: 10px;
}

.list-inline li:last-child {
    margin-bottom: 0;
}

.js-menu {
    background-color: transparent;
    border: none;
}

.js-menu-content {
    display: none;
    position: absolute;
    min-width: 200px;
    background: #fff;
    border: 1px solid rgba(102, 102, 102, 0.4);
    z-index: 100;
}

.hidden-menu {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.dropdown-top {
    float: left;
    overflow: hidden;
}

.dropdown-top .dropbtn {
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    width: max-content;
    min-width: 344px;
    background: #fff;
    border: 1px solid rgba(102, 102, 102, 0.4);

    margin-left: auto;
    margin-right: auto;
    top: 46px;
    background-color: #fff;
    z-index: 8;
}

.dropdown-content .header {
    padding: 16px;
    color: white;
}

.dropdown-top:hover .dropdown-content {
    display: block;
}

.dropdown-content__active {
    display: block;
}

.dropbtn {
    background-color: #FFFFFF;
}

.dropbtn:hover,
.dropbtn:first-child:active {
    color: #FFFFFF;
    background-color: rgba(163, 163, 243, 1);
}

.dropbtn::before {
    content: url('../images/ico/dropdown-open.svg');
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.dropbtn:hover::before {
    content: url('../images/ico/dropdown-open-light.svg');
}

.dropbtn.active {
    background: rgba(163, 163, 243, 1);
    color: #ffffff;
    border: none;
}

.hover-list__block {
    position: absolute;
    left: 100%;
    top: -1px;
    width: 256px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease;
    background: #ffffff;
    padding: 15px;
    border: 1px solid rgba(102, 102, 102, 0.4);
    min-height: calc(100% + 2px);
}

.hover-list:hover .hover-list__block {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}

.hover-list:hover .list-after-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hover-list:hover .list-after-img::after {
    content: url('../images/ico/right-arrow-outline.svg');
    width: 13px;
    height: 13px;
}

.list-group-item:hover {
    color: #b047fc;
}

@media (max-width: 1280px) {
    .dropdown-content {
        top: 42px;
    }
}

@media (max-width: 1100px) {
    .dropdown-wrapper .btn {
        font-size: 14px;
        padding: 8px;
    }
}


/* --- bottom menu ---*/
.bottom-menu {
    position: fixed;
    bottom: 0;
    border: 1px solid rgba(102, 102, 102, 0.39);
    border-bottom: none;
    border-radius: 24px 24px 0 0;
}
.bottom-menu .btn {
    position: relative;
}
.bottom-menu [data-block='count']{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #a3a3f3;
    border-radius: 100%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 10px;
}
.bottom-menu #wishcount_mobile{
    right: 7px;
}

@media (max-width: 992px) {
    .bottom-menu .btn {
        height: auto;
    }

    .bottom-menu .btn:checked + .bottom-menu .btn,
    .bottom-menu .btn:hover,
    .bottom-menu .btn.active,
    .bottom-menu .btn.show,
    .bottom-menu .btn:first-child:active,
    :not(.bottom-menu .btn) + .bottom-menu .btn:active {
        color: rgba(215, 150, 250, 1) !important;
    }

    .bottom-menu .btn:checked + .bottom-menu .btn svg path,
    .bottom-menu .btn:hover svg path,
    .bottom-menu .btn.active svg path,
    .bottom-menu .btn.show svg path,
    .bottom-menu .btn:first-child:active svg path,
    :not(.bottom-menu .btn) + .bottom-menu .btn:active svg path {
        stroke: rgba(215, 150, 250, 1) !important;
        fill: rgba(215, 150, 250, 1) !important
    }
}


@media (max-width: 480px) {
    .bottom-menu a svg {
        max-width: 18px;
    }

    .bottom-menu__desc {
        font-size: 12px;
    }

    .bottom-menu .btn {
        padding: initial;
    }
}

@media (max-width: 380px) {
    .bottom-menu__desc {
        font-size: 10px;
    }
}

/* --- adv ---*/
.block-str .close-btn {
    right: 0;
}

@media (max-width: 1100px) {
    .block-str {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .block-str {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .block-str {
        font-size: 10px;
    }
}

@media (max-width: 420px) {
    .block-str .col-6 {
        width: 100%;
    }

    .block-str .close-btn {
        top: 33%;
    }
}

/* --- category ---*/
.tmp-row-slick,
.category-slick {
    max-width: 1120px;
    margin: 0 auto;
}
.tmp-row-slick .slick-list {
    margin: 0 40px;
}

.tmp-row-slick .slick-arrow,
.category-slick .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
}

.category-slick .slick-prev {
    left: -8%;
}
.tmp-row-slick .slick-prev {
    left: 0;
}

.category-slick .slick-next {
    right: -8%;
}
.tmp-row-slick .slick-next {
    right: 0;
}

a.category-item:hover {
    font-weight: bold;
}

.category-item__bg {
    width: 162px;
    height: 162px;
    border: 5px solid;
    border-radius: 50%;
    color: rgba(163, 163, 243, 1);
}

.category-item__desc {
    font-weight: 500;
    min-height: 48px;
}

.category-item__desc span {
    display: block;
}

@media (max-width: 1280px) {
    .tmp-row-slick.slick-prev,
    .category-slick .slick-prev {
        left: -5%;
    }

    .tmp-row-slick .slick-next,
    .category-slick .slick-next {
        right: -5%;
    }
}

@media (max-width: 767.98px) {
    .tmp-row-slick .slick-prev,
    .category-slick .slick-prev {
        left: -4%;
    }

    .tmp-row-slick .slick-next,
    .category-slick .slick-next {
        right: -4%;
    }

    .category-item__bg {
        width: 150px;
        height: 150px;
        border: 3px solid;
    }

    .category-item__desc {
        font-size: 14px;
    }
}

@media (max-width: 660px) {
    .tmp-row-slick .slick-prev,
    .category-slick .slick-prev {
        left: -5%;
    }

    .tmp-row-slick .slick-next,
    .category-slick .slick-next {
        right: -5%;
    }

    .tmp-row-slick .slick-list,
    .category-slick .slick-list {
        margin: 0 40px;
    }

    .category-item__bg {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 580px) {
    .tmp-row-slick .slick-prev,
    .category-slick .slick-prev {
        left: 0;
    }

    .tmp-row-slick .slick-next,
    .category-slick .slick-next {
        right: 0;
    }
}

@media (max-width: 480px) {
    .category-item__desc {
        font-size: 14px;
        line-height: normal;
    }

    .tmp-row-slick .slick-slide,
    .category-slick .slick-slide {
        margin: 0 10px;
    }

    .tmp-row-slick.slick-list,
    .category-slick .slick-list {
        margin: 0 20px;
    }

    .category-item__desc {
        height: 36px;
    }
}

@media (max-width: 420px) {
    .category-item__desc {
        font-size: 12px;
    }

    .category-item__bg {
        width: 140px;
        height: 140px;
    }
}

/* --- products ---*/
.products-item{
    position: relative;
}
.products-item__bg {
    width: auto;
    height: 250px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.products-item__desc {
    min-height: 54px;
    text-decoration: none;
}

.products-item__tag {
    left: 12px;
    top: 12px;
}

.products-item__actions {
    right: 20px;
    top: 30px;
}

.products-item__actions-favorites:hover svg path {
    fill: rgba(163, 163, 243, 1)
}

.products-item__actions-favorites.active svg path {
    fill: rgba(163, 163, 243, 1)
}

.products-item__actions-comparison:hover svg path {
    fill: rgba(215, 150, 250, 1)
}

.products-item .products-item__actions-comparison svg path,
.products-item .products-item__actions-favorites svg path {
}

.products-item.in-compare .products-item__actions-comparison svg path,
.products-item.in-favorite .products-item__actions-favorites svg path {
    fill: #A3A3F3;
    fill-opacity: 1;
}

.products-item.in-basket button .in-basket,
.products-item button .in-basketed {
    display: none;
}

.products-item.in-basket button .in-basketed {
    display: inline;
}

.old-price {
    text-decoration: line-through;
}

.partners-slick .slick-slide {
    margin: 0 40px;
}

.partners-slick .slick-track {
    display: flex;
    align-items: center;
}

.arrow-slider {
    top: -100px;
    right: 0;
}

.arrow-slider .slick-arrow__prev {
    margin-right: 10px;
}

.products-slick .slick-list {
    margin: 0 -16px;
}

.products-slick .slick-prev,
.products-slick .slick-next {
    position: absolute;
    top: -98px;
}

.products-slick .slick-next {
    right: 0;
}

.products-slick .slick-prev {
    right: 48px;
}

@media (max-width: 991.98px) {
    .current-price.text-xl {
        font-size: 18px;
    }

    .old-price.text-md {
        font-size: 16px;
    }

    .products-slick .slick-prev,
    .products-slick .slick-next {
        top: -74px;
    }

    .products-item__tag-box {
        font-size: 12px;
    }
    .products-item__actions {
        right: 15px;
        top: 20px;
    }

}

@media (max-width: 767.98px) {
    .arrow-slider {
        top: -60px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .products-slick .slick-prev,
    .products-slick .slick-next {
        top: -60px;
    }

    .products-slick .slick-prev {
        left: 0;
        right: auto;
    }

    .products-item__tag {
        left: 8px;
        top: 8px;
    }

    .partners-slick .slick-slide {
        margin: 0 16px;
    }
    .products-item__actions {
        right: 15px;
        top: 15px;
    }
}

@media (max-width: 575.98px) {

    .products-slick .slick-prev,
    .products-slick .slick-next {
        top: -55px;
    }

    .arrow-slider {
        top: -50px;
    }

    .products-slick .slick-slide {
        margin: 0px 10px;
    }
}

@media (max-width: 480px) {

    .products-slick .slick-prev,
    .products-slick .slick-next {
        top: -48px;
    }

    .products-item__tag {
        left: 4px;
        top: 4px;
    }
    .products-item__actions {
        right: 10px;
        top: 10px;
    }


}

@media (max-width: 420px) {
    .products-slick .slick-list {
        margin: 0 -4px;
    }

    .products-slick .slick-slide {
        margin: 0 4px;
    }
}

@media (max-width: 360px) {
    .products-slick .slick-slide {
        margin: 0;
    }
}


/* --- service ---*/
.service-item {
    min-height: 160px;
}

@media (max-width: 1280px) {
    .service-item {
        min-height: 180px;
    }
}

@media (max-width: 767.98px) {
    .service-item {
        min-height: auto;
    }
}


/* --- reviews ---*/

.reviews-bg {
    background-image: url('../images/video-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.reviews-box {
    padding: 70px 0;
}

.reviews-box__title {
    margin-bottom: 100px;
}

.reviews-box__desc {
    font-size: 40px;
    line-height: normal;
}

.reviews-preview {
    margin-bottom: 130px !important;
}


.reviews-preview__item {
    width: 100%;
    height: 430px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.btn-play {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1280px) {
    .reviews-preview {
        margin-bottom: 80px !important;
    }

    .reviews-preview__item {
        height: 380px;
    }
}

@media (max-width: 991.98px) {
    .reviews-box {
        padding: 50px 0;
    }

    .reviews-box__title {
        margin-bottom: 60px;
    }

    .reviews-preview {
        margin-bottom: 60px !important;
    }

    .reviews-preview__item {
        height: 360px;
    }

    .btn-play svg {
        max-width: 42px;
    }

    .reviews-box__desc {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .reviews-box .grid-lg {
        display: block;
    }

    .reviews-box__title {
        margin-bottom: 40px;
    }

    .reviews-box__desc {
        font-size: 30px;
    }

    .reviews-preview {
        margin-bottom: 40px !important;
    }
}

@media (max-width: 575.98px) {
    .reviews-preview__item {
        height: 260px;
    }

    .reviews-box {
        padding: 24px 0;
    }

    .reviews-box__desc {
        font-size: 24px;
    }

}

@media (max-width: 420px) {
    .reviews-preview__item {
        height: 180px;
    }

    .reviews-box__desc {
        font-size: 16px;
    }

    .reviews-preview {
        margin-bottom: 24px !important;
    }
}

/* --- footer ---*/
.footer {
    padding: 60px 0 45px;
}

@media (max-width: 991.98px) {
    .footer .text-md {
        font-size: 16px;
    }

    .footer {
        padding-bottom: 140px;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding-top: 0;
    }

    .footer .container {
        max-width: 100%;
        padding: 0;
    }

    .footer .text-md {
        font-size: 14px;
    }

    .footer-logo {
        max-width: 220px;
    }

    .footer-ico svg {
        max-height: 28px;
    }

    .acc {
        cursor: pointer;
        padding: 16px 16px 16px 0;
        width: 100%;
        text-align: left;
        border-top: 1px solid #ffffff;
        background-color: rgba(163, 163, 243, 1);
        outline: none;
        transition: 0.4s;
    }

    .panel-acc {
        display: none;
        background-color: rgba(163, 163, 243, 1);
        padding: 0 16px;
        margin-bottom: 0;
        overflow: hidden;
    }

    .panel-acc.fw-bold {
        font-weight: 400 !important;
    }

    .acc:after {
        content: url('../images/ico/up.svg');
        float: right;
        margin-left: 5px;
    }

    .acc.active:after {
        content: url('../images/ico/down.svg');
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding-bottom: 84px;
    }

    .footer-logo {
        max-width: 160px;
    }
}

@media (max-width: 420px) {
    .footer-ico svg {
        max-height: 22px;
    }
}

.fancybox-slide--iframe .fancybox-content {
    height: 70vh !important;
}

@media (max-width: 575.98px) {
    .fancybox-slide--iframe .fancybox-content {
        height: 100% !important;
    }
}


/*# cookie-banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    max-width: 620px;
    min-width: 550px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

.cookie-text {
    color: #000;
    max-width: 70%;
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0%;

}

.cookie-button {
    width: 100px;
    height: 36px;
    border-radius: 7px;
    background: #D796FA;
    color: #000;
    text-align: center;
    border: none;
    cursor: pointer;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    text-transform: uppercase;
}

.cookie-button:focus,
.cookie-button:active {
    outline: none !important;
    box-shadow: none !important;
}

.cookie-button:hover {
    background: #c68aea;
}

.cookie-banner {
    display: none;
}

.cookie-banner.show {
    display: flex !important;
}

@media (max-width: 576px) {
    .cookie-banner {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        min-width: 310px;
    }

    .cookie-text {
        font-size: 13px;
        flex: none;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .cookie-button {
        width: 100%;
        height: 44px;
        font-size: 14px;
    }
}

/*# cookie-banner */

.max-fixed-link {
    background: url(/local/templates/sniper_2026/images/ico/max-messenger.webp) no-repeat;
    background-size: 100% 100%;
    height: 60px;
    display: block;
    width: 60px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    border-radius: 50%;
    z-index: 100;
    transition: all 0.3s ease-out;
}
.max-fixed-link:hover {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .max-fixed-link {
        bottom: 160px;
    }
}
@media (max-width: 768px) {
    .max-fixed-link {
        bottom: 130px;
    }
}
@media (max-width: 576px) {
    .max-fixed-link {
        bottom: 100px;
    }
}

@media (max-width: 480px) {
    .max-fixed-link {
        height: 40px;
        width: 40px;
        bottom: 70px;
        right: 10px;
    }
}


