@font-face {
    font-family: Ubuntu;
    font-display: swap;
    src: url(../fonts/Ubuntu.ttf);
}

@font-face {
    font-family: Ubuntu-Bold;
    font-display: swap;
    src: url(../fonts/Ubuntu-Bold.ttf);
}

@font-face {
    font-family: Ubuntu-Light;
    font-display: swap;
    src: url(../fonts/Ubuntu-Light.ttf);
}

@font-face {
    font-family: Ubuntu-Regular;
    font-display: swap;
    src: url(../fonts/Ubuntu-Regular.ttf);
}

@font-face {
    font-family: Ubuntu-Medium;
    font-display: swap;
    src: url(../fonts/Ubuntu-Medium.ttf);
}

@font-face {
    font-family: Inter-Regular;
    font-display: swap;
    src: url(../fonts/Inter-Regular.ttf);
}

@font-face {
    font-family: Inter-Medium;
    font-display: swap;
    src: url(../fonts/Inter-Medium.ttf);
}

@font-face {
    font-family: Inter-SemiBold;
    font-display: swap;
    src: url(../fonts/Inter-SemiBold.ttf);
}

@font-face {
    font-family: Inter-Bold;
    font-display: swap;
    src: url(../fonts/Inter-Bold.otf);
}

@font-face {
    font-family: PTSans-Bold;
    font-display: swap;
    src: url(../fonts/PTSans-Bold.ttf);
}

@font-face {
    font-family: PTSans-Regular;
    font-display: swap;
    src: url(../fonts/PTSans-Regular.ttf);
}

@keyframes menu {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0%);
    }
}

@keyframes show {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0%);
    }
}

@keyframes menuLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    height: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: normal;
    /* font-family: 'Open Sans', sans-serif; */
    font-family: Ubuntu;
    line-height: 1.5;
    color: #030303;
    background-color: #f6f6f6;
    min-width: 320px;
}

.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 {
    padding: 5px 0;
    font-weight: normal;
    font-size: 32px;
    line-height: 27px;
    color: #5b6770;
    width: max-content;
    text-transform: uppercase;
    margin: 0;
    font-family: Ubuntu-Bold;
}

.page-heading .h1 {
    width: 100%;
    line-height: 46px;
    margin-bottom: 16px;
}

.h1 span {
    border-bottom: 5px solid #EF233C;
}

.h2 {
    padding: 19px 15px;
    font-size: 18px;
    border-bottom: 1px solid #e1e8ed;
    background-color: #fff;
    margin: 0;
}

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

.h4 {
    font-size: 16px;
    color: #606060;
    margin: 0 0 5px;
}

.h5 {
    font-size: 14px;
    color: #606060;
    margin: 0 0 5px;
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover,
a:active {
    text-decoration: none;
}

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

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

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

.container.header_wrapper:after {
    display: none;
}

.container.page-heading {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.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;
}

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

.form_group_1 {
    display: flex;
    align-items: baseline;
    width: 100%;
    justify-content: space-between;
}

.form_input {
    line-height: 44px;
    height: 44px;
    background-color: #fff;
    border: 1px solid #e8e8e1;
    border-radius: 2px;
    padding: 0 15px;
    width: 100%;
    font-family: inherit;
    font-size: 12px;
}

.novaposhta_types .form_input {
    border-radius: 12px;
    border: 1px solid #e9e9e9;
    background-color: #ffffff;
}

.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 {
    transition: all 0.1s linear 0s;
    line-height: 1;
    display: table;
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 1;
    cursor: text;
    font-family: inherit;
    color: rgb(146, 146, 146);
    font-size: 12px;
}

.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; */
    -webkit-text-fill-color: #969696;
}

.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);
}

.placeholder_focus.focused~.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;
}

.form_textarea {
    display: block;
    width: 100%;
    border: 1px solid #e8e8e1;
    border-radius: 2px;
    background-color: #fff;
    padding: 15px;
    font-family: inherit;
    font-size: 12px;
}

.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;
}*/
.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;
}

.comparison_button.selected {
    background-image: url(../images/comparison_icon_selected.png);
}

.wishlist_button.selected {
    background-image: url(../images/wish_icon_selected.png);
}

/* Header */
header {
    background-color: #f6f6f6;
}

header a {
    text-decoration: none;
}

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

.menu_switch {
    position: relative;
    height: 30px;
    width: 20px;
    background-position: center center;
    cursor: pointer;
    /* background: url(../images/menu_icon.png) no-repeat; */
}

.mobile_header_right_block {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile_header_right_block_tablet {
    display: none;
}

.menu_switch::before {
    content: "";
    width: 24px;
    height: 20px;
    position: absolute;
    top: 6px;
    background: url(../images/icons/burger_menu.svg) no-repeat;
    background-size: contain;
}

.openmenu .menu_switch::before {
    width: 20px;
    height: 20px;
    top: 7px;
    background: url(../images/close_menu.svg) no-repeat;
}

.informers {
    float: right;
}

.informer {
    position: relative;
    /* float: left; */
    padding: 8px 12px;
    line-height: 22px;
    font-weight: bold;
    font-size: 0;
    min-width: 49px;
    text-align: center;
    /* border-left: 1px solid #e8e8e1; */
    text-transform: capitalize;
    color: #686666;
}

.informer_counter {
    vertical-align: top;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
    text-align: center;
    background-color: #ff7a00;
    width: 18px;
    height: 18px;
    position: absolute;
    border-radius: 100%;
    top: 8px;
}

/* .informer_counter {
    margin-left: 4px;
} */
.informer_name {
    font-weight: normal;
    font-size: 15px;
    line-height: 21px;
    color: #000000;
    text-transform: uppercase;
}

.cur_switch,
.lang_switch {
    cursor: pointer;
}

.lang_switch {
    display: flex;
    align-items: center;
    height: 46px;
}

.informer .dropdown {
    position: absolute;
    z-index: 2;
    background-color: #fff;
    top: 62px;
    right: 20px;
    min-width: 65px;
    max-width: 65px;
    font-weight: normal;
    font-size: 15px;
    line-height: 21px;
    color: #303030;
    text-transform: uppercase;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 15px;
    transition: all 0.4s ease-out 0s;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-out 0s;
}

.dropdown.account_show {
    position: absolute;
    z-index: 9999;
    background-color: #fff;
    top: 50px;
    /* left: -13px;
    min-width: 160px;
    max-width: 220px; */
    left: -40px;
    width: 160px;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #303030;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 12px 0 14px;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.4);
}

.dropdown.callback_show {
    position: absolute;
    z-index: 999;
    background-color: #fff;
    top: 50px;
    left: -80px;
    /* right: 110px;
    min-width: 185px;
    max-width: 185px; */
    /* right: -15px; */
    width: 180px;
    font-weight: normal;
    font-size: 15px;
    line-height: 21px;
    color: #303030;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 12px;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.4);
}

.dropdown.callback_show a:first-child {
    padding-bottom: 12px;
}

.dropdown.callback_show a {
    transition: 0.5s;
    display: block;
}

.dropdown.account_show .account_link {
    font-weight: normal;
    font-size: 15px;
    line-height: 21px;
    color: #303030;
    transition: 0.5s;
    font-family: PTSans-Regular;
}

.dropdown.account_show .account_link:not(:last-child) {
    padding-bottom: 15px;
}

.dropdown.account_show .account_link::before {
    content: none;
}

.informer .dropdown_item {
    display: block;
    padding-top: 15px;
    white-space: nowrap;
    transition: 0.5s;
}

.informer .dropdown_item.active {
    text-decoration: underline;
    color: #84c400;
}

.informer .dropdown_item:hover,
.dropdown.account_show .account_link:hover,
.dropdown.callback_show a:hover {
    text-decoration: underline;
    color: #84c400;
    transition: 0.5s;
}

.menu_group_header .menu_item_1 .menu_link {
    display: block;
    padding: 12px 60px;
    padding-left: 10px;
    color: #fff;
}

.active_menu {
    display: block !important;
}

/* .informer .dropdown_item:hover {
    background-color: #e8e8e1;
} */
.account_informer {
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-image: url(../images/enter.png);
}

.wish_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 {
    display: block;
    vertical-align: middle;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-image: url(../images/comparison_icon.svg);
}

.angle_icon {
    height: 10px;
    width: 10px;
    /* background-image: url(../images/arrow_dropdown.svg);
    background-image: url(../images/arrow_dropdown.svg); */
    background-image: url(../images/down-arrow.png);
    margin-left: 10px;
    margin-top: 9px;
}

.account:hover>.angle_icon {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.logo {
    display: block;
    font-size: 0;
    text-align: center;
    margin-top: 16px;
    margin-left: 0px;
}

.logo img {
    margin-left: 17px;
}

.cart_info {
    display: inline-block;
    position: relative;
    /* min-height: 32px; */
    padding-left: 40px;
    font-size: 13px;
    color: #fff;
}

.td_tfoot span.buy {
    padding: 6px 10px;
}

.cart_info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    background: url(../images/shopping-cart.svg) no-repeat;
}

.cart_counter {
    position: absolute;
    top: -5px;
    left: 16px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 100%;
    background-color: #ff7a00;
    font-weight: normal;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
}

.cart_total {
    display: block;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    color: #5b6770;
    border-left: 1px solid #fff;
    padding-left: 5px;
}

.times,
.phones {
    float: left;
    line-height: 21px;
    font-weight: bold;
    margin-top: 16px;
}

.times {
    font-size: 14px;
}

.phones {
    font-size: 17px;
}

.times_inner,
.phones_inner {
    position: relative;
    display: inline-block;
    padding-left: 45px;
}

.times_text {
    color: #686666;
    font-weight: normal;
}

.times_inner::before,
.phones_inner::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    top: 5px;
    left: 0;
    background: url(../images/sprite.png) no-repeat 0 -44px;
}

.phones_inner::before {
    top: 7px;
    background: url(../images/sprite.png) no-repeat 0 -77px;
}

.callback {
    display: block;
    background: url(../images/callback_icon.svg) no-repeat;
    width: 30px;
    height: 30px;
}

.callback_wrapper {
    width: 30px;
    cursor: pointer;
    height: 46px;
    display: flex;
    align-items: center;
    position: relative;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
}

.menu_header_wrapper .menu_group_header .menu_item_1 .menu_link {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #231f20;
}

.menu_header_wrapper {
    padding-left: 100px;
}

/* .callback:hover {
    border-color: #f2bd0b;
} */
.account {
    cursor: pointer;
    height: 46px;
    display: flex;
    align-items: center;
    position: relative;
}

.account_link {
    display: inline-block;
    position: relative;
    vertical-align: top;
    padding-left: 30px;
}

.account_link::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    /* top: 4px; */
    left: 0;
    background: url(../images/user_icon.svg) no-repeat;
}

.dropdown .account_link {
    padding-right: 10px;
    padding-left: 50px;
}

.account_name {
    display: block;
    font-family: PTSans-Regular;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
}

.header_bottom_wrapper {
    display: flex;
    margin-bottom: 3px;
}

.search {
    position: relative;
    background-color: #5b6770;
    padding: 0 37px 0 48px;
    width: calc(100% - 50px);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 15%;
}

.search_input {
    width: 100%;
    border: none;
    background-color: #5b6770;
    font-weight: normal;
    font-size: 19px;
    line-height: 22px;
    color: #f6f6f6;
    outline: none;
    font-family: Ubuntu-Light;
    padding: 0 29px 0 29px;
    height: 44px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.search_button {
    position: absolute;
    top: 7px;
    right: 0;
    border: none;
    background: transparent;
    width: 34px;
    height: 31px;
    padding: 0;
    font-size: 0;
    color: #fff;
    cursor: pointer;
}

/* .search_button:hover {
    background: #d4a507;
} */
.search_icon {
    width: 16px;
    height: 18px;
    vertical-align: middle;
}

.categories {
    position: relative;
    width: 85%;
    /* width: max-content; */
}

.categories_heading {
    float: left;
    line-height: 60px;
    padding-left: 10px;
    padding-right: 20px;
    color: #fff;
    background-color: #38c0f3;
    font-size: 0;
    cursor: pointer;
}

.menu_icon {
    vertical-align: middle;
}

.categories_heading span {
    font-size: 14px;
    margin-left: 15px;
    vertical-align: middle;
}

.categories_nav {
    display: none;
    background-color: #38c0f3;
    font-weight: bold;
    font-size: 13px;
    color: #fff;
    border-top: 1px solid #23aee2;
    position: absolute;
    z-index: 999;
    top: 60px;
    left: 0;
    min-width: 100%;
}

ul.fn_category_scroll.level_1.categories_menu .category_item:first-child {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    /* width: 367px;
    max-width: 367px; */
}

.subcategory_wrapper {
    background: #fff;
    height: 3px;
    left: 0;
    width: 100%;
    margin: 0 12px;
    position: absolute;
    z-index: 4;
    top: 44px;
    visibility: hidden;
}

.category_item:hover>.subcategory_wrapper {
    visibility: visible;
}

.subcategory_wrapper:hover+.categories_nav__subcategory {
    visibility: visible;
}

.category_item {
    /* position: relative; */
    list-style-type: none;
    display: flex;
    background-color: #ff7a00;
    padding: 6px 10px;
    border-right: 1px solid #f9f9f9;
    align-items: center;
    cursor: pointer;
    /* min-width: 320px; */
    /* max-width: 384px; */
    justify-content: center;
    width: 25%;
}

.category_item:hover {
    background-color: #ff6900;
    z-index: 99;
}

.category_item:hover>.categories_nav__subcategory {
    animation: fadeIn;
    animation-duration: 0.5s;
}

.category_item:hover>.level_2.subcategory {
    animation: fadeIn;
    animation-duration: 0.5s;
}

.category_item:hover>.category_link:after {
    opacity: 1;
    transition: 0.5s;
}

ul.fn_category_scroll.level_1.categories_menu {
    display: flex;
    padding-left: 0;
    margin: 0;
    /* width: max-content; */
    width: 100%;
}

.category_link {
    position: relative;
    display: flex;
    padding: 6px 15px 6px 15px;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    color: #f9f9f9;
    align-items: center;
    text-transform: none;
    white-space: pre;
}

.categories_menu__image {
    margin-right: 5px;
    box-sizing: border-box;
}

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

.cat_switch {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 31px;
}

.cat_switch::after {
    content: "";
    position: absolute;
    top: 11px;
    right: 15px;
    width: 16px;
    height: 8px;
    background: url(../images/sprite.png) no-repeat -23px -304px;
}

.category_link .cat_switch::after {
    top: 50%;
    margin-top: -2px;
}

/* FOOTER */
.footer_top {
    position: relative;
    padding: 23px 0;
    background-color: #fff;
    font-size: 0;
}

.payments_text {
    font-size: 14px;
    color: #0a0a28;
    display: block;
    margin: 0 0 10px;
}

.footer_bottom {
    background-color: #5b6770;
    padding: 25px 0;
    font-size: 16px;
    color: #fff;
}

.foot_item a {
    text-decoration: none;
    transition: 0.5s;
}

.foot_item a:hover {
    transition: 0.5s;
    color: #ff7a00;
}

#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 {
    font-weight: normal;
    margin-bottom: 18px;
}

.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;
}

.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: 15px;
}

/* .footer_contacts,
.foot_menu {
    margin-top: -5px;
} */
.footer_contacts a {
    text-decoration: none;
}

.copyright {
    /* padding-top: 10px; */
    font-size: 16px;
    color: #fff;
    padding-left: 29px;
}

/* 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;
}

.main_text {
    /* padding-top: 12px; */
    color: #fff;
}

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

.blog_item,
.news_item {
    border-bottom: 1px solid #e8e8e1;
    box-shadow: inset -1px 0 0 #e8e8e1;
    background-color: #fff;
    margin-bottom: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
    background: #ffffff;
    /* box-shadow: -0.157px 2.996px 13.564px rgba(20, 20, 20, 0.11); */
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    min-height: 400px;
    padding: 10px;
}

.news_content,
.blog_content {
    padding: 25px 50px 30px;
    color: #606060;
}

.news_image,
.blog_image {
    position: relative;
    display: block;
    width: 360px;
    height: 0;
    margin-top: 25px;
    margin-left: 25px;
    /* padding-bottom: 30%; */
    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%; */
    max-width: inherit;
    object-fit: cover;
}

.blog_annotation,
.news_annotation {
    margin-top: 10px;
}

.blog_annotation p,
.news_annotation p {
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
    color: #5b6770;
    font-family: Inter-Regular;
}

.news_date,
.blog_date {
    margin: 12px 0 5px;
    text-align: end;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #5b6770;
    font-family: Inter-Regular;
    border-bottom: 1px solid #7b8891;
    padding-bottom: 10px;
}

.news_date span::before,
.blog_date span::before {
    display: inline-block;
    content: "";
    width: 22px;
    height: 22px;
    background-image: url(../images/calendar.svg);
    margin-right: 16px;
}

.news_date span,
.blog_date span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.blog {
    max-width: 1295px;
    margin: 40px auto;
}

.blog_content .h5,
.news_content .h5 {
    font-weight: normal;
    font-size: 32px;
    line-height: 37px;
    color: #5b6770;
    text-transform: uppercase;
}

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

.brands {
    box-shadow: inset 0px -1px 0 #e8e8e1;
}

.all_brands_link,
.brand_link {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    color: #606060;
    padding: 30px 25px;
}

.all_brands_link {
    border-left: 1px solid #e8e8e1;
}

.slick-current .all_brands_link {
    border-left: none;
}

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

.brand_image,
.brand_name {
    height: 100px;
    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_image {
    margin-bottom: 20px;
}

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

.brand .brand_item:hover,
.all_brands_link:hover {
    box-shadow: inset 0 0 0 1px #ccccc6;
}

/* Product preview */
/* .main_products, .main_products1 {
    position: relative;
    z-index: 2;
} */

.preview {
    position: relative;
    padding: 30px 0;
    border-radius: 11px;
    background-color: #fff;
    padding-top: 0;
    /* height: 100%; */
}

.products_item {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 11px;
    transition: 0.5s;
    height: 520px;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.05);
}

.main_products .slick-track,
.main_products1 .slick-track,
.related_products .slick-track,
.main_products.not_slider {
    height: 770px;
}

/* .slick-slide.slick-center {
    border: 1px solid #ff7a00;
    border-radius: 10px;
} */

.fn_images .fn_images_nav {
    width: 100px !important;
}

.product_name {
    display: block;
    height: 63px;
    overflow: hidden;
    margin-bottom: 10px;
    font-weight: normal;
    padding: 0 50px;
    font-size: 19px;
    line-height: 31px;
    color: #3a3a3a;
    text-decoration: none;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow-y: hidden;
}

.preview_image {
    display: block;
    position: relative;
    height: 376px;
    line-height: 376px;
    text-align: center;
    /* margin-bottom: 30px; */
}

.preview_img {
    vertical-align: middle;
    max-height: 100%;
    border-radius: 15px;
}

.preview .price_container {
    float: left;
    /*width: calc(100% - 160px);*/
    font-weight: bold;
    line-height: 1.4;
    min-height: 42px;
    padding-left: 25px;
    text-align: unset;
}

.product_share .fn_share.jssocials,
.share_text_сolon {
    display: inline;
}

.preview_form {
    width: 130px;
    float: right;
    margin-right: 25px;
}

.preview .button {
    width: 100%;
}

.preview .price {
    font-weight: normal;
    color: #3a3a3a;
    font-size: 34px;
    line-height: 37px;
    /* font-family: Inter-SemiBold; */
    white-space: nowrap;
}

.preview .price .fn_price {
    font-size: 32px;
}

.preview .price span:last-of-type {
    font-size: 24px;
}

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

.old_price {
    font-weight: normal;
    font-size: 24px;
    line-height: 10px;
    color: #3a3a3a;
    text-decoration: line-through;
    text-decoration-color: red;
}

.purchase_sum .old_price .nowrap {
    font-size: 20px;
}

.price_per_unit .nowrap.discount_product_price,
.purchase_price .nowrap.discount_product_price,
.purchase_sum .nowrap.discount_product_price {
    color: red;
}

.remove_link {
    display: block;
    /* margin: -15px 0 15px; */
    font-size: 13px;
    text-decoration: none;
    text-align: center;
}

.remove_link .remove_icon {
    margin-top: -2px;
    color: #e62e04;
}

.remove_link span {
    text-decoration: underline;
}

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

.sort {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sort_title {
    display: block;
    padding: 14px 12px 0;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    font-weight: bold;
}

.product_sort__form {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    height: 36px;
    width: 100%;
    max-width: 152px;
    padding-left: 10px;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #969696;
    border-radius: 5px;
    border-bottom-right-radius: 10px;
}

/* Custom select */

.select2-container.select2-container--open .select2-dropdown--below {
    top: 0;
}

.fn_ajax_buttons.sort .select2-container--default .select2-selection--single,
.fn_ajax_buttons.sort .select2-container .select2-selection--single,
.products_container .fn_products_sort .select2-container--default .select2-selection--single,
.products_container .fn_products_sort .select2-container .select2-selection--single,
.mobile_filter_sort_wrapper .fn_products_sort .select2-container--default .select2-selection--single,
.mobile_filter_sort_wrapper .fn_products_sort .select2-container .select2-selection--single {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    height: 36px;
    width: 100%;
    /* max-width: 152px; */
    padding-left: 10px;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #969696;
    margin-top: 0px;
    position: relative;
    border-radius: 5px 0px 0px 5px;
}

.fn_ajax_buttons.sort .select2-container--default .select2-selection--single .select2-selection__rendered,
.products_container .fn_products_sort .select2-container--default .select2-selection--single .select2-selection__rendered,
.mobile_filter_sort_wrapper .fn_products_sort .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 1.2px;
    color: #969696;
    padding-top: 7px;
    font-weight: 600;
    font-family: Inter-Regular;
}

.fn_ajax_buttons.sort .select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url(../images/down-arrow.png);
    width: 16px;
    height: 10px;
    background-repeat: no-repeat;
    position: absolute;
    top: -5px;
    left: 50%;
    border: none;
    margin: 0;
}

.products_container .fn_products_sort .select2-container--default .select2-selection--single .select2-selection__arrow,
.mobile_filter_sort_wrapper .fn_products_sort .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px;
}

/* to change default hover */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #84c400 !important;
}

.arrows-wrapper {
    height: 36px;
    width: 44px;
    /* background-image: url('../images/icons/arrow-up.png') ;
    background-repeat: no-repeat ; */
    border: 1px solid #e9e9e9;
    border-left: none;
    border-radius: 0px 0px 12px;
    background-color: #fff;
}

.arrow-up,
.arrow-down {
    margin: 0 auto;
    padding-top: 10px;
    display: block;
}

.mobile_filter_sort_wrapper .filters_heading {
    height: 36px;
}

.sort_link {
    float: left;
    padding: 14px 5px 14px 10px;
    text-decoration: none;
    font-size: 13px;
    border: none;
    background: none;
    cursor: pointer;
}

.sort_link.active_up,
.sort_link.active_down {
    color: #f2bd0b;
    font-weight: bold;
}

.sort_link span {
    display: inline-block;
    position: relative;
    padding-right: 21px;
}

.sort_link span::after {
    content: "";
    width: 16px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -5px;
    background: url(../images/sprite.png) no-repeat -1px -303px;
}

.sort_link.no_after span::after {
    content: none;
}

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

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

.purchase th {
    padding: 12px 8px;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #515151;
    font-family: Inter-Regular;
}

.purchase td {
    border-top: 1px solid #e8e8e8;
    /* border-bottom: 1px solid #E8E8E8; */
    padding: 20px 8px;
}

td.price_per_unit {
    padding: 20px 20px;
}

.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: 162px;
    display: inline-block;
    vertical-align: middle;
    /* border: 1px solid #e8e8e1; */
    line-height: 44px;
}

.plus,
.minus {
    font-size: 20px;
    font-weight: bold;
    color: #303030;
    float: left;
    width: 39px;
    height: 50px;
    text-align: center;
    cursor: pointer;
}

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

.input_amount {
    display: block;
    float: left;
    font-size: 20px;
    color: #969696;
    font-family: Inter-Regular;
    text-align: center;
    background-color: #fff;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #e8e8e1;
    border-right: 1px solid #e8e8e1;
    padding: 0;
    margin: 0;
    height: 50px;
    width: 80px;
    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: #00aeef;
    font-size: 18px;
}

.purchase_name {
    font-weight: normal;
    font-size: 22px;
    line-height: 25px;
    color: #313131;
    text-decoration: none;
}

.td_product_name {
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

td.price_per_unit,
td.purchase_amount,
td.purchase_sum {
    padding: 20px;
}

.purchase .coupon,
.purchase .purchase_total {
    padding: 10px;
}

.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: 13px;
    display: flex;
    flex-flow: row;
    width: 100%;
    margin-bottom: 0 !important;
    padding-top: 0;
    flex-direction: column;
    align-items: center;
}

.delivery.payment_block {
    padding: 0 23px;
    flex-direction: column;
}

.delivery.payment_block .delivery_item {
    display: flex;
    flex-flow: column;
}

.deliveries_wrapper {
    padding: 10px 50px;
}

.deliveries_wrapper .personal_information_text {
    padding-top: 20px;
    padding-left: 23px;
    margin-bottom: 0;
}

.form-group .personal_information_text {
    padding-left: 0;
}

.delivery_item {
    margin-bottom: 15px;
    width: 100%;
}

.delivery_description {
    margin-left: 5px;
    margin-top: 10px;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #303030;
}

.red_text,
.red_text p {
    color: #ed1c24;
}

.active+.delivery_description {
    display: block;
    /* color: #ed1c24; */
}

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

.delivery_item img {
    vertical-align: middle;
    margin-right: 4px;
    width: max-content;
    margin-bottom: 14px;
}

.delivery_name {
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    /* width: 50%; */
}

.delivery_label.active input:checked+.input-radio__text:before .delivery_name:before {}

.delivery_name:after {}

.delivery_item .input-radio {
    width: 100%;
    display: none;
}

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

.deliveries_wrapper_inner {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-direction: column;
    row-gap: 20px;
}

.deliveries_wrapper_item {
    display: flex;
    flex-flow: column;
}

.order_repeat_desktop {
    display: block;
}

.order_repeat_wrapper,
.order_repeat_laptop {
    display: none;
}

.user_page {
    margin: 13px 0;
}

.h1.page_user {
    display: none;
}

.user_page .h1 span {
    border-bottom: none;
}

.lk_block_2, .lk_block_1 {
    margin-top: 45px;
}

.delivery_payment_final_page {
    display: none;
}

.lk_block_2 .form_LK_1,
.delivery_payment_header_wrapper {
    flex-direction: column;
    width: 100%;
}

.delivery_payment_header_wrapper .delivery__image {
    align-self: flex-start;
}

.delivery__image img {
    padding-left: 15px;
}

.user_right_wrapper .delivery_payment_header_wrapper .delivery_payment_text1 {
    max-width: 100%;
}

.user_right_wrapper .delivery_item .personal_information_text {
    visibility: hidden;
}

.user_right_wrapper .personal_information_text {
    padding: 20px 0 20px 5px;
    margin: 0 0 20px 0;
    color: #5b6770;
    font-family: Inter-Bold;
    border-bottom: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
    font-weight: bold;
}

.wrap_block.clearfix.order_wrap_block .padding {
    padding-top: 0;
    padding-bottom: 0;
}

.wrap_block.clearfix.order_wrap_block p {
    font-size: 18px;
    font-family: "Ubuntu";
    color: #5b6770;
}

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

.order_details {
    width: 100%;
}

.order_details td {
    padding: 0 0 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: 25px 0 15px;
    padding-bottom: 40px;
}

.method_description {
    margin-bottom: 15px;
}

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

.feedback_inner {
    padding-top: 25px;
}

.mobile_purchase_block {
    display: none;
}

/* Pagination */
.pagination {
    list-style: none;
    /* text-align: center; */
    /* background: #fff; */
    padding: 15px 10px 5px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

.fn_ajax_content {
    margin-bottom: 20px;
}

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

.page_link {
    display: block;
    padding: 3px 7px;
    min-width: 30px;
    text-align: center;
    text-decoration: none;
    /* border: 1px solid #e8e8e1;
    background-color: #fff; */
    color: #555555;
    font-family: Inter-Regular;
    font-size: 18px;
    border-radius: 10px;
}

.arrow_show {
    border: 2px solid #555555;
    transition: 0.5s;
    border-radius: 10px;
    width: 100%;
    max-width: 164px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 10px 20px;
    margin: 20px auto;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #313131;
    cursor: pointer;
}

.arrow_show:hover {
    border: 2px solid #ff7a00;
    color: #ff7a00;
    transition: 0.5s;
}

.arrow_show:active {
    border: 2px solid #ff7a00;
    background-color: #ff7a00;
    color: #fff;
    transition: 0.5s;
}

.page_link:hover,
.active .page_link {
    color: #fff;
    background-color: #555555;
}

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

.sku {
    margin-top: -10px;
    margin-bottom: 14px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
}

.sku_nubmer {
    color: #adaaaa;
}

.wish_compare {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 30%;
}

.product_container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-right: 23px;
}

.product_features {
    width: 70%;
}

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

.product_image {
    position: relative;
    text-align: center;
    /* height: 728px; */
    height: 100%;
    max-height: 680px;
    margin-bottom: 23px;
    background-color: #fff;
    display: flex;
    align-items: center;
    border-radius: 15px;
    justify-content: center;
}

.product_image a {
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* height: 728px; */
    border-radius: 15px;
    /* border: 1px solid #e8e8e1; */
    -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: 680px;
}

.images {
    margin-left: -6px;
    margin-right: -6px;
    margin-bottom: 16px;
}

.images_item {
    float: left;
    width: 16.666667%;
    padding-left: 6px;
    padding-right: 6px;
}

.images_link {
    display: block;
    /* border: 1px solid #e8e8e1; */
    height: 110px;
    line-height: 110px;
    text-align: center;
    font-size: 0;
    height: auto;
}

.images_link img {
    border: 1px solid transparent;
    border-radius: 15px;
    max-height: 680px;
}

.images_item img {
    vertical-align: middle;
    border-radius: 10px;
}

.product_details {
    margin-bottom: 23px;
}

.product_wish {
    margin-bottom: 12px;
}

.product_wish,
.product_compare {
    position: relative;
    display: inline-block;
    padding-left: 35px;
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    color: #b2b2b2;
    text-decoration: none;
    width: 200px;
    font-family: PTSans-Regular;
}

.product_wish::before,
.product_compare::before {
    content: "";
    width: 26px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 1px;
    background-repeat: no-repeat;
    background-size: contain;
}

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

.product_wish.selected::before {
    background-image: url(../images/wish_icon_selected.svg);
    background-size: contain;
}

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

.product_compare.selected::before {
    background-image: url(../images/icons/comparison_icon_selected.svg);
    background-size: contain;
}

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

.details_label {
    font-size: 13px;
    margin-right: 14px;
    display: inline-block;
}

.product_rating {
    display: inline-block;
    margin: 20px 0 16px;
    font-size: 13px;
}

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

.in_stock,
.no_stock {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    font-family: Inter-Regular;
}

.in_stock {
    color: #84c400;
}

.no_stock {
    padding-left: 0px;
    color: #b2b2b2;
}

.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;
}

.in_stock::before {
    background: #84c400;
    border: 1px solid #e8e8e8;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 4px;
    right: 0;
    left: auto;
}

.in_stock {
    padding-left: 0;
    padding-right: 38px;
}

.quontity_label {
    margin-top: 34px;
}

.product .amount {
    display: inline-block;
    vertical-align: top;
    margin-top: 22px;
    margin-bottom: 1px;
    background-color: #fff;
    border: 1px solid #e8e8e1;
    border-radius: 10px;
}

.product_btn,
.product_btn_pop {
    padding: 9px 10px;
    transition: 0.5s;
    background-color: #ff7a00;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 7px;
    border: 3px solid transparent;
    font-family: Ubuntu-Bold;
    width: 160px;
    max-width: 160px;
}

.product_buttons .product_btn {
    background-color: #84c400;
}

.product_buttons .product_btn:hover {
    color: #84c400;
    border: 3px solid #84c400;
    background-color: transparent;
}

.product_buttons .disable_button,
.product_buttons .disable_button:hover,
.preview_form .disable_button,
.preview_form .disable_button:hover {
    color: inherit;
    border: 2px solid #5b6770;
    background-color: #fff;
    max-width: inherit;
    text-transform: inherit;
}

.preview_form {
    width: inherit;
}

.fn_not_preorder {
    margin: 0;
}

/*.wish_compare .product_btn {*/
/*    text-transform: capitalize;*/
/*}*/
.info_delivery,
.info_payment {
    margin-top: 25px;
}

.product_btn:hover,
.product_btn_pop:hover {
    transition: 0.5s;
    background-color: #fff;
    color: #ff7a00;
    border: 3px solid #ff7a00;
}

.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: 24px;
    line-height: 1.1;
    margin-top: 5px;
    font-family: Ubuntu-Medium;
    color: #5b6770;
}

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

.product_buttons {
    margin-top: 22px;
    display: flex;
    justify-content: flex-end;
    padding-right: 15px;
}

.info_delivery,
.info_payment {
    border: 1px solid #e1e8ed;
    padding: 20px 18px 14px;
    font-size: 14px;
    position: relative;
}

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

.info_delivery::before {
    width: 48px;
    height: 64px;
    right: 12px;
    background: url(../images/sprite.png) no-repeat 1px -178px;
}

.info_payment::before {
    width: 64px;
    height: 58px;
    right: 10px;
    background: url(../images/sprite.png) no-repeat 0px -243px;
}

.info_delivery .h5,
.info_payment .h5 {
    color: #030303;
    margin-bottom: 15px;
}

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

.product_share {
    margin: 20px 0 25px;
    border-bottom: 1px solid #c2c2c2;
}

.share_text {
    margin-right: 5px;
    margin-bottom: 5px;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #b2b2b2;
}

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

.product .pager {
    padding: 0;
}

.tab_navigation,
.tab_navigation1 {
    overflow: hidden;
    z-index: 1;
}

.tab_navigation a,
.tab_navigation1 a {
    display: block;
    padding: 7px 10px;
    background-color: #f7f7f7;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #e1e8ed;
}

.tab_navigation a.selected,
.tab_navigation1 a.selected {
    background-color: #fff;
    box-shadow: inset 0 2px 0 0 #38c0f3;
}

.tab_container {
    overflow: hidden;
    border-top: 1px solid #e1e8ed;
    margin: -1px 0 0;
}

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

.main_tabs .tab.selected {
    display: block;
}

.product_details .tab {
    display: none;
}

.product_description {
    line-height: 1.65;
}

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

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

.features_name,
.features_value {
    display: block;
    float: left;
    padding-left: 7px;
}

.features_value {
    width: 50%;
    padding-right: 15px;
}

.features_name {
    width: 50%;
    position: relative;
}

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

.product_details .features_name span {
    background-color: #fff;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #b2b2b2;
    background-color: transparent;
    font-family: Inter-Regular;
}

.product_details .features_name {
    font-family: Inter-Regular;
    padding-left: 0;
}

.product_details .features li {
    background-color: transparent;
    margin-bottom: 14px;
}

.product_details .features_value {
    font-family: Inter-Medium;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #5b6770;
    background-color: transparent;
}

.product_details .old_price {
    margin-top: 0 !important;
    font-size: 18px;
}

.product_details .price {
    font-family: Inter-SemiBold;
    font-weight: normal;
    font-size: 46px;
    line-height: 53px;
    color: #5b6770;
}

/* .features_name::before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dotted #e1e8ed;
} */
/* Comments */
.comment_item {
    margin-bottom: 20px;
    background: #ffffff;
    padding: 30px 50px;
    border-radius: 10px;
}

.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_author,
.comment_text {
    font-weight: normal;
    font-size: 18px;
    line-height: 29px;
    color: #5b6770;
    font-family: Inter-Regular;
}

.comment_text {
    text-transform: uppercase;
    font-size: 18px;
}

.comment_date {
    display: block;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    color: #b2b2b2;
    font-family: Inter-Regular;
}

.comment_content {
    font-family: Inter-Regular;
    font-weight: normal;
    font-size: 16px;
    line-height: 32px;
    color: #000000;
}

.comment_header,
.comment_header_top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

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

/* Post */
.post_date {
    opacity: 0.7;
    margin-bottom: 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 */

.sidebar_top {
    /* background-color: #fff; */
    margin-bottom: 20px;
}

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

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

.filter_group {
    padding: 23px 23px 0;
}

.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 #e9e9e9;
    border-radius: 5px;
    border-bottom-left-radius: 10px;
    margin: 0 0px 10px 0;
    max-width: 100%;
    background-color: #fff;
}

.filter_reset {
    font-size: 13px;
    color: #ff7a00;
    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-weight: normal;
    font-size: 15.9827px;
    line-height: 19px;
    color: #969696;
    padding: 10px;
    cursor: pointer;
    font-family: Inter-Regular;
}

.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: 10px;
    height: 10px;
    color: #969696;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16px;
    -ms-flex: 0 0 16px;
    flex: 0 0 10px;
    max-width: 10px;
    margin-top: -12px;
    margin-left: 10px;
}

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

.selected_filter_box .selected_filter_item:hover {
    background: #ff7a00;
}

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

.filters_heading {
    position: relative;
    font-weight: bold;
    font-size: 18px;
    padding: 9px 15px;
    cursor: pointer;
    font-family: Inter-Regular;
}

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

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

.catalog_item {
    padding: 0;
}

.filter_link {
    display: block;
    position: relative;
    padding-left: 36px;
    font-weight: normal;
    font-size: 16px;
    color: #969696;
    min-height: 24px;
    line-height: 24px;
    text-decoration: none;
    cursor: pointer;
    background: no-repeat;
    border: none;
    text-align: left;
    font-family: Inter-Regular;
}

.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 #bfbfbf;
    background-color: #fff;
    border-radius: 5px;
}

.checked .filter_indicator {
    background: url(../images/correct-symbol.png) no-repeat, #fff;
}

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

.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: 38px;
    height: 40px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    font-weight: normal;
    font-size: 15.9083px;
    line-height: 19px;
    color: #969696;
    font-family: Inter-Regular;
    text-align: center;
}

/* 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: 0 0 0;
    margin: 25px 0;
    list-style: none;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    color: #313131;
}

.breadcrumbs li {
    display: inline-block;
    padding: 0;
    font-family: PTSans-Bold;
}

.breadcrumbs li a {
    text-decoration: none;
    font-family: PTSans-Regular;
}

.breadcrumbs li+li:before {
    padding: 0 2px;
    content: "";
    font-family: PTSans-Bold;
}

/* Scroll to top */
.to_top {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    position: fixed;
    bottom: 20px;
    left: 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;
}

.to_top:hover {
    background-color: #ff7a00;
}

/* 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: 20%;
}

.comparison_products {
    float: right;
    width: 80%;
    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(even) {
    background: #fff;
}

.compare_controls {
    position: relative;
}

.compare_show {
    /* position: absolute; */
    /* left: 0px; */
    /* bottom: 25px; */
    display: flex;
    flex-direction: column;
}

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

.compare_show .active {
    /* background: #fff;
    border: 1px solid #e8e8e1; */
    padding: 5px 10px;
    color: #84c400;
}

.compare_show a:hover {
    transition: 0.5s;
    color: #84c400;
}

/* .compare_show a span {
    border-bottom: 1px dashed;
} */
.compare_show a:hover span,
.compare_show .active span {
    border-color: transparent;
}

.compare_show a {
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    font-family: Inter-Regular;
    color: #969696;
}

.compare_show .select2-container--default .select2-selection--single {
    line-height: 28px;
    height: 38px;
    padding: 0 15px;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    font-family: Inter-Regular;
    color: #969696;
    box-shadow: none;
    border-radius: 5px;
    border-bottom-left-radius: 10px;
    margin-left: 15px;
    width: 210px;
    margin-bottom: 20px;
}

/* span.select2-dropdown.select2-dropdown--below {
    width: 170px !important;
    margin-left: 15px;
  } */

.compare_show .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-weight: normal;
    font-size: 16px;
    line-height: 38px;
    font-family: Inter-Regular;
    color: #969696;
}

.compare_show .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 17px;
    right: 8px;
}

/* .select2-container--open .select2-dropdown--below {
    top: -21px !important;
    left: 15px !important;
} */
.select2-results__options {
    padding-right: 0 !important;
}

.preorder_label {
    padding: 0 5px;
    font-size: 12px;
    border: none;
    border-radius: 2px;
    color: #FF7A00;
}

.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_wrap_block {
    background: #fff;
    position: relative;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.order_wrap_block::before {
    content: "";
    position: absolute;
    height: 90%;
    width: 1px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #e8e8e8;
    z-index: 2;
}

.order_wrap_block .h2 {
    border: none;
    color: #ff7a00;
}

.wrap_block.clearfix.order_wrap_block .method p span:first-child,
.wrap_block.clearfix.order_wrap_block .order_details p span:first-child {
    min-width: 240px;
    font-weight: 400;
}

.bolder_span {
    font-weight: 500;
}

.wrap_block.clearfix.order_wrap_block .method p,
.wrap_block.clearfix.order_wrap_block .order_details p {
    display: flex;
    margin-bottom: 5px;
}

.wrap_block.clearfix.order_wrap_block .method p span,
.wrap_block.clearfix.order_wrap_block .order_details p span {
    display: block;
    word-break: break-word;
}

.wrap_block.clearfix.order_wrap_block .first_block {
    padding-left: 16%;
}

.order_wrap_block .second_block {
    margin-bottom: 40px;
}

.wrap_block.clearfix.order_wrap_block .method_description p {
    font-size: 14px;
}

.wrap_block.clearfix.order_wrap_block .second_block {
    padding-right: 12%;
}

.order_foot_total div {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    padding-right: 30px;
    margin-bottom: 10px;
    color: #000;
}

.order_foot_total .total_sum.nowrap,
.order_foot_total .cart_total_price {
    color: #000;
}

.order_details i {
    text-decoration: none;
    text-transform: none;
    font-style: normal;
}

.button.change_payment {
    border-radius: 10px;
    border: 1px solid #ff7a00;
    color: #ff7a00;
    font-weight: 400;
    font-size: 18px;
    padding: 5px 25px;
}

.button.change_payment:hover {
    background: #ff7a00;
    color: #fff;
}

.order_notify_v2 {
    text-align: center;
    margin-top: 40px;
    /* margin-bottom: 40px; */
    background: #fff;
    padding: 20px 0px 40px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.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;
    color: #5b6770;
}

.o_notify_v2_content {
    margin-bottom: 36px;
}

.o_notify_v2_content .o_notify_v2_content_inner {
    max-width: 660px;
    display: inline-block;
    color: #5b6770;
    font-size: 16px;
}

.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: 10px;
    line-height: 1.2;
    background: #fff;
    text-transform: uppercase;
    font-weight: bold;
    color: #5b6770;
}

.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: #5b6770;
}

.wrap_block.clearfix.order_wrap_block .method p[data-language="order_transfer_amount"] span {
    font-weight: 600;
}

/* 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: 5px 0px 0px 0px;
}

.menu_item {
    margin-bottom: 5px;
}

.menu_group_header .menu_eventer {
    position: relative;
    cursor: pointer;
}

.menu_group_header .menu_item_1.menu_eventer>a:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 10px;
    background-repeat: no-repeat;
    margin-left: 1px;
    background-image: url(../images/down-arrow.png);
    margin-left: 10px;
    margin-top: 5px;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.menu_group_header .menu_item_1.menu_eventer:hover>a:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.menu_group_header .menu_list {
    margin: 0px;
    display: flex;
}

.menu_group_header .menu_item {
    margin: 0px;
}

.menu_group_header .menu_eventer .menu_list_2 {
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    top: 20px;
    background: rgb(255, 255, 255);
    transform: translate(0px, 20px);
    border: none;
    /* opacity: 0; */
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.4);
    position: absolute;
    z-index: 1000;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    padding: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all 0.4s ease-out 0s;
    display: none;
    padding: 7px 0 9px;
}

.menu_group_header .menu_eventer:hover .menu_list_2 {
    display: block;
    opacity: 1;
    visibility: visible;
    top: 50%;
    left: -50%;
    /* margin-left: 20px; */
}

/* menu 404 */
.menu_404 .text_404 {
    margin: 0 0 30px;
}

.menu_404 .text_404 {
    font-size: 32px;
    line-height: 21px;
    text-transform: uppercase;
    color: #231f20;
    font-weight: normal;
}

.buy.main_link {
    text-decoration: none;
    margin-top: 20px;
}

.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);
}

.menu_404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

/* menu footer */

.fn_banner_group1 .slick-dots {
    text-align: center;
    width: calc(100% - 30px);
    left: 15px;
}

.fn_banner_group1 .slick-dots li button {
    background-color: #fff;
    opacity: 1;
    border: 1px solid #5b6770;
}

.fn_banner_group1 .slick-dots li.slick-active button {
    background-color: #ff6900;
}

.fn_banner_group1 img {
    width: 100%;
}

.fn_banner_group1 .banner-img img {
    max-width: 100%;
    border: none;
    outline: none;
    border-color: transparent;
    outline-color: transparent;
    overflow: hidden;
    height: auto;
}

.header_items_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    /* width: 100%;
    max-width: 650px; */
    width: 500px;
    justify-content: space-between;
    /* padding-left: 100px; */
}

.main_text_wrapper .h1 {
    color: #fff;
    background-color: transparent;
    padding-left: 0;
    border-bottom: none;
    font-size: 28px;
    width: 100%;
}

.main_text_wrapper {
    background-image: url(../images/videx_about_bg.jpg);
    background-repeat: no-repeat;
    width: 100%;
    height: 740px;
    position: relative;
    z-index: -1;
}

.main_text_right_block .h1 {
    font-family: Ubuntu-Regular;
}

.videx_about_text {
    background-image: url(../images/videx_about_text.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 190px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-position: right;
}

.main_text_right_block {
    width: 100%;
    padding-right: 57px;
    padding-top: 50px;
    padding-left: calc(45% - 57px);
}

.main_text p {
    font-weight: normal;
    font-size: 14px;
    line-height: 26px;
    color: #ffffff;
    font-family: PTSans-Regular;
    margin-bottom: 0;
    margin-top: 30px;
}

.next_info_wrapper {
    display: flex;
    justify-content: space-between;
    padding: 8px 0 40px;
    /* position: relative;
    z-index: 1;
    top: -180px; */
}

.info_item .info_item_img {
    width: 140px;
    height: 131px;
    background-image: url(../images/info_item_img_1.png);
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
}

.info_item.item_2 .info_item_img {
    background-image: url(../images/info_item_img_2.png);
}

.info_item.item_3 .info_item_img {
    background-image: url(../images/info_item_img_3.png);
}

.info_item.item_4 .info_item_img {
    background-image: url(../images/info_item_img_4.png);
}

.info_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info_item_img {
    transition: 0.5s linear;
}

.info_item_img:hover {
    transform: rotate(360deg);
}

.scale_block {
    width: max-content;
    overflow: hidden;
    border-radius: 8px;
}

.scale_block div img {
    transition: 0.7s linear;
}

.scale_block div img:hover {
    transform: scale(1.1);
}

.info_text {
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #3a3a3a;
    padding: 0 74px;
    font-family: PTSans-Regular;
}

.next2_info_img img {
    border-radius: 8px;
    max-width: fit-content;
}

.next2_info_left_inner {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.next2_info_left_inner .scale_block {
    width: 100%;
}

.next2_info_left_inner .text_header {
    font-weight: normal;
    font-size: 32px;
    line-height: 37px;
    color: #282828;
    display: block;
    padding: 30px 0 40px;
    transition: 0.5s;
    border-bottom: 1px solid #7b8891;
    text-transform: uppercase;
    text-decoration: none;
}

.next2_info_left_inner .text {
    display: block;
    font-weight: normal;
    font-size: 18px;
    font-family: PTSans-Regular;
    line-height: 36px;
    color: #121212;
    padding-top: 32px;
}

.next2_info_wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 88px;
}

.next2_info_right_inner {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-left: 60px;
}

.block_1,
.block_2 {
    display: flex;
    /* align-items: center; */
}

.block_1 {
    margin-bottom: 44px;
}

.next2_info_right_inner .text_header {
    display: block;
    padding: 62px 0 32px;
    font-weight: normal;
    font-size: 32px;
    line-height: 37px;
    color: #282828;
    border-bottom: 1px solid #7b8891;
    transition: 0.5s;
    text-transform: uppercase;
    text-decoration: none;
}

.next2_info_right_inner .text_header:hover,
.next2_info_left_inner .text_header:hover {
    transition: 0.5s;
    color: #ff7a00;
}

.next2_info_right_inner .text {
    font-weight: normal;
    font-size: 18px;
    line-height: 36px;
    color: #3a3a3a;
    display: block;
    padding-top: 20px;
    font-family: PTSans-Regular;
}

.next2_info_right_inner .text_inner {
    padding-left: 52px;
    width: 350px;
}

.banner_wrapper {
    width: 100%;
    background-color: #fff;
    margin-bottom: 40px;
    padding: 32px 32px;
}

.banner_wrapper .fn_banner_banner_bottom {
    /* display: flex; */
    width: 100%;
}

/* .banner_wrapper .fn_banner_banner_bottom div{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.menu_group_footer .menu_link {
    text-decoration: none;
    transition: 0.5s;
}

.menu_group_footer .menu_item {
    margin-bottom: 15px;
}

.foot.col-sm-6.col-lg-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index_contacts {
    margin-bottom: 15px;
    display: block;
    margin-left: 0;
}

.footer_contacts .foot_item a {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
}

.menu_group_footer .menu_list {
    margin: 0;
}

.main_tabs .tab_navigation,
.main_tabs .tab_navigation1 {
    display: flex;
    justify-content: center;
    margin: 0 0 5px;
}

.main_tabs .tab_navigation a,
.main_tabs .tab_navigation1 a {
    font-weight: normal;
    font-size: 28px;
    line-height: 32px;
    color: #3a3a3a;
    min-width: 190px;
    text-align: center;
    display: block;
    padding: 8px 18px;
    background-color: #fff;
    border: none;
    margin-right: 10px;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    border-bottom: 8px solid transparent;
}

.main_tabs .tab_navigation a {
    font-family: Ubuntu-Medium;
}

.main_tabs .tab_navigation a:hover {
    background-color: #fff;
    box-shadow: none;
    border-bottom: 8px solid #ff7a00;
}

.main_tabs .tab_navigation a.selected,
.main_tabs .tab_navigation1 a.selected {
    background-color: #fff;
    box-shadow: none;
    border-bottom: 8px solid transparent;
    background-color: #5b6770;
    color: #fff;
    text-decoration: none;
    margin-left: 0;
}

.main_tabs .tab_container {
    border: none;
    margin-bottom: 40px;
    /* height: 600px; */
}

.main_tabs .tab {
    padding: 0 6px;
}

.fn_category_scroll.level_1.categories_menu .category_item:hover>.level_2.categories_nav__subcategory {
    visibility: visible;
    opacity: 1;
    z-index: 5;
    overflow: hidden;
    padding: 40px 40px 20px;
    padding-left: 106px;
    width: 100%;
}

.level_2.categories_nav__subcategory {
    position: absolute;
    top: 50px;
    border-top: 3px solid #f6f6f6;
    left: 0;
}

.categories .level_2.categories_nav__subcategory {
    border-top: none;
    top: 45px;
}

.white_cross {
    position: relative;
    height: 3px;
    width: 100%;
    background: red;
    z-index: 0;
    top: 47px;
}

.white_cross_hovered {
    visibility: visible;
    opacity: 1;
    z-index: 5;
    overflow: hidden;
    padding: 40px 40px 20px;
    padding-left: 106px;
}

.mobile_footer {
    width: unset;
}

.menu_group_footer .menu_item .menu_link:hover {
    transition: 0.5s;
    color: #ff7a00;
}

.foot_social a.yt {
    background-image: url(../images/yt_icon.svg);
    width: 38px;
    /* height: 38px; */
    background-position: center;
    transition: 0.5s;
}

.foot_social a.ins {
    background-image: url(../images/ins_icon.svg);
    width: 38px;
    height: 38px;
    background-position: center;
    transition: 0.5s;
}

.foot_social a.fb {
    background-image: url(../images/fb_icon.svg);
    width: 38px;
    height: 38px;
    background-position: center;
    transition: 0.5s;
    margin-top: -2px;
}

.foot_social a.yt:hover {
    background-image: url(../images/yt_icon_hover.svg);
    transition: 0.5s;
}

.foot_social a.ins:hover {
    background-image: url(../images/ins_icon_hover.svg);
    transition: 0.5s;
}

.foot_social a.fb:hover {
    background-image: url(../images/fb_icon_hover.svg);
    transition: 0.5s;
}

.product_preview__annotation {
    display: none;
    transition: 0.5s;
    background-color: #fff;
}

.products_item:hover {
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); */
    transition: 0.5s;
    z-index: 9;
}

.products_item:hover .preview {
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.35);
    transition: 0.5s;
    position: absolute;
    /* height: 750px; */
    z-index: 9;
    width: 100%;
    overflow: hidden;
}

.special {
    display: flex;
    flex-direction: column;
    padding: 22px 25px;
    align-items: baseline;
    animation: show 0.4s ease forwards;
    border-radius: 11px;
    align-items: baseline;
    width: 100%;
}

.product_preview__annotation p {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #121212;
}

.about_info {
    margin-top: -180px;
    z-index: -1;
}

.product_preview__annotation .features {
    width: 100%;
    padding-top: 15px;
    margin-top: 8px;
    border-top: 1px solid #c7c7c7;
}

.product_preview__annotation .features_name::before {
    content: none;
}

.product_preview__annotation .features_name,
.product_preview__annotation .features_value {
    padding-left: 0;
    font-size: 16px;
}

.product_preview__annotation .features_value {
    font-weight: 600;
}

.product_preview__annotation .features li:last-child {
    margin-bottom: 0;
}

.main_tabs .tab_container .slick-prev,
.main_tabs .tab_container .slick-next,
.related_products .slick-prev,
.related_products .slick-next {
    top: 38%;
}

.main_tabs .tab_container .slick-prev,
.main_tabs .tab_container .slick-next {
    width: 50px;
}

.fn_categories.products {
    justify-content: center;
}

.products_container .products_item {
    width: 340px;
    box-sizing: border-box;
}

.h2.filter_name {
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #313131;
    font-family: Inter-Regular;
    border-bottom: none;
    cursor: pointer;
    border-radius: 5px;
    border-bottom-left-radius: 10px;
    font-weight: bold;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
    margin-bottom: 9px;
}

.footer_contacts .foot_social {
    display: flex;
    justify-content: flex-start;
}

.footer_contacts .foot_social a {
    margin-right: 24px;
}

.slick-next::before,
.slick-prev::before {
    border-top: 3px solid #808080;
    border-left: 3px solid #808080;
}

.main_tabs .tab_container .slick-prev {
    left: -9px;
}

.main_tabs .tab_container .slick-next {
    right: -10px;
}

.categories_nav__subcategory .subcategory .d-flex.align-items-center.justify-content-center.categories_menu__image {
    position: absolute;
    left: 0;
    top: 0;
}

.subcategory .category_link .categories_menu__name {
    border-bottom: 3px solid transparent;
}

.orange-line-hover {
    visibility: hidden;
}

.subcategory .category_link:hover+.orange-line-hover {
    height: 3px;
    width: 100px;
    visibility: visible;
    background-color: #ff7a00;
    margin: 0 60px;
    animation: fadeInUp;
    animation-duration: 0.2s;
    border-radius: 2px;
}

.price_filter_wrapper {
    padding-bottom: 1px;
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
}

.filter_name.price_filter_name {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 15px;
    font-family: Inter-Regular;
    border: none;
    text-transform: uppercase;
}

.fn_ajax_wait::after,
.slick-loading::after,
.fn_ajax_wait::before,
.slick-loading::before {
    border-color: transparent #ff7a00 #ff7a00 transparent;
}

.ui-slider {
    border: none;
    height: 8px;
    background-color: #969696;
}

.ui-slider .ui-slider-range {
    background-color: #84c400;
}

.ui-slider .ui-slider-handle {
    background: #ffffff;
    border: 2px solid #969696;
    width: 15px;
    height: 15px;
    box-shadow: none;
    margin-left: -8px;
    top: -3px;
}

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

.selected_filter_group {
    display: block;
    padding-top: 0;
    padding-left: 0;
}

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

.categories .level_2.categories_nav__subcategory {
    max-width: 1728px;
}

/* .categories_nav__subcategory .subcategory .d-flex.align-items-center.justify-content-center.categories_menu__image img{
    width: 40px;
    height: 42px;
} */
.categories_description_wrapper h2 {
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
}

/* .categories_description_wrapper {
    margin-top: -150px;
} */
.categories_description_wrapper p {}

.category_link {
    transition: none;
}

.category_item:hover .subcategory {
    display: flex;
}

.product_header_wrapper {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #c2c2c2;
    margin-bottom: 23px;
}

.product_header_wrapper h1 {
    font-weight: normal;
    font-size: 32px;
    line-height: 48px;
    color: #313131;
    margin-top: 0;
    width: 75%;
}

.rating_wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 22px;
    justify-content: space-between;
    align-items: flex-end;
}

.product_code_nubmer {
    display: block;
    font-weight: normal;
    font-size: 20px;
    line-height: 28px;
    color: #5b6770;
    font-family: Ubuntu-Bold;
}

.related_products_header {
    background: #ffffff;
    box-shadow: -0.157px 2.996px 13.564px rgba(20, 20, 20, 0.02);
    border-radius: 15px;
    text-align: center;
    font-weight: normal;
    font-size: 28px;
    line-height: 32px;
    color: #ff7a00;
    padding: 10px 23px;
}

.product_sku {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #b2b2b2;
    padding-top: 10px;
    font-family: Inter-Regular;
}

.copy_btn {
    display: flex;
    cursor: pointer;
    color: #ff7a00;
}

.product_details .tab_container {
    border-top: none;
}

.jssocials-share-twitter .jssocials-share-link,
.jssocials-share-telegram .jssocials-share-link,
.jssocials-share-facebook .jssocials-share-link {
    background-color: transparent !important;
    color: #000000 !important;
}

.jssocials-share-twitter .jssocials-share-link:hover,
.jssocials-share-telegram .jssocials-share-link:hover,
.jssocials-share-facebook .jssocials-share-link:hover {
    color: #ff7a00 !important;
}

.product_details .tab_navigation a {
    font-family: Ubuntu-Medium;
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    background: #ffffff;
    text-transform: uppercase;
    color: #b2b2b2;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    width: 293px;
    margin: 0 10px 0 0;
    text-align: center;
    /* margin-right: 10px; */
    padding: 18px;
    transition: 0.5s;
}

.product_details .tab_navigation a:last-child {
    margin-right: 0;
}

.product_details .tab_navigation {
    display: flex;
    /* justify-content: center; */
}

.product_details .tab_navigation a.selected,
.product_details .tab_navigation a:hover {
    box-shadow: none;
    background: #ff7a00;
    color: #ffffff;
    transition: 0.5s;
}

.product_details .tabs {
    padding-top: 20px;
}

.product_details .show_more_text,
.product_details .show_less_text {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #ff7a00;
    text-transform: uppercase;
    font-family: Inter-Regular;
}

#show_more:hover {
    cursor: pointer;
}

.product_details .show_more_text {
    display: inline-block;
}

.product_details .show_less_text {
    display: none;
}

.product_details .show_more_text_icon {
    background-image: url(../images/show_more_text.svg);
    display: inline-block;
    content: "";
    width: 13px;
    height: 10px;
    background-repeat: no-repeat;
    margin-left: 20px;
}

.show_more_btn_rotate {
    transition: all 0.4s ease-out 0s;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.features_show_more {
    width: 70%;
    padding-right: 23px;
}

.features_hidden {
    display: none;
}

.product_details .show_more {
    padding: 7px 0;
    margin-top: 9px;
    margin-bottom: 9px;
    border-top: 1px solid #c2c2c2;
    border-bottom: 1px solid #c2c2c2;
}

.product_details .product_description p,
.product_details .product_annotation p {
    font-weight: normal;
    font-size: 17px;
    line-height: 23px;
    color: #5b6770;
    font-family: PTSans-Regular;
}

.files_download_text {
    padding: 14px 0;
    display: block;
    border-top: 1px solid #c2c2c2;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    color: #b2b2b2;
    font-family: Inter-Regular;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #ff7a00;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    right: 12px;
}

.download_icon {
    background-image: url(../images/download_icon.svg);
    background-repeat: no-repeat;
    display: block;
    width: 14px;
    height: 15px;
}

.file {
    display: flex;
    width: 320px;
    position: relative;
    padding-bottom: 30px;
    align-items: center;
    transition: 0.5s;
    cursor: pointer;
}

.file .download-info {
    width: 80%;
}

.files_wrapper {
    display: flex;
    flex-flow: row wrap;
    padding-top: 15px;
}

.file .download-info {
    font-weight: normal;
    font-size: 17px;
    line-height: 21px;
    text-decoration: none;
    color: #5b6770;
    font-family: Inter-Regular;
    transition: 0.5s;
}

.file:hover .download-info {
    text-decoration: underline;
    color: #ff7a00;
}

.product_name {
    position: relative;
}

a.product_name.instock:before {
    width: 12px;
    height: 12px;
    background: #84c400;
    display: block;
    content: "";
    border-radius: 100%;
    position: absolute;
    margin: 10px 0 0 -14px;
    left: 10%;
}

/* a.product_name.instock:before {
  width: 12px;
  height: 12px;
  background: #84c400;
  display: block;
  content: "";
  border-radius: 100%;
  position: absolute;
  margin: 10px 0 0 -14px;
} */
a.product_name.outstock:before {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #5b6770;
    display: block;
    content: "";
    border-radius: 100%;
    position: absolute;
    margin: 10px 0 0 -14px;
}

.product_features .no_stock::before {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #5b6770;
    display: block;
    content: "";
    border-radius: 100%;
    position: absolute;
    right: 0;
    top: 4px;
    right: -27px;
    left: auto;
}

.products_container {
    position: relative;
}

.features_top_wrapper {
    width: 100%;
    max-width: 100%;
}

.features_top_wrapper .tab_container1 .tab {
    padding: 0;
}

.features_top_wrapper .main_tabs .tab_navigation a,
.main_tabs .tab_navigation1 a {
    font-weight: normal;
    font-size: 20px;
    line-height: 23px;
    color: #000000;
}

.features_top_wrapper .main_tabs .tab_navigation a.selected,
.main_tabs .tab_navigation1 a.selected {
    color: #fff;
}

.features_top_item {
    min-width: 70px;
    width: 100%;
    height: 90px;
    position: relative;
    background: #ffffff;
    border: 1px solid #e9e9e9;
    display: flex;
    padding: 8px;
    border-radius: 4px;
    align-items: center;
    flex-direction: column;
    transition: 0.5s;
    cursor: pointer;
    justify-content: center;
}

.features_top_item:not(:last-child) {
    margin-right: 4px;
}

/* .features_top_item_value {
  padding-left: 10px;
} */
.features_top_item img {
    width: 30px;
    height: 30px;
}

.features_top_item.checked,
.features_top_item:hover {
    background: #ff7a00;
    transition: 0.5s;
    color: #fff;
}

.features_top_item:hover>img {
    fill: #fff;
}

.features_top_2_wrapper,
.features_top_1_wrapper {
    display: flex;
    flex-wrap: wrap;
}

.features_top_1_wrapper {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-gap: 6px;
    column-gap: 6px;
    width: 100%;
}

.features_top_img {
    width: 30px;
    height: 30px;
}

.main_tabs .tab_navigation1 {
    border-bottom: 5px solid #ff7a00;
    justify-content: start;
}

.main_tabs .tab_navigation1 a {
    background-color: transparent;
}

.fn_switch:hover .dropdown {
    opacity: 1;
    visibility: visible;
    display: block;
}

/*Cart page*/
.cart_wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.purchase .thead {
    /* border-bottom: 1px solid #E8E8E8; */
    border-top: 1px solid #e8e8e8;
}

.purchase_image a img {
    border-radius: 10px;
}

.purchase_image a {
    width: 130px;
    background-color: #fff;
    border-radius: 10px;
    display: block;
    border: 1px solid #e8e8e8;
}

.price_per_unit .nowrap {
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    color: #5b6770;
}

.purchase_sum .nowrap {
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
}

.purchase_amount .amount {
    width: 100px;
    line-height: 30px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
}

.purchase_amount .input_amount {
    height: 32px;
    width: 45px;
}

.purchase_amount .plus,
.purchase_amount .minus {
    width: 25px;
    height: 32px;
}

.cart_link {
    border: 1px solid #555555;
    border-radius: 10px;
    display: flex;
    align-items: baseline;
    background-color: transparent;
    justify-content: center;
    padding: 10px 20px;
    margin: 40px auto;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: #313131;
    text-decoration: none;
    width: 100%;
    max-width: 250px;
    transition: 0.5s;
}

.cart_link:hover {
    transition: 0.5s;
    color: #fff;
    background-color: #555555;
}

.cart_top_right_block_3 .input-radio__text:after {
    border: none;
}

div.tfoot {
    display: flex;
    flex-flow: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e8e8e8;
}

.purchase_remove a {
    position: absolute;
    top: 20px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #e8e8e1;
}

.cart_right_wrapper {
    background-color: #fff;
    width: 100%;
    max-width: 690px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    border: 1px solid #e8e8e8;
    margin-bottom: 40px;
    padding: 10px;
    margin-left: 20px;
}

.cart_flex_wrapper {
    display: flex;
}

.cart_product_count {
    padding: 18px 23px;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #969696;
    display: block;
    text-align: center;
    font-family: Inter-Regular;
}

.total_sum.nowrap,
.cart_total_price {
    font-weight: normal;
    font-size: 28px;
    line-height: 32px;
    color: #5b6770;
}

.cart_total_price {
    text-transform: uppercase;
}

.cart_total_price_container,
.cart_bonuses_container {
    display: flex;
    /* width: 262px; */
    height: 26px;
    color: #5b6770;
    font-family: Ubuntu-Bold;
    font-size: 28px;
    line-height: 27.38px;
    text-transform: uppercase;
    padding-bottom: 17px;
}

.cart_bonuses_container {
    font-size: 14px;
    color: #ff6900;
}

.cart_total_price_container .total_sum,
.cart_bonuses_container .total_bonus {
    margin-left: 15px;
}

.cart_top_right_block {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.minimalne_zamovlennya_enterprise {
    padding-left: 10px;
}

/* .free_delivery_from {
    max-width: 250px;
} */

.delivery_payment_header_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.delivery_payment_header_wrapper .delivery_payment_text1 {
    max-width: 250px;
}

.name_surname {
    display: none;
}

.cart_top_right_block_2 .cart_account_link {
    font-weight: normal;
    color: #5b6770;
    font-family: Inter-Bold;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    text-align: end;
    margin: 8px 0;
    cursor: pointer;
    transition: 0.5s;
    height: 17px;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 1.35px;
}

.cart_top_right_block_2 .cart_account_link svg {
    height: 22px;
    width: auto;
}

.cart_top_right_block_2 .line {
    height: 20px;
    border-left: 1px solid #5b6770;
}

.cart_top_right_block_2 .cart_account_link:hover {
    transition: 0.5s;
    color: #84c400;
}

.cart_top_right_block_2 {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
    justify-content: center;
    padding: 8px 0;
    margin-top: 17px;
}

.input-radio input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 10px 0 0 7px;
}

.input-radio__text:after,
.input-radio__text:before {
    position: absolute;
    content: "";
}

.input-radio__text:before {
    top: 3px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #dddddd;
    border-radius: 50%;
    background: #fff;
}

.input-radio input:checked+.input-radio__text:before,
.input-radio input:focus+.input-radio__text:before {
    border-color: #e8e8e8;
}

.delivery_label.active input:checked+.input-radio__text:before,
.delivery_item.active .input-radio__text:before {
    background: #ff7a00;
}

.input-radio__text:after {
    top: 5px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #84c400;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.cart_right_wrapper .input-radio__text:after {
    background: #ff7a00;
}

.input-radio input:checked+.input-radio__text:after {
    opacity: 1;
}

.input-radio__text {
    position: relative;
    padding: 0 0 0 30px;
    font-weight: normal;
    font-size: 20px;
    line-height: 23px;
    color: #303030;
    cursor: pointer;
}

.cart_top_right_block_3 {
    width: 100%;
    display: flex;
}

.cart_top_right_block_3 {
    width: 100%;
    display: flex;
    padding: 24px 60px;
    border-bottom: 1px solid #e8e8e8;
    justify-content: space-between;
}

.input-radio {
    display: block;
    /* width: 50%; */
}

.form_cart {
    display: flex;
    flex-direction: column;
    margin-bottom: 0 !important;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
}

.user_right_wrapper .form_group {
    display: flex;
    align-items: center;
    width: 100%;
}

.form_cart .form_group,
.delivery .form_group {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
}

.form_cart_label {
    width: 200px;
    color: #303030;
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.form_cart_label span {
    color: #ff1c26;
    margin-left: 5px;
}

.user_page .form_cart_label {
    width: 300px;
    display: flex;
    align-items: center;
}

.user_page .form_cart_label svg {
    min-width: 32px;
    margin-right: 6px;
}

.form_cart .form_group .form_input,
.delivery .form_group .form_input,
.user_right_wrapper .form_group .form_input {
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #969696;
    font-family: Inter-Regular;
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
}

.form_cart_bonuses {
    border: none;
}

.form_cart_bonuses input {
    margin-left: 0;
}

.form_cart_bonuses .form_cart_label {
    font-weight: normal;
}

.form_cart .form_input::placeholder,
.delivery .form_input::placeholder {
    font-size: 14px;
}

.novaposhta_delivery_city {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.novaposhta_delivery_city_text {
    width: 100px;
}

.personal_information_text_bottom_wrapper {
    display: flex;
}

.personal_information_text_street,
.personal_information_text_house,
.personal_information_text_appartment {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

/*.personal_information_text_street label,*/
/*.personal_information_text_house label,*/
/*.personal_information_text_appartment label {*/
/*    width: 100px;*/
/*}*/

/* .personal_information_text_street input,
.personal_information_text_house input,
.personal_information_text_appartment input {
    width: calc(100% - 20px);
} */

/* .personal_information_text_house,
.personal_information_text_appartment {
    width: 50%;
}

.personal_information_text_house {
    margin-right: 25px;
} */
.user_right_wrapper .padding {
    padding-top: 0;
}

.personal_information_text {
    padding-bottom: 20px;
    /* margin-bottom: 40px; */
    /* border-bottom: 1px solid #e8e8e8; */
    display: block;
    width: 100%;
    color: #969696;
    font-family: Inter-Bold;
    font-size: 16px;
    line-height: 27.24px;
    text-transform: uppercase;
    padding-left: 40px;
}

.form_cart_label.cart_order_comment {
    width: 90px;
    height: 13px;
    color: #303030;
    font-family: Inter-Regular;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.cart_right_wrapper .form_textarea {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #969696;
    margin-top: 21px;
}

.cart_form_textarea {
    display: flex;
    justify-content: center;
    padding: 20px 0 !important;
    border-top: 1px solid #e8e8e8;
}

.cart_checkbox {
    border-radius: 5px;
    height: unset;
    min-height: 44px;
    padding: 15px;
}

.cart_checkbox .item-checkbox-box {
    top: 10px;
}

.label_desc {
    padding-left: 16px;
    font-size: 14px;
    line-height: 120%;
}
.label_desc a {
    color: #ff7a00;
    font-weight: 600;
}

.header.mobile_header .container {
    width: 100%;
}

.cart_right_wrapper .buy {
    text-transform: inherit;
    margin: 20px 0 10px;
}

.btn_cart {
    display: flex;
    justify-content: center;
}

/*Comparison Page*/
.comparison_left_block {
    display: flex;
}

.comparison_left_block .preview_image {
    height: auto;
    line-height: normal;
    width: 50%;
}

.comparison_top_block .overlay_buttons {
    opacity: 1;
}

.comparison_top_block .overlay_buttons .wishlist_button {
    top: 0;
    position: relative;
    left: 0;
}

.comparison_item_wrapper {
    padding: 15px;
}

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

.comparison_top_block .remove_link {
    font-size: 14px;
    width: 20px;
    height: 20px;
    content: "";
    display: block;
    background-image: url(../images/cancel_compare.png);
    background-size: contain;
    transition: 0.5s;
}

.comparison_top_block .remove_link:hover {
    background-size: contain;
    transition: 0.5s;
    background-image: url(../images/cancel_compare_hover.png);
}

.comparison_left .input-radio {
    width: max-content;
    margin: 0 5px 20px 15px;
}

.comparison_left .input-radio .input-radio__text {
    font-size: 16px;
    font-family: Inter-Regular;
    font-weight: 600;
    line-height: 19px;
    color: #969696;
}

.comparison_left .input-radio.rario {
    margin: 0 5px 0 15px;
}

.comparison_item_wrapper .product_name {
    font-size: 18px;
    height: 84px;
    font-weight: 600;
    font-family: Inter-Regular;
    padding: 0 0 0 10px;
    line-height: initial;
    width: 50%;
}

.comparison_item_wrapper .preview_form {
    margin-right: 0;
}

.comparison_item_wrapper .price_container {
    width: auto;
    padding-left: 0;
}

.comparison_list_item {
    /* height: 240px; */
    margin-bottom: 15px;
    border-bottom: 5px solid #ff7a00;
}

.compare_controls {
    /* height: 240px; */
    margin-bottom: 15px;
    border-bottom: 5px solid #ff7a00;
}

.comparison_item_wrapper a.product_name.instock:before {
    margin: 8px 0 0 -14px;
}

.comparison_page .slick-prev,
.comparison_page .slick-next {
    top: 110px;
    height: 21px;
}

.comparison_page .slick-prev {
    left: -14px;
}

.comparison_page .slick-next {
    right: -14px;
}

.comparison_page .slick-next::before,
.comparison_page .slick-prev::before {
    width: 15px;
    height: 15px;
}

.comparison_list_item .preview {
    box-shadow: 0px 0px 10px rgba(20, 20, 20, 0.11);
    margin: 20px 7px;
    margin-top: 0;
}

.comparison_item_wrapper .price {
    font-size: 32px;
}

.comparison_item_wrapper .old_price {
    font-size: 20px;
}

.comparison_left .cell {
    color: #5b6770;
    font-weight: 600;
    font-size: 18px;
    font-family: Inter-Regular;
    border-right: 1px solid #dadada;
}

.comparison_page.block {
    margin: 20px 0 90px;
}

/* .cell {
    height: 50px !important;
} */
.comparison_item .cell {
    color: #969696;
    font-weight: 600;
    font-size: 18px;
    font-family: Inter-Regular;
    border-right: 1px solid #dadada;
}

.cell.hovered {
    border-top: 1px solid #ff7a00;
    border-bottom: 1px solid #ff7a00;
}

.cell.hovered.hovered-first {
    border-left: 1px solid #ff7a00;
}

.cell.hovered.hovered-last {
    border-right: 1px solid #ff7a00;
}

.remove_all .remove_icon {
    color: #f70000;
    margin-left: 20px;
}

.remove_all,
.choose_category {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    color: #969696 !important;
    border-radius: 5px;
    border-bottom-left-radius: 10px;
    padding: 8px 10px !important;
    width: 210px;
}

.remove_all {
    margin-bottom: 10px !important;
    cursor: pointer;
    font-size: 16px;
    margin-left: 15px;
    height: 38px;
    line-height: 20px;
    font-family: Inter-Regular;
}

.choose_category {
    margin: 0 5px 32px 15px;
}

/*User Page*/

.user_page {
    display: flex;
    width: 100%;
    margin: 40px 0;
}

.user_left_wrapper {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    width: fit-content;
    max-width: 386px;
    min-height: 890px;
    border-radius: 10px;
    margin-right: 34px;
}

.user_top_left_block {
    padding: 30px;
    border-bottom: 1px solid #c2c2c2;
}

.info_block_user_page {
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #84c400;
    display: block;
    padding: 22px 30px;
}

.user_top_left_block a span,
.user_top_left_block a {
    transition: 0.5s;
}

.user_top_left_block a:hover span,
.user_top_left_block a:hover {
    transition: 0.5s;
    color: #84c400;
}

.user_right_wrapper {
    width: calc(100% - 300px);
}

.user_left_wrapper .personal_info_left_block {
    font-weight: normal;
    /*font-size: 20px;*/
    /*line-height: 24px;*/
    text-decoration-line: underline;
    color: #5b6770;
    display: flex;
    align-items: center;
    font-family: Inter-Regular;
    padding-bottom: 20px;
    position: relative;
}

.user_left_wrapper .personal_info_left_block:last-child {
    padding-bottom: 0;
}

.personal_info_left_block:hover {
    cursor: pointer;
    color: #84c400;
}

.personal_info_left_block::before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    width: 21px;
    height: 21px;
    margin-right: 10px;
}

.autocomplete-suggestions {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /* top: 106px !important; */
    overflow: auto;
    width: 100% !important;
}

.fixed_autocomplete {
    position: fixed !important;
    top: 44px !important;
}

.personal_info_left_block:nth-child(2)::before {
    background-image: url(../images/user_icon_page_user.svg);
}

.personal_info_left_block:nth-child(3)::before {
    background-image: url(../images/wish_icon_page_user.svg);
}

.personal_info_left_block:nth-child(4)::before {
    background-image: url(../images/list.svg);
    background-position: center;
}

.personal_info_left_block:nth-child(5)::before {
    background-image: url(../images/bonuses.svg);
}

.personal_info_left_block:nth-child(6)::before {
    background-image: url(../images/logout.svg);
}

.form_LK_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_LK_left_block {
    width: 50%;
}

.user_right_wrapper .form_group:last-child {
    margin-bottom: 0;
}

.lk_block_2 .personal_information_text {
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
    margin-top: 40px;
}

.lk_block_2 {
    margin-bottom: 40px;
}

/*Catalog pdf page*/
.catalog_pdf_text {
    font-weight: normal;
    font-size: 22px;
    line-height: 25px;
    color: #000000;
    display: block;
    padding: 40px 0 20px;
    text-align: center;
    border-bottom: 5px solid #ff7a00;
}

.catalog_pdf_item_text {
    font-weight: normal;
    font-size: 22px;
    line-height: 25px;
    color: #5b6770;
    transition: 0.5s;
}

.catalog_pdf_item {
    width: 49%;
    background: #ffffff;
    box-shadow: -0.157px 2.996px 6.928px rgba(20, 20, 20, 0.04);
    margin-top: 20px;
    padding: 10px 44px;
    border-radius: 10px;
    position: relative;
    transition: 0.5s;
    cursor: pointer;
    text-decoration: none;
}

.catalog_pdf_item:hover {
    transition: 0.5s;
    box-shadow: 0px 3px 6.928px rgba(20, 20, 20, 0.17);
}

.catalog_pdf_item:hover .catalog_pdf_item_text {
    transition: 0.5s;
    color: #ff7a00;
}

.catalog_pdf_item_text:after {
    content: "";
    display: inline-block;
    background-image: url(../images/catalog_pdf_icon.svg);
    width: 32px;
    height: 32px;
    position: absolute;
    right: 25px;
    top: 6px;
}

.download-info {
    max-width: 95%;
}

/* .catalog_pdf_item:nth-child(even) {
    margin-left: 30px;
} */
.catalog_pdf_wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

/*Modal add product cart*/
.blocker {
    z-index: 9999999999999;
    background-color: rgba(255, 255, 255, 0.75);
}

.product_add_cart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product_add_cart .product_add_cart_text {
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    color: #5b6770;
    display: block;
    font-family: Inter-Regular;
}

.product_add_cart .modal_name_product {
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    color: #ff7a00;
    font-family: Inter-Regular;
    display: block;
}

.add_cart.modal,
.cartModal.modal {
    padding: 40px 30px;
}

.add_cart.modal a.close-modal,
.cartModal.modal a.close-modal {
    background-image: url(../images/cancel.jpg);
    border-radius: 50%;
}

.cart_modal_text {
    font-weight: normal;
    font-size: 26px;
    line-height: 32px;
    color: #ff7a00;
    display: block;
    padding-bottom: 20px;
}

span.o_notify_v2_order_id_bold {
    font-size: 24px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    color: #000000;
}

.cart_modal_text_2 {
    font-size: 22px;
    font-weight: normal;
    line-height: 28px;
    text-align: center;
    color: #000000;
    display: block;
}

/*product comments*/
.comments_wrapper {
    display: flex;
    flex-direction: column;
}

.comments_wrapper div.h3 {
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #5b6770;
    text-transform: uppercase;
    font-family: Inter-Regular;
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 40px;
    position: relative;
    cursor: pointer;
}

.comments_wrapper .col-lg-12 {
    padding-left: 44px;
    padding-right: 44px;
}

.comments_wrapper div.h3 span::after {
    display: inline-block;
    content: "";
    background-image: url(../images/down-arrow.png);
    width: 18px;
    height: 12px;
    background-repeat: no-repeat;
    position: absolute;
    top: 28px;
    right: 25px;
    transform: scale(1.2);
}

.comment_form {
    display: none;
}

.comment_block {
    background: #ffffff;
    padding: 20px 60px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.comment_block .form_input,
.comment_block .form_textarea {
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    font-weight: normal;
    font-size: 20px;
    line-height: 23px;
    color: #b2b2b2;
    resize: none;
    padding-top: 5px;
}

.comment_block .form_placeholder {
    font-weight: normal;
    font-size: 20px;
    color: #b2b2b2;
    top: 10px;
}

.comment_items {
    margin: 20px 0;
}

.comment_form .rating_container .rating_text1 {
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    color: #5b6770;
    font-family: Inter-Regular;
    padding-right: 20px;
}

.comment_form .rating_container {
    width: 100%;
    display: flex;
    align-items: baseline;
}

/*About page*/
.about_item {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    justify-content: center;
    margin: 50px 0 80px;
}

.about_wrapper {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}

.about_text_block {
    width: 100%;
    max-width: 50%;
    background: #ffffff;
    box-shadow: 0px 3px 13.564px rgba(20, 20, 20, 0.11);
    min-height: 490px;
    border-radius: 10px;
    padding: 60px 46px;
    margin-right: -80px;
    z-index: 9;
}

.about_text_header {
    font-weight: normal;
    font-size: 32px;
    line-height: 37px;
    color: #5b6770;
    display: block;
    text-transform: uppercase;
    padding-bottom: 22px;
    border-bottom: 1px solid #7b8891;
    width: 60%;
}

.about_img img {
    box-shadow: 0px 3px 13.564px rgba(20, 20, 20, 0.11);
    border-radius: 10px;
}

.about_text {
    font-weight: normal;
    font-size: 18px;
    line-height: 35px;
    color: #5b6770;
    display: block;
    padding-top: 30px;
    font-family: Inter-Regular;
}

.about_wrapper .about_item:nth-child(even) .about_text_block {
    margin-right: 0;
    margin-left: -80px;
}

.about_wrapper .about_item:nth-child(odd) .ellipse {
    position: absolute;
    bottom: -70px;
    left: 20px;
}

.about_wrapper .about_item:last-child .ellipse {
    position: absolute;
    bottom: -70px;
    right: 20px;
}

.about_wrapper .about_item .bg_text {
    font-weight: normal;
    font-size: 109px;
    line-height: 126px;
    font-family: Ubuntu-Bold;
    display: block;
    color: #5b6770;
    opacity: 0.07;
}

.about_wrapper .about_item:first-child .bg_text {
    position: absolute;
    top: -5px;
    left: -40px;
}

.about_wrapper .about_item:nth-child(2) .bg_text {
    position: absolute;
    top: -10px;
    right: -10px;
}

.about_wrapper .about_item:nth-child(3) .bg_text {
    position: absolute;
    top: -20px;
    left: -10px;
}

.about_wrapper .about_item:last-child .bg_text {
    position: absolute;
    top: -10px;
    right: -10px;
}

.about_wrapper .about_item:first-child .about_img:after {
    content: "";
    font-weight: normal;
    font-size: 109px;
    line-height: 126px;
    font-family: Ubuntu-Bold;
    display: block;
    color: #5b6770;
    opacity: 0.07;
}

.about_wrapper .about_item:first-child .about_img:after {
    position: absolute;
    bottom: -65px;
    left: -220px;
    z-index: -1;
}

.about_wrapper .about_item:nth-child(3) .about_img::after {
    content: "";
    background-image: url(../images/videx_bg_img.png);
    width: 910px;
    height: 140px;
    position: absolute;
    background-repeat: no-repeat;
    top: -125px;
    left: -270px;
    z-index: -1;
}

.about_img {
    position: relative;
}

/*Page Contacts*/
.contacts_top_wrapper {
    width: 100%;
    height: 600px;
    background-image: url(../images/contacts_bg.jpg);
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 100px;
    position: relative;
}

.page_contacts {
    margin: 0 0 60px;
}

.contacts_top_wrapper .h1 {
    position: absolute;
    top: 10px;
    left: 20px;
}

.contacts_inems {
    display: flex;
    justify-content: flex-end;
}

.contacts_inems .contacts_item {
    margin-left: 40px;
    transition: 0.5s;
    cursor: pointer;
    width: 100%;
    max-width: 370px;
    height: auto;
    border: 1px solid #5b6770;
    border-radius: 10px;
    padding: 20px;
}

.contacts_inems .contacts_item:hover {
    transition: 0.5s;
    border: 1px solid #ff6900;
}

.interactive-map img {
    height: 755px;
}

.part,
.part-text {
    opacity: 0;
    transition: 0.15s;
}

.interactive-map {
    position: relative;
    text-align: center;
    padding-bottom: 120px;
}

.g:hover .part,
.g:hover .part-text {
    opacity: 1;
}

.interactive-map svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 755px;
    width: 100%;
}

.contacts_text_header {
    font-size: 22px;
    font-weight: 600;
    color: #ff7a00;
    line-height: 29px;
    display: block;
    font-family: Inter-Regular;
    text-align: center;
}

.contacts_text {
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    display: block;
    font-family: Inter-Regular;
    color: #5b6770;
    height: 84px;
}

.contacts_item .email_link,
.contacts_txt {
    font-weight: normal;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    display: block;
    font-family: Inter-Regular;
    color: #5b6770;
    text-decoration: none;
}

.contacts_item .email_link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts_inems .contacts_item:nth-child(2) .contacts_text {
    width: 80%;
    margin: 0 auto;
}

.contacts_item .email_link:before {
    content: "";
    display: inline-block;
    background-image: url(../images/email_icon.png);
    width: 22px;
    height: 20px;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.contacts_bottom_wrapper .contacts_left_block {
    width: 100%;
    max-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.contacts_bottom_wrapper {
    display: flex;
    justify-content: space-between;
    padding: 50px 80px;
    /* position: relative; */
}

/* pop-up's */
.login-pop-up_wrapper,
.registration-pop-up_wrapper {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
}

.login-pop-up,
.registration-pop-up {
    width: 1120px;
    height: 680px;
    background: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 60px;
    position: relative;
    border-radius: 12px;
    overflow: auto;
    margin-left: 30px;
    margin-right: 30px;
    max-height: 100%;
    overflow: auto;
}

.registration-pop-up {
    /* height: 92%; */
    height: 810px;
    padding: 20px 162px;
    overflow: auto;
}

h5.login-pop-up_heading,
h5.registration-pop-up_heading {
    font-size: 32px;
    color: #ff7a00;
}

h5.login-pop-up_heading {
    margin-bottom: 0;
}

h5.registration-pop-up_heading {
    margin-bottom: 35px;
}

p.login-pop-up_text,
p.registration-pop-up_text {
    font-size: 18px;
    width: 100%;
    color: #5b6770;
    align-self: flex-start;
    padding: 25px 40px;
    margin-top: 35px;
    border-top: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    font-family: Inter-Regular;
}

p.registration-pop-up_text {
    margin-top: 0px;
    padding: 18px 25px;
}

.registration-pop-up_form-user-data,
.registration-pop-up_form-user-pass {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
}

span.red_star {
    color: #ff0000;
}

span.close-pop-up {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #dadada;
    border-radius: 50%;
    right: 20px;
    top: 20px;
}

span.close-pop-up:hover {
    cursor: pointer;
}

span.close-pop-up::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 3px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

span.close-pop-up::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 3px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

form.login-pop-up_form,
form.registration-pop-up_form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

form.login-pop-up_form {
    width: 570px;
}

form.registration-pop-up_form {
    width: 100%;
    margin-top: 0px;
}

.login-pop-up_form .login-pop-up_label-text,
.registration-pop-up_form .registration-pop-up_label-text {
    font-size: 18px;
    text-transform: uppercase;
    font-family: Ubuntu-Bold;
}

.login-pop-up_form .registration-pop-up_label-text {
    left: 20px;
}

form.login-pop-up_form label {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}

form.registration-pop-up_form label {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}

.login-pop-up_form .login-pop-up_login-field,
.login-pop-up_form .login-pop-up_password-field,
.registration-pop-up_form .registration-pop-up_name-field,
.registration-pop-up_form .registration-pop-up_email-field,
.registration-pop-up_form .registration-pop-up_phone-field,
.registration-pop-up_form .registration-pop-up_password-field,
.registration-pop-up_form .registration-pop-up_password-field {
    border-radius: 12px;
    outline: none;
    border: 1px solid #e9e9e9;
    padding: 10px 10px;
    width: 355px;
    color: #969696;
}

.register-confirm {
    margin-bottom: 40px;
}

.police_text {
    font-size: 20px;
    color: #5b6770;
    text-align: center;
    margin: 15px 0;
}

.police_link {
    color: #84c400;
    text-decoration: underline;
    text-align: center;
}

a.forgot-password_link {
    font-size: 20px;
    color: #84c400;
    margin-top: 15px;
}

input.login-pop-up_submit-btn {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    border: 1px solid transparent;
    background: #ff7a00;
    border-radius: 12px;
    padding: 6px 53px;
    min-height: 44px;
}

input.login-pop-up_submit-btn:hover {
    cursor: pointer;
}

.login-pop-up_checkbox,
.input_delivery,
.delivery_radio {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}

label.login-pop-up_checkbox-label {
    padding-left: 35px;
    font-size: 20px;
    color: #7c858d;
    position: relative;
    margin-left: -95px;
}

.login-pop-up_checkbox-label-inner {
    padding-left: 250px;
    font-family: Inter-Regular;
}

.login-pop-up_checkbox-box {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid #cacaca;
    margin-left: -35px;
    top: 50%;
    transform: translateY(-50%);
}

.login-pop-up_checkbox-box {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1px solid #cacaca;
    margin-left: -25px;
}

.login-pop-up_checkbox:checked+.login-pop-up_checkbox-box::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 17px;
    height: 12px;
    border-left: 5px solid #84c400;
    border-bottom: 5px solid #84c400;
    transform: rotate(-45deg);
}

.user-registr::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 2px;
    width: 15px;
    height: 15px;
    background: url(../images/icons/regist-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
}

.user-registr:hover::after {
    background: url(../images/icons/regist-icon-hover.svg);
    background-repeat: no-repeat;
}

.user-logIn::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 2px;
    width: 15px;
    height: 15px;
    background: url(../images/icons/logIn-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
}

.user-logIn:hover::after {
    background: url(../images/icons/logIn-icon-hover.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
}

.user-telegram::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 2px;
    width: 20px;
    height: 20px;
    background: url(../images/icons/telegram-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
}
.user-telegram:hover::after {
    background: url(../images/icons/telegram-icon.svg);
}

.cart_account_link.user-logIn {
    background: none;
}

.account_link.favorite_orders {
    position: relative;
}

.account_link.favorite_orders .wishlist_counter {
    display: none;
}

.mob_comp .informer_counter {
    visibility: hidden;
}

.mob_comp .informer_counter.active_counter {
    visibility: visible;
}

.account_link.favorite_orders .wishlist_counter.active_counter {
    display: block;
    position: absolute;
    left: 24px;
    top: -3px;
    background-color: #ff7a00;
    width: auto;
    height: 16px;
    line-height: 16px;
    border-radius: 8px;
    text-align: center;
    padding: 0 4px;
    font-size: 12px;
    color: #fff;
    z-index: 1;
}

.favorite_orders::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: url(../images/icons/favorite-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
}

.favorite_orders:hover::after {
    background: url(../images/icons/favorite-icon-hover.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
}

.history_orders::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: url(../images/icons/list-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.private_office::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: url(../images/icons/regist-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.private_office:hover::after {
    background: url(../images/icons/regist-icon-hover.svg);
    background-repeat: no-repeat;
}

.user-logout::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: url(../images/icons/logout-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.cart_account_link.user-registr {
    position: relative;
}

.cart_account_link.user-registr::before {
    content: none;
}

.cart_account_link.user-logIn::after {
    content: none;
}

.cart_account_link.user-registr::after {
    content: none;
}

/*Shipping payment page*/
.payment_page .about_wrapper .about_item:first-child .about_img:after {
    content: none;
}

.payment_page .about_wrapper .about_item:last-child .ellipse {
    top: 0;
    left: -30px;
    bottom: 0;
    right: 0;
}

.payment_page .ellipse2 {
    position: absolute;
    bottom: -130px;
    right: 70px;
    z-index: -1;
}

/* oreders history */
.orders-history_heading {
    display: grid;
    grid-template-columns: 20% 15% 20% 20% 12% 13%;
    padding: 20px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    margin: 30px 0 0;
    font-size: 18px;
    color: #676767;
    font-family: 'Inter-Regular';
    font-weight: bold;
    text-align: center;
}

.order-wrapper {
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
}

.order-info_block {
    display: grid;
    grid-template-columns: 20% 15% 20% 20% 12% 13%;
    /*padding-bottom: 20px;*/
}

.order-price-text,
.order-status-text,
.order-date-text {
    text-align: center;
}

.order-number,
.order-date,
.order-status,
.order-price,
.order_more-details,
.order_repeat {
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-date,
.order-status {
    font-size: 18px;
    line-height: 25.88px;
    font-weight: bold;
    font-family: PTSans-Regular;
}

.order_more-details {
    font-weight: bold;
    font-size: 18px;
    font-family: Ubuntu-Bold;
    color: #ff7a00;
    letter-spacing: -0.3px;
    font-weight: 700;
    position: relative;
    justify-self: flex-start;
}

.order_more-details::before {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    width: 7px;
    height: 7px;
    border-left: 2px solid #ff7a00;
    border-bottom: 2px solid #ff7a00;
}

.order_more-details:hover {
    cursor: pointer;
}

.order-price {
    font-size: 27px;
    font-family: Ubuntu-Regular;
    font-weight: bold;
    line-height: 27.38px;
    letter-spacing: 1.35px;
    flex-direction: column;
    justify-content: space-around;
}

.order-price .order-price__bonuses {
    color: #ff6900;
}

.order_repeat {
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #5b6770;
    border-radius: 12px;
}

.order_repeat:hover {
    cursor: pointer;
}

.btn_repeat {
    border: 2px solid #5b6770;
    transition: 0.5s;
    border-radius: 12px;
    width: 100%;
    /* max-width: 164px; */
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 10px 17px;
    /* margin: 20px auto; */
    font-weight: 700;
    font-size: 18px;
    font-family: Ubuntu-Bold;
    letter-spacing: -0.3px;
    color: #5b6770;
    cursor: pointer;
    background: transparent;
    text-transform: none;
    text-decoration: none;
    text-align: center;
}

.btn_repeat:hover {
    border: 2px solid #ff7a00;
    color: #ff7a00;
    transition: 0.5s;
    background-color: transparent;
}

.order-item_img img {
    border: 1px solid #bfbfbf;
    border-radius: 10px;
}

.order-number {
    font-family: Inter-Regular;
    font-weight: bold;
    font-size: 18px;
    line-height: 25.88px;
    color: #ff1c26;
    display: flex;
    align-items: center;
}

.order-number {
    flex-direction: column;
    justify-content: space-around;
}

.order-number .order-number__document {
    color: #fff;
    background: #000;
    text-align: center;
    padding: 5px 17px;
    border-radius: 12px;
    transition: .5s;
}

.order-number .order-number__document:hover,
.order-number .order-number__document.selected {
    background: #ff7a00;
}

.order-number a {
    text-decoration: none;
}

.order-info_details-wrapper {
    display: none;
}

.order-info_details-wrapper .order-info_details:first-child {
    border-top: 1px solid #e8e8e8;
}

.order-info_details {
    display: grid;
    grid-template-columns: 10% 25% 20% 15% 15% 15%;
}

.order-item_img,
.order-item_desc,
.order-item_adress,
.order-item_price,
.order-item_quantity,
.order-item_checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-item_desc {
    flex-direction: column;
    padding: 15px;
}

span.order-item_desc-text-model,
p.order-item_desc-text {
    display: flex;
    align-self: flex-start;
}

p.order-item_desc-text {
    font-size: 18px;
    font-family: Ubuntu-Regular;
    font-weight: 400;
    line-height: 24.86px;
    color: #313131;
}

span.order-item_desc-text-model {
    font-size: 14px;
    color: #969696;
    font-family: Ubuntu-Regular;
    letter-spacing: 1.27px;
    font-weight: bold;
}

.order-item_adress {
    font-size: 16px;
    padding: 15px;
    font-family: PTSans-Regular;
    color: #303030;
    font-weight: 400;
}

.order-item_price {
    color: #5b6770;
    font-family: Ubuntu-Regular;
    font-size: 23px;
    font-weight: bold;
    line-height: 22.69px;
}

.order-item_quantity {
    color: #969696;
    font-family: Inter-Regular;
    font-size: 20px;
    /* font-weight: bold; */
    line-height: 10.19px;
    letter-spacing: 2.63px;
}

.item-checkbox-label {
    position: relative;
}

.item-checkbox {
    width: 0;
    height: 0;
    opacity: 0;
}

.cart_checkbox label.error {
    order: 3;
    width: 100%;
    font-size: 14px;
    line-height: 120%;
    margin-top: 10px;
    padding-left: 15px;
}

.item-checkbox-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #bfbfbf;
}

.item-checkbox:checked~.item-checkbox-box::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 11px;
    height: 7px;
    transform: rotate(-45deg);
    border-left: 2px solid #ff7a00;
    border-bottom: 2px solid #ff7a00;
}

.colors {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
}

.colors button {
    border: none;
    background: no-repeat;
}

*[tooltip]:hover:after {
    content: attr(tooltip);
    border: 1px solid #e9e9e9;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    color: #5b6770;
    position: absolute;
    left: -50px;
    bottom: -10px;
    font-weight: 600;
}

#cart_informer {
    background-color: #e8e8e1;
    padding: 5px 5px 4px 5px;
    border-radius: 15px;
}

.colors .filter_item button {
    border-radius: 100%;
    border: 1px solid transparent;
    transition: 0.5s;
    display: flex;
    align-items: center;
}

.colors .filter_item button:hover img {
    border: 1px solid #ff6900;
    transition: 0.5s;
    border-radius: 100%;
}

.main-banner-wrapper.slick-slide a {
    text-decoration: none;
    width: 50%;
}

.container.banner-center {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: transparent !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h3.banner-ttl {
    transition: none 0s ease 0s;
    /* line-height: 24px; */
    border-width: 0px;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
    font-weight: 500;
    font-size: 60px;
    text-transform: uppercase;
    color: #fff;
}

p.banner-aannotation {
    transition: none 0s ease 0s;
    line-height: 24px;
    border-width: 0px;
    margin-bottom: 50px;
    padding: 0px;
    letter-spacing: 0px;
    font-weight: 300;
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
}

.banner-info {
    width: 50%;
}

.banner-img {
    width: 50%;
    margin: 0 auto;
    border: none;
    outline: none;
    border-color: transparent;
    outline-color: transparent;
    overflow: hidden;
    margin-left: -5px;
}

.banner-desc p {
    transition: none 0s ease 0s;
    line-height: 24px;
    border-width: 0px;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    margin-top: 50px;
}

.banner-btn {
    display: block;
    font-size: 13px;
    line-height: 38px;
    text-align: center;
    padding: 0 22px;
    border: 2px solid #fff;
    text-decoration: none;
    color: #fff;
    transition: all 0.5s ease-in-out;
    font-weight: 400;
    width: 100%;
    max-width: 250px;
    margin-top: 100px;
}

.banner-btn:hover {
    border-color: #222;
    background: #222;
    color: #fff;
}

.slick-list {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.slick-list .products_item,
.main_products.not_slider .products_item {
    margin: 10px 8px;
}

.main_products.not_slider .products_item:last-child {
    margin-right: 0;
}

.mobile_filter_sort_wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.features_top_item path {
    transition: 0.5s;
}

.features_top_item:hover path,
.features_top_item.checked path {
    fill: #fff;
}

.fv_svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.fv_svg svg {
    width: 100%;
    height: 100%;
}

.fv_svg img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.features_top_item_value {
    display: flex;
    justify-content: center;
    font-size: 13px;
    line-height: 100%;
    padding-top: 4px;
}

/* personal cabinet */
.personal-info-block .btn_save input {
    border: 2px solid #555555;
    transition: 0.5s;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 10px 20px;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #313131;
    cursor: pointer;
    background: transparent;
}

.personal-info-block .btn_save input:hover {
    border: 2px solid #ff7a00;
    color: #ff7a00;
    transition: 0.5s;
    background-color: transparent;
}

/* passsword_reminder page */
.password_remind_block {
    display: flex;
    justify-content: center;
}

.passsword_reminder_btn {
    border: 2px solid #555555;
    transition: 0.5s;
    border-radius: 10px;
    width: 100%;
    max-width: 164px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 10px 20px;
    /* margin: 20px auto; */
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #313131;
    cursor: pointer;
}

.passsword_reminder_btn:hover {
    border: 2px solid #ff7a00;
    color: #ff7a00;
    transition: 0.5s;
    background-color: transparent;
}

.password_remind_email {
    border-radius: 12px;
    outline: none;
    border: 1px solid #e9e9e9;
    padding: 10px 10px;
    width: 355px;
    color: #969696;
}

/* Wish products */
.wish_products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.wish_products .products_item.no_padding {
    margin: 20px 20px;
}

.wish_products .item-checkbox-label {
    position: absolute;
    left: 20px;
    top: 15px;
    z-index: 1;
}

.form_input_checkbox .item-checkbox-label {
    display: flex;
    height: inherit;
}

.form_input_checkbox.cart_checkbox .item-checkbox-label {
    flex-wrap: wrap;
}

.form_input_checkbox .item-checkbox-box {
    left: unset;
}

.user_right_wrapper .form_group .form_input.form_input_checkbox {
    background: unset;
    border: unset;
}

.wishlist-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 10px;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.wishlist-header a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #5b6770;
    border-radius: 12px;
    padding: 10px 15px;
    transition: 0.5s;
}

.wishlist-header a:hover {
    background: #84c400;
    color: #fff;
    border: 1px solid #84c400;
}

.wishlist-header div:not(:first-child) {
    margin-left: 40px;
}

.wishlist-wrapper .fn_wishlist_page.wish_products.clearfix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f6f6f6;
}

.wishlist-wrapper .products_item:hover {
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); */
    transition: 0.5s;
    z-index: 9;
    position: relative;
}

.wishlist-wrapper .products_item {
    box-shadow: 0px 2px 5px 0px #e8e8e8 !important;
}

.wishlist-wrapper .products_item:hover .preview {
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.35);
    transition: 0.5s;
    position: absolute;
    z-index: 9;
    width: 100%;
    overflow: hidden;
}

.wishlist-wrapper .products_item:hover .preview:hover .product_preview__annotation {
    display: flex;
    flex-direction: column;
    padding: 22px 25px;
    align-items: baseline;
}

.wishlist-wrapper .price span {
    font-size: 26px;
}

.wishlist-wrapper .product_wrapper-mask {
    position: relative;
}

.wishlist-wrapper .item-checkbox-label {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 8;
}

.wishlist-wrapper .product_wrapper-mask:hover .item-checkbox-label {
    z-index: 10;
}

.wishlist-wrapper .overlay_buttons {
    display: none;
}

.wishlist-header .wishlist-header_toCart_mobile,
.wishlist-header .wishlist-header_delete_mobile,
.wishlist-header .wishlist-header_toCart_desktop,
.wishlist-header .wishlist-header_delete_desktop {
    visibility: hidden;
}

.wishlist-header .wishlist-header_toCart_mobile {
    width: 59px;
    height: 31px;
    font-size: 16px;
    border-radius: 7px;
    background-color: #84c400;
}

.wishlist-header .wishlist-header_toCart_mobile span {
    margin-left: 9px;
    font-size: 16px;
    line-height: 12px;
}

.wishlist-header .wishlist-header_toCart_mobile img {
    margin-right: 17px;
    margin-left: 9px;
    width: 15px;
    height: 15px;
}

.wishlist-header .wishlist-header_toCart_mobile a {
    border: none;
    padding: 0px;
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-self: center;
    padding-top: 7px;
}

.wishlist-header .wishlist-header_delete_mobile {
    padding: 5px 10px;
    border: 1px solid #5b6770;
    width: 34px;
    height: 31px;
    border-radius: 7px;
}

.wishlist-header .wishlist-header_delete_mobile a {
    border: none;
    padding: 0px;
    color: #fff;
}

.user_left_wrapper {
    display: block;
}

.user_left_wrapper_mobile {
    display: none;
}

/* hide features_other_filter filter  */
/* .sidebar_top .filter_name:nth-child(2) {
  display: none;
} */

.calc_block_wrapper {
    display: flex;
    box-shadow: -0.2px 3px 20px rgb(0 0 0 / 18%);
    border-radius: 5px;
    height: 140px;
    align-items: center;
    justify-content: flex-end;
    background: url(../images/redirection_img.png) left center / contain no-repeat;
}

.configurator_wrapper {
    display: flex;
    box-shadow: -0.2px 3px 20px rgb(0 0 0 / 18%);
    border-radius: 5px;
    height: 140px;
    align-items: center;
    justify-content: flex-end;
    background: url(../images/configurator_img.png) 6% center / contain no-repeat;
}

.redirection_link {
    padding: 9px 23px;
    transition: 0.5s;
    background-color: #ff7a00;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 7px;
    border: 3px solid transparent;
    font-family: Ubuntu-Bold;
    width: 160px;
    max-width: 160px;
    text-decoration: none;
    position: relative;
    margin: 0 50px;
}

.redirect_paragraph {
    font-size: 28px;
    font-weight: 800;
    color: #5b6770;
    width: 160px;
    margin-right: 30px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.configurator_wrapper .redirect_paragraph {
    width: 240px;
    margin-right: 0;
    line-height: 34px;
}

.configurator_wrapper .redirect_paragraph span {
    font-size: 18px;
    font-weight: 400;
}

a.redirection_link::before {
    content: "";
    position: absolute;
    right: 20px;
}

.pop_buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
}

.pop_buttons .product_btn_pop {
    text-decoration: none;
    text-align: center;
    text-transform: unset;
}

/*.wayforpay-form::before {*/
/*    z-index: 99999;*/
/*    width: 100vw;*/
/*    height: 100vh;*/
/*    background: #fff;*/
/*    content: "";*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/
.delivery_item+.change_payment {
    margin-bottom: 20px;
}

/* custom order products */
.table_heading {
    display: grid;
    grid-template-columns: 8% 62% 10% 10% 10%;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.table_heading .text_left,
.order_purchase .fn_purchase .text_left {
    padding-left: 20px;
    justify-self: flex-start;
}

.order_purchase .fn_purchase {
    display: grid;
    grid-template-columns: 8% 62% 10% 10% 10%;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
    text-align: center;
}

.order_purchase .fn_purchase div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.order_purchase .fn_purchase .purchase_sum {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.order_purchase .order_discount,
.order_purchase .order_coupon,
.order_purchase .order_delivery,
.order_purchase .purchase_total {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    padding-bottom: 10px;
    font-size: 16px;
}

.order_purchase .order_discount span:first-child,
.order_purchase .order_coupon span:first-child,
.order_purchase .order_delivery span:first-child,
.order_purchase .purchase_total span:first-child {
    padding-right: 10px;
}

.order_purchase .order_coupon,
.order_foot_total .order_coupon {
    color: red;
}

.order_purchase .order_discount {
    padding-top: 10px;
}

.order_purchase .total_order .purchase_total {
    padding: 0;
}

.total_order .purchase_total span.total_sum.nowrap {
    color: #000;
    font-weight: bold;
}

.order_purchase .purchase_name,
.order_purchase .fn_purchase {
    color: #000;
}

.order_purchase .purchase_name {
    text-align: left;
}

#wishlist-place {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo_videx img {
    max-width: 410px;
    width: 100%;
}

.filter_group .colors .features_top_item_value {
    margin-left: 5px;
}

/* banner text */
span.banner_inner_text {
    padding-left: 20%;
}

@media screen and (max-width: 1024px) {
    span.banner_inner_text {
        padding-left: 5%;
    }

    .banner-img {
        margin-left: -8px;
    }
}

@media screen and (max-width: 768px) {
    span.banner_inner_text {
        padding-left: 0;
    }
}

@media screen and (max-width: 460px) {
    span.banner_inner_text {
        font-size: 10px !important;
        margin-top: -50px;
        display: block;
        padding-left: 18%;
    }

    .banner-img {
        margin-left: -10px;
    }
}

@media screen and (max-width: 375px) {
    .banner-img {
        margin-left: -22px;
    }
}

@media screen and (max-width: 360px) {
    .banner-img {
        margin-left: -15px;
    }
}

@media screen and (max-width: 320px) {
    .banner-img {
        margin-left: -8px;
    }
}

/* new year */
.header a.logo {
    position: relative;
}

.header a.logo::before {
    position: absolute;
    content: "";
    /* background: url(../images/newyear/logo-hat.png) center center / contain
        no-repeat; */
    width: 20%;
    height: 120%;
    left: 47%;
    top: -50%;
    z-index: 2;
}

.footer .logo_videx::before {
    position: absolute;
    content: "";
    /* background: url(../images/newyear/footer-logo-hat.png) center center /
        contain no-repeat; */
    width: 18%;
    height: 32%;
    left: 12%;
    top: -15%;
    z-index: 2;
}

.account>span.account_link::after {
    position: absolute;
    content: "";
    /* background: url(../images/newyear/privat-hat.png) center center / contain
        no-repeat; */
    width: 30%;
    height: 70%;
    left: 8%;
    top: -20%;
    z-index: 99;
}

/* .header::before {
    position: absolute;
    content: "";
    background: url(../images/newyear/left_ball.png) center center / contain
        no-repeat;
    width: 75px;
    height: 190px;
    left: 5px;
    top: 0%;
    z-index: 99;
}
.header::after {
    position: absolute;
    content: "";
    background: url(../images/newyear/right_tree.png) center center / contain
        no-repeat;
    width: 75px;
    height: 190px;
    right: 5px;
    top: 0%;
    z-index: 99;
} */
/* #fn_content {
    position: relative;
} */
/* .left_snow {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 98%;
    width: 75px;
    overflow: hidden;
} */
/* .left_snow::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: url("../images/newyear/left_snow.png") 0% 0% repeat;
    width: 100%;
    height: 100%;
    background-size: auto;
    animation: snowFall 100s linear infinite;
}
.right_snow {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 98%;
    width: 75px;
    overflow: hidden;
}
.right_snow::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: url("../images/newyear/left_snow.png") 0% 0% repeat;
    width: 100%;
    height: 100%;
    background-size: auto;
    animation: snowFall 90s linear infinite;
}
@keyframes snowFall {
    0% {
        background-position-y: 0;
    }
    100% {
        background-position-y: 5000px;
    }
} */
.main_tabs .tab_navigation a {
    position: relative;
}

.main_tabs .tab_navigation a:nth-child(1)::before {
    content: "";
    position: absolute;
    left: -3%;
    top: -10%;
    /* background: url("../images/newyear/button_snow_1.png") center center /
        contain no-repeat; */
    width: 44px;
    height: 27px;
}

.main_tabs .tab_navigation a:nth-child(2)::before {
    content: "";
    position: absolute;
    left: -30%;
    top: -25%;
    /* background: url("../images/newyear/button_snow_2.png") center center /
        contain no-repeat; */
    width: 94px;
    height: 35px;
}

.main_tabs .tab_navigation a:nth-child(2)::after {
    content: "";
    position: absolute;
    right: -24%;
    top: -25%;
    /* background: url("../images/newyear/button_snow_3.png") center center /
        contain no-repeat; */
    width: 94px;
    height: 35px;
    z-index: 2;
}

.main_tabs .tab_navigation a:nth-child(3)::before {
    content: "";
    position: absolute;
    right: -3%;
    top: -10%;
    /* background: url("../images/newyear/button_snow_4.png") center center /
        contain no-repeat; */
    width: 44px;
    height: 27px;
}

.main_products .slick-list,
.main_products.not_slider {
    padding-top: 60px;
}

.main_products.not_slider {
    margin-bottom: 55px;
}

.main_products.not_slider .product_preview__annotation {
    background-color: unset;
}

/* .deer_block::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -0%;
    transform: translate(-50%, 0);
    width: 80px;
    height: 70px;
    background: url("../images/newyear/deer.png") center center / contain
        no-repeat;
    animation: deer 1s linear forwards;
} */
@keyframes deer {
    0% {
        transform: translate(-50%, 0);
    }

    95% {
        transform: translate(-50%, -90%);
        z-index: -1;
    }

    97% {
        transform: translate(-50%, -90%);
        z-index: -1;
    }

    100% {
        transform: translate(-50%, -82%);
        z-index: 1;
    }
}

.next_info_wrapper {
    position: relative;
}

/* .newyear_block {
    position: absolute;
    width: 100%;
    height: 120%;
    top: -115%;
    left: 0;
    background: url("../images/newyear/background.png") center center / contain
        no-repeat;
    z-index: 9;
}
.newyear_decoration {
    position: absolute;
    transition: 0.2s linear;
}
.newyear_block .newyear_decoration:nth-child(1) {
    position: absolute;
    background: url("../images/newyear/decoration_1.png") center center /
        contain no-repeat;
    width: 45px;
    height: 100px;
    left: 17%;
    bottom: -12%;
}
.newyear_block .newyear_decoration:nth-child(2) {
    position: absolute;
    background: url("../images/newyear/decoration_2.png") center center /
        contain no-repeat;
    width: 60px;
    height: 210px;
    left: 23%;
    bottom: -46%;
}
.newyear_block .newyear_decoration:nth-child(3) {
    position: absolute;
    background: url("../images/newyear/decoration_3.png") center center /
        contain no-repeat;
    width: 40px;
    height: 110px;
    left: 31%;
    bottom: -10%;
}
.newyear_block .newyear_decoration:nth-child(4) {
    position: absolute;
    background: url("../images/newyear/decoration_4.png") center center /
        contain no-repeat;
    width: 40px;
    height: 70px;
    left: 46%;
    bottom: -8%;
}
.newyear_block .newyear_decoration:nth-child(5) {
    position: absolute;
    background: url("../images/newyear/decoration_5.png") center center /
        contain no-repeat;
    width: 40px;
    height: 190px;
    left: 52%;
    bottom: -56%;
}
.newyear_block .newyear_decoration:nth-child(6) {
    position: absolute;
    background: url("../images/newyear/decoration_6.png") center center /
        contain no-repeat;
    width: 40px;
    height: 105px;
    left: 59%;
    bottom: -32%;
}
.newyear_block .newyear_decoration:nth-child(7) {
    position: absolute;
    background: url("../images/newyear/decoration_7.png") center center /
        contain no-repeat;
    width: 30px;
    height: 50px;
    left: 73%;
    bottom: -15%;
}
.newyear_block .newyear_decoration:nth-child(8) {
    position: absolute;
    background: url("../images/newyear/decoration_8.png") center center /
        contain no-repeat;
    width: 45px;
    height: 130px;
    left: 77%;
    bottom: -39%;
}
.newyear_block .newyear_decoration:nth-child(9) {
    position: absolute;
    background: url("../images/newyear/decoration_9.png") center center /
        contain no-repeat;
    width: 40px;
    height: 80px;
    left: 82%;
    bottom: -15%;
} */
.footer {
    position: relative;
    overflow: hidden;
}

.main_products.not_slider .products_item {
    width: 414px;
}

.main_products.not_slider span,
.main_products.not_slider li {
    background-color: unset;
}

.banner_bottom_slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_bottom_slide img {
    display: block;
    margin: auto;
}

.mob_comp svg {
    max-width: 22px;
    max-height: 22px;
    margin-top: 10px;
}

.mob_comp path {
    fill: #5b6770;
}

.mobile_wish .mob_comp path {
    fill: #fff;
}

.mobile_wish .mob_comp svg {
    margin-top: 0;
}

/* fix new temp logo. Remove this after new year !!!!! */
.footer_bottom>.container>.row>.foot.col-lg-3 {
    margin-top: -23px;
}

.mobile_footer .logo_videx {
    margin-top: -23px;
}

@media (min-width: 1641px) and (max-width: 1720px) {
    .row .mobile_footer:last-child .foot:last-child {
        width: 24%;
    }
}

/* END fix new temp logo */

li.menu_item.menu_item_1.menu_eventer>a span {
    position: relative;
}

li.menu_item.menu_item_1.menu_eventer>a span::before {
    content: "";
    background: #ff7a00;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    right: -8px;
    top: 20%;
    transform: translateY(-50%);
    position: absolute;
}

li.menu_item.menu_item_1.menu_eventer ul .menu_item_2:last-child>a span {
    position: relative;
}

li.menu_item.menu_item_1.menu_eventer ul .menu_item_2:last-child>a span::before {
    content: "";
    background: #ff7a00;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    right: -8px;
    top: 20%;
    transform: translateY(-50%);
    position: absolute;
}

.price_container {
    text-align: end;
}

.menu_header_wrapper .menu_group_header .menu_item_1 .menu_link.discounted_link {
    font-weight: 600;
    color: #ff7a00;
}

.out_of_production table td {
    padding: 0 5px;
    border: 1px solid #ccc;
}

.categories_menu__image {
    max-width: 28px;
    max-height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories_menu__item .categories_menu__image {
    max-width: unset;
    max-height: unset;
}

.categories_menu__image img {
    width: 100%;
}

.subcategory .category_link {
    white-space: unset;
}

.need_star {
    font-size: 18px;
    align-self: baseline;
    margin-bottom: 20px;
}

.header__top__wrapper {
    background: #0055ff;
    padding: 14px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
}

.header__top__wrapper .container {
    max-width: 990px;
    padding: 0;
}

input[name*=password]~.progress {
    display: block;
    height: 4px;
    width: 0%;
    background: transparent;
    transition: .5s;
}

input[name*=password][data-level="1"]~.progress {
    background: #ff0000;
    width: 20%;
}

input[name*=password][data-level="2"]~.progress {
    background: #ff6600;
    width: 40%;
}

input[name*=password][data-level="3"]~.progress {
    background: #ffc800;
    width: 60%;
}

input[name*=password][data-level="4"]~.progress {
    background: #e6ff00;
    width: 80%;
}

input[name*=password][data-level="5"]~.progress {
    background: #44ff00;
    width: 100%;
}

.cart_wrapper .red_text {
    font-size: 14px;
    font-weight: 600;
    padding: 3px 5px;
    border: 2px solid;
    border-radius: 10px;
    margin-top: 10px;
    width: 100%;
}

.cart_wrapper label.error:not([style*="display: none"])+span .selection>span,
.cart_wrapper input[type="text"].error {
    border-color: red !important;
}

.cart_wrapper label.error {
    font-size: 14px;
}

.cart_wrapper .form_group {
    margin: 0;
}

.cart_wrapper .form_group:not(:last-child),
.form_group_1:not(:last-child) {
    margin-bottom: 20px;
}

.category_item.havit_link {
    padding: unset;
}

.category_item.havit_link a {
    padding: 6px 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 5px;
}

.cart_work_time_wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    border: 3px solid red;
    border-radius: 10px;
}

.vacation_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    min-width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 50%;
    background: #ff7a00;
    color: #fff;
}

.vacation_icon svg,
.vacation_icon img {
    height: 85px;
}

.bi_popup_wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* height: 300px; */
    width: 460px;
    border-radius: 8px;
    overflow: hidden;
    background: #f6f6f6;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transform: translateX(2000px);
    aspect-ratio: 3/2 auto;
}

.bi_popup_wrapper.active {
    animation: 2s ease-in bounceInRight;
    animation-fill-mode: forwards;
}

a.bi_popup_wrapper {
    text-decoration: unset;
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bi_popup_top_title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    padding: 4px 20px;
    text-align: center;
    line-height: 140%;
    color: #fff;
    min-height: 32px;
}

.bi_popup_top.bi_popup_top_title {
    background: #ff7a00;
}

.bi_popup_close {
    position: absolute;
    right: 5px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: aquamarine;
    border-radius: 50%;
    background-color: #e8e8e1;
    color: #000;
    cursor: pointer;
    transition: .5s;
}

.bi_popup_close svg {
    width: 20px;
    height: 20px;
}

.bi_popup_image {
    height: 100%;
    width: 100%;
    display: flex;
    padding: 20px 20px 20px 20px;
}

.bi_popup_bottom {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: auto;
    width: 100%;
}

.bi_popup_wrapper .buy {
    font-size: 16px;
    line-height: 1.2;
    padding: 5px 10px;
}

.fancybox-slide>* {
    z-index: 9999;
    background-color: #fff;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.4;
    color: #303030;
    border-radius: 10px;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.4);
}

.block__header__preload {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    position: relative;
    min-height: 180px;
    margin-bottom: 30px;
    text-align: center;
}

.block__header__preload .fn_ajax_wait,
.block__header__preload .fn_ajax_wait:before,
.block__header__preload .fn_ajax_wait:after {
    top: 0;
}

.block__header__preload .fn_ajax_wait:after {
    top: 20px;
}

.block__header__preload .block__header__preload__count {
    font-size: 40px;
    font-weight: 500;
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    margin: auto;
    line-height: 300%;
}

.copy_popup {
    position: fixed;
    top: 120px;
    width: 320px;
    text-align: center;
    left: calc(50% - 160px);
    z-index: 10;
    background-color: #ff7a00;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 15px;
}

.product_delivery_payment {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.delivery_payment_ttl {
    color: #B2B2B2;
    font-size: 16px;
}

.delivery_method_top {
    display: flex;
    gap: 12px;
}

.delivery_method_image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    background: #535E66;
}

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

.delivery_method_info {
    display: flex;
    flex-direction: column;
}


.delivery_method_name {
    color: #5B6770;
    font-weight: 600;
}

.delivery_method_description {
    display: flex;
    gap: 4px;
    color: #5B6770;
    font-size: 14px;
    font-weight: 500;
}

.delivery_method_description svg {
    margin-top: 3px;
}

.product_delivery_block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: calc(100% - 420px);
}

.product_payment_block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 340px;
}

.delivery_method {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.delivery_method:not(:last-child) {
    margin-bottom: 8px;
}

.delivery_method_annotation {
    color: #5B6770;
}

.videx_popup {
    max-width: 640px;
    padding: 60px 54px !important;
}

.videx_popup_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.videx_popup_tittle {
    color: #F6640A;
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
}

.videx_popup_description {
    color: #5B6770;
    font-size: 18px;
    line-height: 150%;
}

.videx_popup_btn button.button {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    padding: 11px 30px;
}

.container.container_breadcrumb {
    padding: unset;
}

.block_videos>div:not(:last-child) {
    margin-bottom: 20px;
}

.css-vptvdy {
    margin: 1px;
}

.block_youtube iframe {
    width: 550px;
    height: 350px;
    max-width: 100%;
}

.tiktok-embed,
.block_instagram iframe {
    margin: 0 !important;
}

.video-container {
    width: 550px;
    height: 350px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

/* .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */

.block_tiktok body {
    background-color: unset!important;
}

.video-container:not(:last-child),
.video-container--1:not(:last-child) {
    margin-bottom: 30px;
}

/* .video-container iframe {
    position: absolute;
    top: -60px;
    left: 0;
    height: calc(100% + 120px) !important
} */

.video-contain iframe {
    z-index: 20 !important;
    border-radius: 10px!important;
}

.video-container--1 iframe {
    position: absolute;
    top: -50px;
    left: 0;
}

.tiktok-embed--2 {
    position: static !important;
    z-index: 20 !important;
}

.zoom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 0 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.video-contain {
    position: relative;
    border-radius: 10px;
    padding: 16px;
    background-color: #fff;
}

.video-contain:not(:last-child) {
    margin-bottom: 20px;
}

.optional-login {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 20px 0 14px;
    font-size: 18px;
    color: #5b6770;
    font-family: Inter-Regular;
    text-align: center;
}

.optional-login_ttl {
    width: 100%;
    font-weight: 600;
}

.optional-login_btn {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    text-decoration: unset;
    color: #000;
}

.user_page  .telegram_info {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.user_page  .telegram_info svg {
    width: 100%;
    height: 100%;
    min-width: unset;
    margin: unset;
}

.help-tip div {    
	display: none;
    font-family: sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    background-color: #FFFFFF;
    padding: 12px 16px;
    width: 370px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 15%);
    border-radius: 3px;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
    color: #37393D;
    font-size: 14px;
    line-height: 18px;
    z-index: 99;
    text-transform: none;
}

.help-tip:hover div{
    display:block;
    transform-origin: 100% 0%;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}

.help-tip div:before { 
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-bottom-color:#FFFFFF;
	top: -9px;
	left: 50%;
	transform: translate(-50%, -50%);
}

.help-tip div:after {
	width: 10px;
	height: 40px;
	content:'';
	position: absolute;
	top: -40px;
	left: 0;
}

@-webkit-keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:100%; }
}

@keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:100%; }
}
.dropdown-toggle.dropdown-img {
  text-decoration: none;
}