/* navy: #3C7A76; */
:root {
	--main-color: #2f2f2e;
    --button-color: #FF7101;
    --no-select-tab: #63635e;
    --footer-bg: #f2f2f2;
    --color-white: #ffffff;
    /* --color-footer-line-mobile: rgba(255, 255, 255, 0.25); */
    --color-footer-line-mobile: #4A4A4A;
    /* box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3); */
    --lang-header-color: #554545;
    --footer-bg-bottom: #2a2a28;
}
html {
    height: 100%;
}
body {
    height: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    color: #030303;
    min-width: 320px;
}
.main-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    background-image: url(../images/main_bg.png);
    background-size: inherit;
}
.main_block {
    margin: 0 auto;
    height: max-content;
}
.main {
    flex: 1 0 auto;
}
.header,
.footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.1;
    font-weight: bold;
    font-family: inherit;
    color: #0a0a28;
}
.h1 {
    font-weight: 600;
    font-size: 42px;
    line-height: 51px;
}
.h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #000000;
    margin-bottom: 30px;
}
.h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    margin-bottom: 30px;
}
.h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}
.h5 {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    margin: 0 0 5px;
}
a {
    color: inherit;
    text-decoration: underline;
    transition: all .5s ease;
}
a:hover,
a:active {
    text-decoration: none;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row:after,
.clearfix:after {
    clear: both;
    content: " ";
    display: block;
}

.hidden {
    display: none !important;
}

.center {
    text-align: center;
}

.fleft {
    float: left;
}

.fright {
    float: right;
}

.nowrap {
    white-space: nowrap;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    text-align: left;
}

.table th,
.table td {
    padding: 8px;
    vertical-align: top;
    border: 1px solid #e8e8e1;
}

.table_striped tbody tr:nth-of-type(odd) {
    background-color: #f5f6f7;
}

.fit_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label_block {
    display: block;
    margin-bottom: 5px;
}

.comment_btn-group {
    display: flex;
    justify-content: center;
}

/* Form */
.form_group {
    position: relative;
    margin-bottom: 20px;
}

.form_group:last-child {
    margin-bottom: 20px;
}

.form_textarea {
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    height: 100px;
    background: #FFFFFF;
    border: 1px solid #c6c6c6;
    padding: 15px 15px;
    width: 100%;
    border-radius: 10px;
}

.form_input {
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #c6c6c6;
    padding: 0 15px;
    width: 100%;
    border-radius: 10px;
}


.type_WarehouseDoors {
    margin-top: 20px;
}

.type_WarehouseDoors .form_input {
    margin-bottom: 20px;
}


.form_select {
    width: 100%;
    height: 39px;
    line-height: 35px;
    padding: 0 35px 0 15px;
    border: 2px solid #e1e8ed;
    border-radius: 2px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url(../images/select_arrow.png);
    background-position: right 12px center;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-top: 5px;
}

.form_placeholder {
    font-size: 16px;
    line-height: 18px;
    color: #000000;
    margin-bottom: 10px;
}

.form_placeholder.active,
.filled .form_placeholder,
.placeholder_focus.error ~ label ~ .form_placeholder,
.placeholder_focus:focus ~ .form_placeholder {
    font-size: 85%;
    background: rgb(255, 255, 255);
    padding: 0 5px;
    top: -5px;
    cursor: default;
    color: rgb(146, 146, 146);
}

.placeholder_focus:-webkit-autofill,
.placeholder_focus:-webkit-autofill:hover,
.placeholder_focus:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #fff inset;
    box-shadow: 0 0 0 30px #fff inset;
    -webkit-text-fill-color: inherit !important;
}

.form_placeholder.active,
.filled .form_placeholder,
.placeholder_focus.error ~ label ~ .form_placeholder,
.placeholder_focus:focus ~ .form_placeholder,
.placeholder_focus:-webkit-autofill ~ .form_placeholder,
.placeholder_focus:-webkit-autofill:focus ~ .form_placeholder,
.placeholder_focus:focus ~ .form_placeholder {
    font-size: 85%;
    background: rgb(255, 255, 255);
    padding: 0 5px;
    top: -5px;
    cursor: default;
    color: rgb(146, 146, 146);
}

.form_placeholder {
    pointer-events: none;
}

.captcha {
    display: inline-block;
    vertical-align: top;
    margin: 0 17px 10px 0;
}

.form_captcha {
    display: inline-block;
    position: relative;
    margin: 0 0 0 17px;
    vertical-align: top;
}

.input_captcha {
    width: 130px;
    line-height: 38px;
    vertical-align: top;
    height: 40px;
}

.secret_number {
    border: 1px solid #e8e8e1;
    padding: 9px;
    border-radius: 2px;
    background: #f5f8f9;
    display: inline-block;
    position: relative;
    text-shadow: 1px 1px #38c0f3, -1px 1px mediumturquoise, -1px -1px mediumturquoise, 1px -1px mediumturquoise;
    color: white;
    font-weight: bold;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    pointer-events: none;
    cursor: pointer;
}

/*.secret_number:before {
    content: "";
    position: absolute;
    top: 10px;
    right: -15px;
    bottom: -15px;
    left: 0;
    z-index: -1;
    background: linear-gradient(-45deg,
    rgba(72, 209, 204, 0) 2px, mediumturquoise 3px, rgba(72, 209, 204, 0) 3px ) repeat;
    background-size: 4px 4px;
}*/

.fn_validate_register .form_group:last-child,
.fn_validate_login .form_group:last-child {
    display: flex;
    justify-content: space-between;
}

.fn_validate_register .main-btn {
    margin: 0;
}

.fn_validate_register .form_group:last-child .main-btn,
.fn_validate_login .form_group:last-child .main-btn {
    margin: 0;
    height: 40px;
}
.auth_page .register_wrapper .main-btn{
    margin-top: 30px;
}

.fn_validate_register .form_group:last-child .main-btn,
.fn_validate_register .form_group:last-child .orange-btn {
    width: 150px;
    margin: 0;
}

.main-btn-nomargin {
    margin: 0 !important;
}

.fn_validate_login .form_group:last-child .orange-btn {
    margin: 0;
}

.frm_gr {
    text-align: center;
}

.secret_number:after {
    content: attr(data-name);
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: -2;
    text-shadow: 1px 1px white,
    2px 2px white,
    3px 3px white,
    4px 4px white;
    color: white;
    transition: all 1s;
}

.message_error {
    clear: both;
    padding: 10px 20px;
    margin-bottom: 20px;
    color: #f00;
    background-color: #ffcaca;
    border: 1px dotted #ff4545;
}

.message_success {
    padding: 11px 23px;
    margin-bottom: 25px;
    color: #ffffff;
    background-color: #ff6600;
    text-transform: uppercase;
}

.error {
    color: #f00;
    display: block;
    font-size: 13px;
}

.header_bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.header_bottom.fixed {
    position: fixed;
    z-index: 997;
    top: 0;
    left: 0;
    width: 100%;
    animation: fixedMenu .5s;
}
@-webkit-keyframes fixedMenu {
0%{top:-100px}
100%{top:0}
}
@keyframes fixedMenu {
0%{top:-100px}
100%{top:0}
}

.header_middle.fixed {
    position: fixed;
    z-index: 99;
    top: 42px;
    left: 0;
    width: 100%;
}
.top_nav.fixed{
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
}

.transfer_class {
    z-index: 99999;
}

#sm_logo {
    float: right;
    font-size: 0;
    margin-left: 25px;
    margin-top: -10px;
}

#sm_logo img {
    vertical-align: top;
}

.ya_map {
    width: 100%;
    min-height: 450px;
}

.ya_map iframe {
    width: 100%;
}

.social_reg {
    margin-top: 20px;
}

.social_reg .social-login {
    display: flex;
    justify-content: center;
}
.social_reg .social-login a:first-child{
    margin-right: 40px;
}

.social_reg .social-txt {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.social_reg svg {
    width: 60px;
    height: 60px;
}

.promo_img {
    position: absolute;
    max-width: 60px;
    max-height: 60px;
    top: 0;
    left: 0;
}

.comment_product a {
    text-decoration: none;
}

.browsed_products{
    margin-top: 60px;
}

.comment_product a:hover {
    text-decoration: underline;
    color: var(--button-color);
}

.dropdown {
    display: none;
}

.active.cat_switch::after,
.active .angle_icon,
.sort_link.active_down span::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.block {
    background-color: #fff;
}

.padding {
    padding: 20px 15px 25px;
}

header a,
.top_item,
.callback,
.search_button,
.button,
.slick-next::before,
.slick-prev::before,
.category_link,
.arrow_right,
.breadcrumbs a,
.coupon_button,
.page_link,
.tab_navigation a,
.active.cat_switch::after,
.angle_icon,
.sort_link.active_down span::after {
    transition: all 0.2s ease;
}

/*Кнопки*/
.button,
.disable_button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0px 25px;
    font-weight: bold;
    font-family: inherit;
    font-size: 12px;
    line-height: 36px;
    color: inherit;
    border: 2px solid #f2bd0b;
    border-radius: 2px;
    background-color: #fff;
    text-decoration: none;
    text-align: center;
}

.button {
    cursor: pointer;
}

.button:hover {
    background-color: #f2bd0b;
    color: #fff;
}

.buy {
    padding: 0px 20px;
    line-height: 30px;
    border: 2px solid #e5e5e5;
}

.buy:hover {
    border-color: #f2bd0b;
    background-color: #fff;
    color: inherit;
}

.wishlist_button {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
    border-radius: 5px;
    /* padding: 10px; */
    border: 1px solid #E7E7E7;
    background: #fff;
    background-image: url(../images/favorite.svg);
    background-repeat: no-repeat;
    background-size: 65%;
    background-position: center;
}

.wishlist_button.selected {
    background-image: url(../images/favorite-sel.svg);
}

/* Header */

header a {
    text-decoration: none;
}

.top_nav {
    background: #f2f2f2;
    height: 42px;
}

.top_nav-txt {
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin: 0;
}

.menu_switch {
    position: relative;
    cursor: pointer;
}

.menu_switch::before {
    content: "";
    width: 46px;
    height: 46px;
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(../images/stats.png) no-repeat;
}

.openmenu .menu_switch::before {
    width: 14px;
    height: 14px;
    top: 12px;
    left: 17px;
    background-position: -48px -320px;
}

.menu_wrapper {
    display: flex;
    justify-content: space-between;
}

.nav-header-wrapper {
    width: 55%;
    height: 46px;
}

.menu_group_header {
    /* display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 50%;
    max-width:60%; */
    margin-left: 30px;
    height: inherit;
}

.menu_list ul li a span {
    color: #686666;
    font-size: 12px;
    line-height: 22px;
    font-weight: bold;
}


.cur_switch,
.lang_switch {
    cursor: pointer;
}

.informer .dropdown {
    position: absolute;
    z-index: 2;
    background-color: #fff;
    border: 1px solid #e8e8e1;
    top: 46px;
    right: -1px;
    min-width: calc(100% + 2px);
    font-size: 12px;
}

.informer .dropdown_item {
    display: block;
    padding: 5px 0;
    white-space: nowrap;
}

.informer .dropdown_item:hover {
    background-color: #e8e8e1;
}

.informer.languages {
    position: relative;
}

.wish_icon,
.compare_icon,
.angle_icon {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 14px;
    background-repeat: no-repeat;
    background-image: url(../images/sprite.png);
}

.wish_icon {
    background-position: 0px -15px;
}

.compare_icon {
    background-position: 0px 0px;
}

.angle_icon {
    height: 10px;
    background-position: 0px -32px;
}

.logo {
    display: block;
    max-width: 185px;
    height: 75px;
}

.logo img {
    margin-top: 2px;
    margin-bottom: 2px;
}

.cart_counter {
    position: absolute;
    top: -5px;
    left: 18px;
    width: 19px;
    height: 19px;
    line-height: 19px;
    border-radius: 100%;
    background-color: #f2bd0b;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
}

.informer_counter,
.cart_total {
    font-size: 11px;
    font-weight: 500;
    color: #FFFFFF;
    border: 2px solid #F7F7F7;
    background: var(--button-color);
    height: 22px;
    min-width: 22px;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: absolute;
    right: -15px;
    top: -8px;
    z-index: 11
}

.cart_total {
    right: -54px;
    width: 62px;
    border-radius: 800px;
}

.informer_text {
    font-size: 14px;
    color: #929292;
    position: relative;
    z-index: 10;
    margin-top: 3px
}

.category_main_image img {
    width: 100%;
    object-fit: cover;
    transition: all .3s ease
}

.contact-form-wrapper {
    display: flex;
    justify-content: space-between;
}

.contact-form-left,
.contact-form-right {
    display: flex;
    flex-flow: column;
    width: 48%;
}

.delivery_companies .delivery_company {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    
}
.delivery_companies .delivery_company:first-child{
    margin-right: 0px;
}

.delivery.paymentblock {
    margin-bottom: 0;
}

.form-btn-wrapper {
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 40px;
    margin-bottom: 40px;
}

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

.novaposhta_types_inputs label {
    width: 200px;
}

.times,
.phones {
    position: relative;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #000000;
}
.phones{
    color: #030303;
    font-size: 16px;
    font-weight: 400;
    align-items: center;
    gap: 5px
}
.header_phone_icon.feedback_little_icon {
    display: flex;
}
.header_phone_icon.feedback_little_icon svg{
    width: 28px;
    height: 28px
}
.fn_show_phone {
    border-bottom: 1px dashed #030303;
    transition: all .5s ease;
}
.fn_show_phone:hover {
    border-color: transparent;
}
.phones_container{
    min-width: 145px;
}

.header_btn{
    background-color: transparent;
    border: 1px solid #F07830;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #F07830;
    padding: 11px;
    width: 100%;
    max-width: 145px;
    cursor: pointer;
    transition: all .5s ease;
    text-align: center;
}

#fn_our_shops {
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 660px;
}
.our_shops_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    column-gap: 100px;
    padding-left: 30px;
}
.our_shops_item a{
    border-bottom: 1px solid #030303;
    margin-top: 8px;
    display: block;
    text-decoration: none;
    max-width: max-content;
}
.our_shops_item a:hover{
    border-color: transparent;
}
.our_shops_item .phones_container a{
    text-decoration: none;
    border: none;
    margin-top: 3px;
}
.mob_menu_line {
    width: 1px;
    height: 48px;
    background: #4A4A4A;
}
.our_shops_top_wrapper{
    display: none!important;
}
.header_btn:hover{
    border-color: #aaa;
    color: #aaa;
}

.times_inner,
.email_inner,
.phones_inner {
    position: relative;
    display: inline-block;
}
.email_inner{margin-top: 10px;}


.times_inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -26px;
    width: 20px;
    height: 20px;
    background: url(../images/calendar.svg);
    background-repeat: no-repeat;
}

.email_inner::before {
    content: '';
    position: absolute;
    top: 0px;
    left: -28px;
    width: 20px;
    height: 20px;
    background: url(../images/email.svg);
}
.foot_wh .email_inner::before,
.foot_wh .times_inner::before{
    filter: invert(1);
}

.phones_inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 22px;
    height: 22px;
    background: url(../images/phone.svg);
}
.phones_header {
    position: relative;
    display: inline-block;
}
.company_phone_text {
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    color: #525252;
}
/* .phones_inner::after {
    content: '';
    position: absolute;
    cursor: pointer;
    top: 0;
    right: -20px;
    width: 16px;
    height: 16px;
    background: url(../images/arrow-down.svg);
    background-size: 100%;
} */
.phones_dropdown {
    display: none;
    position: absolute;
    top: 33px;
    left: -30px;
    width: calc(100% + 60px);
    z-index: 10;
    border-top: 2px solid var(--footer-bg);
    padding: 10px 15px;
    background: #FFFFFF;
    margin: 0;
    border-radius: 0 0 10px 10px;
}

.phones_dropdown-item {
    padding: 5px;
    list-style-type: none;
}

.phones_dropdown-item:hover a{
    color: var(--button-color);
}

.social_links,
.social_links a {
    display: flex;
    align-items: center;
}

.social_links a {
    position: relative;
}

.social_links a:nth-child(2) {
    margin: 0 30px;
}

.header_middle {
    background: #FFFFFF;

}

.header_middle .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 86px;
}

.menu_group_header_menu {
    flex: 30%;
    margin: 0 10px 0 65px;
}

.menu_group_header_menu .menu_list_1 {
    display: flex;
    justify-content: space-between;
}

.menu_group_header_menu .menu_link span {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.account_link,
.informer,
.cart_info,
.informer a,
.informer_link {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* .cart_info {
    flex-direction: column;
} */

.callback {
    display: block;
    /* float: left; */
    padding: 10px 14px;
    line-height: 20px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    background: #303030;
    border-radius: 10px;
    color: #fff;
    width: auto;
    /* margin-left: auto; */
    /* max-width: 250px; */
    transition: all .5s ease;
    border: 2px solid #303030;
}

.callback:hover {
   background-color: transparent;
   color: #303030;
}
.foot .callback:hover {
    background: transparent;
    color: var(--button-color);
    text-decoration: none;
}

.header_informer {
    display: flex;
    align-items: center;
}
.header_informer > div{
    padding: 0 36px
}
.header_informer > div:first-child{
    padding-left: 0;
}
.header_informer > div:last-child{
    padding-right: 0;
}
.header_informer > div:last-child{
    border-right: 0;
    margin-right: 42px;
    padding-right: 0;
}
.header_informer > div:not(:last-child)::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #DADADA;
    top: 0;
    right: 0

}
.account {
    position: relative
}
.header_informer svg {
    width: 24px;
    height: 24px
}

.header_bottom {
    background: #F7F7F7;
    height: 88px;
}

.search {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: #f9f9f9;
    border: 1px solid #dedede;
    border-radius: 10px;
}

.search_input {
    width: 100%;
    height: 50px;
    padding: 0 45px 0 15px;
    border: none;
    background: none;
    font-size: 14px;
    line-height: 18px;
    color: #929292;
    font-family: 'Montserrat', sans-serif;
}

.search_button {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: unset;
    width: 45px;
    height: 50px;
    line-height: 31px;
    padding: 0;
    font-size: 0;
    color: #fff;
    cursor: pointer;
}

.categories {
    position: relative;
}

.menu_icon {
    vertical-align: middle;
}

.header_bottom .categories_menu .cat_switch {
    display: none;
}

.header_bottom .category_item:hover > .subcategory {
    opacity: 1;
    visibility: visible;
    transform: translateX(390px);
    pointer-events: auto;
}

.header_bottom .level_1 .category_item {
    padding: 0;
    margin-bottom: 0;
    padding: 0 20px
}
.header_bottom .level_1 .category_item a {
    padding: 12px 0;
    border-bottom: 1px solid #DEDEDE;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.header_bottom .level_1 .category_item:last-child a {
    border-bottom: none;
}

.header_bottom .level_2 .category_item {
    height: auto;
}

.header_bottom .subcategory {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 280px;
    background: #F7F7F7;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(350px);
    box-shadow: 0px 4px 13px 0px #0e003021;
    transition: all .3s ease;
    height: 100%;
    padding:8px 15px;
    pointer-events: none;
}

.header_bottom .level_2 .category_item-img {
    margin-right: 10px;
}

.header_bottom .level_2 li {
    position: static;
}

.header_bottom .subcategory .category_item {
    display: flex;
    align-items: center;
    padding: 0px;
    margin: 0;
}
.header_bottom .level_2 .category_link {
    height: auto!important;
    border-bottom: none!important
}
.header_bottom .subcategory .category_item:last-child {
    border: none;
}

.header_bottom .subcategory .category_item:not(:last-child) {
    margin-right: 0;
}

.header_bottom .subcategory .category_link {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #535353;
}

.header_bottom .subcategory .category_link:hover {
    text-decoration: underline;
    color: #FFAB01;
}

.header_bottom .level_2 .category_item:hover .level_3 {
    display: block;
}

.header_bottom .categories_menu .level_3 {
    left: 100%;
    top: 0px;
    border-left: 3px solid var(--main-color);

}

.header_bottom .categories_menu .level_4 {
    display: none;
    top: 0;
    left: 100%;
    max-height: 374px;
    overflow-y: auto;
}

.header_bottom .level_3 .category_item:hover .level_4 {
    display: block;
}
.header_bottom .categories_nav .categories_menu{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 8px 0;
    /* gap: 19px */
}
.categories_nav .categories_menu {

    display: grid;
    grid-template-columns: 247px 1fr 1fr;
    align-items: center;

    height: 100%;
}
.cat_nav .cat_menu {
    column-gap: 32px;
    row-gap: 25px; 
}
.cat_nav .cat_menu {
    display: flex;
    flex-direction: column;
}

.header_bottom .subcategory .cat_switch {
    display: none;
}

.subheader .categories_nav .categories_menu .category_item {
    /* display: flex; */
    flex-direction: column;
    justify-content: flex-end;
    /* align-items: center; */
    width: 100%;
    height: 100%;
}
.category_item_level-1{
    width: 100%;
    padding-top: 15px;
    /* margin-left: 20px;
    padding-left: 20px */
}
.category_item_level-1:nth-child(3){
    padding-left: 40px
}
.category_item_level-1:nth-child(2){
    padding-left: 50px
}

.subheader .category_item span {
    text-align: left;
}

.subheader .categories_nav .subcategory .category_item {
    width: 100%;
}

.category_item {
    cursor: pointer;
}

.category_link {
    display: block;
    width: fit-content;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #323232;
    position: relative;
    cursor: pointer;
    line-height: 1.5;
    transition: all .3s ease;
}
.category_link  span {
    /* margin: auto 0; */
    width: fit-content;
    line-height: 1.3;
    max-width: 100%;
}

.main_link {
    color: #030303;
}
.category_link svg path{
    stroke: #fff;
}
.header_bottom .category_link{
    display: flex;
    align-items: center;
}
.header_bottom .category_link svg{
    transition: all .5s ease;
    margin-left: 5px;
}
.header_bottom .category_link:hover svg{
    transform: rotate(180deg);
}
.subheader_categories .container{
    width: 100%;
    margin: 0 auto;
    height: 450px;
    position: relative;
}

.category_item .arrow_right {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 12px;
    margin-top: -8px;
    font-size: 0;
    color: #fff;
}

.cat_switch {
    position: absolute;
    top: -4px;
    right: -42px;
    width: 40px;
    height: 30px;
}

.cat_switch.active {
    top: -10px;
}

.cat_switch::after {
    content: "";
    position: absolute;
    top: 11px;
    right: 15px;
    width: 16px;
    height: 14px;
    background: url(../images/arrow-bottom.svg) no-repeat;
}

.menu_eventer {
    padding-right: 25px;
    display: flex;
    align-items: center;
}

.menu_eventer .cat_switch {
    position: relative;
    display: flex;
    width: 24px;
    height: 18px;
    top: unset!important;
    right: unset!important;
}

.menu_eventer .cat_switch::after {
    background: url(../images/arrow-down.svg) no-repeat;
    position: relative;
    width: 24px;
    height: 18px;
    top: unset;
    right: unset;
    background-position: center;
}

.subheader {
    position: relative;
    /* background: url(../images/main_banner_new.jpg) no-repeat; */
    /* background: url(../images/sub_bg_new.jpg) no-repeat; */
    /* background-size: cover;
    background-position: center; */
    height: 450px;
    /* max-width: 1920px; */
    width: 100%;
    min-width: 320px;
    /* display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; */
}
/* .subheader:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.6);
    z-index: 2;
} */
.banner_bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.subheader .subcategory .category_link {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    height: auto;
    margin: 0;
    display: block;
    width: 100%;
    text-align: left;
    transition: all .5s ease;
}

/* .subheader .categories_menu .category_item {
    padding-bottom: 50px;
    padding-top: 50px;
} */

.subheader .subcategory .category_item {
    padding-bottom: 0;
    padding-top: 0;
}

/* .subheader .categories_menu .category_item:nth-child(1) {
    padding-right: 15px;
    padding-left: 15px;
} */

.subheader .categories_menu .category_item:nth-child(4) {
    padding-right: 15px;
    padding-left: 15px;
}

.subheader .subcategory .category_item:first-child,
.subheader .subcategory .category_item:last-child {
    padding-right: 0;
    padding-left: 0;
    border: none;
}

.subheader .subcategory .category_item:nth-child(4) {
    padding-right: 0;
    padding-left: 0;
}

.subheader .subcategory .category_link:hover {
    text-decoration: underline;
    color: #FFAB01;
}

.subheader_categories {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
.subheader_categories .level_1.categories_menu{
   /*  min-height: 250px; */
    height: 100%;
}
.subheader .categories_nav {
    height: 100%;
}

.subheader .category_item-img {
    display: none;
}

.subheader .subcategory .category_item-img {
    display: block;
}

.subheader .subcategory .category_item {
    margin-bottom: 17px;
}

.subheader .level_2.subcategory .category_item-img {
    margin-right: 20px;
}

.subheader .category_item-main {
    /*position: absolute;*/
    /*top: 12%;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    opacity: 0;
    transition: all 0.3s linear;
}

.subheader .category_item-main svg {
    width: 100%;
    height: 60px;
    /* filter: drop-shadow(0px 2px 1px black); */
}

.subheader .category_item-main svg g {
    fill: #fff;
}

.subheader_categories .level_3.subcategory {
    display: none !important;
}

.subheader_categories .category_link {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    /* text-align: center; */
    color: #FFFFFF;
    /* max-width: 390px; */
    /* margin: 0 auto; */
}

.subheader .bt {
    position: absolute;
    background: rgba(43, 43, 43, 0.4);
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 100%;
}

.subheader .subcategory {
    margin-top: 20px;
    opacity: 1;
    transition: all 0.3s linear;
    display: grid;
    column-gap: 12px;
    grid-template-columns: repeat(2, 1fr);
}
/* .subheader .category_item:first-child{
    padding-right: 50px;
} */
/* .subheader .category_item:last-child{
    padding-left: 50px;
} */
.subheader .category_item {
    transition: all 1s ease;
}

.subheader .category_item.sub-1 {
    background: rgba(91, 61, 0, 0.5);
}

.subheader .category_item.sub-2 {
    background: rgba(113, 0, 0, 0.5);
}

.subheader .category_item.sub-3 {
    background: rgba(41, 52, 0, 0.5);
}

.subheader .category_item.sub-4 {
    background: rgba(2, 19, 113, 0.5);
}

.level_2.sub_cat {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 16px;
    column-gap: 20px;
}

.level_1.cat_menu .c-item {
    display: block;
    border: 1px solid #DEDEDE;
    border-radius: 12px;
    width: 100%;
    height: auto;
    padding: 24px;
}
.link-capt {
    font-size: 22px;
    font-weight: 700;

}
.link-capt.link-child {
    margin-bottom: 24px;
}
.link-sub {
    font-size: 16px;
    font-weight: 400;
    transition: all .5s ease;
}
.c-sub-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}


.mCSB_draggerRail {
    width: 11px !important;
    background-color: #F7F7F7 !important;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.25) !important;
    
}


.mCSB_dragger_bar {
    width: 11px !important;
    background-color: var(--main-color)!important;
}

/*.subacategories .mCSB_dragger_bar {
    height: 6px!important;
    width: 61px!important;
    background: #FFAB01!important;
    border-radius: 8px!important;
}
.subacategories .mCSB_draggerRail {
    box-shadow:none!important;
    height: 6px!important;
    width: 100%!important;
    background: #F4F4F4!important;
    border-radius: 4px!important;
}*/
/* FOOTER */
.payments_text {
    font-size: 14px;
    color: #0a0a28;
    display: block;
    margin: 0 0 10px;
}

.footer {
    background: #F4F4F4;
}

.footer_bottom {
    background-color: var(--main-color);
    padding: 60px 0;
    font-size: 14px;
    color: #686666;
}

.footer_bottom .container {
    position: relative;
}

.footer_image {
    position: absolute;
    right: -100px;
    bottom: -20px;
}

.footer_bottom a {
    text-decoration: none;
}

.footer_bottom a:hover {
    text-decoration: underline;
    color: #FFAB01;;
}

#subscribe_container {
    margin-bottom: 18px;
}

.subscribe_promotext {
    margin-top: 8px;
    line-height: 1.3;
    font-size: 12px;
    color: #827f7f;
}

.subscribe_form {
    position: relative;
    width: 315px;
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-weight: bold;
    font-size: 12px;
}

.subscribe_input {
    width: 100%;
    height: 32px;
    padding: 0 125px 0 10px;
    background-color: #fff;
    border: none;
    color: #827f7f;
}

.subscribe_button {
    position: absolute;
    top: 0;
    right: 0;
    height: 32px;
    width: 115px;
    border: none;
    background-color: #e62e04;
    text-align: center;
    color: #fff;
}

.foot .h3 {
    margin-bottom: 25px;
    color: var(--color-white);
    font-size: 22px;
    line-height: 30px;
}
.foot .h3::after,
.info_delivery .h3::after,
.info_payment .h3::after,
.mobile_tab_title::after{
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--button-color);
    margin-top: 2px;
}

.foot_soc a svg path{
    fill: var(--button-color);
}

.foot_social a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    width: 32px;
    height: 32px;
    font-size: 0;
    background-image: url(../images/social.png);
    background-repeat: no-repeat;
}

.menu_group_footer_menu .menu_item {
    margin-bottom: 15px;
    color: var(--color-white);
}

.fb {
    background-position: 0 0;
}

.vk {
    background-position: 0 -32px;
}

.ok {
    background-position: 0 -64px;
}

.tw {
    background-position: 0 -96px;
}

.ins {
    background-position: 0 -128px;
}

.foot_item {
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: var(--color-white);
}

.foot_wh .times_inner,
.foot_wh .email_inner  {
    font-size: 16px;
    line-height: 20px;
    color: var(--color-white);
    margin-left: 28px;
}

.foot_item-cont {
    display: flex;
}

.foot_item svg {
    margin-right: 8px;
    min-width: 24px;
}
.foot_item:first-child svg path{
    stroke: var(--color-white);
    fill: transparent;
}
.foot_item svg path{
    fill: var(--color-white);
}

.foot_wh {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_contacts,
.foot_menu {
    margin-top: -5px;
}
.footer .footer_contacts .foot_item:first-child {
    flex-direction: column;
}
.footer .footer_contacts .foot_item:first-child a{
    padding-left: 32px;
}
.footer .footer_contacts .foot_item:first-child svg path{
    fill: #ffffff;
}
.footer .footer_contacts .foot_item:first-child .company_phone_text{
    color: #ffffff;
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}
.footer_contacts .foot_item:last-child a:hover{
    color: #aaa;
    text-decoration: none;
}
.footer_contacts.block.padding {
    padding-top: 47px;
}

.footer_contacts.block.padding .foot_item:first-child {
    margin-left: -10px;
}

.footer_contacts a {
    text-decoration: none;
    transition: all .5s ease;
}

.footer_contacts .phones_container .fn_show_phone{
    border-bottom: none;
}
/* .fn_show_phone .feedback_title_box  {
    border-bottom: 1px dashed #030303;
    transition: all .5s ease;
}
.fn_show_phone:hover {
    border-color: transparent;
} */
.copyright {
    height: 60px;
    background: var(--main-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-white);
    border-top: 1px solid #4c4c4c;
}

.created_by_Sago_Group a {
    color: var(--button-color);
    text-decoration: none;
    transition: all .5s ease;
}

.copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Main page */
.advantages {
    background-color: #f2f6f7;
    font-weight: bold;
    line-height: 18px;
    font-size: 14px;
    color: #929faf;
}

.advantage {
    position: relative;
    padding-left: 55px;
    padding-top: 20px;
    padding-bottom: 15px;
}

.advantage::before {
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    background-image: url(../images/home_sprite.png);
    background-repeat: no-repeat;
}

.advantage_1::before {
    top: 17px;
    height: 23px;
    background-position: 0 -98px;
}

.advantage_2::before {
    top: 13px;
    background-position: 0 -65px;
}

.advantage_3::before {
    top: 15px;
    height: 31px;
    background-position: 0 -33px;
}

.advantage_4::before {
    top: 13px;
    background-position: 0 0;
}

.banners {
    font-size: 0;
    margin-bottom: 40px;
}

.look_all {
    font-size: 12px;
    color: #606060;
    text-align: center;
}

.product_choose {
    display: flex;
    margin-bottom: 12px;
    padding-bottom: 12px;
    position: relative;
    border-bottom: 1px solid #E7E7E7;
    justify-content: flex-start;
}
.product_choose_wrp {
    display: flex;
    height: 100%;
    flex-wrap: wrap;
}
.variant__item{
    height: 100%;
    margin-bottom: 6px;
}
.product_choose span:not(.swiper-notification) {
    min-width: 100px;
    margin-right: 10px;
    white-space: nowrap;
}

.product_buy {
    position: relative;
}

/* .product_buy::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 28%;
    width: 24px;
    height: 24px;
    background: url(../images/cart.svg);
} */

input.product_choose-input {
    display: none;
}

.product_choose-item {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    border: 2px solid #dcdcdc;
    padding: 8px;
    cursor: pointer;
    width: 50px;
    height: max-content;
    user-select: none;
    margin-right: 5px;
}
.product_choose{
    max-width: 100%;
}

.product_choose-item_auto{
    word-break: break-all;
    height: max-content;
    width: max-content;
    font-size: 11px;
    max-width: 100px;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

.product_choose-item:focus {
    user-select: none;
}

.product_choose-item:not(:last-child) {
    margin-right: 10px;
}

.product_choose-item.choose {
    border: 2px solid #FF7101;
}

.product_informer,
.product_quantity-item {
    display: flex;
}

.product_informer {
    justify-content: space-between;
    align-items: center;
}

.price_container {
    display: flex;

}

.product_quantity span {
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    min-width: 100px;
}
.product .product_quantity span {
    font-size: 18px;
    line-height: 22px;
    min-width: 100px;
}
.product_quantity-item {
    display: flex;
    justify-content: space-between;
    width: 110px;
    height: 46px;
    border: 2px solid #f2f2f2;
    border-radius: 10px;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
}

.product_quantity-item button {
    border: none;
    background: inherit;
    cursor: pointer;
    padding: 0 15px;
}

.product_quantity-item .quantity {
    display: flex;
    align-items: center;
}

.slick-arrow,
.all_brands .slick-arrow, 
.articles .slick-arrow {
    background: var(--main-color);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    border: none;
    color: var(--color-white);
}

.main-banner .slick-arrow {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    width: 48px;
    height: 48px;
    border: none;
    color: rgba(0, 0, 0, 1);
}

.slick-prev,
.all_brands .slick-prev,
.articles .slick-prev {
    right: 45px;
    top: -22px;
    left: unset;
    z-index: 1;
}
.articles .slick-prev {
    top: -52px;
}
.main-banner .slick-prev {
    right: 45px;
    top: 50%;
    left: 15%;
    z-index: 1;
}

.slick-next,
.all_brands .slick-next,
.articles .slick-next {
    right: 0;
    top: -22px;
}
.articles .slick-next {
    top: -52px;
}

.main-banner .slick-next {
    right: 15%;
    top: 50%;
}

.slick-prev::before, .slick-next::before {
    content: '';
    width: 12px;
    height: 13px;
    vertical-align: initial;
}
.slick-prev::before{
    margin-left: 5px;
}
.slick-next::before{
    margin-left: -5px;
}
.subheader .level_1.categories_menu {
    width: 100%;
    margin: 0 auto;
}
/* .subheader_categories .level_1.categories_menu .category_item{
    background: #000;
  min-height: 100px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
} */
.subheader_categories .level_2.subcategory .category_item {
    height: auto;
}
.subheader .level_1.categories_menu > li{
    position: relative;
}
.subheader .level_1.categories_menu > li:not(:first-child)::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
    background: #e3e2e27a;
}

.slick-prev:hover, .slick-next:hover {
    color: var(--color-white);
}

.main_text {
    padding-top: 12px;
    color: #606060;
    opacity: .7;
}

.main_social {
    position: relative;
    margin: 120px 0;
    padding: 40px 110px 40px 320px;
    background: #E9F2E9;
    border-radius: 10px;
    /* text-align: center; */
}

.main_social .h2 {
    margin-bottom: 20px;
}

.main_social_txt {
    margin-bottom: 40px;
}

.main_social svg {
    width: 62px;
    height: 62px;
    transition: all .5s ease;
}
.main_social svg path{
    fill: var(--button-color); 
}

/* .main_social .social_links {
    justify-content: center;
} */
.social_links a{
    transition: all .5s ease;
}
.social_links a:hover{
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}
.main_social .social_image {
    position: absolute;
    left: -70px;
    top: -80px;
}

.review {
    position: relative;
    background: var(--color-white);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    width: 280px;
    height: 428px;
    padding: 60px 20px 20px;
    margin-right: 20px;
}

.review_img {
    position: absolute;
    overflow: visible;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    width: 80px;
    height: 80px;
    text-align: center;
}

.review_name {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
    text-align: center;
    margin-bottom: 15px;
}

.review_star {
    text-align: center;
    margin-bottom: 10px;
    height: 26px;
}

.review_star .product_rating {
    margin: 0 auto;
}

.review_txt {
    font-size: 14px;
    line-height: 17px;
    color: #575757;
}

.review .orange-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.close-img {
    display: none;
}

.burger {
    display: none;
    position: fixed;
    bottom: 80px;
    left: 0;
    background: #FFFFFF;
    max-width: 718px;
    width: 100%;
    z-index: 20;
    padding: 30px 15px 0;
    max-height: 530px;
}

.burger .times {
    display: block;
    margin: 0;
}

.burger_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #A0B990;
    margin-bottom: 44px;
}

.burger_logo-wrap {
    display: flex;
    align-items: center;
}
.orange-btn_wrp{
    display: flex;
}
.orange-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    max-width: 300px;
    width: 100%;
    height: 40px;
    background: #FF7101;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    margin: 0 auto;
    border: 2px solid #FF7101;
    transition: .5s;
}

.orange-btn:hover {
    border-radius: 10px;
    color: #FF7101;
    background: #FFFFFF;
    transition: .5s;
}

.orange-btn:hover::before {
    background: url(../images/cart-hov.svg);
}

.main_seo {
    width: 100%;
    display: flex;
    position: relative;
}
.main_seo .block__body {
    width: 100%;
    max-width: 850px;
    padding-right: 16px;
}
.main_seo_img{
    width: 100%;
    height: 100%;
    display: block;
    max-width: 500px;
    object-fit: cover;
    position: sticky;
    top: 200px;
    border-radius: 10px;
}
.main_seo_img img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}
.main_seo-txt li{
    margin-bottom: 5px;
}

.main_seo-txt {
    font-size: 16px;
    line-height: 20px;
    color: #575757;
    margin: 0;
    padding: 0;
}

.main_seo-txt p{
    color: #6c6c6c;
    line-height: 140%
}
.main_seo-txt h3,
.main_seo-txt h4{
    color: #000000;
}

.main_seo h1{
    font-size: 40px;
    border-bottom: 1px solid #d9d9d9;
    width: fit-content;
    padding-bottom: 15px;
}

/* Blog */
.news {
    position: relative;
}

.blog_item {
    background: #FFFFFF;
    box-shadow: 0px 5px 12px 0px #0000000D;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
    transition: all .5s ease;
    transition-property: box-shadow!important;
}
.blog .blog_item{
    margin: 0!important;
}
.blog.blog_page{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 16px;
    column-gap: 16px;
}
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 16px;
    column-gap: 16px;
}

.products_seo{
    margin-top: 16px;
}

/* .blog_item:not(:nth-child(4n)) {
    margin-right: 10px;
} */

.blog_item:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.news_content,
.blog_content {
    padding: 25px;
    font-size: 14px;
    line-height: 18px;
    color: #767676;
}

.blog_content a {
    text-decoration: none;
    height: 78px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.news_image,
.blog_image {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 52%;
    background-color: #f5f6f7;
    background-image: url(../images/post_img.png);
    background-position: center center;
    background-repeat: no-repeat;
}

.news_img,
.blog_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 100%;
    object-fit: cover;
}

.blog_annotation,
.news_annotation {
    max-height: 100px;
    overflow: hidden;
}

.news_date,
.blog_date {
    margin: 12px 0 5px;
    color: #767676;
}

/* Brands */
.all_brands, .articles {
    position: relative;
}

.brands{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 24px;
    column-gap: 24px;
}
.brands .all_brands_link{
    padding: 10px;
}
.all_brands_link,
.brand_link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 170px;
    background: #FFFFFF;
    box-shadow: 0px 3px 10px 0px #0005331A;
    border-radius: 10px;
    transition: all .5s ease;
    padding: 10px
}
.fn_all_brands .slick-slide,
.fn_recommended_products .slick-slide,
.fn_posts .slick-slide{
    margin: 0 10px;
}
.fn_all_brands .slick-list,
.fn_recommended_products .slick-list,
.fn_posts .slick-list{
    margin: -50px -10px;
    padding: 50px 0;
}
.main-banner .slick-list {
    margin: 0;
    padding: 0;
}

.all_brands_link:hover,
.brand_link:hover,
.blog_item.articles_item:hover {
    box-shadow: 0px 3px 10px 0px #00053324;

}

.brand_item {
    border-bottom: 1px solid #e8e8e1;
    border-right: 1px solid #e8e8e1;
}

.brand_image,
.brand_name {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

.brand_img {
    vertical-align: middle;
    max-height: 100%;
}


/* Product preview */
.main_products {
    position: relative;
    margin: 0 4px;
}

.slick-list {
    margin: -50px -10px;
    padding: 50px 10px;
}

.btn-margin {
    margin-bottom: 100px !important;
}

.preview {
    position: relative;
    padding: 10px 10px 16px;
    max-height: 570px;
    /* width: calc(100% - 10px); */
    /* margin: 0 auto; */
    margin: 0;
    background: #FFFFFF;
    box-shadow: 0px 3px 10px 0px #0005331A;
    border-radius: 10px;
    transition: all .5s ease;
}
.preview:hover {
    box-shadow: 0px 3px 10px 0px #00053324;
}
.product__sizes_slider .swiper-wrapper {
    justify-content: center;
}
/* .products_item {
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    height: 495px;
    margin-right: 11px;
} */

/* .main-page .products_item {
    width: 280px !important;
} */

.product_name {
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    /* min-height: 85px; */
    max-width: 100%;
    color: #000000;
    text-decoration: none;
    margin-bottom: auto;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product_txt {
    font-size: 14px;
    line-height: 18px;
    color: #767676;
    margin-bottom: 10px;
    padding-top: 10px;
    height: 36px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden;
    text-align: center;
}
.preview .product_quantity span,
.preview .price .price_txt{
    color: #767676!important;
}

.preview_image {
    display: block;
    position: relative;
    max-height: 260px;
    max-width: 260px;
    line-height: 260px;
    text-align: center;
    margin: 0 auto;
}

.preview_img {
    vertical-align: middle;
    height: auto;
    max-height: 260px;
    width: auto;
    object-fit: contain;
}

.preview .price_container {
    width: calc(100% - 125px);
    font-weight: bold;
    line-height: 1.1;
    color: #000000;
    flex-direction: column-reverse;
    align-items: flex-end;
}

.preview_form {
    margin-top: 16px;;
}

.preview .button {
    width: 100%;
}

.preview .price {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: end;
}
.preview .price .price_txt{
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: normal;
    text-align: left;
}
.price .color-price {
    color: red;
}

.preview .hidden + .price {
    margin-top: 7px;
}

.old_price {
    font-size: 18px;
    font-weight: 500;
    color: #797979;
    position: relative;
    width: fit-content;
    line-height: 25px;
}
.old_price::after {
    border-bottom: 1px solid #797979;
    content: "";
    left: 0;
    position: absolute;
    top: 45%;
    width: 100%;
    transform: rotate(-12deg);
}

.remove_link {
    position: absolute;
    top: 7px;
    right: 7px;
    display: block;
    text-decoration: none;
    text-align: center;
    z-index: 10;
    width: 38px;
    height: 38px;
    border: 1px solid #E7E7E7;
    border-radius: 5px;
}

.remove_link .remove_icon {
    margin-top: 6px;
    color: #e62e04;
    width: 24px;
    height: 24px;
}

.remove_link span {
    text-decoration: underline;
}

.remove_link:hover span {
    text-decoration: none;
}

.sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 30px;
    padding: 10px 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.sort span {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.sort .sort_title {
    margin-right: 10px;
    white-space: nowrap;
}

.sort_blog .select2-container--default .select2-selection--single {
    height: 40px;
}

.sort_blog .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 20px;
    font-size: 16px;
}

.products .products_item:not(:nth-child(3n)) {
    margin-right: 16px;
}

.products .products_item {
    margin: 0!important;
}

/* Cart */
.purchase {
    width: 100%;
    margin-bottom: 40px;
}

.purchase th,
.purchase td {
    vertical-align: middle;
    text-align: center;
}

.purchase th {
    padding: 12px 8px;
    font-weight: bold;
    font-size: 13px;
    font-weight: bold;
    background-color: #fcfcfc;
}

.purchase td {
    border-top: 1px solid #e8e8e1;
    border-bottom: 1px solid #e8e8e1;
    padding: 8px;
    background-color: #fff;
}

.purchase_amount .amount{
    border-radius: 10px;
}

.purchase_remove,
.purchase_image {
    font-size: 0;
}

.purchase_remove a {
    text-decoration: none;
}

.purchase_preorder,
.purchase_remove a:hover {
    color: #e62e04;
}

.remove_icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.amount {
    width: 124px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #e8e8e1;
    line-height: 34px;
}

.plus,
.minus {
    font-size: 16px;
    float: left;
    width: 28px;
    height: 34px;
    text-align: center;
    cursor: pointer;
    color: #707070;
}

.plus:hover,
.minus:hover {
    color: #030303;
}

.input_amount {
    display: block;
    float: left;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #e8e8e1;
    border-right: 1px solid #e8e8e1;
    background-color: #f7f7f7;
    padding: 0;
    margin: 0;
    height: 34px;
    width: 65px;
    text-align: center;
}

.purchase_total td {
    font-weight: bold;
    font-size: 16px;
    border-bottom: none;
}

.purchase_total {
    font-weight: bold;
    font-size: 16px;
}

.purchase_total .total_sum {
    color: #000000;
    font-size: 24px;
}

.purchase_name {
    font-weight: bold;
    font-size: 13px;
    color: #000000;
    text-decoration: underline;
}

/*.purchase_name:hover{
    text-decoration: underline
}*/
.purchase .coupon,
.purchase .purchase_total {
    padding: 10px;
}

.wish_products .products_item {
    margin-bottom: 20px;
}

.input_coupon {
    vertical-align: top;
    width: 165px;
    height: 34px;
    padding: 0 8px;
    border: 1px solid #e8e8e1;
    border-radius: 2px;
    font-size: 13px;
    font-family: inherit;
}

.coupon_button {
    height: 34px;
    padding: 0 25px;
    color: #fff;
    text-align: center;
    font-size: 13px;
    background: #f2bd0b;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

.coupon_button:hover {
    background: #d4a507;
}

.coupon .message_error {
    margin: 0 0 10px;
    width: 285px;
}

.delivery {
    font-size: 14px;
}

.delivery_method,
.payment_method {
    padding-bottom: 20px;
    font-weight: bold;
    font-size: 18px;
}

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

.delivery_item {
    margin-bottom: 15px;
    margin-right: 80px;
}

.delivery_description {
    margin-left: 25px;
    display: none;
}

.active + .delivery_description {
    display: block;
}

.input_delivery {
    float: left;
    margin: 3px 0 0;
}

.delivery_item img {
    vertical-align: middle;
    margin-right: 4px;
}

.delivery_companies .delivery_company_text {
    padding-left: 10px;
}
.checkbox__icon {
    border: 1px solid #dbdbdb;
    display: block;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    border-radius: 3px;
}
.checkbox__input {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}
.checkbox {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    cursor: pointer;
}
.checkbox__input:checked + .checkbox__icon > .checkbox__mark {
    stroke: var(--button-color);
    stroke-width: 2px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    stroke-miterlimit: 10;
    opacity: 1;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
}
.checkbox__input:checked + .checkbox__icon{
    border-color: var(--button-color);
}

.delivery_item .delivery_name {
    padding-left: 25px;
}

.novaposhta_types_inputs .delivery_label .delivery_name {
    padding-left: 10px;
}


.delivery_label {
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
    font-weight: 500;
}

/* .cart_info_2 {
    width: 60%;
} */

.delivery .select2-container--default .select2-selection--single,
.form-input-wrapper {
    height: 44px;
    background-color: #fff;
    border: 1px solid #e8e8e1;
    border-radius: 10px;
    /* padding: 0 15px; */
    width: 100%;
    font-family: inherit;
    font-size: 12px;
    box-shadow: none;
    margin-top: 10px;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
}

.delivery_self {
    display: none;
}

.cart-input {
    border: none;
    height: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.privat_cart_number {
    display: none;
}

.active.delivery_label {
    font-weight: bold;
}

.order_details {
    width: 100%;
}

.order_details td {
    padding: 15px 15px;
}

.order_notify {
    background-color: #fff;
    border: 2px solid rgb(56, 192, 243);
    margin-bottom: 25px;
    padding: 18px 20px 18px;
}

.order_heading {
    color: rgb(10, 10, 40);
    font-size: 22px;
    line-height: 1.2;
    font-weight: bold;
    font-family: inherit;
    margin-bottom: 10px;
}

.order_thank {
    color: rgb(10, 10, 40);
    font-size: 18px;
    line-height: 1.2;
    font-family: inherit;
    margin-top: 10px;
}

.order_tag {
    color: #fff;
    line-height: inherit;
    padding: 0px 8px;
    font-size: 16px;
    border-radius: 4px;
    display: inline-block;
    background-color: rgb(56, 192, 243);
}

.order_heading_promo {
    color: rgb(10, 10, 40);
    font-size: 16px;
    line-height: 1.3;
}

.method_name {
    font-weight: bold;
    font-size: 16px;
}

.method_form {
    margin: 15px 0;
}

.method_description {
    margin-bottom: 15px;
}

.feedback_form {
    background-color: #f5f6f7;
    border: 1px solid #e8e8e1;
}

.feedback_inner {
    padding-top: 25px;
}

/* Pagination */
.pagination {
    list-style: none;
    text-align: center;
    background: #fff;
    padding: 15px 10px 5px;
    margin: 20px 0 40px;
}

.page_item {
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 10px;
}

.page_link {
    display: block;
    position: relative;
    padding: 9px 7px;
    min-width: 36px;
    height: 36px;
    text-align: center;
    text-decoration: none;
    background: var(--main-color);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    transition: all .5s ease;
}
.page_link:hover {
    background-color: var(--button-color);
}

/* Product Page */
.product_heading {
    font-size: 22px;
    color: #0a0a28;
    font-weight: bold;
    line-height: 1.1;
    margin: 5px 0 22px;
}

.sku {
    margin-top: -10px;
    margin-bottom: 16px;
    font-size: 13px;
}

.sku_nubmer {
    color: #adaaaa;
}

.product_brand_block {
    font-size: 13px;
    float: left;
    margin-right: 25px;
}

.product_image {
    position: relative;
    text-align: center;
    height: 440px;
    max-width: 430px;
    width: 100%;
    margin-bottom: 23px;
}

.product_image a {
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    /* border: 1px solid #f2f2f2; */
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.product_img {
    position: relative;
    max-height: 100%;
}

.product_details-head {
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}

.product_details-head > div {
    margin-bottom: 36px;
}

.images {
    margin-left: -6px;
    margin-right: -6px;
    margin-bottom: 23px;
    padding: 0 10px;
}

.images_item {
    float: left;
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: 20px;
}

/* .product_images-wrapper .images_item {
    width: 128px !important;
} */

.images_link {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f2f2f2;
    line-height: 75px;
    text-align: center;
    font-size: 0;
    overflow: hidden;
    border-radius: 10px;
}

.product_images-wrapper .images_link {
    height: 100px;
}

.images_item img {
    vertical-align: middle;
}

.images .slick-track {
    width: 136px;
}

.product_details {
    margin-bottom: 23px;
}

.product_wish,
.product_compare {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    text-decoration: none;
}

.product_wish::before,
.product_compare::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    right: -40px;
    top: -8px;
    background-repeat: no-repeat;
}

.product_wish::before {
    background-image: url(../images/heart.svg);
    background-repeat: no-repeat;
}

.product_wish.selected::before {
    background-image: url(../images/sprite.png);
    background-position: -51px -18px;
}

.product_compare::before {
    background-image: url(../images/compare.png);
}

.product_compare.selected::before {
    background-image: url(../images/sprite.png);
    background-position: -34px 0;
}

.product_wish::after,
.product_compare::after {
    content: attr(title);
}

.product_details-head .product_details-head-info {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.prod-wish {
    padding-right: 40px;
    /* margin-top: 43px; */
}

.details_label {
    margin-right: 10px;
}

.details_label {
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    display: inline-block;
    min-width: 15%;
}

.product_rating {
    display: inline-block;

    font-size: 13px;
}

.product_rating-item {
    display: flex;
    justify-content: space-between;
}

.product_rating-item div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product_rating-item span {
    font-size: 14px;
    line-height: 17px;
    color: #575757;
}

.product_rating-item .star {
    margin-bottom: 10px;
    cursor: pointer;
}

.product_rating-item .star.act svg path,
.product_rating-item .star:hover svg path {
    fill: #FFAB01;
}

.product_details-main {
    max-height: 608px;
}

.product_details-main .product_choose {
    align-items: center;
    max-width: 100%;
    padding-bottom: 10px;
    margin-bottom: 36px;
}

/* .product_details-main .product_choose-item {
    width: 100px;
    height: 30px;
} */

.product_details-main .product_choose-item:not(:last-child) {
    margin-right: 20px;
}

.product_details-bottom {
    display: flex;
    justify-content: space-between;
}


.product_details-bottom .product_details-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 30px;
}

.product_details-bottom .product_details-cont > * {
    flex: 1 1 50%;
    max-width: 260px;
}

.product_details-cont .price_container {
    flex-direction: column;
}

.product_details-bottom .product_quantity {
    display: flex;
    align-items: center;
}

.product_details-bottom .product_quantity-item {
    margin-left: 10px;
}

.product_details-bottom .preview_form {
    margin: 0;
}

.product_details-bottom .prod-wish {
    margin: auto 0;
    padding: 0;
    flex: 1 1 51%;
}

.product_details-bottom .price_txt {
    font-weight: normal;
    margin-right: 10px;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}

.available {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
}

.in_stock,
.no_stock {
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.no_stock {
    padding-left: 18px;
}

.in_stock::before,
.no_stock::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 11px;
    height: 8px;
    background: url(../images/sprite.png) no-repeat -37px -33px;
}

.no_stock::before {
    height: 9px;
    background: url(../images/sprite.png) no-repeat -52px -33px;
}

.quontity_label {
    margin-top: 34px;
}

.product .amount {
    display: inline-block;
    vertical-align: top;
    margin-top: 26px;
    margin-bottom: 1px;
}

.product_btn {
    color: #fff;
    border: 2px solid #d4a507;
    background-color: #f2bd0b;
    min-width: 220px;
}

.main-btn {
    display: block;
    padding: 8px 0;
    position: relative;
    height: 40px;
    width: 100%;
    max-width: 250px;
    background: #fff;
    border: 2px solid var(--button-color);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: var(--button-color);
    text-decoration: none;
    margin: 40px auto 0;
    z-index: 1;
    cursor: pointer;
    transition: all .5s ease;
}
.main-btn:hover{
    border-color: #aaa;
    color: #aaa;
}
.main-banner-btn:hover {
    border-color: var(--button-color);
    color: var(--button-color);
    background: var(--main-color);
}

/*.main-btn span {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.main-btn:hover::before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 49px;
    height: 100%;
    background: #FFCD67;
    z-index: 2;
}*/
/* .info_delivery,
.info_payment {
    margin-top: 25px;
} */

.product_btn:hover {
    background-color: #d4a507;
    border-color: #d4a507;
}
.product .price{
    margin: 0!important;
    color: #000000;
}
.info_delivery_wrapper{
    row-gap: 30px;
    display: grid;
}

.product .variant_select,
.products_item .variant_select {
    width: 100%;
    height: 39px;
    line-height: 35px;
    padding: 0 35px 0 15px;
    border: 2px solid #e1e8ed;
    border-radius: 2px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url(../images/select_arrow.png);
    background-position: right 12px center;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-top: 5px;
}

.variant_select::-ms-expand {
    display: none;
}

.product .old_price {
    font-weight: bold;
    font-size: 16px;
    /* margin-top: 25px; */
}

.product .price {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.1;
    margin-top: 5px;
}

.product .hidden + .price {
    margin-top: 25px;
}

.product_buttons {
    margin-top: 25px;
}

.related_prod {
    margin-bottom: 100px;
}

.info_delivery,
.info_payment {
    padding: 20px;
    font-size: 16px;
    position: relative;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.info_delivery::before,
.info_payment::before {
    content: "";
    position: absolute;
    bottom: 12px;
}

.info_delivery::before {
    width: 80px;
    height: 80px;
    top: auto;
    bottom: 0;
    right: 20px;
    /* background: url(../images/sprite.png) no-repeat 1px -178px; */
    background: url(../images/transport.svg);
    background-repeat: no-repeat;
    opacity: 0;
}

.info_payment::before {
    width: 80px;
    height: 80px;
    top: auto;
    bottom: 0;
    right: 20px;
    background: url(../images/credit-card.svg);
    background-repeat: no-repeat;
    opacity: 0;
}

.info_delivery .h3,
.info_payment .h3 {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 26px;
}

.info_delivery p,
.info_payment p {
    margin-bottom: 7px;
    opacity: .7;
}

.tabs {
    margin-top: 80px;
}

.mobile_tab_title{
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 26px;
    color: #000000;
}

.product_share {
    margin: 20px 0 25px;
}

.share_text {
    font-size: 13px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.product_share > div {
    display: inline-block;
    vertical-align: middle;
}

.product .pager {
    padding: 0;
}

.tab_navigation {
    z-index: 1;
    display: flex;
}

.tab_navigation a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button-color);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration: none;
    margin-right: 10px;
    max-width: 250px;
    width: 100%;
    height: 40px;
    opacity: .8;
}

.tab_container .orange-btn {
    border-radius: 10px;
    margin: 5px 0 0 auto;
}

.tab_container {
    overflow: hidden;
    /* border-top: 2px solid #f2f2f2; */
    /* margin: -2px 0 0; */
}

.tab {
    display: none;
    padding: 15px;
}

.product_description,
.product_comments,
.product_features {
    line-height: 1.65;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.features li {
    padding: 0;
    margin-bottom: 30px;
    overflow: hidden;
    background-color: #fff;
}

.features_name,
.features_value {
    display: block;
    float: left;
    font-size: 16px;
    line-height: 20px;
}

.features_value {
    width: 50%;
    padding-right: 15px;
    padding-left: 10px;
    color: #000000;

}

.features_name {
    width: 50%;
    position: relative;
    color: #575757;
}

.features_name span {
    position: relative;
    padding-right: 10px;
    z-index: 1;
    background-color: #fff;
}

.features_name::before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dotted #e1e8ed;
}

/* Comments */
.comment_items-wrapper {
    max-height: 780px;
    overflow-y: auto;
}

.comment_items-wrap {
    max-height: none;
    overflow: unset;
}

.comment_item {
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #f4f4f4;
    padding: 20px;
}

.comment_popup_wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
}

.comment_popup {
    position: absolute;
    background: #FFFFFF;
    padding: 40px 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
}

.comment_popup .product_rating {
    margin-bottom: 20px;
    float: unset;
    /*width: 100%;*/
}

.comment_popup .h2,
.callback_form .h2 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--footer-bg);
}

.comment_popup .orange-btn {
    border-radius: 10px;
    margin: 0 0 0 20px;
}

.close-popup {
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
}

.product_images-wrapper {
    display: flex;
    overflow: hidden;
    max-height: 458px;
    flex-direction: column;
}

.product_images-wrapper .slick-prev {
    left: 6px;
    right: 0;
    top: 45%;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    color: #FFAB01;
}

.product_images-wrapper .slick-next {
    right: 6px;
    bottom: 0;
    /* padding-left: 12px; */
    top: 45%;
    background: rgba(255, 255, 255, 0.5);
    color: #FFAB01;
}

.product_images-wrapper .slick-next::before,
.product_images-wrapper .slick-prev::before {
    /* transform: rotate(225deg); */
    width: 14px;
    height: 14px;
}
.product h1.h2{
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 42px;
}
.product .tabs{
    margin-top: 30px;
}

.comment_back {
    background: transparent;
    color: var(--button-color);
}

.comment_back:hover {
    color: #575757;
    border: 2px solid #575757;
}

.tab-btn.selected {
    background-color: var(--main-color);
    opacity: 1;
}

.admin_note {
    margin-top: 10px;
    margin-left: 15px;
    border-left: 3px solid rgba(56, 192, 243, 0.8);
    padding: 10px;
    border-bottom: none;
    padding-bottom: 10px;
    margin-bottom: 10px;
    background: rgb(248, 248, 248);
}

.comment_header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.comment_author-wrapper {
    display: flex;
    flex-direction: column;
}

.comment_header-wrap {
    display: flex;
}

.comment_image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #DCDCDC;
    border-radius: 100%;
    margin-right: 15px;
}
.comment_items_page .comment_image{
    width: 50px;
    height: 50px;
}
.comment_items_page .comment_image img{
    width: 100%;
    max-width: 30px;
    height: 100%;
    max-height: 30px;
}
.comment_items_page .comment_header-wrap{
    align-items: center;
}
.comment_items_page .comment_author{
    margin: 0;
}
.comment_items_page .comment_header{
    align-items: center;
}
.comment_author {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 15px;
    margin-top: 10px;
}

.comment_date {
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

.comment_content {
    font-size: 14px;
    line-height: 19px;
    color: #575757;
    max-height: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comment_content.comment-open {
    max-height: unset;
    overflow: visible;
    text-overflow: unset;
}

.comment_footer button {
    display: none;
    margin-top: 20px;
    text-decoration: underline;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FF7101;
    background: none;
    border: none;
    cursor: pointer;
}

.no_comments {
    border-left: 3px solid #FF7101;
    padding: 10px;
    background: rgb(248, 248, 248)
}

/* Post */
.post_date {
    opacity: .7;
    margin-bottom: 20px;
}
a.post_media img{
    border-radius: 10px;
}

.post_share {
    margin: 20px 0;
}

.pager {
    margin-top: 0;
    margin-bottom: 0;
    padding: 15px 0;
    list-style: none;
    overflow: hidden;
}

.pager li {
    padding-top: 5px;
    padding-bottom: 5px;
}

.pager li:nth-child(even) {
    text-align: right;
}

.pager a,
.pager a:hover span {
    text-decoration: none;
}

.pager a span {
    text-decoration: underline;
}

.change_pass {
    margin-bottom: 10px;
}

.change_pass span {
    cursor: pointer;
    border-bottom: 1px dotted;
}

.change_pass span:hover {
    border-color: transparent;
}

.password_remind {
    float: right;
    margin-top: 6px;
    font-size: 13px;
}

/* Filters */

.prod_wrp {
    display: flex;
    justify-content: space-between;
}

.sidebar_top {
    background: #FFFFFF;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
}

.sidebar_top .h4 {
    background: #ff710114;
    padding: 15px 0 15px 15px;
}

.sidebar_center {
    background-color: #fff;
    margin-bottom: 20px;
}

.sidebar {
    margin-right: 20px;
}

.sidebar .h2 {
    padding-bottom: 10px;
    padding-top: 12px;
}

.filter_group {
    position: relative;
    padding: 18px 18px 30px;
    max-height: 375px;
}

.filter_group-bl {
    content: '';
    position: absolute;
    width: 100%;
    height: 11px;
    left: 0;
    bottom: 7px;
    background: #FFFFFF;
    filter: blur(8px);
    z-index: 2;
}

.catalog_menu {
    padding: 20px 23px 0;
}

.selected_filter_boxes {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.selected_filter_box {
    position: relative;
    width: 100%;
    min-height: 1px;
    /*padding-right: 10px;*/
    padding-left: 10px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.selected_filter_item {
    border: 1px solid #3C7A76;
    border-radius: 3px;
    margin: 0 0px 10px 0;
    max-width: 100%;
}

.filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.products_filter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 358px;
    width: 100%;
    height: 60px;
    padding: 0 25px 0 50px;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    background: #F9FFF9;
    border: 1px solid #A0B990;
}

.products_filter-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 25px 0 50px;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    background: #F9FFF9;
    border-bottom: 1px solid #A0B990;
    margin-bottom: 18px;

}

.products_filter-new span,
.products_filter span {
    position: relative;
}

.products_filter-new > span::before,
.products_filter > span::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(../images/filter.svg);
}

.products_filter-size {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    background: #F9FFF9;
    border: 1px solid #A0B990;
    max-width: 358px;
    width: 100%;
    height: 60px;
    font-size: 14px;
    line-height: 17px;
}

.products_filter-drop {
    display: none;
    position: absolute;
    top: -2px;
    left: -1px;
    width: calc(100% + 2px);
    background: #F9FFF9;
    border: 1px solid #A0B990;
    z-index: 9;
    padding: 0 15px;
}

.products_filter-drop .h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    background: #FFFFFF;
    padding: 0 15px;
    margin-bottom: 20px;
}

.products_filter-drop .filter_group {
    display: none;
    padding-top: 0;
}

.filter_reset {
    font-size: 13px;
    color: #3C7A76;
    font-weight: 500;
    overflow: hidden;
    display: inline-block;
    border: none;
    background: no-repeat;
    padding: 0;
    text-decoration: underline;
    cursor: pointer;
}

.selected_filter_box .s_filter_link {
    border: none;
    background: transparent;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    font-size: 12px;
    padding: 2px 8px 1px;
    cursor: pointer;
    color: #575757;
}

.selected_filter_box .s_filter_link span {
    margin-right: 5px;
    cursor: pointer;
    text-align: left;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(100% - 20px);
    -ms-flex: 0 0 calc(100% - 20px);
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
}

.selected_filter_box .s_filter_link svg {
    width: 16px;
    height: 16px;
    color: #999;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16px;
    -ms-flex: 0 0 16px;
    flex: 0 0 16px;
    max-width: 16px;
}

.selected_filter_box .selected_filter_item:hover .s_filter_link svg {
    color: #fff;
}

.selected_filter_box .selected_filter_item:hover {
    background: #3C7A76;
}

.selected_filter_box .selected_filter_item:hover .s_filter_link {
    color: #fff;
}

.select2-container .select2-selection--single {
    margin-top: 0;
}

.select2-container--default .select2-selection--single {
    /* box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.25); */
    border-radius: 10px;
    height: 40px;
    padding: 10px 15px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

/* .select2-search--dropdown,
.select2-selection--single .select2-selection__arrow b {
    display: none;
} */

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: rotate(180deg);
    top: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url(../images/arrow-down.svg);
    width: 27px;
    top: 8px;
    right: 10px;
}
.novaposhta_delivery .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 20px;
}

.select2-results__options {
    padding-right: 0 !important;

}

.select2-results__option {
    padding: 10px 5px;
    margin: 0;
}

.select2-dropdown {
    border: none;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.select2-container--open .select2-dropdown--below {
    top: 0;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.select2-results__option:not(:last-of-type) {
    border: none;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: inherit;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #FFAB01;
    color: #FFFFFF;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 170px;
    overflow: auto;
    /* padding: 0 15px; */
    padding: 0;
}
.select2-results__option[aria-selected]{
    font-size: 16px;
}
.filters_heading {
    position: relative;
    font-weight: bold;
    font-size: 18px;
    padding: 9px 15px;
    cursor: pointer;
}

.filters_heading .angle_icon {
    position: absolute;
    right: 20px;
    top: 18px;
}

.filter_item {
    line-height: 24px;
    padding: 7px 0;
}

.catalog_item {
    padding: 0;
}
.products_item .preview .preview_image{
    margin: 0 auto 10px;
}

.filter_link {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 18px;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
    background: no-repeat;
    border: none;
    text-align: left;
    color: #717171;
    transition: all .5s ease;
}
.filter_link .filter__checkbox svg{
    width: 20px;
    height: 20px;
}
.filter_link .filter__checkbox{
    width: 20px;
    height: 20px;
    border: 1px solid #717171;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all .5s ease;
}
.filter_link.checked .filter__checkbox{
    border-color: var(--button-color);
}
.filter_link.checked .filter__checkbox path,
.filter_link:hover .filter__checkbox{
    stroke: var(--button-color);
}
.filter_link:hover .filter__checkbox{
    border-color: var(--button-color);
}


.catalog_link {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    position: relative;
    padding-left: 0px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    padding: 7px 0px;

}

.catalog_link.sub_cat::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    margin-left: 1px;
    background-image: url(../images/select_arrow.png);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16px;
    -ms-flex: 0 0 16px;
    flex: 0 0 16px;
    max-width: 16px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.filter_indicator {
    position: absolute;
    width: 18px;
    height: 18px;
    top: 1px;
    left: 0;
    border: 1px solid #e8e8e1;
    border-radius: 1px;
}

.subacategories {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: nowrap;
    max-width: 880px;
    overflow-x: auto;
    padding: 10px 0 30px;
}

.autocomplete-suggestions::-webkit-scrollbar,
.header_bottom .subcategory::-webkit-scrollbar,
.comment_items-wrapper::-webkit-scrollbar,
.product_choose::-webkit-scrollbar,
.subacategories::-webkit-scrollbar {
    width: 11px;
    height: 6px;
    background: #F4F4F4;
    border-radius: 4px;
}

.product_choose::-webkit-scrollbar,
.subacategories::-webkit-scrollbar {
    height: 10px;
}

/* ползунок скроллбара */
.autocomplete-suggestions::-webkit-scrollbar-thumb,
.header_bottom .subcategory::-webkit-scrollbar-thumb,
.comment_items-wrapper::-webkit-scrollbar-thumb,
.product_choose::-webkit-scrollbar-thumb,
.subacategories::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 8px;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb,
.header_bottom .subcategory::-webkit-scrollbar-thumb {
    height: 80px;
}

.products_container {
    width: 100%;
}

.subacategories_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    margin-right: 16px;
    transition: all .5s ease;
    min-width: 150px;
    background: #f4f4f4;
}

.subacategories_item:hover {
    color: var(--main-color);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
/* .subacategories_item:hover .subacategories_item-img {
    border: 1px solid var(--main-color);
} */

.subacategories_item:last-child {
    margin-right: 0;
}

.subacategories_item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.subacategories_item span {
    text-align: center;
}

.ui-slider .ui-slider-range {
    background-color: #3C7A76;
}

.ui-slider .ui-slider-handle.ui-state-focus,
.ui-slider .ui-slider-handle.ui-state-hover {
    background-color: #3C7A76;
}

.checked .filter_indicator {
    background: url(../images/check.png) no-repeat;
    border: 1px solid #FF7101;
    background-position: 2px 3px;
}

.price_range {
    overflow: hidden;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 15px;
}

.price_label {
    float: left;
    width: 50%;
    padding-left: 12px;
    padding-right: 12px;
}

.max_price {
    text-align: right;
}

.max_input,
.min_input {
    max-width: 100%;
    padding: 0 8px;
    line-height: 30px;
    height: 32px;
    border: 1px solid #e8e8e1;
}

/* Browsed products */
.browsed {
    padding-top: 10px;
    padding-bottom: 15px;
}

.browsed_item {
    line-height: 50px;
    height: 80px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.browsed_item img {
    vertical-align: middle;
}

/* Product Rating */
.rating_starOff {
    display: inline-block;
    vertical-align: top;
}

.rating_starOff,
.rating_starOn {
    width: 90px;
    height: 18px;
    background: url(../images/rating.png) repeat-x left top;
}

.rating_starOn {
    display: block;
    background-position: left bottom;
}

.rating_text {
    vertical-align: middle;
    line-height: 18px;
    display: inline-block;
}

/* BREADCRUMBS */
.breadcrumbs {
    padding: 30px 0 10px;
    list-style: none;
    margin-top: 0;
    font-size: 14px;
    line-height: 16px;
    color: #717171;
}

.breadcrumbs.padding-more {
    padding: 250px 0 10px;
}

.breadcrumbs li {
    display: inline-block;
    padding: 0;
    margin: 3px 0;

}

.breadcrumbs li:last-child {
    color: #353535;
}

.breadcrumbs li + li:before {
    padding: 0 10px;
    color: #353535;
    font-weight: 900;
    content: "\27F6";
}

.breadcrumbs a {
    text-decoration: none;
}

/* Scroll to top */
.to_top {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    position: fixed;
    bottom: 95px;
    right: 10px;
    z-index: 99;
    display: none;
    background-color: #b8b7b7;
    background-image: url(../images/up-arrow.png);
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all .5s ease;
}

.to_top:hover {
    background-color: var(--button-color);
}

/* POPUP WINDOW */
.popup {
    width: 320px;
    max-width: 100%;
    padding: 5px;
    text-align: center;
}

.popup_heading {
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

/* Comparison_page */
.comparison_page {
    padding-bottom: 40px;
}

.comparison_left {
    float: left;
    width: 30%;
}

.comparison_products {
    float: right;
    width: 70%;
    position: relative;
    margin: 0;
    border-left: 1px solid #e8e8e1;
}

.comparison_item {
    border-right: 1px solid #e8e8e1;
}

.cell {
    padding: 10px 15px;
    border-bottom: 1px solid #e8e8e1;
}

.comparison_item .cell,
.comparison_item .cprs_rating {
    text-align: center;
}

.cprs_rating {
    padding: 10px 15px;
    border-bottom: 1px solid #e8e8e1;
    border-top: 1px solid #e8e8e1;
}

.cell:nth-child(odd) {
    background: #efefef;
}

.compare_controls {
    position: relative;
}

.compare_show {
    position: absolute;
    left: 0px;
    bottom: 25px;
}

.compare_show a {
    display: inline-block;
    padding: 6px 11px;
    text-decoration: none;
    margin: 0 5px 5px 15px;
}

.compare_show a:hover,
.compare_show .active {
    background: #fff;
    border: 1px solid #e8e8e1;
    padding: 5px 10px;
    color: #030303;
}

.compare_show a span {
    border-bottom: 1px dashed;
}

.compare_show a:hover span,
.compare_show .active span {
    border-color: transparent;
}

.preorder_label {
    padding: 0 5px;
    color: #fff;
    text-align: center;
    font-size: 10px;
    background: #f2bd0b;
    border: none;
    border-radius: 2px;
}

.callback_form {
    border-radius: 10px;
    padding: 30px!important;
}

.callback_form .captcha {
    display: block;
    margin: 0 0px 20px 0;
}

.callback_form .captcha .secret_number {
    width: 95px;
}

.callback_form .captcha .form_captcha {
    width: calc(100% - 117px);
}

.callback_form .button {
    display: block;
    width: 100%;
}

.order_notify_v2 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    background: #fff;
    padding: 20px 0px;
}

.order_notify_v2 .o_notify_v2_head {
    vertical-align: middle;
    margin-bottom: 20px;
}

.order_notify_v2 svg {
    width: 44px;
    height: 44px;
    color: #74B636;
    margin-right: 12px;
    vertical-align: middle;
}

.order_notify_v2 .o_notify_v2_heading {
    font-size: 32px;
    font-weight: 600;
    vertical-align: middle;
}

.o_notify_v2_content {
    margin-bottom: 25px;
}

.o_notify_v2_content .o_notify_v2_content_inner {
    max-width: 660px;
    display: inline-block;
}

.o_notify_v2_order_id .o_notify_v2_order_id_box {
    display: inline-block;
    border: 2px solid #FFC007;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 11px;
    line-height: 1.2;
    background: #fff;
    text-transform: uppercase;
    font-weight: 600;
    color: #414141;
}

.o_notify_v2_order_id .o_notify_v2_order_id_box .o_notify_v2_order_id_bold {
    font-weight: bold;
    font-size: 17px;
    line-height: 1;
    margin-top: 3px;
    display: block;
    color: #000;
}

/* main menu */
/* .menu_group_header{
    float: left;
} */

.menu_list_1 {
    padding-left: 0px;
    list-style: none;
}

.menu_list_2,
.menu_list_3,
.menu_list_4 {
    padding-left: 15px;
    list-style: none;
}

.menu_list {
    margin: 0;
    display: flex
}

.main_header_menu {
    max-width: 340px;
    width: 100%;
}

.menu_item {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    flex-grow: 1;
}

.menu_group_header_menu2 .menu_item:not(:first-child) {
    text-align: center;
}

.menu_group_header_menu2 .menu_item:last-child {
    text-align: right;
    color: #FF7101;
    font-weight: 700
}

.menu_group_header_menu2 .menu_item:last-child a {
    border-bottom: 1px solid #FF7101;
}
/* menu 404 */

menu_group_404 .menu_list {
    margin: 0px;
    padding-left: 15px;
}

.menu_404 {
    margin-top: 30px;
}

.menu_404 .text_404 {
    margin: 0 0 40px;
}

.menu_404 .text_404 {
    font-weight: 500;
    font-family: inherit;
    color: rgb(89, 89, 89);
    font-size: 18px;
    line-height: 1.3;
}

.menu_group_404 .menu_list {
    padding: 0px;
    list-style: none;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    margin-right: -20px;
    margin-left: -20px;
}

.menu_group_404 .menu_list_2 {
    display: none !important;
}

.menu_group_404 .menu_list .menu_item {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    margin-bottom: 20px;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.menu_group_404 .menu_list .menu_link {
    text-align: center;
    color: rgb(255, 255, 255);
    background-color: #00C1F5;
    border: 1px solid rgb(0, 145, 185);
    display: inline-block;
    vertical-align: middle;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: none;
    text-decoration: none;
    cursor: pointer;
    border-radius: 20px;
    width: 100%;
}

.menu_group_404 .menu_list .menu_link:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(4, 73, 92);
}

.animated-btn {
    /*position: relative;*/
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 1;
}

/* .animated-btn:after {
    background: #FFCD67;

    -moz-transform: translateY(-50%) translateX(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) translateX(-50%) rotate(90deg);
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(
            90deg
    );
    transform: translateY(-50%) translateX(-50%) rotate(
            90deg
    );
    content: "";
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 150%;
    z-index: -1;
    -webkit-transition: all .75s ease 0s;
    -moz-transition: all .75s ease 0s;
    -o-transition: all .75s ease 0s;
    transition: all .75s ease 0s;
} */

/* .animated-btn.selected:after,
.animated-btn:hover:after,
.page_item.active .animated-btn:after {
    height: 500% !important;
} */

.slick-arrow.animated-btn:hover:after {
    height: 100% !important;
}

.social_links .animated-btn {
    border-radius: 100%;
}

.tab {
    padding: 40px 6px;
}

a.post_media {
    display: block;
    margin: 30px 0 10px;
}

.post_descr {
    font-size: 16px;
    line-height: 20px;
    color: #575757;
}
.post_descr a{
    color: var(--button-color);
}
.post_comment .h3{
    margin-bottom: 20px;
}
.post_comment{
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.jssocials-share-telegram .jssocials-share-link,
.jssocials-share-facebook .jssocials-share-link,
.jssocials-share-twitter .jssocials-share-link {
    background: var(--main-color) !important;
    border-radius: 10px;
    transition: all .5s ease;
}

.jssocials-share-facebook .jssocials-share-link:hover,
.jssocials-share-telegram .jssocials-share-link:hover,
.jssocials-share-twitter .jssocials-share-link:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.autocomplete-suggestions a {
    font-size: 14px;
    line-height: 120%;
    color: #000000;
    text-decoration: none;
}

.autocomplete-suggestions a:hover {
    color: #FFAB01;
}

.autocomplete-suggestions {
    max-height: 600px!important;
    /* border-radius: 0 0 10px 10px; */
    border-radius: 10px;
}

.autocomplete-suggestions span {
    color: var(--button-color);
    font-size: 16px;
    font-weight: 700;
}

.autocomplete-suggestion:nth-child(even),
.autocomplete-suggestions,
.autocomplete-suggestions .autocomplete-selected {
    background: #FFFFFF;
}


/* menu footer */
/* .lang,
.lang-mobile {margin: 0 15px;} */

.lang a,
.lang-mobile a{
    /* display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    line-height: 32px;
    border-radius: 50%; */
    opacity: 0.5;
    /* background: #f2aa16; */
}
.lang .focus,
.lang-mobile .focus{opacity: 1;}

.flag_1:after{
    content: "|";
    height: 17px;
    width: 2px;
    color: #717171;
}
.lang a span,
.lang-mobile a span{
    font-size: 17px;
    text-transform: uppercase;
    /* color: #717171; */
    color: var(--lang-header-color);
}

/* Second level menu*/
.menu_list_2{display: none;}
.menu_list.menu_list_2{
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 0;
    border-top: 0;
    background: #fff;
    z-index: 999;
    border: 3px solid var(--main-color);
    /* padding: 15px 0 15px 15px; */
}
.menu_list_2 .menu_item_2 .menu_link {
    font-size: 18px;
    line-height: 20px;
    padding: 15px;
    height: 50px;
    max-width: 200px;
    width: fit-content;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    color: #000000;
}
.menu_list_2 .menu_item_2 .menu_link span{font-weight: normal;}
.menu_group_header_menu .menu_item_1{position: relative;}
.main-articles {
    margin-top: 40px;
}
.articles_block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.articles_item {
    margin: unset;
   /*  max-height: 340px; */
    height: 100%;
}
.table_wrapper {
    width: 100%;
    overflow: auto;
    margin-bottom: 20px;
}
table {
    width: 100%;
	border-collapse: collapse;
}
table td {
	padding: 15px;
}
table tbody td {
	border: 1px solid #dddfe1;
}
table tbody tr {
	background-color: transparent;
}
table tbody tr:nth-child(odd) {
    background-color: #ffeecc;
}
table tbody tr:nth-child(odd) td {
	color: #000;
}

.cart_form.form-btn-wrapper{
    padding: 0 0 0 23px;
    margin: 0;
}
.cart_form.form-btn-wrapper .main-btn{
    background-color: var(--button-color);
    color: var(--color-white);
}
.cart_form.form-btn-wrapper .main-btn:hover{
    background-color: var(--color-white);
    color: var(--button-color);
    border-color: var(--button-color);
}
::marker {
    color: var(--button-color);
}
.contact_page .foot_item,
.contact_page .foot_wh .times_inner, .contact_page .foot_wh .email_inner{
    color: #030303;
}
.contact_page .foot_item svg path{
    fill: #030303;
}
.contact_page .foot_item:first-child svg path {
    stroke: #030303;
    fill: transparent;
}
.contact_page .foot_wh .email_inner::before,
.contact_page .foot_wh .times_inner::before{
    filter: none;
}
.contact_page .foot_wh .h3{
    margin-bottom: 20px;
}
.contact_page .fn_validate_callback{
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}
.post_comments,
.related_products{
    margin-top: 40px;
}
.product_details_fixed {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product_details_fixed_wrapper{
    width: 100%;
    left: 0;
    position: fixed;
    bottom: 0;
    background: var(--main-color);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 999;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    
}
.product_details_fixed_wrapper.active{
    opacity: 1;
    visibility: visible;
    color: #ffffff;
    transition: opacity .5s ease;
}
.product_details_fixed_wrapper .old_price, .product_details_fixed_wrapper .old_price::after {
    color: #606060;
}
.product_details_fixed_wrapper .old_price::after {
    border-bottom: 1px solid #606060;
}
.price_wrapper{
    font-weight: bold;
    font-size: 23px;
}
.product_details_right_block {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
}
.product_details_fixed .h2{
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    width: 78%;
    color: #ffffff;
}
.product_details_right_block .preview_form{
    margin: 0;
}
.product_details_right_block .price_container{
    padding-bottom: 0;
    margin-right: 20px;
    flex-direction: column;
}
.product_details_right_block .price_container .price {
    line-height: 1.2;
}
.product_details_right_block .price_container .old_price {
    font-size: 16px;
}

.product_details_right_block .product_buy_fixed {
    min-width: 200px;
}
.product_buy_fixed.active{
    background-color: #fff;
    color: var(--button-color);
}


/***** #Languages & Currencies *******************************************************/
.switcher__item{
    position: relative;
    white-space: nowrap;
    padding: 0 10px;
    height: 26px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15
}
.switcher__visible .switcher__name:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-color: var(--second-company-text);
    transform: rotate(45deg);
    transition: all 0.1s;
    position: relative;
    top: -4px;
    margin-left: 7px;
}
.switcher__name{
    padding: 0;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
}
.switcher__hidden{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    display: none;
    left: -12px;
    padding: 8px 6px;
    position: absolute;
    top: 100%;
    width: auto;
}
.switcher__language .switcher__hidden{left: 0;}

.switcher__item:last-child .switcher__hidden{
    left: inherit;
    right: 0;
}
.switcher__link{
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--body-text);
    text-decoration: none;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    border: none;
    width: 100%;
    background: none;
    transition: all .5s ease;
}
.switcher__link:hover{
    color: var(--button-color);
}
.switcher__link.active{
    text-decoration: none;
    color: var(--button-color);
}
.switcher__visible img,
.switcher__link img{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20px;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    max-width: 20px;
    margin-right: 4px;
}
.switcher__item:hover .switcher__visible .switcher__name:after{
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 0px;
}
.top_nav_right_block{
    display: flex;
    align-items: center;
}
.wish_products_page{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 16px;
    column-gap: 16px;
}
.wish_products_page .products_item{
    margin: 0;
}
.contact_page .foot_item a span:first-child{
    transition: all .5s ease;
}
.contact_page .foot_item a span:first-child:hover{
    color: var(--button-color);
}
.menu_second_wreapper .menu_list {
    display: flex;
    align-items: center;
}
.menu_second_wreapper .menu_list li:first-child{
    margin-right: 40px;
}
.menu_second_wreapper .menu_item  a{
    transition: all .5s ease;
}
.menu_second_wreapper .menu_item  a:hover{
    color: var(--button-color);
}
.subheader_categories .level_1.categories_menu .category_item.has_child a{
    text-decoration: none;
    transition: all .5s ease;
}
.subheader_categories .level_1.categories_menu .category_item a:hover span{
    color: var(--button-color);
}
.page_item.active .page_link{
    background: var(--button-color);
}
.comment_product.comments_page {
    font-size: 14px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f2f2f2;
    font-weight: bold;
}
.comment_product.comments_page a {
    text-decoration: underline;
}
.page_comments{
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: flex-start;
}
.page_comment_form{
    position: sticky;
    top: 208px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    margin-left: 15px;
    width: 100%;
    max-width: 355px;
}
.comment_items_page{
    width: 100%;
    max-width: 800px;
}
.page_comment_form .form_title{
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
}
.lang_popup .popup_heading {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--footer-bg);
    text-align: center;
    font-size: 20px;
}
.lang_popup_inner {
    display: flex;
    gap: 30px;
}
.lang_popup_btn {
    gap: 10px;
}
.lang_popup_btn.bad_choise {
    background: transparent;
    color: #FF7101;
}

/* Feedback page*/

.feedback_shops_info_container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    row-gap: 24px;
    column-gap: 24px;
    position: relative;
    height: 100%;
}
.feedback_wrapper_left {
    width: 390px;
    max-width: 100%;
    margin-top: 30px;
    padding-left: 10px;
}
.feedback_caption {
    color: #F07830;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-left: 10px;
}
.feedback_wrapper {
    border: 1px solid #DEDEDE;
    padding: 16px 18px;
    width: 100%;
    min-height: 116px; 
    border-radius: 12px;
    background: #FFF;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all .6s ease;
}
.feedback_wrapper:last-child {
    margin-bottom: 0;
}
.feedback_shops_info_container .feedback_wrapper {
    transition: all .6s ease;
}
.feedback_wrapper_left .feedback_wrapper:hover {
    border: 1px solid #F07830;
}

.feedback_title_box {
    display: flex;
}
.feedback_title {
    display: flex;
    flex-direction: column;
}
.feedback_title .h2{
    color: #030303;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}
.feedback_icon {
    margin-right: 18px;
}
.feedback_main_icon {
    width: 28px;
    height: 28px;
}
.feedback_wrapper_right {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    margin-top: 60px;
    position: sticky;
    top: 190px;
    overflow: hidden;
    margin-bottom: -69px;
}

.feedback_wrapper_right iframe {
    display: block;
    width: 100%;
    /* height: 500px; */
    height: 430px;
    border-radius: 10px;
    object-fit: cover;
    /* margin-top: -69px;
    margin-left: -2px; */
    border: 0;
}
/* .map_wrapper {
    width: 100%;
    height: 500px; 
} */
.feedback_page h2.h4{
    color: #000000;
    font-weight: 600;
    line-height: 30px;
    font-size: 24px;
    margin-bottom: 26px;
} 
.feedback_wrapper_left .h3{
    color: #717171;
    line-height: 18px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px!important;
    display: flex;
    align-items: center;
}
.feedback_little_icon svg {
    height: 24px;
    width: 24px;
}
.feedback_wrapper_left .foot_item-cont a {
    font-weight: 400;
    line-height: 20px;
    font-size: 16px;
    color: #030303;
    transition: all .4s ease;
}

.feedback_wrapper_left .foot_item-cont a:hover {
    color: #F07830;
}
.feedback_wrapper_left .foot_item.foot_item-cont{
    margin-bottom: 14px;
} 
.feedback_wrapper_left .foot_item {
    margin-bottom: 0;
}
.feedback_wrapper_left .foot_item.foot_item_link{
    margin-bottom: 4px;
}
.feedback_wrapper .feedback_button_details {
    border-bottom: 1px dashed #000; 
    display: inline;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    position: relative;
    transition: all .4s ease;
    width: max-content;
   
} 

.feedback_button_details:hover {
    color: #F07830;
    border-bottom: 1px dashed #F07830; 
}
.feedback_button_details.block_open {
    display: none;
}
/* .feedback_wrapper:first-child .details-content {
    display: block;
}

.feedback_wrapper:first-child .feedback_button_details.block_open {

} */
.details-content {
    display: none;
}
.feedback_wrapper_left .foot_wh {
    margin: 24px 0 0;
}
.feedback_wrapper_left .company_open_hours{
    font-weight: 400;
    line-height: 20px;
    font-size: 16px;
    /* margin-left: 32px; */
}
.feedback_wrapper_left .company_open_hours span{
    margin-bottom: 4px;
    display: block;
}
.feedback_phone_block {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.feedback_phone_block .phones {
    padding: 16px 16px 16px 50px;
    border-radius: 12px;
    border: 1px solid #DEDEDE;
    background: #FFF;
    /* width: 372px; */
    width: 100%;
    min-width: 300px;
    max-width: 370px;
    height: 105px;
    margin-top: 24px;
}
.feedback_phone_block .phones_container {
    margin-top: 10px;
}
.feedback_phone_block .phones_container a {
    text-decoration: none;
}
.feedback_phone_block .company_phone_text {
    color: #030303;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.feedback_phone_block_text {
    color: #F07830;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}
.expanded {
    display: block;
}
.feedback_page_annotation {
    font-weight: 400;
    line-height: 24px;
    font-size: 16px;
    color: #000000;
    max-width: 760px;
    margin-bottom: 24px;
}
.feedback_wrapper_callback {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    column-gap: 32px;
}
.h2.feedback_callback_header {
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 24px;
}
.feedback_page_description {
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    font-weight: 400;
    max-width: 512px;
}
.feedback_page_description p{
    margin-bottom: 1.75rem;
}
.feedback_social_wrapper {
    border: 1px solid #DEDEDE;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    column-gap: 24px;
    margin-bottom: 34px;
    border-radius: 12px;
}
.feedback_social_wrapper div.h3{
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 12px;
}
.feedback_social_wrapper_right .email_inner {
    margin: 0;
    font-weight: 400;
    line-height: 20px;
    font-size: 16px;
    color: #030303;
    display: flex;
    align-items: center;
}
.feedback_social_wrapper_right .email_inner a{
    text-decoration: none;
    margin-left: 28px;
    transition: all .5s ease;
}
.feedback_social_wrapper_right .email_inner a:hover{
    color: var(--button-color);
}
.feedback_social_wrapper_right .email_inner::before{
    left: 0;
}
.feedback_social_wrapper_left .social_links .animated-btn{
    border-radius: 0;
}
.feedback_social_wrapper_left .social_links a:hover{
    box-shadow: none!important;
}
.feedback_social_wrapper_left .social_links a:hover svg{
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}
.feedback_social_wrapper_left .social_links a span{
    margin-left: 8px;
    color: #030303;
    font-weight: 400;
    font-size: 16px;
}
.feedback_social_wrapper_left .social_links a svg{
    transition: all .5s ease;
}

/* End Feedback page*/

/* popup on the Main page appearing in 3 seconds */


.modal {
    max-width: 1000px;
    width: 100%;
    height: 600px;
    /* height: 100%; */
    position: fixed; 
    top: 0;
    left: 0; 
    z-index: 102;
    border-radius: 10px;
    border: 5px solid #fff!important;
    background-color: transparent!important;
    margin-left: 20px !important;
    margin-right: 20px !important;
}

/* .popup_page_bg {
    width: 100%;
    height: 100%;
    position: fixed; 
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.8);
} */
.popup_modal_bg {
    position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 100;
    background-image: url(../images/popup_bg_main_new.jpg);
    /* background-image: url(../images/main_banner_new.jpg); */
    background-position: center;
    filter: blur(3px);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.24);
}
.popup_modal_bg::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 101;
    position: absolute;
    top: 0;
    left: 0;
} 
.popup_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 103;
    width: 100%;
    padding: 10px;
}
.popup_title {
    color: #FFF;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    /* font-size: 40px; */
    font-style: normal;
    line-height: normal;
    margin-bottom: 64px;
    /* margin-bottom: 20px; */
    font-weight: 700;
}
.popup_summary {
    color: #FFF;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-style: normal;
    line-height: normal;
    margin-bottom: 60px;
}
.popup_buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.button_modal {
    display: grid;
    place-items: center;
    width: 320px;
    height: 64px;
    border-radius: 12px;
    border: 2px solid #F07830;
    background: #F07830;
    text-decoration: none;
    margin-right: 40px;
    cursor: pointer;
    transition: all .6s ease;
}
.button_modal:last-child {
    margin-right: 0;
    margin-bottom: 0;
}
.button_modal_text {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    transition: all .6s ease;
    font-weight: 700;
}

 .button_modal:hover {
    background: transparent; 
}
.button_modal:hover .button_modal_text {
    color: #F07830;
} 
.popup_close_main {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 104;
    cursor: pointer;
}
.banner_image {
    width: 100%;
    height: 450px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.main-banner-btn {
    display: grid;
    place-items: center;
    position: relative;
    line-height: 20px;
    font-weight: 700;
    font-size: 18px;
    background: var(--button-color);
    color: #fff;
    width: 100%;
    margin-left: auto;
    max-width: 250px;
    transition: all .5s ease;
    height: 55px;
    margin: 0 auto;
    border: 2px solid var(--button-color);
    border-radius: 10px;
    text-decoration: none;
    z-index: 1;
    cursor: pointer;
    transition: all .5s ease;
}
.banner_content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 300px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 50px 54px;
    border-radius: 16px;
    padding: 50px 54px;
}
.banner_content__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: auto;
}
.banner_caption {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 24px;
}
.banner_text {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    width: 80%;
    margin-bottom: 24px;
    line-height: 1.5;
}
.main_banner_wrapper {
    position: relative;
    height: 450px;
}
.c-sub-item img {
    width: 30px;
    height: 30px;
}
.main-banner .slick-next::before, .main-banner .slick-prev::before {
    border-top: 2px solid;
    border-left: 2px solid;
}
/* .main_products:not(.slick-initialized),  */
.all_brands:not(.slick-initialized), 
.articles:not(.slick-initialized), .browsed:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.main-banner:not(.slick-initialized) {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0;
}
.main-banner:not(.slick-initialized) .banner_item:nth-child(1n+2) {
    display: none;
}
.main_products:not(.slick-initialized) .products_item:nth-child(1n+5), 
.all_brands:not(.slick-initialized) .fleft:nth-child(1n+5), 
.articles:not(.slick-initialized) .blog_item:nth-child(1n+5), 
.browsed:not(.slick-initialized) .products_item:nth-child(1n+5) {
    display: none;
}

.delivery .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.delivery .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    top: 20px;
}

.delivery .padding {
    padding-left: 0;
}

.select2-container--open .select2-dropdown--below {
    border: 1px solid #e8e8e1;
    box-shadow: none;
    background: #f7f7f7;
}

.select2-results__option {
    padding: 10px 15px;
}

.select2-container--default .select2-results > .select2-results__options#select2-novaposhta_city-results {
    max-height: 270px;
}

.banner_body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    z-index: 3;
}
.banner_item {
    height: 450px;
    position: relative;
    /* max-width: 1920px; */
    width: 100%;
    min-width: 320px;
}
.banner_item:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.2);
    z-index: 2;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    visibility: hidden;
    opacity: 0;
}
.delivery select, .sort_menu select {
    visibility: hidden!important;
    opacity: 0!important;
}
.banner_img {
    width: 100%;
    height: 100%;
}
.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.details-content a{
    color: var(--button-color);
    font-size: 18px;
}
.details-content .fn_show_phone {
    border-color: var(--button-color);
}
.phones_container {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.footer_contacts .phones_container, .feedback_phone_block .phones_container{
    gap: 5px;
}

.cat-1.has_child .category_link:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(45deg);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    top: -1px;
    margin-left: 7px;
}
.phones_header a {
    font-size: 14px
}

.level_2 .category_item .category_link:after {
    content: "";
    display: none!important;
}


.level_2 .category_item .category_link span {
    max-width: 100%;
    margin: auto 0;
}

.cat-1.has_child:hover .category_link:after {
    transform: rotate(225deg);
    top: 4px;
}
.o_notify_v2_order_id {
    margin-bottom: 25px;
}
.order_btn {
    background-color: #F07830;
    border: 2px solid #F07830;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    color: #ffffff;
    padding: 15px 20px;
    width: fit-content;
    max-width: 100%;
    cursor: pointer;
    transition: all .5s ease;
    text-align: center;
}
.order_btn:hover {
    background-color: transparent;
    color: #F07830;
}

/* .variant_title{
    background: #fff;
    border: 1px solid var(--global-bg--white-smoke);
    box-shadow: 0 4px 10px rgba(2, 2, 40, .2);
    font-size: 12px;
    font-weight: 200;
    width: auto;
    max-width: auto;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    bottom: 100%;
    z-index: 1000;
    transition: all .3s ease-out;
    border-radius: 8px;
}
.product_choose-item:hover .variant_title {
   top: -100%;
    opacity: 1;
    visibility: visible;
} */

/***** #Swiper **************************************************************/
@font-face {
    font-family: 'swiper-icons';
    src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');
    font-weight: 400;
    font-style: normal;
  }
  .fn_products_slide.swiper-container{
    padding: 10px 10px 15px 10px;
  }
  .fn_posts.swiper-container{
    padding: 10px 10px 15px 10px;
  }
  .fn_all_brands.swiper-container{
    padding: 10px 10px 15px 10px;
  }
  .swiper-container-vertical > .swiper-wrapper {flex-direction: column;}
  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
  }
  .swiper-container-android .swiper-slide, .swiper-wrapper { transform: translate3d(0px, 0, 0);}
  .swiper-container-multirow > .swiper-wrapper {flex-wrap: wrap;}
  .swiper-container-multirow-column > .swiper-wrapper {flex-wrap: wrap;flex-direction: column;}
  .swiper-container-free-mode > .swiper-wrapper {transition-timing-function: ease-out;margin: 0 auto;}
  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
  }
  .swiper-slide-invisible-blank {visibility: hidden;}
  .swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {height: auto;}
  .swiper-container-autoheight .swiper-wrapper {align-items: flex-start;transition-property: transform, height;}
  .swiper-container-3d {perspective: 1200px;}
  .swiper-container-3d .swiper-wrapper,
  .swiper-container-3d .swiper-slide,
  .swiper-container-3d .swiper-slide-shadow-left,
  .swiper-container-3d .swiper-slide-shadow-right,
  .swiper-container-3d .swiper-slide-shadow-top,
  .swiper-container-3d .swiper-slide-shadow-bottom,
  .swiper-container-3d .swiper-cube-shadow {transform-style: preserve-3d;}
  .swiper-container-3d .swiper-slide-shadow-left,
  .swiper-container-3d .swiper-slide-shadow-right,
  .swiper-container-3d .swiper-slide-shadow-top,
  .swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-container-3d .swiper-slide-shadow-left {background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));}
  .swiper-container-3d .swiper-slide-shadow-right {background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));}
  .swiper-container-3d .swiper-slide-shadow-top {background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));}
  .swiper-container-3d .swiper-slide-shadow-bottom {background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));}
  .swiper-container-css-mode > .swiper-wrapper {overflow: auto;scrollbar-width: none;-ms-overflow-style: none;}
  .swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar { display: none;}
  .swiper-container-css-mode > .swiper-wrapper > .swiper-slide {scroll-snap-align: start start;}
  .swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {scroll-snap-type: x mandatory;}
  .swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {scroll-snap-type: y mandatory;}
/*   .swiper-button-prev,
  .swiper-button-next {
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    outline: none;
    left: inherit;
    background: #2E7A1E;
    text-align: center;
    color: rgb(238, 238, 238);
    transition: all .2s ease-in-out 0s;
    margin: 0;
    border-radius: 100%;
  } */
  .fn_products_slide .swiper-button-prev,
  .fn_products_slide .swiper-button-next {
    top: calc(50% - 36px);
  }
  .fn_comparison_products .swiper-button-prev,
  .fn_comparison_products .swiper-button-next {
    top: 100px;
  }
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: #2f2f2e85;
    color: #FFAB01;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-family: swiper-icons;
    font-size: 18px;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
  }
  .swiper-button-prev,.swiper-container-rtl .swiper-button-next {left: 10px;right: auto;}
  .swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after {content: 'prev';}
  .swiper-button-next,.swiper-container-rtl .swiper-button-prev { right: 10px;left: auto;}
  .swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after {content: 'next';}
  .swiper-button-lock { display: none;}
  .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
  }
  .swiper-pagination.swiper-pagination-hidden {opacity: 0;}
  /* Common Styles */
  .swiper-pagination-fraction,
  .swiper-pagination-custom,
  .swiper-container-horizontal > .swiper-pagination-bullets {bottom: 10px;left: 0;width: 100%;}
  /* Bullets */
  .swiper-pagination-bullets-dynamic { overflow: hidden;font-size: 0;}
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {transform: scale(0.33);position: relative;}
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {transform: scale(1);}
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {transform: scale(1);}
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {transform: scale(0.66);}
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {transform: scale(0.33);}
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {transform: scale(0.66);}
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {transform: scale(0.33);}
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 100%;
    background: rgb(219, 219, 219);
    opacity: 0.8;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 100%;
  }
  button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable .swiper-pagination-bullet {cursor: pointer;}
  .swiper-pagination-bullet-active {opacity: 1;background: var(--basic-company);}
  .swiper-container-vertical > .swiper-pagination-bullets {right: 10px;top: 50%;transform: translate3d(0px, -50%, 0);}
  .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {margin: 6px 0;display: block;}
  .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {top: 50%;transform: translateY(-50%);width: 8px;}
  .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {display: inline-block;transition: 200ms transform, 200ms top;}
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {margin: 0 4px;}
  .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {left: 50%;transform: translateX(-50%);white-space: nowrap;}
  .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet { transition: 200ms transform, 200ms left;}
  .swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {transition: 200ms transform, 200ms right;}
  .swiper-pagination-progressbar { background: rgba(0, 0, 0, 0.25);position: absolute;}
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--basic-company);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill { transform-origin: right top;}
  .swiper-container-horizontal > .swiper-pagination-progressbar,
  .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
  }
  .swiper-container-vertical > .swiper-pagination-progressbar,
  .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
  }
  .swiper-pagination-lock { display: none;}
  .swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
  }
  .swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
  }
  .swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
  }
  .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
  }
  .swiper-scrollbar-cursor-drag { cursor: move;}
  .swiper-scrollbar-lock { display: none;}
  .swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .swiper-zoom-container > img,
  .swiper-zoom-container > svg,
  .swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .swiper-slide-zoomed {cursor: move;}



  .swiper-lazy-preloader {
    width:42px;
    height:42px;
    position:absolute;
    left:50%;
    top:50%;
    margin-left:-21px;
    margin-top:-21px;
    z-index:10;
    transform-origin:50%;
    animation:swiper-preloader-spin 1s infinite linear;
    box-sizing:border-box;
    border:4px solid #000;
    border-radius:50%;
    border-top-color:transparent
   }
   @keyframes swiper-preloader-spin {
    100% {
     transform:rotate(360deg)
    }
   }
   .swiper-container .swiper-notification {
    position:absolute;
    left:0;
    top:0;
    pointer-events:none;
    opacity:0;
    z-index:-1000
   }
   .swiper-container-fade.swiper-container-free-mode .swiper-slide {transition-timing-function:ease-out}
   .swiper-container-fade .swiper-slide {pointer-events:none;transition-property:opacity}
   .swiper-container-fade .swiper-slide .swiper-slide {pointer-events:none}
   .swiper-container-fade .swiper-slide-active,
   .swiper-container-fade .swiper-slide-active .swiper-slide-active {pointer-events:auto}
   .swiper-container-cube {overflow:visible}
   .swiper-container-cube .swiper-slide {
    pointer-events:none;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
    z-index:1;
    visibility:hidden;
    transform-origin:0 0;
    width:100%;
    height:100%
   }
   .swiper-container-cube .swiper-slide .swiper-slide {pointer-events:none}
   .swiper-container-cube.swiper-container-rtl .swiper-slide {transform-origin:100% 0}
   .swiper-container-cube .swiper-slide-active,
   .swiper-container-cube .swiper-slide-active .swiper-slide-active {pointer-events:auto}
   .swiper-container-cube .swiper-slide-active,
   .swiper-container-cube .swiper-slide-next,
   .swiper-container-cube .swiper-slide-next+.swiper-slide,
   .swiper-container-cube .swiper-slide-prev {pointer-events:auto;visibility:visible}
   .swiper-container-cube .swiper-slide-shadow-bottom,
   .swiper-container-cube .swiper-slide-shadow-left,
   .swiper-container-cube .swiper-slide-shadow-right,
   .swiper-container-cube .swiper-slide-shadow-top {
    z-index:0;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden
   }
   .swiper-container-cube .swiper-cube-shadow {
    position:absolute;
    left:0;
    bottom:0px;
    width:100%;
    height:100%;
    background:#000;
    opacity:.6;
    -webkit-filter:blur(50px);
    filter:blur(50px);
    z-index:0
   }
   .swiper-container-flip {overflow:visible}
   .swiper-container-flip .swiper-slide {
    pointer-events:none;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
    z-index:1
   }
   .swiper-container-flip .swiper-slide .swiper-slide {pointer-events:none}
   .swiper-container-flip .swiper-slide-active,
   .swiper-container-flip .swiper-slide-active .swiper-slide-active {pointer-events:auto}
   .swiper-container-flip .swiper-slide-shadow-bottom,
   .swiper-container-flip .swiper-slide-shadow-left,
   .swiper-container-flip .swiper-slide-shadow-right,
   .swiper-container-flip .swiper-slide-shadow-top {
    z-index:0;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden
   }
/***** #Lazy load ********************************************************************/
.lazy:not(.initial) {transition: all 1s;}
.lazy.initial,
.lazy.loaded,
.lazy.error {opacity: 1;}
.lazy:not(.loaded) {
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.lazy.loaded {
    -o-object-fit: cover;
    object-fit: cover;
}

/***** #Reedmore *************************************************************************/
.fn_readmore + [data-readmore-toggle],
.fn_readmore[data-readmore] {
    display: inline-block;
    width: auto;
    position: relative;
}
.fn_readmore[aria-expanded="false"]::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4em;
    background: -moz-linear-gradient(top,#fff0 0,#fff 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,0)),color-stop(100%,#fff));
    background: -webkit-linear-gradient(top,rgba(255,255,255,0) 0,#fff 100%);
    background: -o-linear-gradient(top,rgba(255,255,255,0) 0,#fff 100%);
    background: -ms-linear-gradient(top,rgba(255,255,255,0) 0,#fff 100%);
    background: linear-gradient(top,rgba(255,255,255,0) 0,#fff 100%);
}
.main_seo-txt.fn_readmore[aria-expanded="false"]::after {
    background: -moz-linear-gradient(top,#fff0 0,#f7f7f7 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,0)),color-stop(100%,#f7f7f7));
    background: -webkit-linear-gradient(top,rgba(255,255,255,0) 0,#f7f7f7 100%);
    background: -o-linear-gradient(top,rgba(255,255,255,0) 0,#f7f7f7 100%);
    background: -ms-linear-gradient(top,rgba(255,255,255,0) 0,#f7f7f7 100%);
    background: linear-gradient(top,rgba(255,255,255,0) 0,#f7f7f7 100%);
}
.fn_readmore[data-readmore] {
    transition: height 500ms;
    overflow: hidden;
    max-height: 700px;
    display: block;
    width: 100%;
}
.fn_readmore + [data-readmore-toggle]{
    margin-top: 13px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 600;
    color: var(--button-color);
    border-bottom: 1px solid;
    line-height: 1.2;
}
.fn_readmore + [data-readmore-toggle]:hover,
.fn_readmore + [data-readmore-toggle]:focus{
    border-bottom: 1px solid transparent;
    text-decoration: none;
}
.fn_readmore + [data-readmore-toggle] span{
    color: var(--button-color);
    background: transparent;
    border-color:  var(--button-color);
    border: 1px solid;
    border-radius: 3px;
    padding: 1px 30px;
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    transition: all .3s;
    font-weight: 500;
}
.fn_readmore + [data-readmore-toggle]:hover span{
    color: var(--button-text);
    background:var(--button-color);
    border-color:  var(--button-color);
}
.fn_social_image i:before{content: "\f0ac";}
.fn_social_image .fa-github:before{content: "\f09b";}
.fn_social_image .fa-google-plus:before{content: "\f0d5";}
.fn_social_image .fa-google:before{content: "\f1a0";}
.fn_social_image .fa-twitter:before{content: "\f099";}
.fn_social_image .fa-pinterest-p:before{content: "\f231";}
.fn_social_image .fa-odnoklassniki:before{content: "\f263";}
.fn_social_image .fa-facebook:before{content: "\f09a";}
.fn_social_image .fa-skype:before{content: "\f17e";}
.fn_social_image .fa-vk:before{content: "\f189";}
.fn_social_image .fa-whatsapp:before{content: "\f232";}
.fn_social_image .fa-youtube:before{content: "\f167";}
.fn_social_image .fa-instagram:before{content: "\f16d";}
.fn_social_image .fa-linkedin:before{content: "\f0e1";}

.swiper-container{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}


.fn_products_slide:not(.swiper-container-initialized) .swiper-wrapper_custom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.fn_products_slide:not(.swiper-container-initialized) .swiper-wrapper_custom .swiper-slide:nth-child(1n+5) {
    display: none;
}


.fn_all_brands:not(.swiper-container-initialized) .swiper-wrapper_custom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.fn_all_brands:not(.swiper-container-initialized) .swiper-wrapper_custom .swiper-slide:nth-child(1n+5) {
    display: none;
}

.fn_posts:not(.swiper-container-initialized) .swiper-wrapper_custom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.fn_posts:not(.swiper-container-initialized) .swiper-wrapper_custom .swiper-slide:nth-child(1n+5) {
    display: none;
}

.product_choose_wrp{
    position: relative;
}

.product__sizes_slider {
    flex-wrap: nowrap;
    width: 100%;
    /* margin-top: 10px; */
    overflow: hidden;
}
.product__sizes_slider .swiper-slide {
    width: auto !important;
}
.block-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.buttons_wrp {
    display: flex;
    gap: 6px;
    padding-right: 10px;
    margin-bottom: 30px;
}
.product_details-main .product_choose_wrp::after{display: none;}
.product_choose_wrp::after {
    content: "";
    position: absolute;
    bottom: 14px;
    right: 0;
    width: 20%;
    z-index: 40;
    height: 4em;
    background: -moz-linear-gradient(top, #fff0 0, #fff 100%);
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(0, rgba(255, 255, 255, 0)),
      color-stop(100%, #fff)
    );
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 5%, #ffffff 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
  }

.catalog_button {
    width: 290px;
    background: var(--button-color);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    padding: 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all .3s ease;
    border: 2px solid var(--button-color);
    height: 50px
}

.category_main_item {
    display: flex;
    position: relative;
    text-decoration: none;
        min-height: 220px;
}
.category_main_image {
    display: flex;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: 10px 10px 80px 10px;
    overflow: hidden;
    position: relative;
    transition: all .3s ease
}
.categories_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.category_main_name {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    position: absolute;
    bottom: 16px;
    left: 16px;
    max-width: 180px;
    line-height: 29px;
    height: 58px
}
.category_main_image::after {
    content:'';
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    height: 130px
}
.category_main_btn {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 50px;
    height: 50px;
    border: 5px solid #FFFFFF;
    background: var(--button-color);
    border-radius: 100%;
    color: #fff;
}
.margin-block {
    margin: 70px 0;
}
.category_main_btn::after {
    content:'';
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    transition: all .3s ease;
    position: absolute;
    left: calc(50% - 7px);
    top: calc(50% - 6px);
}
.advantages_item {
    width: 33.33%;
    box-shadow: 0px 4px 25px 0px #00053314;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    border-radius: 10px;
    gap: 16px;
    transition:all .3s ease
}
.advantages_name {
    font-size: 20px;
    color: #4D4D4D;
    font-weight: 600;
    line-height: 26px;
    text-align: center;
}
.advantages_description {
    color: #4D4D4D;
    font-size: 14px;
    text-align: center;
}
.advantages_wrapper {
    display: flex;
    gap: 15px
}
.advantages_icon {
    width: 82px;
    height: 82px;
}
.back-block {
    margin: 70px 0;
    padding: 70px 0;
    background: #F7F7F7;
}
.back-block.last-block {
    margin-bottom: 0
}
.underline_btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--button-color);
    border-bottom: 1px solid;
    margin: 15px auto 0;
    display: block;
    width: fit-content;
    line-height: 1.2;
    transition: all .3s ease
}
.footer_wrapper {
    display: flex;
    justify-content: space-between;
}
.foot {
    width: fit-content;
}
.menu_group_footer_menu .menu_list {
    flex-direction: column;
}
.footer_slogan {
    color: #E4E4E4;
    font-size: 14px;
    max-width: 254px;
    margin: 30px 0;
}
.foot .callback {
    background: var(--button-color);
    border-color: var(--button-color);
}
.footer_contacts .phones,
.footer_contacts .phones svg,
.footer_contacts .company_phone_text {
    color: #fff
}
.footer_contacts .phones {
    margin-bottom: 20px
}
.foot_item .header_btn {
    max-width: 210px
}
.account_link svg, .informer_link svg{
    position: relative;
    z-index: 10
}
.account_link::after, .informer_link::after {
    content: '';
    width: 52px;
    height: 52px;
    background: #fff;
    position: absolute;
    z-index: 0;
    transition: all .3s ease;
    border-radius: 100%;
    top: -9px;
    opacity: 0;
    visibility: hidden;
}
.categories_nav {
    background: #F7F7F7;
    display: block!important;
    position: absolute;
    top: 90%;
    left: 60px;
    transition: all .3s;
    width: 410px;
    z-index: 15;
    height: auto;
    opacity: 1;
    visibility: visible;
    min-height: 280px;
    box-shadow: 0px 4px 13px 0px #0E003040;
    border-radius: 10px
}
.fn_catalog_menu.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}
.category_item.has_child a::after {
    position: relative;
    content:'';
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--button-color);
    border-bottom: 2px solid var(--button-color);
    transform: rotate(-45deg);
    right: 10px;
}
.catalog_button.active {
    background: transparent;
    color: var(--button-color)
}
.second-page {
    padding-bottom: 70px
}
.main.padding-more {
    padding-top: 88px
}
.payments_footer {
    display: flex;
    max-width: 280px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.payment_footer_item {
    display: flex;
}
.informer_icon {
    display: flex;
    position: relative;
}
.stickers {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.sticker {
    display: inline-block;
    padding: 0 7px;
    height: 24px;
    line-height: 24px;
    color: #242824;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 5px;
    border-radius: 2px 2px 12px 2px;
    white-space: nowrap;
    border: 1px solid #FFFFFF;
    min-width: 50px;
    text-align: center;
}
.sticker--discount {
    background-color: #FFA397;
}
.preview .fn_transfer {
    position: relative
}
.sticker--hit {
    background-color: #FFE48B;
}
.product_top {
    text-decoration: none;
}

.fn_serch_mobile.form_search {
    background: #000000b8;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: saturate(180%) blur(20px);
    display: none;
    max-width: 100%;
    border-radius: 0;
}
    .search_close {
        color: #ffffff80;
        cursor: pointer;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        transition: color .5s;
        -webkit-tap-highlight-color: #0000;
    }
        .form_search_content {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 700px;
        height: fit-content;
        padding: 0 20px;
        position: relative;
        z-index: 20;
        margin: 15vh auto 0;
        align-items: center;
    }
        .search_close svg {
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 30px;
        right: 30px;
    }
    .text_search {
        color: #fff9;
        font-size: 20px;
        font-weight: 400;
        text-align: center;
        height: 20px;
        line-height: 20px;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        margin-bottom: 10px;
    }
        .search_button {
        left: auto;
        right: 10px;
        width: 50px;
        height: 50px;
        top: 0;
        position: absolute;
        background: transparent;
    border: none;
    padding: 0;
    color: #ABAEBA;
    }
        .search_button svg {
        width: 26px;
        height: 26px;
    }
    .fn_search_informer {
        cursor: pointer;
    }