:root {
    --accent-color: #55AFA9;
    --accent-color-hover: #378D87;
    --red_accent-color: #C50000;
    --text-dark-grey-color: #4D4D4D;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('/font/TTFirsNeue/TTFirsNeue-Regular.eot');
    src: local('/font/TTFirsNeue/TT Firs Neue Regular'), local('/font/TTFirsNeue/TTFirsNeue-Regular'),
        url('/font/TTFirsNeue/TTFirsNeue-Regular.eot?#iefix') format('embedded-opentype'),
        url('/font/TTFirsNeue/TTFirsNeue-Regular.woff2') format('woff2'),
        url('/font/TTFirsNeue/TTFirsNeue-Regular.woff') format('woff'),
        url('/font/TTFirsNeue/TTFirsNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('/font/TTFirsNeue/TTFirsNeue-Medium.eot');
    src: local('/font/TTFirsNeue/TT Firs Neue Medium'), local('/font/TTFirsNeue/TTFirsNeue-Medium'),
        url('/font/TTFirsNeue/TTFirsNeue-Medium.eot?#iefix') format('embedded-opentype'),
        url('/font/TTFirsNeue/TTFirsNeue-Medium.woff2') format('woff2'),
        url('/font/TTFirsNeue/TTFirsNeue-Medium.woff') format('woff'),
        url('/font/TTFirsNeue/TTFirsNeue-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('/font/TTFirsNeue/TTFirsNeue-DemiBold.eot');
    src: local('/font/TTFirsNeue/TT Firs Neue DemiBold'), local('/font/TTFirsNeue/TTFirsNeue-DemiBold'),
        url('/font/TTFirsNeue/TTFirsNeue-DemiBold.eot?#iefix') format('embedded-opentype'),
        url('/font/TTFirsNeue/TTFirsNeue-DemiBold.woff2') format('woff2'),
        url('/font/TTFirsNeue/TTFirsNeue-DemiBold.woff') format('woff'),
        url('/font/TTFirsNeue/TTFirsNeue-DemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

html {
    font-family: 'TT Firs Neue';
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

body {
    margin: 0;
    padding-top: 80px;
    transition: 0.3s;
    background: #fff;
}

@media only screen and (max-width : 1024px) {
    body {
        margin: 0;
        padding-top: 64px;
    }
}

img {
    border: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button {
    font-family: 'TT Firs Neue';
    overflow: visible;
}

button,
select {
    text-transform: none;
}

textarea {
    overflow: auto;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

ul {
    list-style-type: none;
}

a {
    cursor: pointer;
    color: #0662de;
    text-decoration: none;
}

.vertical-align {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

ul {
    padding: 0;
}

ul li {
    list-style-type: none;
}

/* Форматирование */

.center {
    text-align: center;
}

.left {
    float: left !important;
}

.right {
    float: right !important;
}

/* Запрет поворота телефона */

.mobile-landscape {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
    overflow: hidden;
    display: none;
}

.mobile-landscape .text_container {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    color: #fff;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.mobile-landscape .text_container .title {
    display: block;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 5px;
    color: #fff;
}

/*@media (max-width : 897px) and (orientation: landscape) {
    .mobile-landscape {
        display: block !important;
    }

    html,
    body {
        overflow: hidden;
    }
}

@media (max-width : 414px) {
    .mobile-landscape {
        display: none !important;
    }

    html,
    body {
        overflow: auto;
    }
}*/

/* Контейнер */

.container {
    position: relative;
    margin: 0 auto;
    width: calc(100% - 80px);
    max-width: 1160px;
}

@media only screen and (max-width : 768px) {
    .container {
        width: calc(100% - 40px);
    }
}

/*--------------------------------------*/
/*--------------------------------------*/
/*---------- Навигационный бар ---------*/
/*--------------------------------------*/
/*--------------------------------------*/

.nav_bar_group {
    position: fixed;
    height: 80px;
    top: -90px;
    left: 0;
    right: 0;
    z-index: 98;
    transition: 0.3s;
}

.nav_bar_group.show {
    top: 0;
}

.headroom {
    will-change: transform;
    transition: transform 200ms linear;
}

.headroom--pinned {
    transform: translateY(0%);
}

.headroom--unpinned {
    transform: translateY(-100%);
}

.nav_bar {
    position: relative;
    background: #fff;
    height: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 97;
    text-align: center;
    transition: 0.3s;
}

/*---------- Логотип в топ баре ----------*/

.logo_navbar {
    position: absolute;
    top: 0;
    left: 0;
    height: 56px;
    margin: 12px 0;
    transition: 0.3s;
}

.logo_navbar img {
    display: flex;
    height: 100%;
}

/*-------- Основные ссылки в топ баре --------*/

.btn_mobile_menu {
    display: none;
}

.bar_link_items {
    display: inline-flex;
    align-items: center;
    height: 80px;
}

.bar_link_items .link {
    display: flex;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    height: 80px;
    padding: 29px 0;
    color: #000;
    margin: 0 15px;
    white-space: nowrap;
    cursor: pointer;
}

/*.bar_link_items .link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-out;
}

.bar_link_items .link:hover::after,
.bar_link_items .link:focus::after {
    transform: scaleX(1);
    transform-origin: left;
}

.bar_link_items .link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}*/

.bar_link_items .link::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 50%;
    width: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--accent-color);
    transition: 0.3s;
}

.bar_link_items .link:hover::after {
    left: 0;
    width: 100%;
}

.bar_link_items .link.active::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--accent-color);
    transition: 0.3s;
}

.bar_link_items .link .arrow {
    height: 20px;
    width: 20px;
    background: url(/image/icon_arrow_down.svg) center/cover;
    margin-left: 2px;
    transition: 0.3s;
}

.bar_link_items .link:hover .arrow {
    transform: rotate(180deg);
}

.bar_link_items .link.active .arrow {
    transform: rotate(180deg);
}

/*---------- Корзина (в топ баре) ----------*/

.bar_right {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px 0;
    transition: 0.3s;
}

.btn_icon_navbar {
    position: relative;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn_icon_navbar::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #F4F4F4;
    z-index: -1;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
}

.btn_icon_navbar:hover::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.btn_search {
    background: url(/image/icon_search_48.svg) no-repeat center;
    background-size: 50px;
}

.btn_wishlist {
    background: url(/image/icon_wishlist_48.svg) no-repeat center;
    background-size: 50px;
}

.btn_bar_cart {
    background: url(/image/icon_basket_48.svg) no-repeat center;
    background-size: 50px;
}

.btn_bar_cart .label {
    display: none;
    position: absolute;
    top: 2px;
    left: 28px;
}

.btn_bar_cart.full .label {
    display: block;
}

.btn_bar_cart .label::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    border-radius: 12px;
}

#cart_item_count {
    display: block;
    position: relative;
    height: 20px;
    min-width: 20px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    font-size: 10px;
    line-height: 12px;
    font-weight: 600;
    padding: 4.5px 5px;
    z-index: 1;
}

.mobile_menu_container .btn_search {
    display: none;
}

@media only screen and (max-width : 1050px) {
    .btn_icon_navbar {
        margin-left: 5px;
    }
}

@media only screen and (max-width : 1024px) {
    .nav_bar_group {
        height: 64px;
    }

    .nav_bar {
        height: 64px;
        text-align: center;
    }

    .btn_mobile_menu {
        display: flex;
        position: absolute;
        top: 10px;
        left: -10px;
        /*right: -10px;*/
        height: 44px;
        width: 44px;
        border-radius: 50%;
        background: url(/image/icon_menu_42.svg) center/cover;
        background-size: 56px;
        cursor: pointer;
    }

    /*---------- Логотип в топ баре ----------*/

    .logo_navbar {
        position: relative;
        height: 50px;
        display: inline-flex;
        margin: 7px auto;

        /*position: absolute;
        left: 0px;
        top: 7px;
        height: 50px;
        display: flex;
        margin: 0;*/
    }

    /*-------- Основные ссылки в топ баре --------*/

    .bar_link_items {
        display: none;
    }

    /*---------- Корзина (в топ баре) ----------*/

    .bar_right {
        padding: 10px 0;
        /*right: 34px;*/
        right: -10px;
    }

    .btn_icon_navbar {
        position: relative;
        height: 44px;
        width: 44px;
        border-radius: 22px;
        margin-left: 0px;
        cursor: pointer;
        transition: 0;
    }

    .btn_icon_navbar::after {
        display: none;
    }

    .btn_bar_cart .label {
        display: none;
        position: absolute;
        top: 2px;
        left: 25px;
    }

    .btn_bar_cart.full .label {
        display: block;
    }

    .btn_bar_cart .label::after {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: #fff;
        border-radius: 12px;
    }

    #cart_item_count {
        display: block;
        position: relative;
        height: 17px;
        min-width: 17px;
        background: #000;
        color: #fff;
        border-radius: 10px;
        font-size: 8px;
        line-height: 10px;
        font-weight: 600;
        padding: 4px 5px;
        z-index: 1;
    }
}

@media only screen and (max-width : 768px) {
    .nav_bar .container {
        width: 100%;
    }

    .btn_mobile_menu {
        display: flex;
        position: absolute;
        top: 10px;
        left: 10px;
        /*right: 10px;*/
        height: 44px;
        width: 44px;
        border-radius: 50%;
        background: url(/image/icon_menu_42.svg) center/cover;
        background-size: 56px;
        cursor: pointer;
    }

    /*---------- Логотип в топ баре ----------*/

    .logo_navbar {
        position: relative;
        top: 0px;
        height: 50px;
        display: inline-flex;
        margin: 7px auto;

        /*position: absolute;
        left: 20px;
        top: 7px;
        height: 50px;
        display: flex;
        margin: 0;*/
    }

    /*---------- Корзина (в топ баре) ----------*/

    .bar_right {
        padding: 10px 0;
        /*right: 54px;*/
        right: 10px;
    }
    
    .bar_right .btn_search {
        display: none;
    }
    
    .mobile_menu_container .btn_search {
        display: block;
        position: relative;
        width: 100%;
        height: 44px;
        font-size: 16px;
        line-height: 20px;
        padding: 13px 16px 11px 44px;
        color: rgba(0, 0, 0, 0.3);
        background: #eee;
        border-radius: 10px;
        margin-top: 20px;
        cursor: pointer;
    }
    
    .mobile_menu_container .btn_search::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 44px;
        background: url(/image/icon_search_48.svg) no-repeat center;
        background-size: 40px;
        opacity: 0.3;
    }
}

/*---------- Выпадающий список категорий в топ баре ----------*/

.nav_menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    padding: 20px 0;
    background: #fff;
    transition: 0.3s;
    z-index: 96;
    transform: translateY(calc(-100% - 80px));
}

.nav_menu.show {
    transform: translateY(0);
    box-shadow: 0 2px 100px rgba(0, 0, 0, 0.3);
}

.nav_menu_items {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -10px;
}

.nav_menu_item {
    position: relative;
    width: calc(100% - 20px);
    margin: 0 10px;
    border-radius: 12px;
}

.nav_menu_item::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #F4F4F4;
    border-radius: 12px;
    opacity: 0;
    transition: 0.3s;
}

.nav_menu_item:hover::before {
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 20px;
    opacity: 1;
}

.nav_menu_item_cover {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 133%;
    border-radius: 12px;
    overflow: hidden;
}

.nav_menu_item_cover .cover {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(/image/img_plug.svg) center/cover;
    transition: 0.3s;
}

.nav_menu_item_cover .cover::before {
    content: '';
    position: absolute;
    left: -20px;
    right: -20px;
    bottom: -20px;
    height: 140px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
    filter: blur(5px);
}

.nav_menu_item:hover .nav_menu_item_cover .cover {
    filter: blur(5px);
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
}

.nav_menu_item_cover .title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    padding: 0 16px;
    margin-bottom: 16px;
    transition: 0.3s;
    text-shadow: 0 2px 25px #000;
}

.nav_menu_item:hover .nav_menu_item_cover .title {
    margin-bottom: 66%;
    transform: translateY(50%);
}

@media only screen and (max-width : 768px) {
    .nav_menu {
        display: none;
    }
}

/*---------- Мобильное меню ----------*/

.mobile_menu {
    position: fixed;
    top: 0px;
    left: -350px;
    /*right: -350px;*/
    bottom: -2px;
    width: 320px;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 99;
    transition: 0.3s;
}

.mobile_menu.open {
    left: -2px;
    /*right: -2px;*/
}

.mobile_menu_header {
    position: relative;
    height: 64px;
    margin: 2px 20px 0 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile_menu_header .mobile_menu_title {
    display: inline-flex;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin: 20px 0;
}

.mobile_menu_header .btn_menu_close {
    position: absolute;
    top: 10px;
    right: -10px;
    height: 44px;
    width: 44px;
    background: url(/image/icon_close_40.svg) center/cover;
    border-radius: 50%;
    cursor: pointer;
}

.mobile_menu_container {
    padding: 0 20px 0 22px;
    height: calc(100% - 66px);
    overflow-y: scroll;
}

.mobile_menu_container ul {
    display: block;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile_menu_container li {
    list-style-type: none;
    padding: 8px 0;
}

.mobile_menu_container li .menu_link {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    cursor: pointer;
}

.mobile_menu_container li .menu_link .icon {
    position: absolute;
    top: 1px;
    right: 2px;
    height: 20px;
    width: 20px;
    background: url(/image/icon_arrow_down.svg) center/cover;
    transform: rotate(0deg);
    transition: 0.3s;
}

.mobile_menu_container li .menu_link.open .icon {
    transform: rotate(-180deg);
}

.catalog_menu {
    display: none;
    position: relative;
}

.catalog_menu .catalog_menu_link {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    cursor: pointer;
    padding-left: 20px;
}

.catalog_menu .catalog_menu_link::before {
    content: '';
    position: absolute;
    height: 5.5px;
    width: 5.5px;
    border-radius: 2px;
    background: var(--accent-color);
    ;
    top: 6.5px;
    left: 0;
}

.mobile_menu_container .menu_contact {
    padding: 20px 0 10px;
    border: none;
}

.mobile_menu_container .menu_contact li {
    margin-bottom: 10px;
    padding: 0;
}

.menu_main_phone {
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    color: #000;
}

.menu_email {
    color: #000;
}

.menu_text_description {
    color: rgba(0, 0, 0, 0.6);
}

.menu_phone {
    color: #000;
}

/*--------------------------------------*/
/*------ ### Навигационный бар ### -----*/
/*--------------------------------------*/



/*------------------------------------------*/
/*------------------------------------------*/
/*------------  Модальное окно -------------*/
/*------------------------------------------*/
/*------------------------------------------*/

.modal_bg {
    position: none;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: #000;
    opacity: 0;
    transition: 0.3s;
}

.modal_bg.show {
    position: fixed;
    opacity: 0.7;
    z-index: 98;
}

.modal_bg.show_for_bar {
    position: fixed;
    opacity: 0.7;
    z-index: 96;
}

.modal {
    position: fixed;
    top: 0;
    padding: 0;
    right: -520px;
    bottom: 0;
    width: 480px;
    border-radius: 0;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
    background: #fff;
    z-index: 99;
    transition: 0.3s;
    visibility: hidden;
}

.modal.open {
    top: 0;
    right: 0;
    bottom: 0;
    visibility: visible;
}

.modal_header {
    position: relative;
    display: flex;
    border-bottom: 1px solid #E5E5E5;
    padding: 20px 20px 20px 30px;
    z-index: 1;
    background: #fff;
}

.modal_header .title_cart {
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    margin-right: 20px;
    padding: 6px 0 4px;
}

.share_cart_block {
    position: relative;
    border-radius: 20px;
}

.share_cart_button {
    position: relative;
    display: flex;
    height: 40px;
    width: 40px;
    background: url(/image/icon_share_24.svg) no-repeat center;
    cursor: pointer;
    display: none;
}

.share_cart_button::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: #F4F4F4;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

.share_cart_button:hover::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.share_cart_link_card {
    position: absolute;
    top: 48px;
    left: -95px;
    width: 280px;
    background: #fff;
    padding: 15px 18px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 20px;
    border: 1px solid #ebebeb;
    z-index: 2;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    color: var(--text-dark-grey-color);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.share_cart_link_card.show {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.share_cart_link_card::after {
    content: "";
    border-left: solid 1px rgba(128, 134, 142, .2);
    border-radius: 3px 0;
    position: absolute;
    top: -7px;
    left: 108px;
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
    border-top: solid 1px rgba(128, 134, 142, .2);
    background: #fff;
}

.share_cart_link_card .copy_text {
    font-weight: 600;
    color: #000;
    cursor: copy;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    transition: 0.3s;
}

.share_cart_link_card .copy_text:hover {
    color: #009f00;
}

.modal_header_search {
    flex-wrap: wrap;
    border-bottom: none;
    padding-bottom: 0px;
}

.modal_header_search .search_input {
    position: relative;
    width: 100%;
    margin-right: 10px;
}

.modal_header_search .search_input .icon {
    content: '';
    position: absolute;
    top: 5px;
    left: -10px;
    height: 40px;
    width: 40px;
    background: url(/image/icon_search_48.svg) no-repeat center;
    background-size: 40px;
    opacity: 0.25;
    z-index: 1;
}

.modal_header_search .search_input input {
    border-radius: 0;
    padding-left: 36px;
    padding-right: 0;
    border: none;
    border-bottom: 1px solid #E5E5E5;
}

.modal_header_search .input_focus {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid var(--accent-color);
    z-index: 1;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}

.modal_header_search .search_input input:focus + .input_focus {
    opacity: 1;
}

.modal_header .title {
    width: calc(100% - 60px);
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    margin-right: 20px;
    padding: 6px 0 4px;
}

.modal_header .btn_close {
    position: relative;
    height: 40px;
    width: 40px;
    background: url(/image/icon_close_40.svg) center/cover;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.modal_header_cart .btn_close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.modal_header .btn_close::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: #F4F4F4;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

.modal_header .btn_close:hover::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.container_modal {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0px 30px;
    overflow-y: scroll;
}

.container_modal_search {
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0px 30px 30px;
    overflow-y: scroll;
}

.search_resulte_item_no {
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
    opacity: 0.4;
    padding: 10px 15px 8px;
    margin-top: 10px;
    text-align: center;
}

.search_resulte_item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.search_resulte_item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 10%, rgba(0, 0, 0, 0.05) 90%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

.search_resulte_item:hover::after {
    opacity: 1;
}

.search_resulte_item .product_pic {
    position: relative;
    display: flex;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-color: #F3F3F3;
    margin-right: 15px;
}

.search_resulte_item .product_pic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F4F4F4;
    border-radius: 8px;
    z-index: -1;
}

.search_resulte_item .product_info {
    width: calc(100% - 75px);
}

.search_resulte_item .product_info .product_name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.search_resulte_item .product_info .product_price {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 18px;
    color: #8e8e8e;
    font-weight: 500;
    margin-bottom: -2px;
}

.search_resulte_item .product_info .product_price .old_pice {
    position: relative;
    margin-left: 5px;
}

.search_resulte_item .product_info .product_price .old_pice::after {
    content: '';
    position: absolute;
    top: 7px;
    left: -2px;
    right: -2px;
    height: 2px;
    background: var(--red_accent-color);
}

.search_resulte_item .product_info .product_price .new_pice {
    color: var(--red_accent-color);
    font-weight: 600;
    margin-left: 5px;
}

.search_resulte_item .product_info .product_price .label_discount {
    position: relative;
    display: flex;
    margin-left: 8px;
    background: var(--red_accent-color);
    color: #fff;
    padding: 5.5px 8px 4px 16px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 10px;
    font-weight: 600;
    margin-top: -3px;
}

.search_resulte_item .product_info .product_price .label_discount .minus {
    content: '';
    position: absolute;
    top: 9px;
    left: 8px;
    width: 4px;
    height: 1.5px;
    background: #fff;
}

/*----------------------*/

.stand_info_items {
    padding: 5px 0;
}

.stand_info_item {
    padding: 0 0 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stand_info_item.last {
    border-bottom: none;
}

.stand_info_item img {
    display: flex;
    max-width: 340px;
    margin: 0 auto -12px;
    ;
    width: 100%;
}

.stand_info_item .stand_title {
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stand_info_item .stand_title span {
    white-space: nowrap;
}

.stand_info_item .stand_description {
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: var(--text-dark-grey-color);
}

@media only screen and (max-width : 768px) {
    .modal {
        position: fixed;
        top: calc(100% + 30px);
        padding: 0 20px;
        left: 0;
        right: 0;
        bottom: calc(-100% - 30px);
        width: 100%;
        border-radius: 0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    }

    .modal.open {
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .modal_header {
        padding: 21px 0 19px 0;
    }

    .modal_header_search {
        padding: 21px 0 0 0;
    }

    .modal_header_search .search_input {
        position: relative;
        width: 100%;
        margin-right: 0px;
    }

    .modal_header .title {
        width: calc(100% - 50px);
        font-size: 20px;
        line-height: 24px;
        padding: 0;
        margin-top: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .modal_header .title_cart {
        font-size: 20px;
        line-height: 24px;
        padding: 0;
        margin-top: 0;
        margin-right: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .share_cart_button {
        height: 44px;
        width: 44px;
        margin: -10px 0;
    }

    .share_cart_button::after {
        display: none;
    }

    .share_cart_link_card {
        top: 36px;
        left: -80px;
    }

    .share_cart_link_card::after {
        left: 94px;
    }

    .modal_header .btn_close {
        height: 44px;
        width: 44px;
        background-color: #fff;
        transition: 0;
        position: absolute;
        top: 10px;
        right: -10px;
    }

    .modal_header_cart .btn_close {
        position: absolute;
        top: 10px;
        right: -10px;
    }

    .container_modal {
        position: absolute;
        top: 63px;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0 20px;
        overflow-y: scroll;
    }

    .container_modal_search {
        position: absolute;
        top: 95px;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0px 20px 20px;
        overflow-y: scroll;
    }

    .search_resulte_item::after {
        display: none;
    }

    .stand_info_items {
        padding: 0;
    }
}

/*------------------------------------------*/
/*------------------------------------------*/
/*------ Корзина модал - (Контейнер) -------*/
/*------------------------------------------*/
/*------------------------------------------*/

.container_modal_cart {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 30px 86px;
    overflow-y: scroll;
}

.free_shipping .container_modal_cart {
    top: 80px;
    bottom: 142px;
    padding: 0 30px;
}

/*---- Корзина - Сообщение при пустой корзине ----*/

.cart_empty {
    position: absolute;
    top: calc(50% + 85px);
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    color: var(--text-dark-grey-color);
    font-size: 16px;
}

.cart_empty.show {
    top: calc(50% - 15px);
    opacity: 1;
    visibility: visible;
}

/*---- Корзина - Сообщение о нерабочем времени ----*/

.message_working_day {
    display: block;
    position: relative;
    background: #263248;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    padding: 15px 20px 13px;
    margin-top: 20px;
}

.message_working_day::after {
    content: '';
    position: absolute;
    top: -13px;
    right: 11px;
    height: 50px;
    width: 50px;
    background: url(/image/no_working_emoji_2.gif) center/cover;
}

/*---- Корзина - Кнопка оформить заказ ----*/

.modal_btn_cart {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: -100px;
    padding-bottom: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    transition: 0.3s;
    opacity: 0;
}

.modal_btn_cart.fix {
    bottom: 0;
    opacity: 1;
}

.free_shipping .modal_btn_cart {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    left: 0px;
    right: 0px;
    padding: 0 30px 30px;
}

.free_shipping_block {
    display: none;
}

.free_shipping .free_shipping_block {
    margin: 14px 0;
    display: block;
}

.header_free_shipping {
    display: flex;
    margin-bottom: 5px;
    text-align: center;
}

.header_free_shipping .info_text {
    font-size: 15px;
    line-height: 18px;
    white-space: nowrap;
    margin: 0 auto;
}

.header_free_shipping .info_text img {
    float: left;
    width: 20px;
    margin-right: 7px;
    margin-top: -2px;
}

.header_free_shipping .info_text .accent {
    color: var(--red_accent-color);
    font-weight: 600;
    white-space: nowrap;
}

.cart_line_load_progress {
    display: flex;
    margin: 0 auto;
    position: relative;
    width: calc(100% - 25px);
    height: 4px;
    border-radius: 2px;
    background: #E2E2E2;
    overflow: hidden;
}

.cart_line_load_progress span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--red_accent-color);
    border-radius: 2px;
    transition: 0.3s;
}

.modal_btn_cart .btn_order {
    display: block;
    height: 56px;
    background: #000;
    border-radius: 10px;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    padding: 18px 20px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.5);
}

.modal_btn_cart .btn_order:hover {
    background: #404040;
}

.modal_btn_cart .btn_order .dot {
    margin: 0 5px;
}

@media only screen and (max-width : 768px) {
    .container_modal_cart {
        top: 64px;
        bottom: 0;
        padding: 0 20px 76px;
    }

    .free_shipping .container_modal_cart {
        top: 64px;
        bottom: 131px;
        padding: 0 20px;
    }

    /*---- Корзина - Сообщение о нерабочем времени ----*/

    .message_working_day {
        font-size: 14px;
        line-height: 19px;
        padding: 16px 20px 14px;
        margin-top: 16px;
    }

    .message_working_day::after {
        top: -12px;
        right: 20px;
        height: 42px;
        width: 42px;
    }

    /*---- Корзина - Кнопка оформить заказ ----*/

    .modal_btn_cart {
        left: 20px;
        right: 20px;
        bottom: -90px;
        padding-bottom: 21px;
    }

    .free_shipping .modal_btn_cart {
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.1);

        left: 20px;
        right: 20px;
        padding: 0 0 21px;
    }

    .header_free_shipping .info_text {
        font-size: 14px;
        line-height: 16px;
    }

    .modal_btn_cart .btn_order {
        font-size: 15px;
        padding: 18px 15px;
    }

    .modal_btn_cart .btn_order:hover {
        background: #000;
    }

    .modal_btn_cart .btn_order .dot {
        margin: 0 4px;
    }
}

/*----------------------------------------*/
/*------------ ### Корзина ### -----------*/
/*----------------------------------------*/



/*------------------------------------------*/
/*------------------------------------------*/
/*------------- Хлебные крошки -------------*/
/*------------------------------------------*/
/*------------------------------------------*/

.bread_crumbs ul {
    display: flex;
    margin: 0;
    padding: 20px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.crumb {
    position: relative;
    color: var(--text-dark-grey-color);
    padding-left: 36px;
}

.crumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8px;
    height: 20px;
    width: 20px;
    background: url(/image/icon_arrow_right.svg) center/cover;
    opacity: 0.2;
}

.crumb.crumb_home {
    padding-left: 0;
}

.crumb.crumb_home::before {
    content: '';
    display: none;
}

.crumb a {
    color: var(--text-dark-grey-color);
    transition: 0.3s;
}

.crumb a:hover {
    color: #000;
}

.crumb a::before {
    content: '';
    position: absolute;
    height: 1px;
    width: 0;
    background: #000;
    left: 36px;
    bottom: 0;
    opacity: 0.1;
    transition: 0.3s;
}

.crumb a:hover::before {
    width: calc(100% - 36px);
    opacity: 0.7;
}

.crumb.crumb_home a::before {
    left: 0;
}

.crumb.crumb_home a:hover::before {
    width: 100%;
}

@media only screen and (max-width : 768px) {
    .bread_crumbs {
        position: relative;
        margin: 0 -20px;
        width: calc(100% + 40px);
    }

    .bread_crumbs::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 44px;
        background: linear-gradient(270deg, #FFF 10%, rgba(255, 255, 255, 0.00) 100%);
        z-index: 1;
        pointer-events: none;
    }

    .bread_crumbs ul {
        position: relative;
        padding: 15px 20px;
        white-space: nowrap;
        overflow: hidden;
        overflow-x: scroll;
    }

    .bread_crumbs ul::-webkit-scrollbar {
        display: none;
    }

    .crumb a {
        transition: 0;
    }

    .crumb a:hover {
        color: var(--text-dark-grey-color);
    }

    .crumb a::before {
        display: none;
    }

}

/*------------------------------------------*/
/*--------- ### Хлебные крошки ### ---------*/
/*------------------------------------------*/



/*------------------------------------------*/
/*------------------------------------------*/
/*-------------- Шапка Каталога ------------*/
/*------------------------------------------*/
/*------------------------------------------*/

.catalog_header {
    position: relative;
    margin-bottom: 14px;
}

.catalog_title {
    display: block;
    font-weight: 600;
    font-size: 46px;
    line-height: 46px;
    text-transform: uppercase;
}

/*-----------------------------*/

.subcategory {
    position: relative;
    display: flex;
    margin: 14px -5px 14px;
}

.left_edge_category_navigation {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 70px;
    background: linear-gradient(90deg, #fff 23px, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.left_edge_category_navigation.hide {
    display: none;
}

.left_edge_category_navigation .scroll_left_btn {
    position: absolute;
    top: 4px;
    left: 5px;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: url(/image/icon_arrow_left_24.svg) no-repeat center;
    background-size: 24px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: 0.3s;
    pointer-events: all;
}

.left_edge_category_navigation .scroll_left_btn:hover {
    background-color: #eee;
}

.right_edge_category_navigation {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    background: linear-gradient(270deg, #fff 23px, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.right_edge_category_navigation.hide {
    display: none;
}

.right_edge_category_navigation .scroll_right_btn {
    position: absolute;
    top: 4px;
    right: 5px;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: url(/image/icon_arrow_left_24.svg) no-repeat center;
    background-size: 24px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transform: rotate(180deg);
    pointer-events: all;
    transition: 0.3s;
}

.right_edge_category_navigation .scroll_right_btn:hover {
    background-color: #eee;
}

.subcategory_items {
    display: flex;
    overflow: hidden;
    overflow-x: scroll;
}

.subcategory_items::-webkit-scrollbar {
    display: none;
}

.subcategory_items .subcategory_item {
    position: relative;
    height: 44px;
    background: #eee;
    padding: 14px 22px;
    margin: 0 5px;
    border-radius: 22px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
}

.subcategory_items .subcategory_item span {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.subcategory_items .subcategory_item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    border: 3px solid #d9d9d9;
    z-index: 1;
    transition: 0.3s;
    opacity: 0;
}

.subcategory_items .subcategory_item:hover::after {
    opacity: 1;
}

.subcategory_items .subcategory_item.active {
    cursor: default;
}

.subcategory_items .subcategory_item.active::after {
    display: none;
}

.subcategory_items .subcategory_item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    border: 3px solid var(--accent-color);
    ;
    z-index: 1;
}

/*-----------------------------*/

.catalog_sorting {
    display: flex;
    align-items: center;
    margin: 7px 0;
}

.catalog_count {
    margin-right: 20px;
    font-size: 14px;
    line-height: 18px;
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.6);
}

.line_catalog_sorting {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.pre_btn_sorting {
    font-size: 14px;
    line-height: 18px;
    white-space: nowrap;
    margin-left: 20px;
    color: rgba(0, 0, 0, 0.6);
}

.catalog_sorting .dropdown {
    position: relative;
    height: 30px;
    z-index: 2;
}

.btn_sorting {
    position: relative;
    display: flex;
    align-items: center;
    height: 30px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    margin-left: 10px;
    white-space: nowrap;
}

.btn_sorting:hover {
    opacity: 0.5;
}

.icon_sort {
    height: 20px;
    width: 20px;
    background: url(/image/icon_sort.svg) center/cover;
    margin-right: 10px;

    display: none;
}

.btn_sorting span {
    margin-top: 1px;
}

.btn_sorting .arrow {
    height: 20px;
    width: 20px;
    background: url(/image/icon_arrow_down.svg) center/cover;
    margin-left: 7px;
    transition: 0.3s;
}

.btn_sorting.empty .arrow {
    transform: rotate(180deg);
}

.dropdown_menu {
    position: absolute;
    right: -1px;
    top: 43px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.4);
    transform-origin: top right;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.dropdown_menu.show {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

.btn_sort_selector {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 0;
    cursor: pointer;
    transition: 0.3s;
    line-height: 20px;
}

.btn_sort_selector::after {
    content: '';
    position: absolute;
    top: 5px;
    left: -5px;
    right: -5px;
    bottom: 5px;
    border-radius: 6px;
    background: #eee;
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

.btn_sort_selector:hover::after {
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    opacity: 1;
}

.btn_sort_selector span {
    color: #000;
    font-weight: 500;
    transition: 0.3s;
    padding-top: 2px;
}

.btn_sort_selector .icon {
    height: 24px;
    width: 24px;
    background: #000;
    margin-right: 16px;
}

.btn_sort_selector .icon.sort_thumbs_up {
    background: url(/image/icon_thumbs_up.svg) center/cover;
}

.btn_sort_selector .icon.sort_fire {
    background: url(/image/icon_fire.svg) center/cover;
}

.btn_sort_selector .icon.sort_price_up {
    background: url(/image/icon_arrow_circle_up.svg) center/cover;
}

.btn_sort_selector .icon.sort_price_down {
    background: url(/image/icon_arrow_circle_down.svg) center/cover;
}

.btn_sort_selector .icon.sort_title {
    background: url(/image/icon_sort_title.svg) center/cover;
}

.btn_sort_selector span {
    white-space: nowrap;
    width: calc(100% - 84px);
}

.btn_sort_selector .radio_btn {
    position: relative;
    height: 24px;
    width: 24px;
    margin-left: 20px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.btn_sort_selector .radio_btn::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    transition: 0.3s;
    transform: scale(0.2);
}

.btn_sort_selector:hover .radio_btn::before {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0.6);
}

.btn_sort_selector.active .radio_btn {
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.btn_sort_selector.active span {
    color: #000;
}

.btn_sort_selector.active .radio_btn::before {
    background: #000;
    transform: scale(1);
}

@media only screen and (max-width : 768px) {
    .catalog_header {
        position: relative;
        margin-top: -3px;
        margin-bottom: 9px;
    }

    .catalog_title {
        font-size: 34px;
        line-height: 38px;
    }

    .subcategory {
        margin: 12px -20px 8px;
    }

    .left_edge_category_navigation {
        width: 20px;
        background: linear-gradient(90deg, #fff 5px, rgba(255, 255, 255, 0) 100%);
    }

    .left_edge_category_navigation .scroll_left_btn {
        left: 20px;
    }

    .right_edge_category_navigation {
        width: 20px;
        background: linear-gradient(270deg, #fff 5px, rgba(255, 255, 255, 0) 100%);
    }

    .right_edge_category_navigation .scroll_right_btn {
        right: 20px;
    }

    .subcategory_items {
        padding: 0 15px;
    }

    .catalog_sorting {
        margin: 4px 0;
    }

    .catalog_count {
        margin-right: 15px;
    }

    .pre_btn_sorting {
        display: none;
    }

    .btn_sorting {
        margin-left: 15px;
    }

    .btn_sorting:hover {
        opacity: 1;
    }

    .icon_sort {
        display: none;
    }

    .dropdown_menu {
        top: 34px;
    }

    .btn_sort_selector::after {
        display: none;
    }

}

@media (max-width: 768px) and (pointer: coarse) {
    .left_edge_category_navigation .scroll_left_btn {
        display: none;
    }

    .right_edge_category_navigation .scroll_right_btn {
        display: none;
    }
}

/*------------------------------------------*/
/*---------- ### Шапка Каталога ### --------*/
/*------------------------------------------*/



/*------------------------------------------*/
/*------------------------------------------*/
/*------- Каталог (выдача товаров) --------*/
/*------------------------------------------*/
/*------------------------------------------*/

.card_items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 10px;
}

.card_items_no_result {
    position: relative;
    width: calc(100% - 20px);
    margin: 0 10px;
    color: #808080;
    text-align: center;
    padding: 140px 20px;
}

.card_items_title {
    width: 100%;
    font-weight: 600;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
}

.card_item {
    position: relative;
    width: calc(25% - 20px);
    margin: 0 10px 40px;
    color: #000;
    border-radius: 12px;
}

.card_item::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 20px;
    transition: 0.3s;
}

.card_item:hover::before {
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -12px;
    background: #F4F4F4;
}

.card_item_cover {
    position: relative;
    padding-bottom: 100%;
    background-color: #F3F3F3;
    background: url(/image/img_plug.svg) center/cover;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.card_item_cover_btn {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -80px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 8px;
    height: 50px;
    text-align: center;
    padding: 16px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.card_item_cover_btn:hover {
    background: #404040;
}

.card_item:hover .card_item_cover_btn {
    bottom: 8px;
}

.card_item_cover .label {
    display: flex;
    align-items: center;
    position: absolute;
    top: 15px;
    left: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 13px;
    color: #FFFFFF;
    background: var(--red_accent-color);
    padding: 7.5px 12px 6px;
    border-radius: 6px;
    z-index: 1;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.card_item_cover .label .label_minus {
    width: 4px;
    height: 1.5px;
    background: #fff;
    margin-right: 3px;
    margin-bottom: 1px;
}

.card_item_cover .cover_v1 {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
}

.card_item_cover .cover_v2 {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    opacity: 0;
    transition: 0.3s;
}

.card_item_cover:hover .cover_v2 {
    opacity: 1;
}

.card_item_info {
    position: relative;
    padding: 0px 10px 0 10px;
}

.card_item_title {
    position: relative;
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    cursor: pointer;
    text-overflow: ellipsis;
    height: 58px;
    padding: 10px 10px 0 10px;
    margin: 0 -10px;

    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    -ms-line-clamp: 2;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    display: box;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    transition: 0.3s;
}

.card_item_title:hover {
    opacity: 0.5;
}

.card_item_price {
    display: flex;
    align-items: flex-start;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    margin-top: 5px;
}

.card_item_price span {
    margin-right: 5px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.card_item_price .price {
    font-size: 22px;
    line-height: 28px;
    color: #000;
    font-weight: 600;
    margin-right: 3px;
}

.card_item_price.sale .price {
    color: var(--red_accent-color);
}

.card_item_price .old_price {
    position: relative;
    font-size: 17px;
    line-height: 24px;
    color: #ACACAC;
    padding: 0 2px;
    font-weight: 600;
}

.card_item_price .old_price::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: calc(50% - 2px);
    border-bottom: 2px solid var(--red_accent-color);
    pointer-events: none;
}

.card_item_price .currency {
    color: #000;
    font-weight: 600;
}

.card_item_price.sale .currency {
    color: var(--red_accent-color);
}

.card_item_price .currency_sign {
    font-size: 20px;
    line-height: 28px;
    color: #000;
    font-weight: 600;
    margin: 0;
}

.card_item_price.sale .currency_sign {
    color: var(--red_accent-color);
}

.card_item_btn {
    position: absolute;
    right: 15px;
    bottom: 0;
    width: 50px;
    height: 50px;
    background: #3284E6;
    border-radius: 16px;
    opacity: 0;
    transition: 0.3s;
    transform: scale(0.7);
    cursor: pointer;
}

.card_item_btn::before {
    content: '';
    position: absolute;
    top: 13px;
    left: 13px;
    height: 24px;
    width: 24px;
    background: url(/image/icon_arrow_down_right.svg);
    transition: 0.3s;
}

.card_item:hover .card_item_btn {
    opacity: 1;
    transform: scale(1);
}

.card_item_btn:hover {
    background: #20599f;
}

/*---- Блок: загрузить еще -----*/

.block_show_more {
    text-align: center;
    margin-top: -10px;
}

.block_show_more .amount {
    font-size: 14px;
    line-height: 18px;
    opacity: 0.6;
    margin-bottom: 6px;
}

.line_load_progress {
    position: relative;
    width: 190px;
    height: 3px;
    background: #E2E2E2;
    border-radius: 2px;
    margin: 0 auto 50px;
    overflow: hidden;
}

.line_load_progress span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background: #4B4B4B;
    border-radius: 2px;
}

.btn_show_more {
    position: relative;
    height: 50px;
    max-width: 270px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding: 15px 32px 15px;
    box-sizing: border-box;
    cursor: pointer;
    background: #F4F4F4;
    transition: 0.3s;
    margin: -24px auto 0;
}

.btn_show_more::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 25px;
    border: 3px solid #d9d9d9;
    opacity: 0;
    transition: 0.3s;
}

.btn_show_more:hover {
    background: #F4F4F4;
}

.btn_show_more:hover::after {
    opacity: 1;
}

/*------- Пагинация ---------*/

.pagination {
    display: flex;
    padding: 0;
    justify-content: center;
    margin: 24px 0 50px;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/Edge */
    user-select: none;
}

.pagination li {
    display: flex;
    margin: 0 3px;
}

.pagination li .page_link {
    position: relative;
    text-decoration: none;
    height: 40px;
    width: 40px;
    text-align: center;
    padding: 11px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #acacac;
    border-radius: 20px;
    transition: 0.3s;
    cursor: pointer;
}

.pagination li.page_item_navigate .page_link {
    position: relative;
    background: #F4F4F4;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.pagination li.page_item_navigate .page_link::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 25px;
    border: 3px solid #d9d9d9;
    opacity: 0;
    z-index: 1;
    transition: 0.3s;
}

.pagination li.page_item_navigate .page_link:hover::before {
    opacity: 1;
}

.pagination li .page_link_no {
    font-size: 18px;
    line-height: 18px;
    padding: 10px 0;
    opacity: 0.35;
    cursor: default;
}

.pagination li .page_link::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 20px;
    background: #F4F4F4;
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

.pagination li .page_link:hover::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.pagination li .page_link .icon_prev {
    position: absolute;
    top: -1px;
    left: -1px;
    height: 40px;
    width: 40px;
    background: url(/image/icon_arrow_left_24.svg) no-repeat center;
    background-size: 24px;
}

.pagination li .page_link .icon_next {
    position: absolute;
    top: -1px;
    left: -1px;
    height: 40px;
    width: 40px;
    background: url(/image/icon_arrow_left_24.svg) no-repeat center;
    background-size: 24px;
    transform: rotate(180deg);
}

.pagination .active .page_link {
    color: #000;
}

.pagination .active .page_link::after {
    display: none;
}

.pagination .disabled {
    cursor: not-allowed;
}

.pagination .disabled .page_link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

.pagination .disabled .page_link .icon_prev,
.pagination .disabled .page_link .icon_next {
    opacity: 0.25;
}

/*------- SEO текста для категорий (внизу) ---------*/

.category_description {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-dark-grey-color);
    margin-bottom: 46px;
}

.category_description p {
    margin: 0 0 16px 0;
}

.category_description b,
.category_description strong {
    color: #000;
}

.category_description h2 {
    font-size: 26px;
    margin: 0 0 16px 0;
    color: #000;
}

.category_description h3 {
    font-size: 21px;
    margin: 0 0 15px 0;
    color: #000;
}

.category_description h4 {
    font-size: 16px;
    margin: 0 0 14px 0;
    color: #000;
}

@media only screen and (max-width : 960px) {
    .card_items {
        margin: 0 -6px 10px;
    }

    .card_item {
        width: calc(33.33% - 12px);
        margin: 0 6px 18px;
        border-radius: 10px;
    }
}

@media only screen and (max-width : 768px) {
    .card_items_title {
        font-size: 26px;
        line-height: 30px;
        text-align: left;
        margin: 0 6px 13px;
    }

    .card_item::before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        border-radius: 15px;
        transition: 0.3s;

        display: none;
    }

    .card_item:hover::before {
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -6px;
        background: #F4F4F4;
    }

    .card_item_cover {
        border-radius: 10px;
    }

    .card_item_cover .cover_v2 {
        display: none;
    }

    .card_item_cover_btn {
        display: none;
    }

    .card_item_cover .label {
        top: 8px;
        left: 8px;
        font-size: 12px;
        line-height: 12px;
        padding: 6.5px 10px 5px;
    }

    .card_item_info {
        padding: 0;
    }

    .card_item_title {
        font-size: 16px;
        line-height: 18px;
        height: 44px;
        margin-bottom: 4px;

        padding: 8px 0 0 1px;
        margin: 0;
    }

    .card_item_title:hover {
        opacity: 1;
    }

    .card_item_price {
        font-size: 12px;
        line-height: 13px;
        margin-top: 2px;
    }

    .card_item_price span {
        margin-right: 4px;
    }

    .card_item_price .price {
        font-size: 18px;
        line-height: 22px;
    }

    .card_item_price .old_price {
        font-size: 12px;
        line-height: 18px;
    }

    .card_item_price .old_price::after {
        top: calc(50% - 1.5px);
        border-bottom: 1.5px solid #D20000;
    }

    .card_item_price .currency_sign {
        font-size: 18px;
        line-height: 22px;
    }

    /*---- Блок: загрузить еще -----*/

    .block_show_more {
        text-align: center;
        margin-top: -8px;
    }

    .line_load_progress {
        margin: 0 auto 26px;
    }

    .btn_show_more {
        margin-top: -6px;
        background: #F4F4F4;
        margin-bottom: 26px;
    }

    .btn_show_more::after {
        display: none;
    }

    /*------- Пагинация ---------*/

    .pagination {
        margin: -16px 0 16px;
    }

    .pagination li {
        margin: 0 3px;
    }

    .pagination li .page_link {
        height: 40px;
        width: 32px;
        padding: 10px 3px;
    }

    .pagination li.page_item_navigate {
        display: none;
    }

    .pagination li .page_link::after {
        display: none;
    }

    /*------- SEO текста для категорий (внизу) ---------*/

    .category_description {
        margin-bottom: 22px;
    }

    .category_description h2 {
        font-size: 20px;
        margin: 0 0 14px 0;
    }

    .category_description h3 {
        font-size: 18px;
        margin: 0 0 14px 0;
    }
}

@media only screen and (max-width : 600px) {
    .card_items {
        margin: 0 -5.5px 10px;
    }

    .card_item {
        width: calc(50% - 11px);
        margin: 0 5.5px 18px;
        border-radius: 10px;
    }
}

/*------------------------------------------*/
/*--- ### Карточки (выдача товаров) ### ----*/
/*------------------------------------------*/



/*------------------------------------------*/
/*------------------------------------------*/
/*------------- Карточка товара ------------*/
/*------------------------------------------*/
/*------------------------------------------*/

.content_product_card {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 44px;
}

/*------- Блок: фото товара (галерея) --------*/

.photo_pc_block {
    position: relative;
    width: calc(100% - 420px);
    margin-right: 60px;

    position: -webkit-sticky;
    /* для Safari */
    position: sticky;
    top: 105px;
}

.slider-counter {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    line-height: 15px;
    padding: 6px 8px 4px;
    border-radius: 5px;
    z-index: 1;
}

.photo_container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
}

.photo_col {
    width: calc(50% - 8px);
    margin: 0 4px 8px;
}

.photo_col.one {
    width: calc(100% - 8px);
}

.photo_item {
    display: block;
    position: relative;
    padding-bottom: 100%;
    background-color: #F3F3F3;
    background-image: url(/image/img_plug.svg);
    background-size: cover;
    background-position: 50% 50%;
    overflow: hidden;
    cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHZpZXdCb3g9IjAgMCA0OCA0OCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMjQiIGN5PSIyNCIgcj0iMjQiIGZpbGw9IndoaXRlIi8+CjxjaXJjbGUgY3g9IjI0IiBjeT0iMjQiIHI9IjIzLjUiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjEiLz4KPHBhdGggZD0iTTIwIDMySDE2TTE2IDMyVjI4TTE2IDMyTDIwLjUgMjcuNU0yOCAxNkgzMk0zMiAxNlYyME0zMiAxNkwyNy41IDIwLjVNMTYgMjBMMTYgMTZNMTYgMTZMMjAgMTZNMTYgMTZMMjAuNSAyMC41TTMyIDI4TDMyIDMyTTMyIDMySDI4TTMyIDMyTDI3LjUgMjcuNSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K') 24 24, auto;
    border-radius: 12px;
}

.photo_item div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: 50% 50%;
}

.photo_notice {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    color: var(--text-dark-grey-color);
    background: #F4F4F4;
    padding: 8px 14px 7px;
    border-radius: 12px;
}

/*------- Блок: информация о товаре --------*/

.product_info_block {
    width: 360px;
    float: right;

    /*margin-bottom: 0px;
    position: -webkit-sticky;
    position: sticky;
    top: 105px;*/
}

.product_promo_message {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: var(--red_accent-color);
    margin-bottom: 10px;
}

.product_title {
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

@media only screen and (max-width : 1160px) {
    .photo_pc_block {
        position: relative;
        width: calc(100% - 400px);
        margin-right: 40px;
        top: 0;
    }
}

@media only screen and (max-width : 768px) {
    .content_product_card {
        display: block;
        width: 100%;
        margin-bottom: 30px;
    }

    /*------- Блок: фото товара (галерея) --------*/

    .photo_pc_block {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        position: relative;
        top: 0;
    }

    .slider-counter {
        display: block;
    }

    .photo_container {
        display: flex;
        flex-wrap: nowrap;
        margin: 0 -20px;
    }

    .photo_col {
        width: 100%;
        margin: 0 5px;
    }

    .photo_item {
        border-radius: 10px;
    }

    .photo_notice {
        display: none;
    }

    /*------- Блок: информация о товаре --------*/

    .product_info_block {
        width: 100%;
        float: none;
        margin-bottom: 0;
    }

    .product_title {
        font-weight: 600;
        font-size: 24px;
        line-height: 28px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }
}

/*------------------------*/

.product_prices_group {
    position: relative;
    display: flex;
    margin-bottom: 20px;
}

.product_availability {
    position: relative;
    display: inline-flex;
    background: #F3F3F3;
    border-radius: 8px;
    padding: 6px 14px 6px 24px;
    height: 24px;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    margin-right: 10px;
}

.product_availability::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, #66C6BF 0%, #55AFA9 100%);
}

.product_artcode {
    position: relative;
    display: inline-flex;
    background: #F3F3F3;
    border-radius: 8px;
    padding: 6px 14px;
    height: 24px;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
}

.prices {
    display: flex;
    align-items: flex-start;
    position: absolute;
    top: -5px;
    right: 0;
}

.prices .old_price {
    position: relative;
    display: flex;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin-top: 3px;
    margin-right: 8px;
    color: #ACACAC;
}

.prices .old_price::after {
    position: absolute;
    content: '';
    left: -2px;
    right: -2px;
    top: calc(50% - 2px);
    border-bottom: 2px solid var(--red_accent-color);
    pointer-events: none;
}

.prices .old_price .currency {
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    margin-left: 4px;
}

.prices .price {
    display: flex;
    align-items: flex-start;
    font-weight: 600;
    font-size: 31px;
    line-height: 34px;
    margin-top: 2px;
}

.prices.sale .price {
    color: var(--red_accent-color);
}

.prices .price .currency {
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    margin-left: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.prices .price .currency_sign {
    margin-left: 5px;
}

/*------------------------*/

.product_options {
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 16px;
}

.product_options_title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
}

.product_options_title span {
    font-weight: 400;
    color: var(--text-dark-grey-color);
    margin-left: 6px;
}

.product_options_title .btn_more {
    float: right;
    font-size: 10px;
    line-height: 10px;
    font-weight: 600;
    color: #717171;
    text-transform: uppercase;
    background: #eee;
    padding: 6px 8px 5px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.product_options_title .btn_more:hover {
    color: #000;
}

.product_options_subtitle {
    font-size: 14px;
    line-height: 18px;
    color: var(--text-dark-grey-color);
    margin-top: -6px;
    margin-bottom: 10px;
}

/*-------- Конфигуратор размеров --------*/

.product_size_group {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -5px 10px;
}

.product_size_group .size_selector {
    position: relative;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    width: calc(50% - 10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 0 5px 10px;
    height: 50px;
    padding: 16px 15px;
    transition: 0.3s;
    cursor: pointer;
}

.product_size_group .size_selector.active {
    background: rgba(85, 175, 169, 0.25);
}

.product_size_group .size_selector::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 3px solid rgba(0, 0, 0, 0);
    border-radius: 10px;
    transition: 0.3s;
}

.product_size_group .size_selector:hover::after {
    border: 3px solid #ebebeb;
}

.product_size_group .size_selector.active::after {
    border: 3px solid var(--accent-color);
    ;
}

@media only screen and (max-width : 768px) {
    .product_size_group .size_selector:hover::after {
        border: 3px solid rgba(0, 0, 0, 0);
    }

    .product_size_group .size_selector.active::after {
        border: 3px solid var(--accent-color);
    }
}

/*-------- Конфигуратор подставок --------*/

.product_options_subtitle.stand {
    margin-bottom: 0;
}

.podstavka_img {
    height: 98px;
    width: 100%;
    margin-top: -3px;
    margin-bottom: 1px;
}

.podstavka_img.val3 {
    height: 98px;
    width: 100%;
    background: url(/image/stand_standart_usb.png) no-repeat center;
    background-size: auto 100%;
}

.podstavka_img.val4 {
    background: url(/image/stand_light.png) no-repeat center;
    background-size: auto 100%;
}

.podstavka_img.val5 {
    background: url(/image/stand_sensor.png) no-repeat center;
    background-size: auto 100%;
}

.podstavka_img.val6 {
    background: url(/image/stand_sensor_light.png) no-repeat center;
    background-size: auto 100%;
}

.podstavka_img.val7 {
    background: url(/image/stand_battery_2.png) no-repeat center;
    background-size: auto 100%;
}

.podstavka_img.val8 {
    background: url(/image/stand_dark_light.png) no-repeat center;
    background-size: auto 100%;
}

.podstavka_img.val9 {
    background: url(/image/stand_dark_sensor_light.png) no-repeat center;
    background-size: auto 100%;
}

.product_podstavka_group {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 0 20px;
}

.podstavka_selector {
    position: relative;
    display: flex;
    padding: 13px 16px 13px 13px;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #000;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 9px;
}

.podstavka_selector::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 66px;
    right: 16px;
    bottom: 0px;
}

.podstavka_selector + .podstavka_selector::after {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.podstavka_selector.disabled {
    color: rgba(0, 0, 0, 0.15);
    cursor: not-allowed;
}


.podstavka_selector .switch {
    position: relative;
    width: 40px;
    height: 24px;
    background: #EDEDED;
    box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    transition: 0.3s;
    margin-right: 13px
}

.podstavka_selector.active .switch {
    background: var(--accent-color);
}

.podstavka_selector.disabled .switch {
    background: rgba(0, 0, 0, 0.08);
    box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0);
}

.podstavka_selector .switch span {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 16px;
    height: 16px;
    background: #fff;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
    border-radius: 13px;
    transition: 0.3s;
}

.podstavka_selector.active .switch span {
    left: 20px;
}

.podstavka_selector.disabled .switch span {
    background: #d6d6d6;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0);
}

.podstavka_selector .title {
    width: calc(100% - 55px - 80px);
}

.podstavka_selector .plus_price {
    width: 80px;
    text-align: right;
}

/*-------- Конфигуратор персонализации (поле для имени) --------*/

.personalization {
    position: relative;
    margin-bottom: 24px;
}

.personalization::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 3px solid rgba(0, 0, 0, 0);
    border-radius: 10px;
    transition: 0.3s;
    pointer-events: none;
    z-index: 1;
}

.personalization:hover::before {
    border: 3px solid #ebebeb;
}

.personalization.complete::before {
    border: 3px solid var(--accent-color);
    ;
}

.personalization input {
    border-radius: 10px;
}

.personalization.complete input {
    background: rgba(0, 0, 0, 0.08);
    padding-right: 140px;
}

.personalization input:hover {
    border: 1px solid rgba(255, 255, 255, 0) !important;
}

.personalization .count_info {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    height: 50px;
    padding: 13px 0;
}

.personalization.complete .count_info {
    display: flex;
}

.btn_clear {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: url(/image/icon_clear_24.svg);
    opacity: 0.15;
    margin-right: 13px;
    transition: 0.3s;
    cursor: pointer;
}

.btn_clear:hover {
    opacity: 0.3;
}

.personalization .count_info .count {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0px 18px 0;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

/*-------- Кнопка в корзину --------*/

.add_to_cart {
    height: 56px;
    background: #000;
    border-radius: 10px;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    padding: 18px 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

.add_to_cart .dot {
    margin: 0 6px;
}

.add_to_cart:hover {
    background: #404040;
}

.add_to_cart.disabled {
    cursor: not-allowed;
    background: #CCCCCC;
    color: rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width : 768px) {
    .fix_mobile_add_to_cart {
        position: fixed;
        left: 0;
        right: 0;
        bottom: -90px;
        padding: 0 20px 21px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
        opacity: 0;
        transition: 0.3s;
    }

    .fix_mobile_add_to_cart.show {
        bottom: 0;
        opacity: 1;
    }

    .fix_mobile_add_to_cart .add_to_cart {
        margin: 0;
    }

    .add_to_cart .dot {
        margin: 0 4px;
    }

    .add_to_cart:hover {
        background: #000;
    }

    .add_to_cart.disabled {
        cursor: default;
        background: #CCCCCC;
        color: rgba(0, 0, 0, 0.25);
        transition: 0.3s;
    }
}

/*-------- Короткое описание товара --------*/

.short_description {
    position: relative;
    display: block;
    color: var(--text-dark-grey-color);
    margin-top: -5px;
    margin-bottom: -12px;
}

.short_description.short_text {
    font-size: 16px;
    line-height: 24px;
    max-height: 144px;
    overflow: hidden;
}

.short_description.full_text {
    margin-top: 23px;
    margin-bottom: 23px;
    overflow: visible;
}

.short_description::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    pointer-events: none;
}

.short_description.full_text::before {
    display: none;
}

.short_description p {
    margin: 0 0 16px 0;
}

.short_description strong {
    font-weight: 400;
}

.short_description.full_text strong {
    color: #000;
    font-weight: 600;
}

.btn_extended_info {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding: 22px 0;
    cursor: pointer;
}

.btn_extended_info.one {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.btn_extended_info span {
    position: relative;
}

.btn_extended_info span::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #000;
    opacity: 0;
    transition: 0.3s;
}

.btn_extended_info:hover span::before {
    width: 100%;
    opacity: 1;
}

.btn_extended_info .icon {
    margin: 3px 0;
    height: 14px;
    width: 8px;
    float: right;
    background: url(/image/icon_arrow_right_mini.svg) center/cover;
}

@media only screen and (max-width : 768px) {
    .btn_extended_info {
        padding: 23px 0;
    }

    .btn_extended_info span::before {
        display: none;
    }

    .short_description.full_text {
        margin-top: 18px;
        margin-bottom: 20px;
        overflow: visible;
    }
}

/*------------------------------------*/
/*------------------------------------*/
/*------------- Аккардеон ------------*/
/*------------------------------------*/
/*------------------------------------*/

.accordion_item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion_header {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding: 25px 0;
    cursor: pointer;
}

.accordion_header span {
    width: calc(100% - 24px);
}

.accordion_header .icon {
    height: 20px;
    width: 20px;
    margin: 0 2px;
    float: right;
    background: url(/image/icon_arrow_down.svg) center/cover;
    transition: 0.3s;
}

.accordion_header.open .icon {
    transform: rotate(180deg);
}

.accordion_body {
    display: none;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-dark-grey-color);
}

.accordion_body_description {
    display: block;
    margin-top: -5px;
    margin-bottom: 23px;
}

.accordion_body_description p {
    margin: 0 0 16px 0;
}

.accordion_body_description p {
    margin: 0 0 16px 0;
}

.accordion_body_description ul {
    margin: 0 0 16px 0;
}

.accordion_body_description li {
    position: relative;
    list-style-type: none;
    padding-left: 20px;
}

.accordion_body_description li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    height: 5px;
    width: 5px;
    background: var(--text-dark-grey-color);
    transform: translateY(-50%);
    border-radius: 2px;
}

@media only screen and (max-width : 768px) {
    .accordion_header {
        padding: 23px 0;
    }

    .accordion_body_description {
        margin-bottom: 20px;
    }
}

/*------------------------------------*/
/*--------- ### Аккардеон ### --------*/
/*------------------------------------*/


/*-------------------------------------*/
/*-------------------------------------*/
/*------ Информационные страницы ------*/
/*-------------------------------------*/
/*-------------------------------------*/

.info_page {
    display: flex;
    align-items: flex-start;
}

.info_sidebar {
    width: 340px;
    margin-right: 60px;
    border-radius: 20px;
    background: #F5F5F5;
    margin-bottom: 60px;

    position: -webkit-sticky;
    /* для Safari */
    position: sticky;
    top: 105px;
}

.info_sidebar ul {
    margin: 0;
    padding: 20px;
}

.info_sidebar li {
    position: relative;
    height: 48px;
    cursor: pointer;
}

.info_sidebar li::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 10px;
    transition: 0.3s;
    z-index: 1;
}

.info_sidebar li:hover::before {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #e3e3e3;
}

.info_sidebar li.active::before {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: var(--accent-color);
    ;
}

.info_sidebar li a {
    position: relative;
    display: block;
    height: 48px;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.6);
    transition: 0.3s;
    z-index: 1;
}

.info_sidebar li.active a {
    color: #fff;
}

.info_body {
    width: calc(100% - 400px);
    display: block;
}

.info_content {
    display: block;
    color: #000;
    margin-bottom: 54px;
}

.info_content .info_content_title {
    font-size: 42px;
    font-weight: 600;
    line-height: 46px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.phone_messengers_block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 16px 0 16px 0;
}

.phone_messengers_block .phone {
    font-size: 30px;
    line-height: 32px;
    font-weight: 600;
    margin-top: 2px;
    white-space: nowrap;
}

.phone_messengers_block .messenger {
    position: relative;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    margin-left: 15px;
    transition: 0.3s;
}

.phone_messengers_block .messenger:hover {
    opacity: 0.6;
}

.phone_messengers_block .messenger.link_tg::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: url(/image/icon_tg_color.svg) center/cover;
}

.phone_messengers_block .messenger.link_viber::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: url(/image/icon_viber_color.svg) center/cover;
}

.info_content h2 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
    margin: 20px 0 16px 0;
}

.info_content h3 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    margin: 16px 0 16px 0;
}

.info_content h4 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    margin: 16px 0 16px 0;
}

.info_content p {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 25px;
}

.info_content b {
    font-weight: 600;
}

.info_content span {
    white-space: nowrap;
}

.info_content ul {
    margin: 0 0 16px 0;
}

p.no_margin,
ul.no_margin {
    margin: 0;
}

.info_content li {
    position: relative;
    list-style-type: none;
    padding-left: 20px;
}

.info_content li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    height: 5px;
    width: 5px;
    background: var(--text-dark-grey-color);
    transform: translateY(-50%);
    border-radius: 2px;
}

.info_content a {
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    transition: 0.3s;
}

.info_content a:hover {
    color: var(--accent-color);
}

.info_content .phone {
    text-decoration: none;
}

.info_content a.phone_2 {
    white-space: nowrap;
    text-decoration: underline;
}

/*--------------------*/

.ww_about_block {
    display: flex;
}

.ww_about_block .ww_about_text {
    width: 45%;
    padding-right: 25px;
}

.ww_about_block .about_p_line {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 16px;
}

.ww_about_block .ww_about_img {
    width: 55%;
}

.ww_about_block .ww_about_img img {
    width: calc(100% + 10px);
}

/*--------------------*/

.ww_cooperation_img {
    width: 50%;
    float: right;
    margin-left: 20px;
}

@media only screen and (max-width : 1024px) {
    .ww_about_block {
        display: block;
    }

    .ww_about_block .ww_about_text {
        width: 100%;
        padding-right: 0px;
    }

    .ww_about_block .about_p_line {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 16px;
    }

    .ww_about_block .ww_about_img {
        width: 100%;
    }

    .ww_about_block .ww_about_img img {
        width: calc(100% - 8px);
    }

    /*--------------------*/

    .ww_cooperation_img {
        width: calc(100% + 10px);
        float: none;
        margin-left: -10px;
    }
}

@media only screen and (max-width : 768px) {
    .info_page {
        display: block;
    }

    .info_sidebar {
        display: none;
    }

    .info_body {
        width: 100%;
        display: block;
    }

    .info_content {
        margin-bottom: 20px;
    }

    .info_content .info_content_title {
        font-size: 32px;
        line-height: 36px;
        margin: -3px 0 14px 0;
    }

    .phone_messengers_block {
        margin: -5px 0 14px 0;
    }

    .phone_messengers_block .phone {
        font-size: 23px;
    }

    .phone_messengers_block .messenger {
        height: 24px;
        width: 24px;
    }

    .info_content h2 {
        font-size: 24px;
        line-height: 28px;
        margin: 16px 0;
    }

    .info_content h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .info_content a {
        color: #000;
        transition: 0;
    }

    .info_content a:hover {
        color: #000;
    }
}

















/*-----------------------------*/
/*-----------------------------*/
/*---------- Чекаут -----------*/
/*-----------------------------*/
/*-----------------------------*/

.cart_header {
    position: relative;
    display: flex;
    height: 80px;
    /*margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
}

.back_to_site {
    position: absolute;
    top: 29px;
    left: 0;
    display: flex;
    align-items: center;
    color: #000;
    font-size: 16px;
    line-height: 22px;
    padding-top: 1px;
    font-weight: 600;
}

.back_to_site img {
    display: flex;
    margin-top: -1px;
    margin-right: 20px;
}

.cart_head_title {
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    margin: 22px auto;
}

.label_checkout {
    position: absolute;
    top: -15px;
    right: -40px;
    z-index: 1;
}

.cart_container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    min-height: calc(100vh - 251px);
}

@media only screen and (max-width : 970px) {
    .label_checkout {
        position: absolute;
        width: 160px;
        top: -5px;
        right: -15px;
    }
}

@media only screen and (max-width : 768px) {
    .cart_header {
        display: flex;
        flex-wrap: wrap;
        height: auto;
        margin-bottom: 18px;
        padding-top: 22px;
    }

    .back_to_site {
        position: relative;
        top: auto;
        left: 0;
        display: flex;
        align-items: center;
        color: #000;
        font-size: 16px;
        line-height: 22px;
        padding-top: 1px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .cart_head_title {
        display: block;
        width: 100%;
        font-size: 32px;
        line-height: 32px;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .cart_container {
        min-height: calc(100vh - 335px);
        display: block;
    }
}

/*---- Чекаут (Блок Шаги) ----*/

.cart_stepper {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.cart_step {
    display: flex;
    align-items: center;
}

.cart_step .badge {
    height: 22px;
    width: 22px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 11px;
    margin-right: 10px;
    text-align: center;
    padding-top: 4px;
}

.cart_step .badge span {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
}

.cart_step span {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.2);
}

.cart_step_arrow {
    height: 22px;
    width: 8px;
    background: url(/image/arrow_right_grey_22.svg) center/cover;
    margin: 0 20px;
}

.cart_step.active .badge {
    background: #000;
}

.cart_step.active .badge span {
    color: #fff;
}

.cart_step.active span {
    color: #000;
}

.cart_step.complete {
    cursor: pointer;
}

.cart_step.complete .badge {
    background: #000;
}

.cart_step.complete .badge span {
    color: #fff;
    text-decoration: none;
}

.cart_step.complete span {
    color: #000;
    text-decoration: underline;
}

.cart_step_item {
    display: none;
}

.cart_step_item.active {
    display: block;
}

@media only screen and (max-width : 768px) {
    /*---- Чекаут (Блок Шаги) ----*/

    .cart_stepper {
        display: flex;
        margin: 0 -6px 18px;
    }

    .cart_step {
        display: block;
        width: calc(33.33% - 12px);
        margin: 0 6px;
        text-align: center;
    }

    .cart_step .badge {
        height: 4px;
        width: 100%;
        background: rgba(0, 0, 0, 0.1);
        color: #fff;
        border-radius: 11px;
        margin-right: 0px;
        font-weight: 600;
        font-size: 12px;
        line-height: 15px;
        text-align: center;
        margin-bottom: 4px;
    }

    .cart_step.active .badge {
        background: var(--accent-color);
    }

    .cart_step.complete .badge {
        background: var(--accent-color);
    }

    .cart_step .badge span {
        display: none;
    }

    .cart_step span {
        font-weight: 600;
        font-size: 10px;
        line-height: 14px;
        display: block;
        color: rgba(0, 0, 0, 0.2);
    }

    .cart_step_arrow {
        display: none;
    }

    .cart_step.complete span {
        text-decoration: none;
    }
}

/*---- Mono Checkout ----*/

.mono_checkout_block {
    margin-top: -5px;
    margin-bottom: 12px;
}

.mono_checkout_block .top_line {
    display: flex;
    align-items: center;
}

.mono_checkout_block .top_line .line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
}

.mono_checkout_block .top_line .title {
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
    white-space: nowrap;
    margin: 0 20px;
}

.mono_checkout_block .btn_mono_checkout {
    width: 100%;
    height: 56px;
    text-align: center;
    color: #fff;
    padding: 18.5px 20px;
    font-size: 17px;
    line-height: 22px;
    font-weight: 600;
    border-radius: 10px;
    margin: 17px 0;
    cursor: pointer;
    transition: 0.3s;
    background-color: #000;
    overflow: hidden;
}

.mono_checkout_block .btn_mono_checkout img {
    width: 276px;
}

.mono_checkout_block .btn_mono_checkout:hover {
    background-color: #313131;
}

.mono_checkout_block .bottom_line {
    display: flex;
    align-items: center;
}

.mono_checkout_block .bottom_line .line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
}

.mono_checkout_block .bottom_line .title {
    font-size: 17px;
    line-height: 20px;
    font-weight: 400;
    white-space: nowrap;
    margin: 0 20px;
    opacity: 0.4;
}

/*---- Чекаут (поля заказа) ----*/

.cart_details {
    width: calc(100% - 530px);
    margin-right: 60px;
}

.cart_heading {
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 33px;
}

@media only screen and (max-width : 768px) {
    .cart_details {
        width: 100%;
        margin-right: 0px;
    }

    .cart_heading {
        font-weight: 600;
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 18px;
    }
}

/*---- Чекаут (Блоки с полями) ----*/

.cart_subheading {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 18px;
}

.cart_subheading span {
    white-space: nowrap;
}

.cart_fields_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px -16px;
}

.cart_field_col_6 {
    width: calc(50% - 16px);
    margin: 0 8px 16px;
}

.cart_field_col_12 {
    width: 100%;
    margin: 0 8px 16px;
}

.label_error {
    display: inline-block;
    position: relative;
}

.label_error::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    height: 20px;
    width: 20px;
    background: url(/image/icon_alert_octagon_red_20.svg) center/cover !important;
    background-color: #F1CEC9;
    transition: 0.3s;
    opacity: 0;
    white-space: nowrap;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
}

.label_error.error::after {
    opacity: 1;
    visibility: visible;
}

.label_error::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    border: 2px solid #f50000;
    z-index: 1;
    border-radius: 10px;
    pointer-events: none;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.label_error.error::before {
    opacity: 1;
    visibility: visible;
}

.label_error .alert {
    display: none;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    padding: 8px 19px 0;
    color: #f50000;
}

::-webkit-input-placeholder {
    text-overflow: ellipsis;
    opacity: 1;
    transition: opacity 0.3s ease;
    transition: color 2s;
    color: rgba(0, 0, 0, 0.3);
}

::-moz-placeholder {
    text-overflow: ellipsis;
    opacity: 1;
    transition: opacity 0.3s ease;
    transition: color 2s;
    color: rgba(0, 0, 0, 0.3);
}

:-moz-placeholder {
    text-overflow: ellipsis;
    opacity: 1;
    transition: opacity 0.3s ease;
    transition: color 2s;
    color: rgba(0, 0, 0, 0.3);
}

:-ms-input-placeholder {
    text-overflow: ellipsis;
    opacity: 1;
    transition: opacity 0.3s ease;
    transition: color 2s;
    color: rgba(0, 0, 0, 0.3);
}

input {
    position: relative;
    font-family: 'TT Firs Neue';
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    line-height: 22px;
    height: 50px;
    width: 100%;
    padding: 2px 18px 0;
    font-weight: 400;
    transition: 0.5s;
    color: #000;
}

input:hover {
    border: 1px solid #8b8b8b;
}

input.error,
textarea.error {
    background: #F1CEC9 !important;
    border: 1px solid rgba(255, 24, 0, 0.3);
    transition: 0.3s !important;
}

input.error::-webkit-input-placeholder {
    transition: color 0.3s;
    color: #cc341e;
}

input.error::-moz-placeholder {
    transition: color 0.3s;
    color: #eb7969;
}

input.error:-moz-placeholder {
    transition: color 0.3s;
    color: #eb7969;
}

input.error:-ms-input-placeholder {
    transition: color 0.3s;
    color: #eb7969;
}

textarea.error::-webkit-input-placeholder {
    transition: color 0.3s;
    color: #cc341e;
}

textarea.error::-moz-placeholder {
    transition: color 0.3s;
    color: #eb7969;
}

textarea.error:-moz-placeholder {
    transition: color 0.3s;
    color: #eb7969;
}

textarea.error:-ms-input-placeholder {
    transition: color 0.3s;
    color: #eb7969;
}

select {
    position: relative;
    font-family: 'TT Firs Neue';
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    line-height: 22px;
    height: 50px;
    width: 100%;
    padding: 2px 18px 0 18px;
    font-weight: 400;
    transition: 0.5s;
    color: #000;
    cursor: pointer;
}

select:hover {
    border: 1px solid #8b8b8b;
}

.select {
    position: relative;
}

.select::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    height: 20px;
    width: 20px;
    background: url(/image/icon_arrow_down.svg) center/cover !important;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
}

.product_select::before {
    content: '';
    position: absolute;
    top: 1px;
    right: 1px;
    height: 48px;
    width: 68px;
    border-radius: 0 9px 9px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%);
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
}

select.error {
    background: #F1CEC9 !important;
    border: 1px solid rgba(255, 24, 0, 0.3);
    transition: 0.3s !important;
    color: #cc341e;
}

.cart_field_textarea {
    margin: 26px 0;
    padding: 0;
}

textarea {
    display: flex;
    font-family: 'TT Firs Neue';
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    line-height: 22px;
    height: 100px;
    width: 100%;
    padding: 14px 18px;
    font-weight: 400;
    transition: 0.5s;
    color: #000;
    resize: none;
}

.cart_shipping_items {
    display: flex;
    margin: 0 -8px;
}

.cart_shipping_item {
    position: relative;
    text-align: center;
    width: calc(33.33% - 16px);
    margin: 0 8px 16px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-dark-grey-color);
    padding: 16px 16px 14px;
    cursor: pointer;
}

.cart_shipping_item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    border: 3px solid rgba(0, 0, 0, 0);
    transition: 0.3s;
}

.cart_shipping_item:hover::after {
    border: 3px solid rgba(0, 0, 0, 0.1);
}

.cart_shipping_item.active {
    background: #FFFFFF;
    color: #000;
    transition: 0.3s;
}

.cart_shipping_item.active::after {
    border: 3px solid var(--accent-color);
}

#cart_data_recipient {
    margin-top: 26px;
    display: flex;
}

#cart_data_recipient.inert {
    display: none;
}

.cart_step_2_line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 26px 0 19px;
}

.field_shipping {
    display: none;
}

.field_shipping.active {
    display: block;
}

.field_shipping .fs_adress.active {
    display: block;
}

.field_shipping.disabled input {
    background: #E4E4E4;
    border: 1px solid #E4E4E4;
}

.field_search_box {
    position: relative;
}

.field_search_box .alert {
    display: none;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    padding: 8px 19px 0;
    color: #f50000;
}

.field_search_box::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    height: 20px;
    width: 20px;
    background: url(/image/icon_arrow_down.svg) center/cover;
    z-index: 1;
    pointer-events: none;
    transition: 0.3s;
}

.field_search_box.disabled::before {
    opacity: 0.2;
}

.field_search_box.open::before {
    transform: rotate(-180deg);
}

.field_search_box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    border: 2px solid #f50000;
    z-index: 1;
    border-radius: 10px;
    pointer-events: none;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.field_search_box.error::after {
    opacity: 1;
    visibility: visible;
}

.field_search_box.error::before {
    background: url(/image/icon_alert_octagon_red_20.svg) center/cover;
    transform: rotate(0deg);
}

.field_selected {
    display: flex;
    position: absolute;
    font-family: 'TT Firs Neue';
    border-radius: 5px;
    font-size: 16px;
    line-height: 22px;
    height: 50px;
    width: calc(100% - 50px);
    padding: 16px 19px 0;
    font-weight: 400;
    color: #000;
    opacity: 1;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
    pointer-events: none
}

.field_search_box.open .field_selected {
    opacity: 0.4;
}

.field_search_box input {
    padding-right: 48px;
}

.search_box_result {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    max-height: 0px;
    margin: 0;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow-x: scroll;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    transition: 0.3s;
}

.search_box_result.show {
    max-height: 315px;
    visibility: visible;
    opacity: 1;
    z-index: 2;
}

.search_box_result ul {
    margin: 0;
    padding: 6px;
}

.search_box_result ul div {
    display: block;
    padding: 10px 15px 9px;
    opacity: 0.35;
    font-size: 15px;
    line-height: 21px;
}

.search_box_result li {
    position: relative;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
}

.search_box_result ul li span {
    position: relative;
    display: block;
    padding: 12px 15px 9px;
    color: #000;
}

.search_box_result ul li span i {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
    font-style: normal;
}

.search_box_result ul li div {
    position: relative;
    font-size: 14px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
    padding: 0;
    text-align: left;
    margin-top: -10px;
    padding: 0 15px 9px;
    opacity: 1;
}

.search_box_result li.active span {
    background: var(--accent-color);
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
}

.search_box_result li.active span i {
    color: rgba(255, 255, 255, 0.35);
}

.search_box_result ul li.active div {
    background: var(--accent-color);
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    border-radius: 5px;
    position: relative;
}

.search_box_result ul li::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    right: 7px;
    bottom: 7px;
    background: #fff;
    border-radius: 5px;
    transition: 0.3s;
}

.search_box_result ul li:hover::before {
    background: #F4F4F4;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cart_pay_items {
    display: flex;
    flex-wrap: wrap;
    margin-top: -15px;
}

.cart_pay_item {
    width: 100%;
    display: flex;
    position: relative;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

.cart_pay_item .radio_btn {
    position: relative;
    height: 22px;
    width: 22px;
    margin-right: 20px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.cart_pay_item .radio_btn::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    transition: 0.3s;
    transform: scale(0.2);
}

.cart_pay_item:hover .radio_btn::before {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0.6);
}

.cart_pay_item.active .radio_btn {
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.cart_pay_item.active .radio_btn::before {
    background: #000;
    transform: scale(1);
}

.radio_btn_description {
    width: calc(100% - 44px);
}

.radio_btn_title {
    display: block;
    vertical-align: middle;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin-top: 1px;
}

.radio_btn_title span {
    white-space: nowrap;
    display: contents;
}

.radio_btn_title .radio_btn_title_hide {
    display: none;
}

.radio_btn_title img {
    display: inline;
    height: 19px;
    margin-left: 3px;
    margin-bottom: -4.5px;
}

@media only screen and (max-width : 370px) {
    .radio_btn_title img {
        height: 16px;
    }
}

.radio_btn_subtitle {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);

    /*background: #fff;
    padding: 13px 18px 12px;
    border-radius: 10px;
    border: solid 1px rgba(128, 134, 142, .2);
    width: calc(100% + 44px);
    margin-top: 11px;
    margin-left: -44px;
    margin-bottom: 0px;
    display: none;*/
}

/*.cart_pay_item.active .radio_btn_subtitle {
    display: block;
}

.radio_btn_subtitle::after {
    display: block;
    content: "";
    border-left: solid 1px rgba(128, 134, 142, .2);
    border-radius: 3px 0;
    position: absolute;
    top: -7px;
    left: 44px;
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
    border-top: solid 1px rgba(128, 134, 142, .2);
    background: #fff;
}*/

.radio_btn_subtitle span {
    white-space: nowrap;
}

.cart_order_info {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin-top: -18px;
}

.cart_order_info .row {
    display: flex;
    padding: 22px 0 21px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart_order_info .row .col_5 {
    width: 41.66%;
}

.cart_order_info .row .col_7 {
    width: 58.33%;
}

.cart_order_info .row .col_7.text_right {
    text-align: right;
}

.checkbox_group {
    display: flex;
    margin-top: 26px;
}

.checkbox_recipient {
    display: flex;
    cursor: pointer;
}

.checkbox {
    position: relative;
    height: 22px;
    width: 22px;
    border-radius: 5px;
    border: 2px solid rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.checkbox::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: url(/image/icon_check_black.svg) center/cover;
    opacity: 0;
    transition: 0.3s;
    transform: scale(0.4);
}

/*.checkbox:hover::before {
    opacity: 0.2;
    transform: scale(1);
}*/

.checkbox.error {
    background: rgba(255, 24, 0, 0.3) !important;
    border: 2px solid rgba(255, 24, 0, 0.3);
}

.checkbox.active {
    background: #000;
}

.checkbox.active::before {
    background: url(/image/icon_check_white.svg) center/cover;
    opacity: 1;
    transform: scale(1);
}

.checkbox_text {
    margin-left: 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin-top: 1px;
}

.checkbox_text_pk {
    width: calc(100% - 44px);
    margin-left: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 4px;
}

.checkbox_text_pk span {
    white-space: nowrap;
}

.checkbox_text_pk a {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 600;
    text-decoration: underline;
    transition: 0.3s;
}

.checkbox_text_pk a:hover {
    opacity: 0.4;
}

.cart_order_btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 10px;
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    margin-top: 26px;
    text-align: center;
    padding: 18px 20px 16px;
    cursor: pointer;
    transition: 0.3s;
}

.cart_order_btn:hover {
    background: var(--accent-color-hover);
}

@media only screen and (max-width : 768px) {
    .cart_subheading {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .cart_fields_row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -6px -12px;
    }

    .cart_fields_row.hide {
        display: none;
    }

    .cart_field_col_6 {
        width: calc(100% - 12px);
        margin: 0 6px 12px;
    }

    .cart_field_col_6.number {
        width: calc(50% - 12px);
        margin: 0 6px 12px;
    }

    .cart_field_col_12 {
        width: 100%;
        margin: 0 6px 11px;
    }

    .cart_field_textarea {
        margin: 20px 0;
        padding: 0;
    }

    .cart_shipping_items {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -6px;
    }

    .cart_shipping_item {
        width: calc(33.33% - 12px);
        margin: 0 6px 12px;
        font-size: 14px;
        line-height: 17px;
        padding: 14px 12px 12px;
    }

    #cart_data_recipient {
        margin-top: 20px;
    }

    .cart_step_2_line {
        width: 100%;
        height: 1px;
        background: rgba(0, 0, 0, 0.1);
        margin: 20px 0 17px;
    }

    .search_box_result.show {
        max-height: 315px;
    }

    .cart_order_info {
        font-weight: 500;
        font-size: 16px;
        line-height: 21px;
        margin-top: -10px;
    }

    .cart_order_info .row {
        padding: 16px 0 15px 0;
    }

    .cart_order_info .row .col_5 {
        width: 41.66%;
        padding-right: 20px;
    }

    .cart_order_info .row .col_7 {
        width: 58.33%;
    }

    .checkbox_group {
        display: flex;
        margin-top: 20px;
    }

    .cart_order_btn {
        margin-top: 20px;
    }
}

/*---- Чекаут (заказ total price) ----*/

.cart_order {
    position: relative;
    width: 470px;
    padding: 27px 30px 25px 30px;
    background: #fff;
    border-radius: 12px 12px 2px 2px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: none;
}

.cart_order::before {
    content: '';
    position: absolute;
    height: 15px;
    left: -1px;
    right: -1px;
    bottom: -12px;
    background: url(/image/paper_check.svg) no-repeat bottom;
    background-size: 100%;
}

.cart_order_total_top {
    position: relative;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid #E5E5E5;
}

.cart_order_items {
    border-bottom: 1px solid #E5E5E5;
    overflow: hidden;
}

.cart_order_item {
    position: relative;
    display: flex;
    padding: 20px 0;
    border-top: 1px solid #E5E5E5;
}

.cart_order_item .cover {
    position: relative;
    height: 110px;
    width: 110px;
    border-radius: 10px;
    background-color: #F3F3F3;
    background: url(/image/img_plug.svg) center/cover;
    margin-right: 20px;
    overflow: hidden;
}

.cart_order_item .cover .img_cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    transition: 0.3s;
}

/*---- Корзина - Информационный блок с описанием ----*/

.cart_order_item_content {
    position: relative;
    width: calc(100% - 130px);
    height: 110px;
}

.cart_order_item_title {
    position: relative;
    display: inline-block;
    width: calc(100% - 45px);
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    margin-top: 4px;
    margin-bottom: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
    transition: 0.3s;
}

.cart_order_item_title.line_3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: wrap;
}

/*---- Корзина - Кнопки Удалить товар ----*/

.remove_from_cart {
    position: absolute;
    top: -6px;
    right: -10px;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: url(/image/icon_del_40.svg) center/cover;
    cursor: pointer;
    transition: 0.3s;
}

.remove_from_cart:hover {
    opacity: 0.4;
}

/*---- Корзина - Параметры выбраного товара ----*/

.cart_order_item_parameter {
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #000;
    opacity: 0.65;
    height: 42px;
    width: calc(100% - 45px);

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*---- Корзина - количество в чекауте ----*/

.cart_order_item_quantity {
    position: absolute;
    left: 0;
    bottom: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-dark-grey-color);
}

.cart_order_item_quantity span {
    color: #000;
    font-weight: 500;
}

/*---- Корзина - Кнопки Плюс / Минус (количество товаров) ----*/

.cart_item_quantity_block {
    position: absolute;
    left: 0;
    bottom: 6px;
    display: flex;
    height: 24px;
}

.cart_item_decrement {
    display: flex;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: url(/image/icon_minus_24.svg) center/cover;
    background-color: #F4F4F4;
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
}

.cart_item_decrement:hover {
    background-color: #d0d0d0;
}

.cart_item_quantity {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    width: 30px;
    height: 24px;
    color: #000;
    padding-top: 2px;
}

.cart_item_increment {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: url(/image/icon_plus_24.svg) center/cover;
    background-color: #F4F4F4;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.cart_item_increment:hover {
    background-color: #d0d0d0;
}

/*---- Корзина - Цена товара ----*/

.cart_order_item_price {
    position: absolute;
    right: 0;
    bottom: 4px;
    display: flex;
    align-items: flex-start;
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
}

.cart_order_item_price.sale {
    color: var(--red_accent-color);
}

.cart_order_item_price span {
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    padding-left: 4px;
}

.cart_order_item_price .currency {
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
}

.cart_order_item_price .currency_sign {
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
}

.cart_order_item_old_price {
    position: relative;
    font-size: 17px;
    line-height: 24px;
    color: #ACACAC;
    padding: 0 3px;
    font-weight: 600;
    margin-top: 2px;
    margin-right: 4px;
}

.cart_order_item_old_price::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: calc(50% - 2px);
    border-bottom: 2px solid var(--red_accent-color);
    pointer-events: none;
}

/*---- Чекаут (поле для промокода) ----*/

.cart_order_promo_code {
    position: relative;
    height: 50px;
    margin-top: 26px;
    margin-bottom: 20px;
}

.cart_order_promo_code input {
    -webkit-appearance: none;
    background: #F3F3F3;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px 25px 25px 10px;
    outline: none;
    font-size: 16px;
    line-height: 22px;
    height: 50px;
    width: 100%;
    padding: 2px 150px 0 18px;
    font-weight: 400;
    transition: 0.5s;
    color: #000;
}

.cart_order_promo_code_btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 10px 22px 9px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    border-radius: 20px;
    background: #000;
    cursor: pointer;
    transition: 0.3s;
}

.cart_order_promo_code_btn div {
    position: relative;
    z-index: 1;
}

.cart_order_promo_code_btn:hover {
    transform: scale(0.95);
}

/*---- Чекаут (итоговая количество и сумма) ----*/

.cart_order_total_line_top {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
    margin-top: 20px;
}

.cart_order_total_line_top .total_right {
    float: right;
}

.cart_order_total_line {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
}

.cart_order_total_line .total_right {
    float: right;
}

.cart_order_total_end {
    position: relative;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    margin-top: 17px;
    padding-top: 17px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cart_order_total_end::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -31px;
    height: 20px;
    width: 10px;
    background: #F3F3F3;
    border-radius: 0 10px 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.cart_order_total_end::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -31px;
    height: 20px;
    width: 10px;
    background: #F3F3F3;
    border-radius: 10px 0 0 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.total_end_right {
    float: right;
    display: flex;
    align-items: flex-start;
}

.total_end_right .currency {
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    margin-left: 4px;
    margin-top: -2px;
}

.total_end_right .currency_sign {
    margin-left: 5px;
}

@media only screen and (max-width : 768px) {
    .cart_order {
        width: calc(100% + 40px);
        margin: 16px -20px 24px;
        padding: 5px 20px 15px 20px;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.15);
        border-bottom: none;
        border-radius: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    }

    .cart_order::before {
        content: '';
        position: absolute;
        height: 15px;
        left: 0;
        right: 0;
        bottom: -12px;
        background: url(/image/paper_check.svg) no-repeat bottom;
        background-size: calc(100% + 14px);
    }

    .cart_order_total_top {
        display: none;
    }

    .cart_order_item {
        padding: 16px 0;
    }

    .cart_order_item .cover {
        height: 100px;
        width: 100px;
        margin-right: 16px;
    }

    /*---- Корзина - Информационный блок с описанием ----*/

    .cart_order_item_content {
        width: calc(100% - 116px);
        height: 100px;
    }

    .cart_order_item_content a {
        display: flex;
        margin-top: 4px;
        margin-bottom: 6.5px;
        width: calc(100% - 35px);
    }

    .cart_order_item_title {
        width: 100%;
        font-size: 17px;
        line-height: 20px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .remove_from_cart:hover {
        opacity: 1;
    }

    /*---- Корзина - Параметры выбраного товара ----*/

    .cart_order_item_parameter {
        width: calc(100% - 35px);
        font-size: 14px;
        line-height: 18px;
        height: 36px;
    }

    /*---- Корзина - количество в чекауте ----*/

    .cart_order_item_quantity {
        font-size: 14px;
        line-height: 24px;
        margin-top: 0;
        position: absolute;
        left: 0;
        bottom: 3px;
    }

    /*---- Корзина - Кнопки Плюс / Минус (количество товаров) ----*/

    .cart_item_quantity_block {
        bottom: 4px;
    }

    .cart_item_quantity {
        font-size: 16px;
    }

    .cart_item_decrement:hover {
        background-color: #F4F4F4;
    }

    .cart_item_increment:hover {
        background-color: #F4F4F4;
    }

    /*---- Корзина - Цена товара ----*/

    .cart_order_item_price {
        position: absolute;
        right: 0;
        bottom: 2px;
        display: flex;
        align-items: flex-start;
        font-weight: 600;
        font-size: 20px;
        line-height: 24px;
    }

    .cart_order_item_old_price {
        margin-top: 3px !important;
        margin-right: 4px;
    }

    .cart_order_item_price span {
        margin-top: 1px;
    }

    .cart_order_item_price .currency_sign {
        font-size: 20px;
        line-height: 24px;
        margin-top: 0px;
    }

    /*---- Чекаут (поле для промокода) ----*/

    .cart_order_promo_code {
        margin-top: 20px;
        margin-bottom: 17px;
    }

    /*---- Чекаут (итоговая количество и сумма) ----*/

    .cart_order_total_line_top {
        margin-top: 17px;
    }

    .cart_order_total_end {
        font-size: 20px;
    }

    .cart_order_total_end::after {
        top: -8px;
        left: -20px;
        height: 16px;
        width: 8px;
        border-radius: 0 8px 8px 0;
    }

    .cart_order_total_end::before {
        top: -8px;
        right: -20px;
        height: 16px;
        width: 8px;
        border-radius: 8px 0 0 8px;
    }
}

/*-----------------------------*/
/*-----------------------------*/
/*------- Success Page --------*/
/*-----------------------------*/
/*-----------------------------*/

.success_container {
    display: block;
    padding-top: 60px;
    min-height: calc(100vh - 201px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.success_container.invoice {
    display: block;
    margin-top: 0;
    margin-bottom: 60px;
    min-height: auto;
}

.success {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 55px 40px 40px 40px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.success::after {
    content: '';
    position: absolute;
    top: -1px;
    left: calc(50% - 40px);
    height: 40px;
    width: 80px;
    background: #F3F3F3;
    border-radius: 0 0 40px 40px;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.success_container.invoice .success {
    padding: 40px;
}

.success_container.invoice .success::after {
    display: none;
}

.success_done {
    display: flex;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -31px;
    left: calc(50% - 30px);
    background: url(/image/icon_success_60.svg) no-repeat center;
    background-size: 60px;
    z-index: 1;
}

.success_heading {
    font-weight: 600;
    font-size: 46px;
    line-height: 50px;
    margin-bottom: 14px;
}

.success_container.invoice .success_heading {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 24px;
}

.success_text_b {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 24px;
}

.success_text {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.success_text::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -41px;
    height: 20px;
    width: 10px;
    background: #F3F3F3;
    border-radius: 0 10px 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.success_text::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -41px;
    height: 20px;
    width: 10px;
    background: #F3F3F3;
    border-radius: 10px 0 0 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.success_text b {
    font-weight: 600;
}

.success_container.invoice .success_text {
    padding-top: 24px;
}

.success_text span {
    white-space: nowrap;
}

.success_text_2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    margin-top: 14px;
}

.success .phone {
    color: #000;
    transition: 0.3s;
}

.success .phone:hover {
    opacity: 0.4;
}

.success_btn {
    display: block;
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 28px;
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    margin-top: 22px;
    text-align: center;
    padding: 18px 20px 16px;
    cursor: pointer;
    transition: 0.3s;
}

.success_btn:hover {
    background: var(--accent-color-hover);
}

@media only screen and (max-width : 768px) {
    .success_container {
        display: block;
        margin-top: -18px;
        padding-top: 40px;
        min-height: calc(100vh - 180px);
        transition: 0;
    }

    .success {
        position: relative;
        text-align: center;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        padding: 50px 27px 27px 27px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.15);
        transition: 0;
        margin-bottom: 38px;
    }

    .success::after {
        left: calc(50% - 35px);
        height: 35px;
        width: 70px;
        border-radius: 0 0 35px 35px;
    }

    .success_container.invoice {
        margin-top: -18px;
        padding-top: 20px;
    }

    .success_container.invoice .success::after {
        display: none;
    }

    .success_done {
        width: 52px;
        height: 52px;
        top: -27px;
        left: calc(50% - 26px);
        background-size: 52px;
    }

    .success_container.invoice .success {
        padding: 32px 27px 27px;
    }

    .success_heading {
        font-weight: 600;
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 12px;
    }

    .success_container.invoice .success_heading {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .success_text_b {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .success_text {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .success_text::after {
        top: -8px;
        left: -28px;
        height: 16px;
        width: 8px;
    }

    .success_text::before {
        top: -8px;
        right: -28px;
        height: 16px;
        width: 8px;
    }

    .success_text_2 {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        margin-top: 14px;
    }

    .success_btn {
        margin-top: 18px;
    }
}

/*-----------------------------*/
/*-----------------------------*/
/*---------- Подвал -----------*/
/*-----------------------------*/
/*-----------------------------*/

footer {
    background: #F4F4F4;
    padding-top: 42px;
    position: relative;
    font-size: 14px;
    line-height: 20px;
}

footer.checkout {
    background: none;
    padding-top: 0;
    margin-top: 40px;
}

footer.checkout .line {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -14px;
}

.footer_col {
    width: calc(33.33% - 28px);
    margin: 0 14px 20px 14px;
}

.footer_logo {
    display: flex;
    width: 160px;
    max-width: 100%;
    margin-bottom: 24px;
}

.label_footer {
    display: flex;
    width: 270px;
    max-width: 100%;
    margin-top: -25px;
    margin-left: -22px;
}

.text_description {
    color: rgba(0, 0, 0, 0.6);
}

.text_description p {
    margin: 0 0 12px;
}

.footer_col .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
}

.footer_col li {
    list-style-type: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 12px;
}

.footer_main_phone {
    position: relative;
    font-weight: 600;
    font-size: 21px;
    line-height: 22px;
    color: #000;
    transition: 0.3s;
}

.footer_phone {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    transition: 0.3s;
}

.footer_link {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

.footer_main_phone::after,
.footer_phone::after,
.footer_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-out;
}

.footer_main_phone:hover::after,
.footer_main_phone:focus::after,
.footer_phone:hover::after,
.footer_phone:focus::after,
.footer_link:hover::after,
.footer_link:focus::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer_accordion_body {
    display: block;
}

/*--------- Соцсети + платежные иконки + выбор языка ---------*/

.footer_block_links {
    display: flex;
    align-items: center;
}

.footer_soc {
    display: flex;
}

.footer_block_links .soc {
    position: relative;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-right: 15px;
    padding: 19px;
    transition: 0.3s;
}

.footer_block_links .soc:hover {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.7);
}

.footer_block_links .soc.link_fb::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    height: 24px;
    width: 24px;
    background: url(/image/icon_fb.svg) center/cover;
    opacity: 0.8;
}

.footer_block_links .soc.link_insta::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    height: 24px;
    width: 24px;
    background: url(/image/icon_insta.svg) center/cover;
    opacity: 0.8;
}

.footer_block_links .soc.link_tiktok::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    height: 24px;
    width: 24px;
    background: url(/image/icon_tiktok.svg) center/cover;
    opacity: 0.8;
}

.footer_block_links .soc.link_tg::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    height: 24px;
    width: 24px;
    background: url(/image/icon_tg.svg) center/cover;
    opacity: 0.8;
}

.footer_block_links .soc.link_viber::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    height: 24px;
    width: 24px;
    background: url(/image/icon_viber.svg) center/cover;
    opacity: 0.8;
}

.footer_pay {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 7px 3px;
    margin: 0 30px 0 15px;
}

.footer_pay img {
    margin: 0 4px;
}

.footer_block_links .line {
    height: 1px;
    width: 100%;
    background: #000;
    opacity: 0.1;
}

.btn_switch_theme_block {
    display: flex;
    height: 40px;
    border-radius: 20px;
    padding: 4px 2px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-left: 20px;
}

.btn_switch_theme_block .btn_switch_theme {
    position: relative;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin: 0 2px;
    cursor: pointer;
}

.btn_switch_theme_block .btn_switch_theme::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: 0.3s;
}

.btn_switch_theme_block .btn_switch_theme:hover::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.btn_switch_theme_block .btn_switch_theme.active {
    background: rgba(0, 0, 0, 0.1);
}

.btn_switch_theme_block .btn_switch_theme.active:hover::after {
    opacity: 0;
}

.btn_switch_theme_block .btn_switch_theme img {
    position: relative;
    height: 20px;
    width: 20px;
    margin: 5px;
    opacity: 0.3;
    z-index: 1;
    transition: 0.5s;
}

.btn_switch_theme_block .btn_switch_theme.active img {
    opacity: 1;
}

.btn_lang_footer {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-left: 30px;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s;
}

.btn_lang_footer:hover {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.6);
}

.btn_lang_footer.active {
    background: #fff;
}

.btn_lang_footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 20px;
    border: 2px solid #000;
    opacity: 0;
    transition: 0.3s;
}

.btn_lang_footer.active::before {
    opacity: 1;
}

.btn_lang_footer .icon_lang {
    height: 20px;
    width: 20px;
    padding: 10px;
    background: url(/image/icon_lang.svg) center/cover;
    margin: 0 10px;
}

.btn_lang_footer .line {
    width: 1px;
    height: 18px;
    background: #000;
    opacity: 0.2;
    margin-right: 15px;
}

.btn_lang_footer .lang {
    margin-top: 1px;
    font-size: 14px;
    font-weight: 500;
}

.btn_lang_footer .arrow {
    height: 20px;
    width: 20px;
    padding: 10px;
    background: url(/image/icon_arrow_right.svg) center/cover;
    margin: 0 10px 0 6px;
    transform: rotate(-90deg);
    transition: 0.3s;
}

.btn_lang_footer.active .arrow {
    transform: rotate(90deg);
}

.dropdown {
    position: relative;
    height: 40px;
    z-index: 2;
}

.dropdown_menu_lang {
    position: absolute;
    right: 0px;
    bottom: 50px;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.4);
    transform-origin: bottom right;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.dropdown_menu_lang.show {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}

.btn_lang_selector {
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    white-space: nowrap;
}

.btn_lang_selector a {
    position: relative;
    display: block;
    padding: 7px 14px 5px;
    color: #000;
}

.btn_lang_selector::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    right: 7px;
    bottom: 7px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
}

.btn_lang_selector:hover::before {
    background: #F4F4F4;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/*------- Нижняя строка подвала -------*/

.footer_down {
    padding: 31px 0 29px;
}

.down_left {
    display: inline-block;
    color: #000;
    opacity: 0.45;
}

.down_right {
    float: right;
}

.down_right a {
    color: #000;
    position: relative;
}

.down_right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-out;
}

.down_right a:hover::after,
.down_right a:focus::after {
    transform: scaleX(1);
    transform-origin: left;
}

.down_right span {
    margin: 10px;
}

@media only screen and (max-width : 1024px) {
    .footer_col {
        width: calc(33.33% - 28px);
        margin: 0 14px 20px 14px;
    }

    .footer_col_logo {
        display: none;
    }
}

@media only screen and (max-width : 768px) {
    footer {
        padding-top: 25px;
    }

    footer.checkout {
        background: none;
        padding-top: 0;
        margin-top: 30px;
    }

    footer.checkout .line {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .footer_row {
        display: block;
        margin: 0;
    }

    .footer_col {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .footer_col_contact {
        padding-bottom: 7px;
    }

    .text_description {
        color: rgba(0, 0, 0, 0.6);
    }

    .footer_col .title {
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .footer_col_contact .title {
        margin-bottom: 15px;
    }

    .footer_col li {
        display: flex;
        list-style-type: none;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 12px;
    }

    .footer_main_phone {
        font-weight: 600;
        font-size: 23px;
        line-height: 24px;
        color: #000;
        transition: 0.3s;
    }

    .footer_phone {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #000;
        transition: 0.3s;
    }

    .footer_link {
        position: relative;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #000;
    }

    .footer_main_phone::after,
    .footer_phone::after,
    .footer_link::after {
        display: none;
    }

    .footer_accordion_header {
        position: relative;
        padding: 20px 0 19px;
        cursor: pointer;
    }

    .footer_accordion_header::after {
        content: '';
        position: absolute;
        height: 20px;
        width: 20px;
        background: url(/image/icon_arrow_down.svg) center/cover;
        top: 21px;
        right: 0;
        transition: 0.3s;
    }

    .footer_accordion_header.open::after {
        transform: rotate(180deg);
    }

    .footer_accordion_header .title {
        margin-bottom: 0;
    }

    .footer_accordion_body {
        display: block;
        margin: 0px;
        padding-bottom: 5px;
        padding-left: 20px;
    }

    .footer_accordion_body .footer_link::before {
        content: '';
        position: absolute;
        top: 6.5px;
        left: -20px;
        height: 5.5px;
        width: 5.5px;
        border-radius: 2px;
        background: var(--accent-color);
    }

    /*--------- Соцсети + платежные иконки + выбор языка ---------*/

    .footer_block_links {
        display: flex;
        align-items: center;
        margin-top: 20px;
    }

    .footer_block_links .soc {
        position: relative;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.2);
        margin-right: 15px;
        padding: 19px;
        transition: 0.3s;
    }

    .footer_block_links .soc:hover {
        background: none;
        border: 1px solid rgba(0, 0, 0, 0.2);
    }

    .footer_pay {
        display: inline-flex;
        border: 0px solid rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        padding: 0;
        margin: 0 30px 0 15px;
        margin: 0;
    }

    .footer_pay img {
        margin: 0 4px;
    }

    .footer_block_links .line {
        height: 1px;
        width: 100%;
        background: #000;
        opacity: 0.1;
    }

    .btn_lang_footer {
        position: relative;
        display: flex;
        align-items: center;
        height: 40px;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.2);
        margin-left: 15px;
        white-space: nowrap;
        cursor: pointer;
        transition: 0.3s;
    }

    .btn_lang_footer:hover {
        background: none;
        border: 1px solid rgba(0, 0, 0, 0.2);
    }

    .btn_lang_footer.active {
        background: #fff;
    }

    .btn_lang_footer::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        border-radius: 20px;
        border: 2px solid #000;
        opacity: 0;
        transition: 0.3s;
    }

    .btn_lang_footer.active::before {
        opacity: 1;
    }

    .btn_lang_footer .icon_lang {
        height: 20px;
        width: 20px;
        padding: 10px;
        background: url(/image/icon_lang.svg) center/cover;
        margin: 0 10px;
    }

    .btn_lang_footer .line {
        width: 1px;
        height: 18px;
        background: #000;
        opacity: 0.2;
        margin-right: 0px;
    }

    .btn_lang_footer .lang {
        margin-top: 2px;
        font-size: 14px;
        font-weight: 500;

        display: none;
    }

    .btn_lang_footer .arrow {
        height: 20px;
        width: 20px;
        padding: 10px;
        background: url(/image/icon_arrow_right.svg) center/cover;
        margin: 0 10px 0 6px;
        transform: rotate(-90deg);
        transition: 0.3s;
    }

    .btn_lang_footer.active .arrow {
        transform: rotate(90deg);
    }

    .dropdown {
        position: relative;
        height: 40px;
        z-index: 2;
    }

    .dropdown_menu_lang {
        position: absolute;
        right: 0px;
        bottom: 50px;
        background: #fff;
        padding: 10px;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
        transform: scale(0.4);
        transform-origin: bottom right;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
    }

    .dropdown_menu_lang.show {
        transform: translateY(0px);
        visibility: visible;
        opacity: 1;
    }

    .btn_lang_selector {
        position: relative;
        cursor: pointer;
        transition: 0.3s;
        font-size: 16px;
        line-height: 24px;
        white-space: nowrap;
    }

    .btn_lang_selector a {
        position: relative;
        display: block;
        padding: 7px 14px 5px;
        color: #000;
    }

    .btn_lang_selector::before {
        content: '';
        position: absolute;
        top: 7px;
        left: 7px;
        right: 7px;
        bottom: 7px;
        background: #fff;
        border-radius: 10px;
        transition: 0.3s;
    }

    .btn_lang_selector:hover::before {
        background: #F4F4F4;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .footer_pay_mobile {
        text-align: center;
        margin-top: 25px;
        margin-bottom: -5px;
    }

    /*------- Нижняя строка подвала -------*/

    .footer_down {
        padding: 22px 0 21px;
        text-align: center;
    }

    .down_left {
        display: inline-block;
        color: #000;
        opacity: 0.45;
    }

    .down_right {
        float: none;
    }

    .down_right a {
        color: #000;
        position: relative;
        white-space: nowrap;
    }

    .down_right a::after {
        display: none;
    }

    .down_right span {
        margin: 8px;
    }
}













/*------- Анимация (три точки) загразки -------*/

@-webkit-keyframes opacity {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes opacity {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#loading span {
    -webkit-animation-name: opacity;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: opacity;
    -moz-animation-duration: 1s;
    -moz-animation-iteration-count: infinite;
}

#loading span:nth-child(1) {
    -webkit-animation-delay: 100ms;
    -moz-animation-delay: 100ms;
}

#loading span:nth-child(2) {
    -webkit-animation-delay: 300ms;
    -moz-animation-delay: 300ms;
}

#loading span:nth-child(3) {
    -webkit-animation-delay: 500ms;
    -moz-animation-delay: 500ms;
}

/*------- Анимация кнопок при незаполненых полях -------*/

.bounce {
    animation-name: bounce;
    animation-duration: .3s;
    /*animation-delay: 0.25s;*/
}

@keyframes bounce {
    0% {
        transform: translateX(0px);
        timing-function: ease-in;
    }

    37% {
        transform: translateX(10px);
        timing-function: ease-out;
    }

    55% {
        transform: translateX(-10px);
        timing-function: ease-in;
    }

    73% {
        transform: translateX(7px);
        timing-function: ease-out;
    }

    82% {
        transform: translateX(-7px);
        timing-function: ease-in;
    }

    91% {
        transform: translateX(4px);
        timing-function: ease-out;
    }

    96% {
        transform: translateX(-4px);
        timing-function: ease-in;
    }

    100% {
        transform: translateX(0px);
        timing-function: ease-in;
    }
}

/*---------------------------------*/

.main_slider_block {
    margin: 30px 0 50px;
}

.slider_item {
    background-color: #eee;
    border-radius: 12px;
}

.banner_deck {
    width: 100%;
    padding-bottom: 39.66%;
    border-radius: 12px;
    overflow: hidden;
}

.banner_mob {
    display: none;
}

@media only screen and (max-width : 768px) {
    .main_slider_block {
        margin: 0px -20px 32px;
    }

    .slider_item {
        background-color: #eee;
        border-radius: 0px;
        margin: 0;
    }

    .banner_deck {
        display: none;
    }

    .banner_mob {
        display: block;
        width: 100%;
        padding-bottom: 108.5%;
        border-radius: 0px;
    }
}

/* Dots слайдер */

.slick-dots {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -16px;
    height: 10px;
    cursor: pointer;
    z-index: 1;
}

.slick-dots li {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
    opacity: 0.2;
    display: inline-block;
    margin: 0 6px;
    transition: 0.3s;
}

.slick-dots li:last-child {
    margin-right: 0 !important;
}

.slick-dots li.slick-active {
    opacity: 1;
}

.slick-dots li button {
    display: none;
}

@media only screen and (max-width : 768px) {
    .slick-dots {
        bottom: 24px;
    }

    .slick-dots li {
        background: #fff;
        opacity: 0.2;
    }

    .slick-dots li.slick-active {
        opacity: 1;
        background: #fff;
    }
}











.categies_home_block {
    margin: 30px 0 60px;
}

.categies_home_title {
    font-size: 40px;
    line-height: 46px;
    font-weight: 600;
    margin-bottom: 20px;
}

.card_items_container_scroll {
    position: relative;
    display: flex;
    width: calc(100% + 20px);
    margin: 0 -10px 50px -10px;
    position: relative;
    overflow-x: scroll;
}

.navigation_btn_scroll {
    position: relative;
}

.scroll_left_btn {
    position: absolute;
    left: -25px;
    top: 122px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: url(/image/icon_arrow_left_24.svg) no-repeat center;
    background-size: 24px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
    z-index: 2;
    cursor: pointer;
    transform: scale(1);
    opacity: 1;
    transition: 0.3s;
}

.scroll_left_btn.hide {
    transform: scale(0);
    opacity: 0;
}

.scroll_right_btn {
    position: absolute;
    right: -25px;
    top: 122px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: url(/image/icon_arrow_left_24.svg) no-repeat center;
    background-size: 24px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    cursor: pointer;
    transform: scale(1) rotate(180deg);
    opacity: 1;
    transition: 0.3s;
}

.scroll_right_btn.hide {
    transform: scale(0) rotate(180deg);
    opacity: 0;
}

.card_items_container_scroll .card_items {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
}

.card_items_container_scroll .card_item {
    position: relative;
    width: 275px;
    margin: 10px 10px 24px;
    color: #000;
    border-radius: 12px;
}

/* Для браузеров на движке WebKit (Chrome, Safari) */
.card_items_container_scroll::-webkit-scrollbar {
    height: 4px;
    background-color: #f0f0f0;
    border-radius: 2px;
    cursor: pointer;
}

.card_items_container_scroll::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 2px;
    cursor: grab;
}

.card_items_container_scroll::-webkit-scrollbar-thumb:hover {
    background-color: #000;
}

/* Для браузеров на движке Gecko (Firefox) */
scrollbar {
    -moz-appearance: none;
    height: 4px;
    background-color: #f0f0f0;
    border-radius: 2px;
    cursor: pointer;
}

scrollbar-thumb {
    background-color: #888;
    border-radius: 2px;
    cursor: grab;
}

scrollbar-thumb:hover {
    background-color: #000;
}

@media only screen and (max-width : 768px) {
    .card_items_container_scroll {
        width: calc(100% + 40px);
        margin: 0 -20px 0px -20px;
    }

    .navigation_btn_scroll {
        display: none;
    }

    .card_items_container_scroll .card_items {
        display: flex;
        flex-wrap: nowrap;
        margin: 0 15px;
    }

    .card_items_container_scroll .card_item {
        position: relative;
        width: 165px;
        margin: 0px 5px 24px;
        color: #000;
        border-radius: 12px;
    }

    .slider_home_block {
        width: 100%;
        height: 440px;
        background-size: 100%;
        border-radius: 16px;
        overflow: hidden;
        margin: 20px 0 30px;
    }

    .categies_home_block {
        margin: 30px 0 30px;
    }

    .categies_home_title {
        font-size: 26px;
        line-height: 30px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .categies_home_block .nav_menu_items {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -20px -12px;
    }

    .categies_home_block .nav_menu_item {
        width: calc(50% - 12px);
        margin: 0 6px 12px;
        border-radius: 10px;
    }

    .categies_home_block .nav_menu_item::before {
        display: none;
    }

    .categies_home_block .nav_menu_item_cover {
        display: block;
        position: relative;
        width: 100%;
        padding-bottom: 133%;
        border-radius: 10px;
        overflow: hidden;
    }

    .categies_home_block .nav_menu_item_cover .cover {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url(/image/img_plug.svg) center/cover;
        transition: 0.3s;
    }

    .categies_home_block .nav_menu_item_cover .cover::before {
        content: '';
        position: absolute;
        left: -20px;
        right: -20px;
        bottom: -20px;
        height: 140px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
    }

    .categies_home_block .nav_menu_item:hover .nav_menu_item_cover .cover {
        filter: none;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .categies_home_block .nav_menu_item_cover .title {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        color: #fff;
        padding: 0 16px;
        margin-bottom: 16px;
        transition: 0.3s;
        text-shadow: 0 2px 25px #000;
    }

    .categies_home_block .nav_menu_item:hover .nav_menu_item_cover .title {
        margin-bottom: 16px;
        transform: translateY(0%);
    }
}
