:root {
    --color-white: #fff;
    --body-overflow-y: 'auto';
    --text-color-accent: #f75c08;
    --background-color-accent: #ffbb99;
	--text-color-default: #2c3136;
	--background-color-default: #fff;
	--badge-background-color: #f75c0875;
	--badge-foreground-color: #2c3136;
	--header-link-font-size: 0.9rem;
    --zindex-fucking-hack: 90;

    --button-primary-color: #f75c08;
    --button-primary-color-hover: #cc3e00;

    --buttons-border-radius: 4px;
}

@media (max-width: 1199px) {
	:root {
		--header-link-font-size: 0.8rem;
        --zindex-fucking-hack: 1900;
	}
}

@property --text-color-accent {
    syntax: "<color>";
    inherits: false;
    initial-value: #f75c08;
}

@property --text-color-default {
    syntax: "<color>";
    inherits: false;
    initial-value: #2c3136;
}

@property --background-color-default {
    syntax: "<color>";
    inherits: false;
    initial-value: #fff;
}


@property --badge-background-color {
    syntax: "<color>";
    inherits: false;
    initial-value: #f75c0875;
}

@property --badge-foreground-color {
    syntax: "<color>";
    inherits: false;
    initial-value: #2c3136;
}

.super-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--text-color-accent);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -16px 0 0 -13px;
    width: 32px;
    height: 32px;
    animation: spin 1.5s linear infinite;
}

/* Анимация вращения */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

a svg {
    color: var(--text-color-default);
}

a.active svg {
    color: var(--text-color-accent);
}

.bottom-toolbar__icons {
    display: flex;
    justify-content: space-between;
    padding: 16px;
}

.bottom-toolbar__icons a {
    display: flex;
    flex-flow: column;
    align-items: center;
    font-size: 12px;
    color: var(--text-color-default);
    position: relative;
}

.bottom-toolbar__icons a:hover {
    color: var(--text-color-accent);
}

span.chevron {
    display: inline-block;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    transform: rotate(45deg);
    padding: 0;
}

span.chevron.small {
    min-width: 8px;
    min-height: 8px;
    width: 8px;
    height: 8px;
}

span.chevron.right {
    transform: rotate(315deg);
}

span.chevron.left {
    transform: rotate(45deg);
}

span.chevron.top {
    transform: rotate(225deg) translateY(-4px);
}

span.chevron.bottom {
     transform: rotate(45deg);
}

.header-desktop__user-profile__toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-desktop__user-profile__toolbar button,
.header-desktop__user-profile__toolbar a {
    color: var(--text-color-default);
    font-size: 14px;
    border: none;
    background-color: transparent;
}

.header-desktop__user-profile__toolbar a:hover {
    color: var(--text-color-accent);
}

body {
    color: #2c3136;
    overflow-x: hidden;
    overflow-y: var(--body-overflow-y);
    font-family: 'Roboto', sans-serif !important;
}

.top_link {
	font-size: var(--header-link-font-size);
}

.header-location {
	display: grid;
	grid-template-columns: 20px 1fr;
	column-gap: 8px;
	align-items: center;
}

.header-location svg {
	grid-row: span 2;
}

.header-location p {
	font-style: normal;
	font-weight: 400;
	font-size: var(--header-link-font-size);
	line-height: 1.3;
	text-align: left;
	text-decoration-line: underline;
	color: #666666;
	margin: 0;
}

.phone-header-top {
	display: flex;
	gap: 16px;
	align-items: center;
}

.phone-header {
	font-size: 14px;
	font-weight: 800;
	text-wrap: nowrap;
	color: var(--text-color-default);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: color 0.3s ease-in-out;
}

.phone-header a {
    color: var(--text-color-default);
}

.phone-header:hover,
.phone-header:hover a {
	color: var(--text-color-accent);
}

@media (min-width: 420px) and (pointer: fine) {
	.phone-header {
		transition: font-size 0.3s ease-in-out;
		width: 182px;
	}
	.phone-header:hover {
		font-size: 110%;
	}
}

.whatsapp-icon {
	width: 32px;
	height: 32px;
}

.phone-icon {
	width: 20px;
	height: 20px;
}

.elements-header-top {
	display: flex;
	align-items: center;
	gap: 16px;
}

.badge-counter {
}

.badge-counter__icon {
    width: 28px;
    height: 24px;
    padding: 4px;
    border-radius: 12px;
    color: var(--text-color-default);
}

.mini-cart {
	display: flex;
	transition: all 0.2s ease-out;
    color: var(--text-color-default);
}

.mini-cart.loading {
	filter: blur(3px);
}

.mini-cart__total-sum {
	font-style: normal;
	text-align: left;
	color: var(--text-color-accent);
	font-size: var(--header-link-font-size);
	padding-top: 14px;
	margin: auto;
	text-wrap: nowrap;
    font-size: 12px;
}

.mini-cart__total-sum:empty:after {
	content: 'Корзина пуста';
}

.catalog-aside__image {
    width: 74px;
    height: 74px;
    @media (min-width: 1200px) {
        width: 96px;
        height: 96px;
    }
    @media (min-width: 1400px) {
        width: 112px;
        height: 112px;
    }
}

.fixed-bottom > div {
    display: flex;
}

footer li a {
    color: #6c757d;
    text-decoration: none;
}

/** иконкив футере - соцсети, оплаты и маркетплейсы */
.footer__icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    gap: 32px;
}

.footer__icons > div {
    display: grid;
    grid-template-rows: auto 1fr;
    column-gap: 8px;
}

.footer__icons > div > :first-child {
    grid-column: 1 / -1;
}

.footer__icons > div > :not(:first-child) {
    grid-row: 2;
}

.footer__icons__social {
    grid-template-columns: repeat(auto-fit, minmax(32px, 1fr));
}

.footer__icons__social > :not(:first-child) {
    width: 32px;
    height: 32px;
}

.footer__icons__marketplaces {
    flex-grow: 1;
}

.footer__icons__payments {
    grid-template-columns: 120px 60px 120px;
}

.footer__icons__payments > :not(:first-child) {
    height: 32px;
    justify-self: center;
}

#breadcrumb a {
    color: #6c757d;
    text-decoration: underline;
}

.count {
    background-color: var(--text-color-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -6px;
    left: 16px;
    padding: 0 3px;
    height: 19px;
    line-height: 20px;
    min-width: 19px;
    text-align: center;
	transition: opacity 0.3s ease-out;
}

.count:empty {
	opacity: 0;
}

.catalog-menu {
    z-index: var(--zindex-fucking-hack);
}

.catalog-menu .offcanvas-header {
    justify-content: flex-start;
}

.rel {
    position: relative;
}

.search {
    height: 38px;
    max-width: 350px;
}

.small2 {
    font-size: 12px;
}

.bonus_item {
    border: 2px solid #f78d4d;
    border-radius: 10px;
    padding: 2px 7px;
}

.bonus_item:hover {
    background-color: #f78d4d;
}

.fs14 {
    font-size: 14px;
}

.fs30 {
    font-size: 22px !important;
    color: #f78d4d;
}

.product_name {
    font-size: 14px;
    font-weight: 400;
}

.product_name a {
    text-decoration: none;
}

.product-card__tabs__button {
    display: flex;
    gap: 8px;
    align-items: center;
}

.product_banner {
    display: block;
    width: 100%;
    text-align: center;
}

.product_piece {
    font-size: 12px;
    font-weight: 400;
    border-top: 2px solid #f3f3f3;
}

.product-card__product-header {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: 1fr 20px 20px;
    grid-template-rows: 20px auto;
    align-items: start;
    padding: 0;
}

.product-card__product-header__mobile {
    display: none;
    grid-gap: 16px;
    grid-template-columns: 1fr 20px 20px;
    grid-template-rows: 20px auto;
    align-items: start;
}

.product-card__product-header__mobile .h1 {
    font-size: 2.5rem;
    font-weight: 500;
}

.product-card__product-header h1 {
    grid-column: 1/-1;
    margin: 0;
}

.listing-item__padding-null a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 23.4px;
    text-align: left;
}

.v-product-rating {
    font-size: 0;
    color: #f75c08;
}

.v-product-categories,
.v-product-info__anchor-review,
.v-product-rating {
    margin-bottom: 6px;
    display: inline-block;
}

.v-product-categories,
.v-product-rating {
    margin-right: 24px;
    vertical-align: middle;
}

.contact-page .wa-captcha,
.nowrap,
.v-catalog-mobile__link._is-icon,
.v-header-contacts__link,
.v-header-contacts__phone,
.v-header-contacts__right,
.v-list__title,
.v-menu__list {
    white-space: nowrap;
}

.icon10,
.icon16 {
    color: #f75c08;
    display: inline-block;
    font: 14px/1 FontAwesome;
    -webkit-font-smoothing: antialiased;
    font-size: 13px;
    padding-right: 1px;
}

._icon,
._icon-link:before,
._icon-star,
.icon10,
.icon16 {
    text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
}

.icon16.star-empty:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    content: '\f005';
    color: #2c3136 !important;
}

.v-product-rating__count {
    color: #ababab;
    font-size: 14px;
    padding-left: 6px;
    vertical-align: 1px;
}

.order_btn:hover {
    background-color: #f75c08;
    border-color: #f75c08;
}

.shopping_cart {
    height: 14px;
}

.list_group_item {
    border: none;
    font-size: 12px;
    font-weight: 400;
    list-style: disc;
    list-style-position: inside;
}

.menu-category {
    white-space: normal;
    line-height: 15px;
    color: #2c3136;
}

.menu-category-about {
    white-space: normal;
    line-height: 15px;
    font-size: 15px;
    color: #2c3136;
}

.grey_border {
    border: 2px solid #f3f3f3;
}

.phone {
    font-size: 12px;
    font-weight: 800;
}

.price {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.1px;
    word-spacing: -0.1px;
}

.price-item {
    font-size: 11px;
}

a,
a:hover {
    color: #1c3697;
    text-decoration: none;
}

.black-links a,
.black-links_b a,
#breadcrumb a:hover {
    color: #2c3136;
    text-decoration: none;
}

.black-links a:hover,
footer ul li a:hover {
    color: #f05400;
    text-decoration: none;
}

.small,
.order_btn {
    font-size: 12px;
}

.small3,
.price2 {
    font-size: 13px;
}

.bonus {
    width: 20px;
}

.delivery_img {
    width: 25px;
    max-height: 23px;
}

@media (max-width: 992px) {
    .price {
        font-size: 17px;
        font-weight: 600;
    }

    .price2 {
        font-size: 16px;
    }

    .price-item {
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    .price {
        font-size: 16px;
        font-weight: 600;
    }

    .price2 {
        font-size: 14px;
    }

    .price-item {
        font-size: 13px;
    }
}

.price-block {
}

.old_price {
    font-size: 15px;
    font-weight: 300;
}

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

.sticker {
    border-radius: 50%;
    color: #fff;
    -ms-flex: none;
    -webkit-box-flex: 0;
    flex: none;
    height: 40px;
    width: 39px;
    padding-top: 7px;
}

.sticker_not_available {
    border-radius: 4px;
    color: #fff;
    -ms-flex: none;
    -webkit-box-flex: 0;
    flex: none;
    height: 26px;
    width: 100px;
}

.blue_bg {
    background-color: #3175db;
}

.geen_bg {
    background-color: #13a8a3;
}

.light_geen_bg {
    background-color: #70bf2b;
}

.light_grey_bg {
    background-color: #2b2b2b;
}

@media (min-width: 992px) {
    .button-header-top {
        width: 20%;
        min-width: 160px;
        max-width: 270px;
    }
    .logo {
        max-width: 80px;
    }
}

.logo {
	width: 100%;
	height: 30px;
    max-width: 110px;
}

@media (min-width: 992px) {
    .order_btn {
        font-size: 11px;
    }
}

@media (min-width: 1200px) {
    .order_btn {
        font-size: 12px;
    }
}

.left_visited {
    font-size: 11px;
    font-weight: 500;
}

.vizited_price {
    font-size: 14px;
    font-weight: 700;
}

.bb {
    border-bottom: 2px solid #f3f3f3;
}

.br {
    border-right: 2px solid #f3f3f3;
}

.bol {
    border-left: 2px solid #f3f3f3;
}

.list-item {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.15px;
    line-height: 18px;
}

.list-group-item {
    border: 1px solid #f3f3f3;
}

#cart .dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 24px;
}

.main-menu-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: #2c3136;
}

.main-menu-item:hover {
    color: #000;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f0f2f4;
    color: #2c3136;
}

.dropdown-item.active,
.dropdown-item:active {
    text-decoration: none;
    background-color: inherit;
    color: #2c3136;
}

.shado {
    -webkit-box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.hmenu .swiper-slide {
    width: auto !important;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.my_nav .navbar {
    display: inline-block !important;
}

.hmenu.swiper-container {
    position: static !important;
}

.my_nav2 {
    display: block !important;
}

.megasubmenu {
    padding: 1rem;
}

.title-subsection {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 33px;
    margin-bottom: 12px;
    -webkit-transition: none;
    transition: none;
}

.link-subsection {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    line-height: 27px;
    -webkit-transition: none;
    transition: none;
}

#topmenu .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: '';
    border: none;
}

.modal-header {
    border: none;
}

.hmenu .swiper-slide a,
.megasubmenu a {
    text-decoration: none;
}

@media (min-width: 1400px) {
    .order_btn {
        font-size: 14px;
    }

    .w100 {
        width: 100px;
    }

    .sp {
        border-radius: 4px;
    }
}

.swiper-button-next {
    background-color: #fff;
    border-radius: 100px;
    -webkit-box-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 0.15) !important;
    right: 5px !important;
    background-size: 11px 44px !important;
    top: 44% !important;
}

.swiper-button-prev {
    background-color: #fff;
    border-radius: 100px;
    -webkit-box-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 0.15) !important;
    left: 5px !important;
    background-size: 11px 44px !important;
    top: 44% !important;
}

.gb {
    outline: 0 solid #f3f3f3;
    -webkit-box-shadow: 0 -2px 10px rgba(68, 92, 130, 0.05),
    -1px 4px 10px rgba(68, 92, 130, 0.1), 0 0 2px rgba(68, 92, 130, 0.12);
    box-shadow: 0 -2px 10px rgba(68, 92, 130, 0.05), -1px 4px 10px rgba(68, 92, 130, 0.1),
    0 0 2px rgba(68, 92, 130, 0.12);
}

.mh40 {
    min-height: 30px;
}

@media all and (min-width: 992px) {
    .megasubmenu {
        left: 100%;
        top: 0;
        min-height: 100%;
        min-width: 750px;
    }

    .dropdown-menu > li:hover .megasubmenu {
        display: block;
    }
}

.sidebar li {
    line-height: 0;
}

.sidebar li .submenu a {
    text-decoration: none;
}

@media all and (min-width: 992px) {
    .sidebar li .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        min-width: 750px;
        min-height: 100%;
    }

    [dir='rtl'] .sidebar li .submenu {
        right: 100%;
        left: auto;
    }

    .sidebar li:hover > .submenu {
        display: block;
    }
}

@media (max-width: 991px) {
    .sidebar .submenu,
    .sidebar .dropdown-menu {
        position: static !important;
        margin-left: 0.7rem;
        margin-right: 0.7rem;
    }
}

.nav-link a {
    color: #2c3136 !important;
}

.navbar-light .navbar-toggler {
    border: none;
    z-index: 1;
    box-shadow: none !important;
}

.navbar-light .navbar-toggler i {
    color: #f75c08;
    transition: 0.3s;
}

.navbar-light .navbar-toggler[aria-expanded='false'] i {
    transform: rotate(90deg);
}

.navbar-light .navbar-toggler[aria-expanded='true'] i {
    transform: rotate(-90deg);
}

.navbar-light .navbar-toggler:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    width: 100%;
}

.item-description {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
    line-height: 20px;
}

.menu-widjet {
    background-color: #f7f8f9;
    border-radius: 3px;
}

.menu-widjet:hover {
    background-color: #fff;
    -webkit-box-shadow: 0 6px 10px rgba(68, 92, 130, 0.14),
    0 1px 18px rgba(68, 92, 130, 0.12), 0 3px 5px rgba(68, 92, 130, 0.2);
    box-shadow: 0 6px 10px rgba(68, 92, 130, 0.14), 0 1px 18px rgba(68, 92, 130, 0.12),
    0 3px 5px rgba(68, 92, 130, 0.2);
}

.widjet-description {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 300;
    line-height: 17px;
}

.h100 {
    height: 100%;
}

.widjet {
    background-image: url(../img/categories/zagorod.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet_n {
    background-image: url(../img/categories_n/klei_n.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet_zatirki {
    background-image: url(../img/categories/zatirkiw.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet_gidroizol {
    background-image: url(../img/categories/gidroizolyatsiya.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet-sukhie-stroitelnye-smesi {
    background-image: url(../img/categories/sukhie-stroitelnye-smesi.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet-otdelochnye-materialy {
    background-image: url(../img/categories/otdelochnye-materialy.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet-fasadnye-materialy {
    background-image: url(../img/categories/fasadnye-materialy.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet-materialy-dlya-mosheniya {
    background-image: url(../img/categories/materialy-dlya-mosheniya.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet-krovelnye-materialy {
    background-image: url(../img/categories/krovelnye-materialy.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet-izolyatsionnye-materialy {
    background-image: url(../img/categories/izolyatsionnye-materialy.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet-instrument {
    background-image: url(../img/categories/instrument.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet-drevesno-plitnye {
    background-image: url(../img/categories/drevesno-plitnye.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet-stroitelnye-rashodnye {
    background-image: url(../img/categories/stroitelnye-rashodnye.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet-krepej {
    background-image: url(../img/categories/krepej.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.widjet-konstrukcionnoe-usilenie {
    background-image: url(../img/categories/konstrukcionnoe-usilenie.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.menu-widjet2 a:hover {
    text-decoration: underline;
}

.menu-widjet2 {
    border: 1px solid rgba(206, 209, 213, 0.4);
    border-radius: 4px;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #2c3136;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    -webkit-transition: -webkit-box-shadow 0.2s ease-out;
    transition: -webkit-box-shadow 0.2s ease-out;
    transition: box-shadow 0.2s ease-out;
    transition: box-shadow 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
}

.categimg {
    max-width: 100%;
    vertical-align: middle;
    max-height: 150px;
}

.bl {
    display: block;
    font-size: 14px;
    color: #2c3136;
    font-weight: 300;
    text-decoration: none;
}

.catalog_heading {
    font-size: 15px;
    color: #2c3136;
}

#catalog_heading a:hover {
    color: #f05400;
    text-decoration: none;
}

.catalog_heading a {
    color: #2c3136;
    text-decoration: none;
}

.dropdown-menu,
.card {
    border: none;
}

@media (min-width: 576px) {
    .catalog_heading {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .b_right {
        border-right: 2px solid #f3f3f3;
    }
}

@media (min-width: 992px) {
    .catalog_heading {
        font-size: 18px;
    }
}

.grow:hover {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.link {
    text-decoration: underline;
    color: #2c3136;
}

.link:hover {
    text-decoration: none;
    color: #f75c08;
}

.brands {
    max-height: 50px;
}

.greybtn {
    background-color: #f8f9fa;
}

.greybtn a {
    color: #000;
}

.greybtn:hover {
    background-color: #f75c08;
    border-color: #f75c08;
    color: #fff;
    text-decoration: none;
}

.greybtn:hover a {
    color: #fff;
}

.whitebtn {
    background-color: #fff;
}

.checkbtn {
    width: 13px;
    margin-right: 4px;
    margin-bottom: 3px;
}

.di-block {
    display: inline-block;
}

.sort {
    width: 12px;
    margin-right: 7px;
}

html.hc-nav-yscroll {
    overflow-y: scroll;
}

body.hc-nav-open {
    overflow: visible;
    position: fixed;
    width: 100%;
    min-height: 100%;
}

.hc-offcanvas-nav {
    visibility: hidden;
    display: none;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 9999;
    text-align: left;
}

.hc-offcanvas-nav.is-ios * {
    cursor: pointer !important;
}

.hc-offcanvas-nav .nav-container {
    position: fixed;
    z-index: 9998;
    top: 0;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.hc-offcanvas-nav .nav-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

.hc-offcanvas-nav .nav-wrapper-0 > .nav-content {
    overflow: scroll;
    overflow-x: visible;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.hc-offcanvas-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hc-offcanvas-nav li.level-open > .nav-wrapper {
    visibility: visible;
}

.hc-offcanvas-nav li:not(.custom-content) a {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.hc-offcanvas-nav li:not(.custom-content) a[disabled] {
    cursor: not-allowed;
}

.hc-offcanvas-nav label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer;
}

.hc-offcanvas-nav .nav-item-wrapper {
    position: relative;
}

.hc-offcanvas-nav .nav-item-link {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.hc-offcanvas-nav:not(.user-is-tabbing) .nav-close-button:focus,
.hc-offcanvas-nav:not(.user-is-tabbing) .nav-item-wrapper a:focus {
    outline: none;
}

.hc-offcanvas-nav.disable-body::after,
.hc-offcanvas-nav .nav-wrapper::after {
    content: '';
    z-index: 9990;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s ease 0.4s, opacity 0.4s ease;
    transition: visibility 0s ease 0.4s, opacity 0.4s ease;
}

.hc-offcanvas-nav.disable-body::after {
    position: fixed;
}

.hc-offcanvas-nav .nav-wrapper::after {
    position: absolute;
}

.hc-offcanvas-nav.disable-body.nav-open::after,
.hc-offcanvas-nav .sub-level-open::after {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.hc-offcanvas-nav:not(.nav-open)::after {
    pointer-events: none;
}

.hc-offcanvas-nav.nav-levels-expand ul .nav-wrapper {
    min-width: 0;
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: height 0s ease 0.4s;
    transition: height 0s ease 0.4s;
}

.hc-offcanvas-nav.nav-levels-expand .level-open > .nav-wrapper {
    max-height: none;
    overflow: visible;
    visibility: visible;
}

.hc-offcanvas-nav.nav-levels-overlap ul .nav-wrapper {
    position: absolute;
    z-index: 9999;
    top: 0;
    height: 100%;
    visibility: hidden;
    -webkit-transition: visibility 0s ease 0.4s, -webkit-transform 0.4s ease;
    transition: visibility 0s ease 0.4s, -webkit-transform 0.4s ease;
    transition: visibility 0s ease 0.4s, transform 0.4s ease;
    transition: visibility 0s ease 0.4s, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.hc-offcanvas-nav.nav-levels-overlap ul li.nav-parent {
    position: static;
}

.hc-offcanvas-nav.nav-levels-overlap ul li.level-open > .nav-wrapper {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.hc-offcanvas-nav.nav-position-left.nav-levels-overlap li .nav-wrapper {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.hc-offcanvas-nav.nav-position-right.nav-levels-overlap li .nav-wrapper {
    right: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.hc-offcanvas-nav.nav-position-top {
    top: 0;
}

.hc-offcanvas-nav.nav-position-top .nav-container {
    top: 0;
    width: 100%;
}

.hc-offcanvas-nav.nav-position-top.nav-levels-overlap li .nav-wrapper {
    left: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.hc-offcanvas-nav.nav-position-bottom {
    top: auto;
    bottom: 0;
}

.hc-offcanvas-nav.nav-position-bottom .nav-container {
    top: auto;
    bottom: 0;
    width: 100%;
}

.hc-offcanvas-nav.nav-position-bottom.nav-levels-overlap li .nav-wrapper {
    left: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.hc-offcanvas-nav.nav-open[class*='hc-nav-'] div.nav-container {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.hc-offcanvas-nav.rtl {
    text-align: right;
    direction: rtl;
}

body.theme-default .hc-offcanvas-nav {
    font-family: sans-serif;
}

body.theme-default .hc-offcanvas-nav::after,
body.theme-default .hc-offcanvas-nav .nav-wrapper::after {
    background: rgba(0, 0, 0, 0.3);
}

body.theme-default .hc-offcanvas-nav .nav-content > h2,
body.theme-default .hc-offcanvas-nav .nav-content > h3,
body.theme-default .hc-offcanvas-nav .nav-content > h4,
body.theme-default .hc-offcanvas-nav .nav-content > h5,
body.theme-default .hc-offcanvas-nav .nav-content > h6 {
    font-size: 19px;
    font-weight: normal;
    padding: 20px 17px;
    color: #262a3b;
}

body.theme-default
.hc-offcanvas-nav
.nav-content
> h2:not(.nav-title):not(.level-title),
body.theme-default
.hc-offcanvas-nav
.nav-content
> h3:not(.nav-title):not(.level-title),
body.theme-default
.hc-offcanvas-nav
.nav-content
> h4:not(.nav-title):not(.level-title),
body.theme-default
.hc-offcanvas-nav
.nav-content
> h5:not(.nav-title):not(.level-title),
body.theme-default
.hc-offcanvas-nav
.nav-content
> h6:not(.nav-title):not(.level-title) {
    font-size: 16px;
    padding: 15px 17px;
    background: #fff;
}

body.theme-default .hc-offcanvas-nav .nav-item-link,
body.theme-default .hc-offcanvas-nav li.nav-close a,
body.theme-default .hc-offcanvas-nav .nav-back a {
    padding: 14px 17px;
    font-size: 14px;
    color: #262a3b;
    z-index: 1;
    background: rgba(0, 0, 0, 0);
    border-bottom: 1px solid #f3f3f3;
    -webkit-transition: background 0.1s ease;
    transition: background 0.1s ease;
}

body.theme-default .hc-offcanvas-nav .nav-item-link[disabled],
body.theme-default .hc-offcanvas-nav li.nav-close a[disabled],
body.theme-default .hc-offcanvas-nav .nav-back a[disabled] {
    color: rgba(255, 255, 255, 0.5);
}

body.theme-default
.hc-offcanvas-nav
div.nav-back
+ ul
> li:first-child
> .nav-item-wrapper
> .nav-item-link {
    border-top: none !important;
}

body.theme-default .hc-offcanvas-nav .nav-custom-content {
    padding: 14px 17px;
    font-size: 14px;
    border-bottom: 1px solid #f3f3f3;
}

body.theme-default .hc-offcanvas-nav .nav-wrapper > .nav-content > ul:not(:last-child) {
    border-bottom: 2px solid #f3f3f3;
}

body.theme-default .hc-offcanvas-nav .nav-wrapper > .nav-content > ul + h2,
body.theme-default .hc-offcanvas-nav .nav-wrapper > .nav-content > ul + h3,
body.theme-default .hc-offcanvas-nav .nav-wrapper > .nav-content > ul + h4,
body.theme-default .hc-offcanvas-nav .nav-wrapper > .nav-content > ul + h5,
body.theme-default .hc-offcanvas-nav .nav-wrapper > .nav-content > ul + h6 {
    margin-top: -2px;
}

body.theme-default .hc-offcanvas-nav li.nav-parent .nav-item-link:last-child {
    padding-right: 58px;
}

body.theme-default .hc-offcanvas-nav li.nav-parent .nav-item-link:not(:last-child) {
    margin-right: 45px;
}

body.theme-default .hc-offcanvas-nav .nav-close-button span,
body.theme-default .hc-offcanvas-nav .nav-parent .nav-next,
body.theme-default .hc-offcanvas-nav .nav-back span {
    width: 45px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    cursor: pointer;
    -webkit-transition: background 0.1s ease;
    transition: background 0.1s ease;
}

body.theme-default .hc-offcanvas-nav .nav-close-button span::before,
body.theme-default .hc-offcanvas-nav .nav-close-button span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: 2px solid #262a3b;
    border-left: 2px solid #262a3b;
}

body.theme-default .hc-offcanvas-nav .nav-close-button span::before {
    margin-left: -9px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

body.theme-default .hc-offcanvas-nav .nav-close-button span::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

body.theme-default .hc-offcanvas-nav .nav-content > .nav-close {
    position: relative;
    z-index: 2;
}

body.theme-default .hc-offcanvas-nav .nav-content > .nav-close a {
    font-size: 14px;
    color: #262a3b;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body.theme-default .hc-offcanvas-nav .nav-content > .nav-close a:not(.has-label) {
    height: 50px;
}

body.theme-default .hc-offcanvas-nav .nav-content > .nav-close a.has-label {
    padding: 14px 17px;
    border-top: 1px solid #f3f3f3;
}

body.theme-default .hc-offcanvas-nav .nav-content > .nav-close a:hover {
    border: none;
    background: radial-gradient(
            farthest-corner at top right,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0)
    );
}

body.theme-default
.hc-offcanvas-nav:not(.nav-close-button-empty)
.nav-content
> .nav-close {
    margin-bottom: -1px;
}

body.theme-default .hc-offcanvas-nav .nav-title + .nav-close a:not(.has-label) {
    position: absolute;
    width: 45px;
    height: 66px;
    line-height: 66px;
    top: -66px;
    right: 0;
}

body.theme-default .hc-offcanvas-nav.nav-close-button-empty .nav-title {
    padding-right: 55px;
}

body.theme-default .hc-offcanvas-nav li.nav-close a:not(.has-label) {
    height: 49px;
}

body.theme-default .hc-offcanvas-nav .nav-content > .nav-close:first-child a,
body.theme-default .hc-offcanvas-nav .nav-title + .nav-close a.has-label,
body.theme-default .hc-offcanvas-nav li.nav-close a,
body.theme-default .hc-offcanvas-nav .nav-back a {
    background: #f4f5f7;
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
}

body.theme-default .hc-offcanvas-nav a.nav-next {
    border-left: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
}

body.theme-default .hc-offcanvas-nav .nav-next span::before,
body.theme-default .hc-offcanvas-nav .nav-back span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-left: -2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 2px solid #262a3b;
    border-left: 2px solid #262a3b;
    -webkit-transform-origin: center;
    transform-origin: center;
}

body.theme-default .hc-offcanvas-nav .nav-next span {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

body.theme-default .hc-offcanvas-nav .nav-next span::before {
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
}

body.theme-default
.hc-offcanvas-nav.nav-position-left.nav-open.nav-levels-overlap
.nav-wrapper {
    -webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
}

body.theme-default
.hc-offcanvas-nav.nav-position-right.nav-open.nav-levels-overlap
.nav-wrapper {
    -webkit-box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
    box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
}

body.theme-default .hc-offcanvas-nav.nav-position-right .nav-back span::before {
    margin-left: -2px;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
}

body.theme-default .hc-offcanvas-nav.nav-position-top.nav-open .nav-wrapper {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body.theme-default .hc-offcanvas-nav.nav-position-bottom.nav-open .nav-wrapper {
    -webkit-box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
}

body.theme-default .hc-offcanvas-nav.nav-levels-expand ul .nav-wrapper,
body.theme-default .hc-offcanvas-nav.nav-levels-none ul .nav-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
}

body.theme-default
.hc-offcanvas-nav.nav-levels-expand
li.level-open
> .nav-item-wrapper
> a,
body.theme-default
.hc-offcanvas-nav.nav-levels-none
li.level-open
> .nav-item-wrapper
> a {
    border-bottom: 1px solid #295887;
}

body.theme-default
.hc-offcanvas-nav.nav-levels-expand
li.level-open
> .nav-item-wrapper
> .nav-next
span::before,
body.theme-default
.hc-offcanvas-nav.nav-levels-expand
li.level-open
> .nav-item-wrapper
> a
> .nav-next
span::before,
body.theme-default
.hc-offcanvas-nav.nav-levels-none
li.level-open
> .nav-item-wrapper
> .nav-next
span::before,
body.theme-default
.hc-offcanvas-nav.nav-levels-none
li.level-open
> .nav-item-wrapper
> a
> .nav-next
span::before {
    margin-top: -2px;
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
    transform: translate(-50%, -50%) rotate(-135deg);
}

body.theme-default .hc-offcanvas-nav.nav-levels-expand .nav-wrapper-1 .nav-item-link,
body.theme-default .hc-offcanvas-nav.nav-levels-none .nav-wrapper-1 .nav-item-link {
    padding-left: calc(17px + 20px * 1);
}

body.theme-default .hc-offcanvas-nav.nav-levels-expand .nav-wrapper-2 .nav-item-link,
body.theme-default .hc-offcanvas-nav.nav-levels-none .nav-wrapper-2 .nav-item-link {
    padding-left: calc(17px + 20px * 2);
}

body.theme-default .hc-offcanvas-nav.nav-levels-expand .nav-wrapper-3 .nav-item-link,
body.theme-default .hc-offcanvas-nav.nav-levels-none .nav-wrapper-3 .nav-item-link {
    padding-left: calc(17px + 20px * 3);
}

body.theme-default .hc-offcanvas-nav.nav-levels-expand .nav-wrapper-4 .nav-item-link,
body.theme-default .hc-offcanvas-nav.nav-levels-none .nav-wrapper-4 .nav-item-link {
    padding-left: calc(17px + 20px * 4);
}

body.theme-default .hc-offcanvas-nav.nav-levels-expand .nav-wrapper-5 .nav-item-link,
body.theme-default .hc-offcanvas-nav.nav-levels-none .nav-wrapper-5 .nav-item-link {
    padding-left: calc(17px + 20px * 5);
}

body.theme-default .hc-offcanvas-nav.rtl a.nav-next {
    border-left: none;
    border-right: 1px solid #f3f3f3;
}

body.theme-default .hc-offcanvas-nav.rtl .nav-title + .nav-close a:not(.has-label),
body.theme-default .hc-offcanvas-nav.rtl .nav-close-button span,
body.theme-default .hc-offcanvas-nav.rtl .nav-next,
body.theme-default .hc-offcanvas-nav.rtl .nav-back span {
    left: 0;
    right: auto;
}

body.theme-default .hc-offcanvas-nav.rtl li.nav-parent .nav-item-link:last-child {
    padding-left: 58px;
    padding-right: 17px;
}

body.theme-default .hc-offcanvas-nav.rtl li.nav-parent .nav-item-link:not(:last-child) {
    margin-left: 45px;
    margin-right: 0;
}

body.theme-default .hc-offcanvas-nav.rtl .nav-wrapper-1 li.nav-item .nav-item-link {
    padding-right: calc(17px + 20px * 1);
}

body.theme-default .hc-offcanvas-nav.rtl .nav-wrapper-2 li.nav-item .nav-item-link {
    padding-right: calc(17px + 20px * 2);
}

body.theme-default .hc-offcanvas-nav.rtl .nav-wrapper-3 li.nav-item .nav-item-link {
    padding-right: calc(17px + 20px * 3);
}

body.theme-default .hc-offcanvas-nav.rtl .nav-wrapper-4 li.nav-item .nav-item-link {
    padding-right: calc(17px + 20px * 4);
}

body.theme-default .hc-offcanvas-nav.rtl .nav-wrapper-5 li.nav-item .nav-item-link {
    padding-right: calc(17px + 20px * 5);
}

html,
body,
div,
span,
ul,
li,
a {
    margin: 0;
    padding: 0;
    border: 0;
}

em {
    font-style: italic;
}

strong {
    font-weight: 600;
}

ol,
ul {
    list-style: none;
}

.cf::before,
.cf::after {
    content: '';
    display: block;
    height: 0;
    overflow: hidden;
}

.cf::after {
    clear: both;
}

#container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.toggle {
    position: absolute;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
    top: 20px;
    z-index: 9980;
    width: 35px;
    min-height: 26px;
    position: relative;
    width: auto;
    top: auto;
    left: auto;
    float: left;
    display: block;
    cursor: pointer;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    font-size: 18px;
    padding-left: 55px;
    line-height: 22px;
    color: #262a3b;
    text-align: left;
    text-decoration: none;
}

.toggle span {
    width: 35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.toggle span,
.toggle span::before,
.toggle span::after {
    display: block;
    position: absolute;
    left: 0;
    height: 4px;
    background: #182631;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.toggle span::before,
.toggle span::after {
    content: '';
    width: 100%;
}

.toggle span::before {
    top: -11px;
}

.toggle span::after {
    bottom: -11px;
}

.toggle.toggle-open span {
    background: rgba(0, 0, 0, 0);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.toggle.toggle-open span::before {
    -webkit-transform: translate3d(0, 11px, 0);
    transform: translate3d(0, 11px, 0);
}

.toggle.toggle-open span::after {
    -webkit-transform: rotate(-90deg) translate3d(11px, 0, 0);
    transform: rotate(-90deg) translate3d(11px, 0, 0);
}

.toggle:hover span,
.toggle:hover span::before,
.toggle:hover span::after {
    background: #f75c08;
}

.toggle i {
    font-size: 10px;
    display: block;
    line-height: 10px;
    opacity: 0.7;
}

.grow a:hover,
.hc-offcanvas-nav li:not(.custom-content) a,
.hc-offcanvas-nav li:not(.custom-content) a:hover {
    text-decoration: none;
}

.hc-offcanvas-nav .nav-content,
html {
    height: 100%;
}

.hc-offcanvas-nav li,
body.theme-default .hc-offcanvas-nav .nav-close-button {
    position: relative;
    display: block;
}

.hc-offcanvas-nav input[type='checkbox'],
.hc-offcanvas-nav.nav-levels-expand .nav-wrapper::after {
    display: none;
}

.hc-offcanvas-nav .nav-close:focus,
.hc-offcanvas-nav .nav-next:focus,
.hc-offcanvas-nav .nav-back:focus,
body.theme-default .hc-offcanvas-nav .nav-item-link:focus,
body.theme-default .hc-offcanvas-nav .nav-item-link:focus-within,
body.theme-default .hc-offcanvas-nav li.nav-close a:focus,
body.theme-default .hc-offcanvas-nav li.nav-close a:focus-within,
body.theme-default .hc-offcanvas-nav .nav-back a:focus,
body.theme-default .hc-offcanvas-nav .nav-back a:focus-within {
    z-index: 10;
}

.hc-offcanvas-nav.nav-levels-expand .nav-wrapper.nav-wrapper-0,
.hc-offcanvas-nav.nav-levels-overlap .nav-wrapper {
    max-height: 100vh;
}

.hc-offcanvas-nav.nav-levels-expand .nav-wrapper.nav-wrapper-0 > .nav-content,
.hc-offcanvas-nav.nav-levels-overlap .nav-content {
    overflow: scroll;
    overflow-x: visible;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 100vh;
}

.hc-offcanvas-nav.nav-position-left,
.hc-offcanvas-nav.nav-position-left .nav-container {
    left: 0;
}

.hc-offcanvas-nav.nav-position-right,
.hc-offcanvas-nav.nav-position-right .nav-container {
    right: 0;
}

body.theme-default .hc-offcanvas-nav .nav-container,
body.theme-default .hc-offcanvas-nav .nav-wrapper,
body.theme-default .hc-offcanvas-nav ul,
body.theme-default
.hc-offcanvas-nav.nav-levels-expand
li.level-open
> .nav-item-wrapper
> a:hover,
body.theme-default
.hc-offcanvas-nav.nav-levels-none
li.level-open
> .nav-item-wrapper
> a:hover {
    background: #fff;
}

body.theme-default
.hc-offcanvas-nav:not(.touch-device)
li:not(.nav-item-custom)
a:not([disabled]):hover,
body.theme-default .hc-offcanvas-nav .nav-content > .nav-close:first-child a:hover,
body.theme-default .hc-offcanvas-nav .nav-title + .nav-close a.has-label:hover,
body.theme-default .hc-offcanvas-nav li.nav-close a:hover,
body.theme-default .hc-offcanvas-nav .nav-back a:hover {
    background: #f0f2f4;
}

body.theme-default .hc-offcanvas-nav .nav-highlight,
body.theme-default .hc-offcanvas-nav.nav-levels-expand li.level-open,
body.theme-default .hc-offcanvas-nav.nav-levels-none li.level-open {
    background: #2e6296;
}

body.theme-default
.hc-offcanvas-nav
.nav-wrapper
> .nav-content
> ul:first-of-type
> li:first-child:not(.nav-back):not(.nav-close)
> .nav-item-wrapper
> .nav-item-link,
body.theme-default
.hc-offcanvas-nav
.nav-wrapper
> .nav-content
> ul:first-of-type
> li:first-child:not(.nav-back):not(.nav-close)
> .nav-item-wrapper
> .nav-item-link
+ a {
    border-top: 1px solid #f3f3f3;
}

body.theme-default .hc-offcanvas-nav .nav-content > .nav-close.has-label + ul,
body.theme-default .hc-offcanvas-nav li.nav-close:not(:first-child) a,
body.theme-default .hc-offcanvas-nav li.nav-back:not(:first-child) a {
    margin-top: -1px;
}

body.theme-default .hc-offcanvas-nav .nav-back span::before,
body.theme-default .hc-offcanvas-nav.nav-position-right .nav-next span::before {
    margin-left: 2px;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

body.theme-default .hc-offcanvas-nav.nav-position-top .nav-next span::before,
body.theme-default .hc-offcanvas-nav.nav-position-bottom .nav-back span::before {
    margin-left: 0;
    margin-right: -2px;
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
    transform: translate(-50%, -50%) rotate(-135deg);
}

body.theme-default .hc-offcanvas-nav.nav-position-top .nav-back span::before,
body.theme-default .hc-offcanvas-nav.nav-position-bottom .nav-next span::before {
    margin-left: 0;
    margin-right: -2px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (min-width: 800px) {
    main .actions:not(.theme) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.hc-offcanvas-nav .nav-wrapper-0 > .nav-content {
    padding-bottom: 41px;
}

.hc-offcanvas-nav h2 ~ ul > li.search .nav-custom-content {
    padding-top: 0;
}

.hc-offcanvas-nav.rtl .nav-item-link::before {
    margin-left: 15px;
    margin-right: 0 !important;
}

.hc-offcanvas-nav.rtl .nav-item.collections > .nav-item-wrapper .nav-item-link span {
    float: left;
}

.hc-offcanvas-nav li .custom-message {
    font-size: 12px;
}

.hc-offcanvas-nav li .custom-message a {
    color: #262a3b;
    font-size: 13px;
}

.hc-offcanvas-nav li .custom-message a:hover {
    text-decoration: none;
}

.hc-offcanvas-nav li.collections > .nav-item-wrapper .nav-item-link span {
    font-size: 70%;
    line-height: 15px;
    height: 15px;
    padding: 0 4px;
    float: right;
    background: #ff635a;
    border-radius: 2px;
    margin-top: 2px;
}

.hc-offcanvas-nav.nav-position-top ul.bottom-nav,
.hc-offcanvas-nav.nav-position-bottom ul.bottom-nav {
    position: relative;
    border-top: none;
}

.hc-offcanvas-nav.nav-position-top .nav-wrapper-0 > .nav-content,
.hc-offcanvas-nav.nav-position-bottom .nav-wrapper-0 > .nav-content {
    padding-bottom: 0;
}

.hc-offcanvas-nav ul.bottom-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.hc-offcanvas-nav ul.bottom-nav li {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}

.hc-offcanvas-nav ul.bottom-nav li a {
    padding: 10px;
    text-align: center;
    height: 100%;
    border-bottom: none;
}

.hc-offcanvas-nav ul.bottom-nav li svg {
    fill: #262a3b;
    display: inline-block;
    vertical-align: middle;
}

.hc-offcanvas-nav ul.bottom-nav li.github svg {
    width: 17px;
    height: 17px;
}

.hc-offcanvas-nav ul.bottom-nav li.ko-fi svg {
    width: 21px;
    height: 21px;
}

.hc-offcanvas-nav ul.bottom-nav li.email svg {
    width: 19px;
    height: 19px;
}

body.theme-default .hc-offcanvas-nav .second-nav {
    border-bottom: none !important;
}

.nav-container {
    width: 86%;
}

@media (min-width: 576px) {
    .nav-container {
        width: 80% !important;
    }
}

.flul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#main-nav > li,
ul.first-nav > li,
ul.first-nav > li ul li,
ul.first-nav > li ul li ul li,
ul.first-nav > li ul li ul li ul li,
body.theme-default nav #main-nav li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

@media (min-width: 992px) {
    .hc-offcanvas-nav li {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    }
}

.flex-column-menu {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.main-menu-item.nav-link:hover {
    background-color: #f0f2f4;
}

@media (min-width: 992px) {
    body.theme-default
    .hc-offcanvas-nav:not(.touch-device)
    li:not(.nav-item-custom)
    a:not([disabled]):hover {
        background: #fff;
    }

    body.theme-default .hc-offcanvas-nav .nav-next span::before,
    body.theme-default .hc-offcanvas-nav .nav-back span::before {
        border-top: none !important;
        border-left: none !important;
    }

    body.theme-default .hc-offcanvas-nav .nav-back .nav-back-button span::before {
        border-top: 2px solid #262a3b !important;
        border-left: 2px solid #262a3b !important;
    }

    body.theme-default .hc-offcanvas-nav .nav-close-button span,
    body.theme-default .hc-offcanvas-nav .nav-parent .nav-next,
    body.theme-default .hc-offcanvas-nav .nav-back span {
        width: 30px !important;
    }

    body.theme-default .hc-offcanvas-nav li.nav-parent .nav-item-link:last-child {
        padding-right: 15px !important;
    }

    body.theme-default .hc-offcanvas-nav .nav-item-link,
    body.theme-default .hc-offcanvas-nav li.nav-close a,
    body.theme-default .hc-offcanvas-nav .nav-back a {
        padding: 14px 17px;
        font-size: 14px;
        color: #262a3b;
        z-index: 1;
        background: rgba(0, 0, 0, 0);
        border-bottom: none !important;
        font-weight: 700;
    }

    .category-item {
        font-weight: 800;
    }
}

.item-description {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
    line-height: 20px;
}

.level-title {
    visibility: hidden;
    height: 1px;
    margin: 0;
}

.theme-default .hc-offcanvas-nav .nav-content > h2,
body.theme-default .hc-offcanvas-nav .nav-content > h3,
body.theme-default .hc-offcanvas-nav .nav-content > h4,
body.theme-default .hc-offcanvas-nav .nav-content > h5,
body.theme-default .hc-offcanvas-nav .nav-content > h6 {
    padding: 0 !important;
}

.nav-back-button {
    font-weight: 500;
    border-bottom: 1px solid #f3f3f3 !important;
}

.nav-back {
    border-bottom: 1px solid #f3f3f3;
    background: #f4f5f7;
}

.description_text {
    /* font-size: 13px; */
    font-size: 16px;
    font-weight: 400;
}

.har a {
    color: #2c3136;
}

.tooltip-inner {
    color: #2c3136;
    background-color: #fafafa;
    outline: 0 solid #f3f3f3;
    -webkit-box-shadow: 0 -2px 10px rgba(68, 92, 130, 0.05),
    -1px 4px 10px rgba(68, 92, 130, 0.1), 0 0 2px rgba(68, 92, 130, 0.12);
    box-shadow: 0 -2px 10px rgba(68, 92, 130, 0.05), -1px 4px 10px rgba(68, 92, 130, 0.1),
    0 0 2px rgba(68, 92, 130, 0.12);
}

.bs-tooltip-auto[data-popper-placement^='right'] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #c7c7c7;
}

.bs-tooltip-auto[data-popper-placement^='left'] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #c7c7c7;
}

.tooltip.show {
    opacity: 0.9;
}

.dmxLightboxOverlay {
    background: rgba(34, 34, 34, 0.61) !important;
}

.nav-tabs .nav-link.active {
    background-color: #fafafa !important;
}

.docs {
    max-width: 140px;
}

.ild {
    max-width: 18px;
}

.big_price {
    font-size: 25px;
    font-weight: 800;
}

.cart_price {
    font-size: 16px;
    font-weight: 700;
}

.input-group {
    width: 160px;
}

@media (min-width: 992px) {
    .input-group {
        width: 130px;
    }
}

@media (min-width: 1200px) {
    .input-group {
        width: 150px;
    }
}

@media (min-width: 1400px) {
    .input-group {
        width: 170px;
    }
}

.modifiations {
    max-width: 60px;
    padding: 5px;
}

#swiper3 .swiper-button-next,
#swiper3 .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 13px;
    height: 21px;
    margin-top: -8px;
    opacity: 0.9;
}

.swiper-slide {
    text-align: center;
}

.price-block {
    display: inline-block;
}

.yakor {
    padding-top: 60px;
    margin-top: -60px;
    -webkit-background-clip: content-box;
    background-clip: content-box;
}

.itemc:hover {
    background-color: #f3f3f3;
    color: #2c3136;
}

.itemc:active {
    background-color: #f3f3f3;
    color: #2c3136;
    text-shadow: 0 0 1px #231f20;
}

.itemc {
    background-color: #fff;
    border: 2px solid #f3f3f3;
    font-size: 17px;
    line-height: 1;
    padding: 18px 20px;
    margin-right: -7px;
}

.accordion-button:not(.collapsed) {
    color: #2c3136;
    background-color: #f3f3f3;
}

.accordion-button:focus {
    border-color: unset;
    outline: 0;
    -webkit-box-shadow: none;
}

.cart_ic {
    width: 24px;
}

.order {
    z-index: 10;
}

label.tab {
    padding: 7px 9px;
    border: 2px solid #f3f3f3;
    border-radius: 0.25rem 0.25rem 0 0;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    vertical-align: middle;
    display: table-cell;
    margin-bottom: 12px;
}

input#rad-1:checked ~ fieldset.tab-1-content,
input#rad-2:checked ~ fieldset.tab-2-content,
input#rad-3:checked ~ fieldset.tab-3-content,
input#rad-4:checked ~ fieldset.tab-4-content,
input#rads-1:checked ~ fieldset.tabs-1-content,
input#rads-2:checked ~ fieldset.tabs-2-content,
input#rads-3:checked ~ fieldset.tabs-3-content,
input#rads-4:checked ~ fieldset.tabs-4-content,
input#radp-1:checked ~ fieldset.tabp-1-content,
input#radp-2:checked ~ fieldset.tabp-2-content,
input#radp-3:checked ~ fieldset.tabp-3-content {
    margin-left: 0;
    margin-right: 0;
    display: block;
}

input#rad-1:checked ~ label.tab-1,
input#rad-2:checked ~ label.tab-2,
input#rad-3:checked ~ label.tab-3,
input#rad-4:checked ~ label.tab-4,
input#rads-1:checked ~ label.tabs-1,
input#rads-2:checked ~ label.tabs-2,
input#rads-3:checked ~ label.tabs-3,
input#rads-4:checked ~ label.tabs-4,
input#radp-1:checked ~ label.tabp-1,
input#radp-2:checked ~ label.tabp-2,
input#radp-3:checked ~ label.tabp-3,
label.tabs-2[selected] {
    background-color: #f75c08;
    color: white;
    border: 2px solid #f75c08;
}

.text-promo {
    font-size: 10px;
    color: red;
}

.payment_method {
    font-size: 19px !important;
}

.content_img {
    max-width: 520px;
}

.sp {
    background: rgb(0 0 0 / 40%);
}

.mh_200 {
    min-height: 200px;
    border-radius: 4px;
}

.breadcrumb {
    font-size: 13px;
}

.v-post-title-parent {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 280px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 10px;
    text-align: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.menu_titles ul li {
    margin-bottom: 12px;
}

.style1 {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

ul.compare-diff-all {
    float: none;
    display: block;
    margin: 0;
    padding: 0;
}

.compare-diff-all li.selected a {
    color: #fff;
}

.compare-diff-all li:first-child {
    border-radius: 5px 0 0 5px;
}

.compare-diff-all li:last-child {
    border-radius: 0 5px 5px 0;
}

ul.compare-diff-all li {
    display: inline-block;
    float: left;
    padding: 0 10px;
    border-width: 1px;
    border-style: solid;
}

.compare-diff-all li {
    border: 1px solid #f75c08;
}

.compare-diff-all li.selected {
    background-color: #f75c08;
    border: 1px solid #f75c08;
}

.deletion_compare {
    font-size: 16px !important;
    color: #6c757d;
}

.mw50 {
    max-width: 50px;
}

.compare-remove {
    position: absolute;
    top: 0;
    right: 0;
}

.compare-remove * {
    pointer-events: none;
}

.btn-warning:hover {
    color: #fff;
    background-color: #f05400;
    border-color: #f05400;
}

.btn-check:focus + .btn-warning,
.btn-warning:focus {
    color: #fff;
    background-color: #f05400;
    border-color: #f05400;
    -webkit-box-shadow: 0 0 0 0.25rem #f0540015;
    box-shadow: 0 0 0 0.25rem #f0540015;
}

.btn-check:active + .btn-warning:focus,
.btn-check:checked + .btn-warning:focus,
.btn-warning.active:focus,
.btn-warning:active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem #f0540015;
    box-shadow: 0 0 0 0.25rem #f0540015;
}

.btn-outline-warning {
    color: #f75c08;
    border-color: #f75c08;
}

.btn-outline-warning:hover {
    color: #fff;
    background-color: #f75c08;
    border-color: #f75c08;
    text-decoration: none;
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #f75c08;
    background-color: transparent;
}

.banners-index__bottom img {
    width: 100% !important;
}

.title_c {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 17px;
}

.promo_title {
    font-size: 20px;
    font-style: normal;
    letter-spacing: 0.1px;
    line-height: 25px;
}

.object_title {
    font-size: 15px;
    font-style: normal;
    letter-spacing: 0.1px;
    line-height: 20px;
    font-weight: 700;
}

.lh20 {
    font-size: 14px;
    font-style: normal;
    line-height: 17px;
    font-weight: 300;
}

.promo_photo {
    height: 220px;
    max-height: 200px;
}

.promo_photo_img {
    height: 200px;
    margin: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.cookies-note_bottom {
    position: fixed;
    width: 100%;
    z-index: 1000;
    bottom: 0;
    border-top: 1px solid #d2d2d2;
    background-color: rgba(251, 251, 251, 0.9);
}

.order_btn_cart {
    font-size: 14px;
}

.obg {
    background-color: #f75c0813;
}

.about_img {
    height: 80px;
    min-height: 90px;
}

.thumb-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.thumb-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    outline-width: 0;
}

.ogl.nav-link:hover {
    background-color: #fff;
}

.og.menu-category-about:hover {
    white-space: normal;
    line-height: 15px;
    font-size: 15px;
    color: #f75c08;
}

.search_top {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.search_s {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #f75c08;
}

.nav-pills .nav-link {
    color: #f75c08;
    border: 1px solid #f75c08;
}

.reg_btn {
    font-size: 12px;
}

.collapse:not(.show),
.js_receiving_order input[type='radio'],
#rad-1,
#rad-2,
#rad-3,
#rad-4,
#rads-1,
#rads-2,
#rads-3,
#rads-4,
#radp-1,
#radp-2,
#radp-3 {
    display: none;
}

footer a,
footer li a,
.btn a:hover {
    text-decoration: none;
}

footer a:hover,
footer li a:hover {
    text-decoration: none;
    color: #f75c08;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
.ot,
.compare-diff-all li a {
    color: #f75c08;
}

.btn-warning,
.btn-check:active + .btn-warning,
.btn-check:checked + .btn-warning,
.btn-warning.active,
.btn-warning:active,
.show > .btn-warning.dropdown-toggle,
.btn-warning.disabled,
.btn-warning:disabled,
.btn-check:active + .btn-outline-warning,
.btn-check:checked + .btn-outline-warning,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show,
.btn-outline-warning:active {
    color: #fff;
    background-color: #f75c08;
    border-color: #f75c08;
}

.btn-check:focus + .btn-outline-warning,
.btn-outline-warning:focus,
.btn-check:active + .btn-outline-warning:focus,
.btn-check:checked + .btn-outline-warning:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus,
.btn-outline-warning:active:focus {
    -webkit-box-shadow: 0 0 0 0.25rem #f75c082a;
    box-shadow: 0 0 0 0.25rem #f75c082a;
}

@media (min-width: 576px) {
    .reg_btn {
        font-size: 14px;
    }
}

.btn-light {
    color: #2c3136;
}

.payment {
    height: 22px;
}

.pay_btn {
    font-size: 12px;
}

.pay_btn:hover {
    background-color: #f0f2f4;
    border-color: #f0f2f4;
    text-decoration: none;
}

@media (max-width: 576px) {
    .pay_btn {
        width: 45%;
        font-size: 14px;
    }
}

.absolute {
    position: absolute;
    height: 100%;
}

.mw1 {
    max-width: 150px;
}

.dotted {
    border-bottom: 1px dotted;
    border-color: inherit;
    color: #2c3136;
}

.dotted:hover {
    border-bottom: 1px dotted;
    color: #f75c08;
}

.not_available img {
    opacity: 0.5;
}

.nameplates {
    position: absolute;
    top: 40px;
    left: 0;
}

.nameplate.-color-not-available,
.nameplate.-not-available {
    color: #fff;
    background: #8d8d8d;
    border-radius: 4px;
    font-size: 12px;
    padding: 3px 10px;
}

@media (min-width: 992px) {
    .item-inner-bg {
        background-size: contain !important;
        background-image: url(../img/img_bg.png);
        background-repeat: no-repeat;
        background-position: 100%;
    }

    .item-inner-bg:hover {
        background-size: contain !important;
        background-image: url(../img/img_bg2.png);
        background-repeat: no-repeat;
        background-position: 100%;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
}

.item-inner-bg {
    background-size: cover;
    background-image: url(../img/img_bg.png);
    background-repeat: no-repeat;
    background-position: 100%;
}

.delivery {
    position: absolute;
}

.link2 {
    text-decoration: underline;
}

.loyalty_card {
    text-decoration: none;
    color: #2c3136;
    border-radius: 7px;
}

.nav-pills2 .nav-link {
    color: #6c757d;
    background: 0 0;
    border: 0;
    border-radius: 0;
    width: 100%;
}

.nav-pills2 .nav-link.active,
.nav-pills2 .show > .nav-link {
    color: #2c3136;
    background-color: #fff;
    border-bottom: 2px solid #f75c08;
    width: 100%;
}

.nav-pills2 .nav-item {
    width: 50%;
}

.svg-car {
    height: 23px;
}

.dlvr {
    position: relative;
}

.link2:hover,
.loyalty_card:hover {
    text-decoration: none;
    color: #f75c08;
}

@media (min-width: 992px) {
    .dlvr {
        position: absolute;
        z-index: 1000;
    }

    .item_banners {
        position: absolute;
    }
}

@media (min-width: 576px) {
    .br2 {
        border-right: 2px solid #f3f3f3;
    }
}

.dprice {
    background-color: #ffe600;
    border-radius: 4px;
    padding: 5px;
    font-size: 12px;
    font-weight: 600;
}

.pp1 {
    font-size: 11px;
}

.checkbox-a {
    display: block;
    text-decoration: none;
    outline: 0;
    width: 34px;
    height: 34px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: inherit;
    margin: 0 auto;
    border: 1px solid #8d8d8d;
}

.op {
    opacity: 0;
}

.heckbox-a.checked {
    border: 1px solid #8c8c8c;
    margin: 0 auto;
    padding: 0;
}

.custom-checkbox + label {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0.25em;
}

.custom-checkbox + label::before {
    content: '';
    display: inline-block;
    width: 2em;
    height: 2em;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
    border-color: #b3d7ff;
}

.custom-checkbox:not(:disabled):active + label::before {
    background-color: inherit;
    border-color: #fff;
}

.custom-checkbox:focus + label::before {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-checkbox:checked + label::before {
    background-image: url(../img/check.svg);
}

.custom-checkbox.ligh:checked + label::before {
    background-image: url(../img/check2.svg);
}

.jq-checkbox__div {
    border: 3px solid #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
}

.custom-radio > span {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-radio > span::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    flex-grow: 0;
    border: 1px solid var(--text-color-accent);
    border-radius: 50%;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-radio > input:not(:disabled):active + span::before {
    border: 5px solid var(--badge-background-color);
}

.custom-radio > input:focus:not(:checked) + span::before {
    border: 1px solid var(--text-color-accent);
}

.custom-radio > input:checked + span::before {
    border: 5px solid var(--text-color-accent);
}

.custom-radio > input:disabled + span::before {
    background-color: #fff;
}

.radio {
    margin-bottom: 0.2em;
}

.stickers {
    pointer-events: none;
    display: flex;
    position: absolute;
    gap: 8px;
    right: 0;
    top: 0;
    flex-direction: column;
    align-items: end;
    padding-top: 8px;
}

.modification_color {
    border: 1px solid #f3f3f3;
    border-radius: 4px;
    height: 50px;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 991.5px) {
    .btt {
        position: fixed;
        bottom: 61px;
        right: 50px;
        background-color: #f75c0865;
        height: 40px;
        width: 40px;
        border-radius: 100%;
        z-index: 100;
        padding-top: 5px;
    }
}

@media (min-width: 992px) {
    .btt {
        display: none;
    }
}

.cp {
    cursor: pointer;
}

.mw90 {
    max-width: 90px;
    max-height: 25px;
}

.otmena {
    height: auto !important;
    min-width: auto !important;
}

.pr_img {
    width: 45px;
    display: inline-block;
}

.modification_color.modification_img_bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.item_bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    height: 100%;
    width: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
}

.flag {
    width: 20px;
    margin-left: 8px;
}

.sertificate {
    max-width: 75px;
}

#descriptions li,
#text li {
    margin: 0;
    padding: 0;
}

#descriptions ul,
#text ul {
    margin: 10px;
}

#descriptions ol,
#descriptions li,
#text ol,
#text li {
    list-style-type: disc;
    list-style-position: inside;
}

.custom-checkbox,
.custom-checkbox2,
.custom-radio > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.item_banner,
.item_banner_img {
    background-position: center center;
    background-size: cover;
}

#text img,
#text figure {
    max-width: 100%;
    height: auto;
    min-width: 100%;
}

@media (max-width: 576px) {
    .stickers {
        /*position: absolute;
		top: 30px;
		left: 0;
		min-height: 130px;*/
    }
}

@media (min-width: 577px) {
    .stickers {
        /*position: absolute;
		top: 30px;
		left: 0;
		min-height: 250px;*/
    }
}

@media (min-width: 768px) {
    .stickers {
        /*position: absolute;
		top: 30px;
		left: 0;
		min-height: 220px;
		max-width: 50px;*/
    }
}

#show-more,
#show-less,
#show-more-r,
#show-less-r,
#show-more-t,
#show-less-t {
    cursor: pointer;
    text-transform: uppercase;
    color: #f75c08;
}

.down,
.top {
    display: inline-block;
    width: 15px;
    margin-bottom: 3px;
}

.price-input {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 3px 0 18px;
}

.price-input .field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 45px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.field input {
    width: 100%;
    padding: 3px;
    outline: none;
    font-size: 14px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ced4da;
    -moz-appearance: textfield;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price-input .separator {
    width: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 19px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type='range']::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: #f75c08;
    pointer-events: auto;
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type='range']::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #f75c08;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

a.show-more-button {
    margin: 0;
    padding: 8px 0;
    color: var(--text-color-accent);
    background-color: #fff;
    font-weight: bold;
}

a.show-more-button:not(.collapsed) {
    color: var(--text-color-accent);
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='currentColor'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
    color: var(--text-color-accent);
}

a.show-more-button::before {
    content: 'Показать больше';
}

a.show-more-button:not(.collapsed)::before {
    content: 'Показать меньше';
}

.slider .progress {
    height: 100%;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 5px;
    background: #f75c08;
}

.admin-quick-link,
.admin-quick-link:hover {
    color: #f75c08;
    margin: 0 8px;
}

.btn-outline-secondary:hover {
    text-decoration: none;
    color: #fff;
    background-color: #f75c08;
    border-color: #f75c08;
}

.owl-carousel .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.article-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    height: 100%;
}

.aticle-box {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.table_header {
    min-width: 150px;
    vertical-align: baseline;
}

.owl-modification {
    width: 100%;
}

.owl-carousel-modifications,
.owl-carousel-modifications .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.owl-carousel-modifications {
    display: none;
    width: 100%;
    z-index: 1;
}

.owl-carousel-modifications .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.owl-carousel-modifications .owl-stage:after {
    content: '.';
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel-modifications .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    padding: 3px;
    margin: -3px;
}

.owl-carousel-modifications .owl-item,
.owl-carousel-modifications .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel-modifications .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
    opacity: 0;
    transition: opacity 500ms;
}

.owl-carousel-modifications .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel-modifications .owl-dots.disabled,
.owl-carousel-modifications .owl-nav.disabled {
    display: none;
}

.no-js .owl-carousel-modifications,
.owl-carousel-modifications.owl-loaded {
    display: block;
}

.owl-carousel-modifications .owl-dot,
.owl-carousel-modifications .owl-nav .owl-next,
.owl-carousel-modifications .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel-modifications.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel-modifications.owl-hidden {
    opacity: 0;
}

.owl-carousel-modifications.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel-modifications.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel-modifications.owl-drag .owl-item.selected {
    z-index: 2;
}

.owl-carousel-modifications.owl-grab {
    cursor: grab;
}

.owl-carousel-modifications.owl-rtl {
    direction: rtl;
}

.owl-carousel-modifications.owl-rtl .owl-item {
    float: right;
}

.owl-carousel-modifications
.owl-item.active
.article-items.selected
.modification_color {
    box-shadow: 2px 2px 2px #f75c08, -2px 2px 2px #f75c08, 2px -2px 2px #f75c08,
    -2px -2px 2px #f75c08;
}

.owl-carousel-modifications .owl-item.active {
    opacity: 1;
}

.owl-carousel-modifications .article-items .article-box {
    overflow: unset;
}

.left-menu-element:hover {
    background-color: #f0f2f4;
    border-radius: 5px;
    color: #000;
}

a.seofilter:hover {
    color: #000;
    cursor: default;
}

.form-check-input {
    border-color: #f75c08;
}

.form-check-input:checked {
    border-color: #f75c08;
    background-color: #f75c08;
}

div.checkbox.disabled {
    opacity: 0.5;
}

[data-role='catalog-container'].disabled {
    filter: blur(10px);
}

a.productfilters-feature-value-link {
    color: #2c3136;
    text-decoration: underline;
}

a.productfilters-feature-value-link:hover {
    color: #f05400;
    text-decoration: none;
}

button:hover .fa.ot {
    color: #fff;
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #f75c088c;
    background-color: transparent;
}

.owl-carousel-modifications .owl-nav button.owl-prev i,
.owl-carousel-modifications .owl-nav button.owl-next i {
    transform: scale(2, 2);
    color: #f75c08;
}

.owl-carousel-modifications .owl-nav button.owl-next {
    width: 15px;
    height: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -7px;
    display: block !important;
}

.owl-carousel-modifications .owl-nav button.owl-next,
.owl-carousel-modifications .owl-nav button.owl-prev,
.owl-carousel-modifications button.owl-dot {
    background: 0 0;
    border: none;
    padding: 0 !important;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-family: inherit;
}

.owl-carousel-modifications .owl-nav button.owl-prev {
    width: 15px;
    height: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -7px;
    display: block !important;
}

.owl-carousel-modifications .owl-prev.disabled i,
.owl-carousel-modifications .owl-next.disabled i {
    color: #fccccc40 !important;
}

.owl-carousel-modifications .owl-dots,
.owl-carousel-modifications .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-carousel-modifications .owl-nav [class*='owl-'] {
    color: #fff;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.sorting-catalog .greybtn a:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.sorting-catalog .greybtn.active.rotate img {
    transform: rotate(180deg);
}

.bt {
    border-top: 2px solid #f3f3f3;
}

.range-input,
.sorting-catalog .greybtn {
    position: relative;
}

div.checkbox:not(.disabled):hover,
div.checkbox:not(.disabled) label:hover {
    font-weight: bold;
    color: #f75c08;
    cursor: pointer;
}

.alert-albia,
.btn-outline-secondary {
    color: #f75c08;
    border-color: #f75c08;
}

[data-role='catalog-container'],
p[data-role='grand-total'],
#minicart-content {
    transition: 0.5s filter linear;
}

.owl-carousel-modifications .owl-nav .owl-next span,
.owl-carousel-modifications .owl-nav .owl-prev span,
.sorting-catalog .greybtn:not(.active) img {
    display: none;
}

@keyframes rotating {
    from {
        transform: rotate(0);
        -o-transform: rotate(0);
        -ms-transform: rotate(0);
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

#quick_order .form-control.error {
    border-color: #dc3545;
}

#quick_order .form-control.error + .text-start {
    display: block !important;
}

/* #quick_order .buy1click-form__content {
	pointer-events: none;
} */
#quick_order .modal-dialog {
    pointer-events: all;
}

#quick_order .modal-dialog .buy1click-form_type_item {
    background-color: #fff;
}

#quick_order .buy1click-form__content .buy1click-form__submit-button {
    color: transparent;
    position: relative;
}

#quick_order .buy1click-form__content .buy1click-form__submit-button:before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='L7' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 100 100' enable-background='new 0 0 100 100' xml:space='preserve'%3E%3Cpath fill='%23f75c08' d='M31.6,3.5C5.9,13.6-6.6,42.7,3.5,68.4c10.1,25.7,39.2,38.3,64.9,28.1l-3.1-7.9c-21.3,8.4-45.4-2-53.8-23.3 c-8.4-21.3,2-45.4,23.3-53.8L31.6,3.5z'%3E%3CanimateTransform attributeName='transform' attributeType='XML' type='rotate' dur='2s' from='0 50 50' to='360 50 50' repeatCount='indefinite' /%3E%3C/path%3E%3Cpath fill='%23f75c08' d='M42.3,39.6c5.7-4.3,13.9-3.1,18.1,2.7c4.3,5.7,3.1,13.9-2.7,18.1l4.1,5.5c8.8-6.5,10.6-19,4.1-27.7 c-6.5-8.8-19-10.6-27.7-4.1L42.3,39.6z'%3E%3CanimateTransform attributeName='transform' attributeType='XML' type='rotate' dur='1s' from='0 50 50' to='-360 50 50' repeatCount='indefinite' /%3E%3C/path%3E%3Cpath fill='%23f75c08' d='M82,35.7C74.1,18,53.4,10.1,35.7,18S10.1,46.6,18,64.3l7.6-3.4c-6-13.5,0-29.3,13.5-35.3s29.3,0,35.3,13.5 L82,35.7z'%3E%3CanimateTransform attributeName='transform' attributeType='XML' type='rotate' dur='2s' from='0 50 50' to='360 50 50' repeatCount='indefinite' /%3E%3C/path%3E%3C/svg%3E%0A");
    width: 24px;
    height: 24px;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.about .about-item .multiform-popup-link a {
    color: inherit;
}

.navbar.order {
    top: 84px;
}

.v-pagination {
    text-align: center;
    font-size: 0;
    margin-top: 36px;
}

.v-pagination__li {
    display: inline-block;
    margin-right: 12px;
}

.v-pagination__item {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-decoration: none;
    outline: 0;
    border: 0;
    border-radius: 5px;
    font-size: 14px;
    margin-right: 12px;
    color: #5e5e5e;
    cursor: pointer;
    background-color: #f4f4f4;
    vertical-align: top;
}

.v-pagination__item:hover {
    color: #5e5e5e;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.1);
}

.v-pagination__item._active:hover {
    cursor: default;
}

.v-pagination__item_prev .fa {
    font-size: 24px;
    line-height: 27px;
    padding-right: 1px;
}

.v-pagination__item_next .fa {
    font-size: 24px;
    line-height: 27px;
    padding-left: 2px;
}

.v-pagination__item._active {
    background-color: #f75c08;
    color: #fff;
}

.map-delivery {
    height: 681px;
}

@media screen and (width < 992px) {
    .map-delivery {
        max-height: 50vh;
    }
}

.input-group {
    width: 160px;
}

.v-pagination__li:last-child,
.v-pagination__item:last-child {
    margin-right: 0;
}

.v-pagination__item_prev,
.v-pagination__item_next {
    font-size: 0;
}

@media (min-width: 992px) {
    .input-group {
        width: 130px;
    }
}

@media (min-width: 1200px) {
    .input-group {
        width: 150px;
    }
}

@media (min-width: 1400px) {
    .input-group {
        width: 170px;
    }
}

.red {
    cursor: pointer;
    text-transform: uppercase;
    color: #f75c08;
    font-weight: 600;
    font-size: 0.875em;
}

.btn:active,
.btn-close:active {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.input-group2 {
    width: 107px;
}

.ltoggle {
    padding-left: 30px;
}

.w6 {
    width: 90%;
}

.js_personal_form .form-control.error {
    border-color: #dc3545;
}

.sticky-top.order {
    top: 85px;
}

.manipulator-select-placeholder {
    margin-bottom: 16px;
    margin-top: 40px;
}

/*.delivery-details__collapsed-header:hover {*/
/*	cursor: pointer;*/
/*	background-color: #f75c08;*/
/*	color: #fff;*/
/*	box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);*/
/*	transition: box-shadow 0.2s ease-out;*/
/*}*/

/*.delivery-details__collapsed-header.active {*/
/*	background-color: #f75c08;*/
/*	color: #fff;*/
/*	transition: all 0.2s ease-out;*/
/*}*/

/*.delivery-details__heading {*/
/*	color: #050505;*/
/*	margin-bottom: -15px;*/
/*	padding-top: 20px;*/
/*	font: 500 18px/19px 'Open Sans', sans-serif;*/
/*}*/

.delivery-details__sub-text {
    color: #a7a7a7;
    font: italic 300 14px 'Open Sans', sans-serif;
}

.delivery-details__car-name {
    color: #050505;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    height: 46px;
    border: 1px solid #f75c08;
    border-radius: 5px;
    margin-bottom: 18px;
    transition: all 0.2s ease-out;
    font: 600 16px 'Open Sans', sans-serif;
}

.delivery-details__manipulator-form.active .delivery-details__manipulator-checkbox {
    border-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23f75c08' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-color: #fff;
}

.delivery-details__manipulator-form.active .jq-radio {
    border-color: #fff;
}

.delivery-details__manipulator-form-button {
    display: inline-flex;
    align-items: center;
}

.delivery-details__manipulator-checkbox {
    margin-left: 10px !important;
    margin-right: 0;
}

.delivery-details__manipulator-checkbox::after {
    margin-top: 6px;
    margin-left: 1px;
}

.delivery-details__manipulator-checkbox.disabled::after {
    top: -4px;
}

.delivery-details__manipulator-collapse {
    padding-top: 8px;
}

.delivery-details__manipulator-collapse > .form-check-left-padding {
    margin-left: 0;
}

/*.delivery-details__total-price_orange {*/
/*	color: #f75c08;*/
/*}*/

/*.delivery-details__total-price_bold {*/
/*	font-weight: 600;*/
/*	font-size: 20px;*/
/*}*/

/*.delivery-details__total-price_total {*/
/*	padding-top: 40px;*/
/*	font-size: 24px;*/
/*}*/

/*.delivery-details__total-price_total .delivery-details__total-price_bold {*/
/*	font-size: 24px;*/
/*}*/

.delivery-details__approximate-date {
    color: #000;
    padding-top: 20px;
    font: 14px/19px 'Open Sans', sans-serif;
}

.delivery-details__approximate-date_black {
    font-size: 16px;
    font-weight: bold;
}

.delivery-details__detail-price {
    font-size: 14px;
    font-weight: 300;
    color: #8c8c8c;
    margin-bottom: 0;
}

.pickup-details {
    padding: 20px 0;
}

#pickup-address-wrapper {
    margin-bottom: 20px;
}

.jq-checkbox.checked:after {
    position: absolute;
    font: 16px/1 FontAwesome;
    color: #f75c08;
    content: '\f00c';
    top: 0;
    left: 0;
    height: 14px;
    line-height: 14px;
    text-align: center;
    width: 14px;
}

.jq-radio.checked .jq-radio__div {
    left: 2px;
    top: 2px;
    background-color: #f75c08;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 1;
    position: absolute;
}

.form-check-input:checked[type='radio'] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23f75c08'/%3e%3c/svg%3e");
}

.navbar-light .navbar-nav .nav-link {
    cursor: pointer;
}

#lk .modal-header .btn-close {
    position: relative;
    bottom: -17px;
    z-index: 9;
}

#lk #pills-tab {
    border-top: 1px solid #cbcccd;
}

#lk .spinner_svg .path {
    stroke: #f75c08;
}

.spinner_svg {
    animation: rotate 2s linear infinite;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -16px 0 0 -13px;
    width: 32px;
    height: 32px;
    opacity: 0;
}

.spinner_svg .path {
    stroke: #fff;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

#lk .errormsg,
#lk .errormsg2,
#pills-home_checkout .errormsg {
    display: none;
    text-align: left;
}

.delivery-details__collapsed-header,
#lk .error ~ .errormsg,
#lk .error2 ~ .errormsg2,
#pills-home_checkout .error ~ .errormsg {
    display: block;
}

#lk #register1_submit,
#lk #register2_submit,
#lk #register3_submit,
.js_checkout_order {
    position: relative;
}

#lk #register1_submit.active .spinner_svg,
#lk #register2_submit.active .spinner_svg,
#lk #register3_submit.active .spinner_svg,
.js_checkout_order.active .spinner_svg {
    opacity: 1;
}

#lk #register1_submit.active,
#lk #register2_submit.active,
#lk #register3_submit.active {
    color: transparent;
    pointer-events: none;
    opacity: 0.8;
    background-color: white;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

#lk input:not([type='checkbox']) {
    box-shadow: 1px 1px 2px 1px rgb(0 0 0 / 10%);
}

.lk_font_size {
    font-size: 14px;
}

[data-role='fav-btn'] i {
    pointer-events: none;
}

.forgot_password,
.forgot_password:hover {
    color: #f75c08;
}

@font-face {
    font-family: 'FontAwesome';
    src: url(../fontawesome4/fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2');
    font-weight: normal;
    font-style: normal;
}

.new_icon_header .fa {
    display: inline-block;
    font: 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.new_icon_header .price_cart {
    white-space: nowrap;
}

.mh50 {
    max-height: 50px;
}

.searchpro__field {
    position: relative;
}

.searchpro__field,
.searchpro__field * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.searchpro__field .searchpro__field-container {
    z-index: 1000;
    position: relative;
}

.searchpro__field .searchpro__field-container.js-searchpro__field-container--focus {
    border-color: #f2994a;
}

/*
.searchpro__field .searchpro__field-container.loading {
    background-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            from(transparent),
            to(rgba(0, 0, 0, 0.05))
    ),
    repeating-linear-gradient(-45deg, #eee, #eee 11px, #fff 10px, #fff 20px),
    -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
    background-image: -webkit-linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.05)),
    -webkit-repeating-linear-gradient(135deg, #eee, #eee 11px, #fff 10px, #fff 20px),
    -webkit-linear-gradient(top, #fff, #eee);
    background-image: -o-linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.05)),
    -o-repeating-linear-gradient(135deg, #eee, #eee 11px, #fff 10px, #fff 20px),
    -o-linear-gradient(top, #fff, #eee);
    background-image: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.05)),
    repeating-linear-gradient(-45deg, #eee, #eee 11px, #fff 10px, #fff 20px),
    linear-gradient(to bottom, #fff, #eee);
    background-size: 28px;
    -webkit-animation: loading 0.75s linear infinite;
    animation: loading 0.75s linear infinite;
}
 */

.searchpro__field .searchpro__field-input-container {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.searchpro__field .searchpro__field-input-container .searchpro__field-input {
    border: 0;
    background: transparent;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0 50px 0 20px;
    height: 100%;
    width: 100%;
    font-size: 14px;
}

.searchpro__field .searchpro__field-input-container .searchpro__field-input::-ms-clear {
    display: none;
}

.searchpro__field-container.js-searchpro__field-container--loading:after {
    content: '';
    position: absolute;
    background-color: #fff;
    background-image: url('data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20preserveAspectRatio=%22xMidYMid%22%20viewBox=%220%200%20100%20100%22%20class=%22lds-rolling%22%20style=%22background:%20none;%22%3E%3Ccircle%20cx=%2250%22%20cy=%2250%22%20fill=%22none%22%20stroke=%22%23bdbdbd%22%20stroke-width=%2210%22%20r=%2244%22%20stroke-dasharray=%22207.34511513692632%2071.11503837897544%22%20transform=%22rotate(104%2050%2050)%22%3E%3CanimateTransform%20attributeName=%22transform%22%20type=%22rotate%22%20calcMode=%22linear%22%20values=%220%2050%2050;360%2050%2050%22%20keyTimes=%220;1%22%20dur=%221.5s%22%20begin=%220s%22%20repeatCount=%22indefinite%22%3E%3C/animateTransform%3E%3C/circle%3E%3C/svg%3E');
    background-size: 14px 14px;
    background-position: center;
    background-repeat: no-repeat;
    width: 50px;
    height: calc(100% - 2px);
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.searchpro__field-container .searchpro__field-clear-button {
    position: absolute;
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20preserveAspectRatio=%22none%22%20viewBox=%220%200%2010%2010%22%3E%3Cpath%20d=%22M10%201.00714L8.99286%200L5%203.99286L1.00714%200L0%201.00714L3.99286%205L0%208.99286L1.00714%2010L5%206.00714L8.99286%2010L10%208.99286L6.00714%205L10%201.00714Z%22%20fill=%22%23828282%22/%3E%3C/svg%3E);
    background-size: 10px 10px;
    background-position: center;
    background-repeat: no-repeat;
    width: 50px;
    height: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    display: none;
}

.searchpro__field-container .searchpro__field-clear-button:hover {
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20preserveAspectRatio=%22none%22%20viewBox=%220%200%2010%2010%22%20fill=%22none%22%3E%3Cpath%20d=%22M10%201.00714L8.99286%200L5%203.99286L1.00714%200L0%201.00714L3.99286%205L0%208.99286L1.00714%2010L5%206.00714L8.99286%2010L10%208.99286L6.00714%205L10%201.00714Z%22%20fill=%22%23000000%22/%3E%3C/svg%3E);
}

.searchpro__field .searchpro__field-button-container {
    height: 100%;
}

.searchpro__field .searchpro__field-button-container .searchpro__field-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #e7e7e7;
    cursor: pointer;
    height: 100%;
    padding: 0 20px;
    -webkit-transition: 0.3s background-color, 0.3s color;
    -o-transition: 0.3s background-color, 0.3s color;
    transition: 0.3s background-color, 0.3s color;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    z-index: 1100;
}

.searchpro__field
.searchpro__field-container.js-searchpro__field-container--focus
.searchpro__field-button-container
.searchpro__field-button {
    background: #f2994a;
    color: #fff;
}

.searchpro__field .searchpro__field-categories-container {
    position: relative;
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.searchpro__field
.searchpro__field-input-container
.searchpro__field-input::-webkit-input-placeholder,
.searchpro__field
.searchpro__field-input-container
.searchpro__field-input::-moz-placeholder,
.searchpro__field
.searchpro__field-input-container
.searchpro__field-input::-ms-input-placeholder,
.searchpro__field
.searchpro__field-input-container
.searchpro__field-input::placeholder {
    color: #bdbdbd;
}

@media (max-width: 550px) {
    .searchpro__field .searchpro__field-categories-container {
        display: none;
    }
}

.searchpro__field
.searchpro__field-categories-container
.searchpro__field-categories-label {
    cursor: pointer;
    padding: 0 35px 0 20px;
    position: relative;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    max-width: 160px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
}

.searchpro__field
.searchpro__field-categories-container
.searchpro__field-categories-label
span {
    white-space: nowrap;
    max-width: 150px;
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.searchpro__field
.searchpro__field-categories-container
.searchpro__field-categories-label:hover {
    background-color: #f7f7f7;
}

.searchpro__field
.searchpro__field-categories-container
.searchpro__field-categories-label:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    background-color: #e7e7e7;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: 0.3s background-color, 0.3s height;
    -o-transition: 0.3s background-color, 0.3s height;
    transition: 0.3s background-color, 0.3s height;
}

.searchpro__field
.searchpro__field-categories-container
.searchpro__field-categories-label:hover:before {
    background-color: #f7f7f7;
    height: 100%;
}

.searchpro__field
.searchpro__field-categories-container
.searchpro__field-categories-label:after {
    content: '';
    position: absolute;
    background-image: url(data:image/svg+xml,%3Csvg%20width=%228%22%20height=%225%22%20viewBox=%220%200%208%205%22%20fill=%22none%22%20xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d=%22M0.94%20-5.1411e-08L4%203.09299L7.06%20-5.1411e-08L8%200.956873L4%205L0%200.956873L0.94%20-5.1411e-08Z%22%20fill=%22%23828282%22/%3E%3C/svg%3E);
    background-size: contain;
    width: 8px;
    height: 5px;
    right: 20px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.searchpro__field
.searchpro__field-categories-container
.searchpro__field-categories-label.js-searchpro__field-category-selector-active:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.searchpro__field .searchpro__field-categories-list {
    display: none;
    position: absolute;
    background: #fff;
    list-style: none;
    margin: 7px 0 0;
    padding: 0;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    z-index: 30;
    right: 0;
    width: 280px;
    max-height: 400px;
    overflow-y: auto;
}

.searchpro__field .searchpro__field-category,
.searchpro__field .searchpro__field-subcategory {
    padding: 7px 20px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #828282;
}

.searchpro__field .searchpro__field-category:first-child {
    padding-top: 20px;
}

.searchpro__field .searchpro__field-category:last-child,
.searchpro__field
.searchpro__field-subcategories-list:last-child
.searchpro__field-subcategory:last-child {
    padding-bottom: 20px;
}

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

.searchpro__field .searchpro__field-subcategories-list .searchpro__field-subcategory {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 40px;
}

.searchpro__field
.searchpro__field-subcategories-list
.searchpro__field-subcategory
span {
    padding-left: 15px;
}

.searchpro__field
.searchpro__field-subcategories-list
.searchpro__field-subcategory:before {
    content: '';
    position: absolute;
    background-image: url(data:image/svg+xml,%3Csvg%20width=%224%22%20height=%224%22%20viewBox=%220%200%204%204%22%20fill=%22none%22%20xmlns=%22http://www.w3.org/2000/svg%22%3E%3Ccircle%20cx=%222%22%20cy=%222%22%20r=%222%22%20fill=%22%23f2994a%22/%3E%3C/svg%3E);
    background-size: contain;
    width: 5px;
    height: 5px;
}

.searchpro__field
.searchpro__field-subcategories-list
.searchpro__field-subcategory:hover:before {
    background-image: url(data:image/svg+xml,%3Csvg%20width=%224%22%20height=%224%22%20viewBox=%220%200%204%204%22%20fill=%22none%22%20xmlns=%22http://www.w3.org/2000/svg%22%3E%3Ccircle%20cx=%222%22%20cy=%222%22%20r=%222%22%20fill=%22%23828282%22/%3E%3C/svg%3E);
}

.searchpro__field
.searchpro__field-subcategories-list
.searchpro__field-subcategories-list
.searchpro__field-subcategories-list
.searchpro__field-subcategory {
    padding-left: 60px;
}

.searchpro__field
.searchpro__field-subcategories-list
.searchpro__field-subcategories-list
.searchpro__field-subcategory {
    padding-left: 50px;
}

.js-searchpro__dropdown {
    z-index: 999;
    position: absolute;
    left: 0;
    padding: 0;
    top: 100%;
    max-width: fit-content;
}

.searchpro__dropdown {
    max-height: 600px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #f2f2f2;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-top: 5px;
    z-index: 800;
    position: relative;
}

.searchpro__dropdown .searchpro__dropdown-view-all {
    border-top: 1px solid #f2f2f2;
}

.searchpro__dropdown .searchpro__dropdown-view-all-link {
    text-align: center;
    padding: 15px 0;
    display: block;
    color: #000;
    -webkit-transition: color 0.3s, background-color 0.3s;
    -o-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
    font-size: 14px;
}

.searchpro__dropdown
.searchpro__dropdown-view-all-link.js-searchpro__dropdown-entity--active {
    color: #000;
    background-color: #f8f8f8;
}

.searchpro__dropdown .searchpro__dropdown-group-title {
    font-size: 12px;
    padding: 10px 20px;
    color: #828282;
    text-transform: uppercase;
}

.searchpro__dropdown a.searchpro__dropdown-entity {
    color: #000;
    text-decoration: none;
}

.searchpro__dropdown .searchpro__dropdown-entity {
    display: block;
    padding: 7px 20px;
    -webkit-transition: background-color 0.3s, color 0.3s;
    -o-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.searchpro__dropdown .searchpro__dropdown-entity:hover,
.searchpro__dropdown .searchpro__dropdown-entity.js-searchpro__dropdown-entity--active {
    background-color: #f8f8f8;
}

.searchpro__dropdown .searchpro__dropdown-entity_delete-button {
    opacity: 0;
    float: right;
    font-size: 12px;
    color: #bdbdbd;
    -webkit-transition: opacity 0.3s, color 0.3s;
    -o-transition: opacity 0.3s, color 0.3s;
    transition: opacity 0.3s, color 0.3s;
}

.searchpro__dropdown
.searchpro__dropdown-entity:hover
.searchpro__dropdown-entity_delete-button,
.searchpro__dropdown
.searchpro__dropdown-entity.js-searchpro__dropdown-entity--active
.searchpro__dropdown-entity_delete-button {
    opacity: 1;
}

.searchpro__dropdown .searchpro__dropdown-entity_name {
    font-size: 14px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.searchpro__dropdown .searchpro__dropdown-entity_subname {
    color: #828282;
    font-size: 12px;
}

.searchpro__dropdown .searchpro__dropdown-entity_image-container {
    float: left;
    margin-right: 10px;
}

.searchpro__dropdown .searchpro__dropdown-entity_summary {
    margin-top: 5px;
    font-size: 0.8em;
    color: #777;
    white-space: normal;
}

.searchpro__dropdown .searchpro__dropdown-entity_price {
    font-size: 16px;
    font-weight: 500;
}

.searchpro__dropdown .searchpro__dropdown-entity_price .ruble {
    font-family: 'ALSRubl-Arial', Arial, sans-serif;
}

.searchpro__dropdown .searchpro__dropdown-entity_price-container {
    margin-top: 5px;
}

.searchpro__dropdown .searchpro__dropdown-entity_compare-price {
    font-size: 0.8em;
    color: #777;
    text-decoration: line-through;
}

.searchpro__dropdown .searchpro-highlighted {
    font-weight: 500;
    max-height: 50px;
}

.searchpro__field .searchpro__field-category-all,
.searchpro__field .searchpro__field-subcategory-all,
.searchpro__dropdown .searchpro__dropdown-entity_delete-button:hover {
    color: #000;
}

.searchpro__field .searchpro__field-category.selected,
.searchpro__field .searchpro__field-subcategory.selected,
.searchpro__dropdown .searchpro-highlighted {
    font-weight: 500;
}

.searchpro__field .searchpro__field-category:hover,
.searchpro__field .searchpro__field-subcategory:hover,
.searchpro__dropdown .searchpro__dropdown-view-all-link:hover {
    color: #f2994a;
}

.main-menu-item.current.nav-link {
    background-color: #f0f2f48c;
    -webkit-box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.089) !important;
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.11) !important;
    font-weight: bold;
}

.main-menu-item.current.nav-link:hover {
    background-color: #f0f2f48c;
}

.expanded.nav-link img {
    rotate: 90deg;
}

.pages {
    padding: 0;
    list-style: none;
}

.pages li {
    display: inline-block;
    margin-right: 10px;
    line-height: 22px;
}

.pages li:after {
    content: '|';
    margin-left: 10px;
}

.pages li:last-child:after {
    display: none;
    margin: 0;
}

.v-profile .wa-form {
    max-width: 400px;
}

.v-profile .wa-form_inline {
    line-height: 20px;
}

.v-profile .wa-field {
    margin-bottom: 16px;
}

.v-profile .wa-name {
    margin-bottom: 6px;
}

.v-profile .wa-form_inline .wa-name {
    display: inline-block;
    margin-bottom: 5px;
    vertical-align: middle;
    width: 100%;
    font-size: 18px;
}

.v-profile .wa-required .wa-name:after,
.wa-required.field span:after {
    content: '*';
}

.v-profile .wa-form_inline .wa-value {
    display: inline-block;
    font-weight: 700;
    vertical-align: middle;
    font-size: 18px;
}

.v-profile .wa-value em {
    display: block;
}

.v-profile .wa-value .field {
    display: block;
    margin-bottom: 14px;
}

.v-profile .wa-value .field span {
    display: block;
    font-size: 12px;
    color: #989898;
}

.v-profile ._hint,
.v-profile ._hint a,
.hint,
.v-profile .hint a {
    color: #989898;
}

.v-profile ._hint,
.v-profile .hint {
    font-size: 0.9em;
}

.v-profile input[type='submit'] {
    height: 37px;
    line-height: 37px;
    padding: 0 20px;
    outline: 0;
    cursor: pointer;
    box-sizing: border-box;
    white-space: nowrap;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    border: none;
    background: #f75c08;
    color: #fff;
}

.v-profile form input[type='text'] {
    background-color: #f4f4f4;
    text-align: left;
    line-height: 38px;
    height: 38px;
    border: 1px solid #dedede;
    border-radius: 5px;
    color: #000;
    outline: 0;
    padding: 0 15px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}

.v-profile .prodile_edit-cancel-btn {
    margin-left: 10px;
}

.v-profile .prodile_edit-cancel-btn .fa {
    margin-right: 2px;
    vertical-align: 0;
    font-size: 13px;
}

.v-profile a.link-half {
    text-decoration: none;
    border-bottom: 1px dashed;
    cursor: pointer;
    color: #000;
}

.v-profile .prodile_edit-cancel-btn a.link-half {
    border-bottom: 1px dashed;
}

.htmlmap li {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: top;
}

.htmlmap li a {
    line-height: 2;
    text-decoration: underline;
    font-size: 14px;
    padding: 10px;
}

.htmlmap li a:hover {
    background: #fd7e14;
    color: #fff;
}

.htmlmap a.grey-hover {
    background: #fd7e1450;
    color: #000;
}

.htmlmap > li > a {
    font-weight: 400;
    font-size: 20px;
    text-decoration: underline;
    color: #1c3697;
    line-height: 2.5;
}

#sitemap ul {
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
    margin-block-start: 1em;
    -webkit-margin-after: 1em;
    margin-block-end: 1em;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
    -webkit-padding-start: 30px;
    padding-inline-start: 30px;
}

.htmlmap li:before {
    content: '';
    display: block;
    position: absolute;
    border-left: 1px solid #f75c08;
    top: 72px;
    bottom: 15px;
    width: 11px;
}

.o_border {
    border-bottom: 1px solid #f75c08;
}

.js_form_login .nav-link {
    display: inline;
    padding: 0;
    cursor: pointer;
}

.searchpro__page-empty .searchpro__page-empty_header {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
}

.searchpro__page-empty .searchpro__page-empty_hint {
    color: #828282;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 15px;
}

.searchpro__page-empty .searchpro__page-empty_delimiter {
    width: 100%;
    height: 1px;
    background-color: #f2994a;
    margin-top: 35px;
    margin-bottom: 60px;
}

.searchpro__page-empty .searchpro__page-empty_delimiter:last-child {
    display: none;
}

.searchpro__page-empty .searchpro__page-empty_block {
    margin-bottom: 60px;
}

.searchpro__page-empty .searchpro__page-empty_block-header {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 30px;
}

.searchpro__page-empty .searchpro__page-empty_block-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.searchpro__page-empty .searchpro__page-empty_item,
.searchpro__page-empty .searchpro__page-empty_item:link,
.searchpro__page-empty .searchpro__page-empty_item:visited {
    font-size: 14px;
    color: #000;
    padding: 10px 15px;
    text-decoration: none;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    margin-bottom: 15px;
    outline: none;
    -webkit-transition: border-color 0.3s, color 0.3s;
    -o-transition: border-color 0.3s, color 0.3s;
    transition: border-color 0.3s, color 0.3s;
    margin-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.searchpro__page-empty .searchpro__page-empty_item:last-child,
.searchpro__page-empty .searchpro__page-empty_item:link:last-child,
.searchpro__page-empty .searchpro__page-empty_item:visited:last-child {
    margin-right: 0;
}

.searchpro__page-empty .searchpro__page-empty_item:hover {
    border-color: #f2994a;
    color: #f2994a;
}

.searchpro__page-empty .searchpro__page-empty_item-category {
    color: #828282;
    font-size: 12px;
    margin-left: 5px;
}

.v-profile .wa-field_nomargin,
.searchpro__page-empty .searchpro__page-empty_block:last-child {
    margin-bottom: 0;
}

.js-subscribe .errormsg {
    display: none;
    text-align: left;
}

.js-subscribe .error ~ .errormsg {
    display: block;
}

.js-subscribe .form-control.error {
    border-color: #dc3545;
}

div.ratio-1 {
    aspect-ratio: 1;
}

div.multiform-gap-fields p {
    text-align: center;
}

.error-msg {
    color: #f00;
    font-size: 0.8rem;
}

.wa-captcha-input {
    width: 50%;
    display: inline;
}

a.wa-captcha-refresh {
    font-size: 0.8rem;
}

.review-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.review-rating > input {
    display: none;
}

.review-rating > label {
    position: relative;
    /*width: 1em;*/
    /*font-size: 1.2rem;*/
    font-weight: 300;
    color: #f75c08;
    cursor: pointer;
}

.review-rating > label::before {
    content: '\2605';
    position: absolute;
    opacity: 0;
}

.review-rating > label:hover:before,
.review-rating > label:hover ~ label:before {
    opacity: 1 !important;
}

.review-rating > input:checked ~ label:before {
    opacity: 1;
}

.review-rating:hover > input:checked ~ label:before {
    opacity: 0.4;
}

phone_img {
    width: 20px;
}

@media (min-width: 768px) {
    footer ul li {
        font-size: 14px;
    }
}

.img_gallery_product {
    height: 550px;
}

@media (max-width: 390px) {
    .img_gallery_product {
        height: 380px;
    }
}

@media (min-width: 391px) {
    .img_gallery_product {
        height: 550px;
    }
}

@media (min-width: 576px) {
    .img_gallery_product {
        height: 650px;
    }
}

.small4 {
    font-size: 15px;
}

@media (min-width: 768px) {
    .small4 {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .cookies-note_bottom {
        bottom: 46px;
    }
}

.bottom_links a:active,
.bottom_links a:hover {
    color: #f75c08;
}

.dropdown a {
    outline: none;
}

h1,
h1 {
    font-size: 27px;
    font-weight: 700;
}

.h2,
h2 {
    font-size: 24px;
    font-weight: 600;
}

.h3,
h3 {
    font-size: 20px;
    font-weight: 600;
}

.h4,
h4 {
    font-size: 18px;
    font-weight: 600;
}

.h5,
h5 {
    font-size: 16px;
    font-weight: 600;
}

.h6,
h6 {
    font-size: 14px;
    font-weight: 600;
}

@media (min-width: 992px) {
    .h1,
    h1 {
        font-size: 25px;
        font-weight: 700;
    }

    .h2,
    h2 {
        font-size: 22px;
        font-weight: 600;
    }

    .h3,
    h3 {
        font-size: 19px;
        font-weight: 600;
    }

    .h4,
    h4 {
        font-size: 16px;
        font-weight: 600;
    }

    .h5,
    h5 {
        font-size: 14px;
        font-weight: 600;
    }

    .h6,
    h6 {
        font-size: 13px;
        font-weight: 600;
    }
}

.breadcrumb-item + .breadcrumb-item:before {
    content: '\279C';
}

.pagination__section {
    transition: all 0.3s ease;
}

.pagination__page {
    white-space: nowrap;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5px;
    text-align: center;
}

.pagination__page ul {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0 20px;
}

.pagination__page li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: solid 1px #f75c08;
    border-radius: 2px;
}

.pagination__page li.selected,
.pagination__page li.selected a,
.pagination__page li a:hover {
    background: #f75c08;
    color: #fff;
}

.pagination__page li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.pagination__arrow {
    position: relative;
}

/*
.pagination__double-arrow::after {
    content: url('img/pg-double-arrow.svg');
    position: absolute;
}

.pagination__double-arrow.next::after {
    transform: rotate(180deg);
}

.pagination__arrow::after {
    content: url('img/pg-arrow.svg');
    position: absolute;
}

.pagination__arrow.next::after {
    transform: rotate(180deg);
}
*/

.pagination__page a {
    color: #6c757d;
    text-decoration: none;
    transition: 0.3s;
}

.--RED-COLOR {
    color: red;
}

/* спойлер для крошек */

#breadcrumb > .container {
    position: relative;
}

.breadcrumbs__control {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.3) 7%,
            rgba(255, 255, 255, 0.8) 14%,
            rgba(255, 255, 255, 1) 20%,
            rgba(255, 255, 255, 1) 100%
    );
    padding-left: 30px;
    padding-right: 15px;
    color: #f75c08;
    text-decoration: underline;
    font-size: 13px;
}

#breadcrumb a {
    white-space: nowrap;
}

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

    #breadcrumb > .container.--active .breadcrumbs__control {
        display: none;
    }

    div.breadcrumb {
        display: flex;
        flex-wrap: wrap;
    }

    #breadcrumb > .container.--active div.breadcrumb {
        flex-wrap: wrap;
    }

    .breadcrumb-link {
        display: flex;
    }
}


.button-primary {
    text-decoration: none;
    color: #fff;
    background-color: var(--button-primary-color);
    border-color: var(--button-primary-color);
    border-radius: 0;
}

.button-primary:hover {
    color: #fff;
}

.button-primary:focus:not(:focus-visible) {
    box-shadow: none;
    animation: button-push-animation 0.4s ease-in-out;
}

@keyframes button-push-animation {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(2px) translateY(2px);
    }
    100% {
        transform: translateX(0) translateY(0)
    }
}

@media (pointer: fine) {
    .button-primary:hover {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background-color: var(--button-primary-color-hover);
        border-color: var(--button-primary-color-hover);
        color: #fff;
    }
}

/** SECTION: CATEGORY ASIDE */
.category-aside-title {
    position: relative;
    border: 0;
    padding: 8px;
    width: 100%;
    font-weight: 600;
    background-color: #f0f2f48c;
    margin-top: 1em;
    text-align: center;
    color: var(--text-color-default);
}
a.category-aside-title:hover {
    color: var(--text-color-accent);
    transition: 0.2s;
}
/** END: SECTION: CATEGORY ASIDE */

/** SECTION: ФИЛЬТРЫ **/
.filters-close {
    display: none;
}

.filters-content {
    min-height: calc(100% - 72px - 0.5em);
}

.filters-toggler {
    border: 0;
    padding: 8px;
    width: 100%;
    pointer-events: none;
    font-weight: 600;
    background-color: #f0f2f48c;
    margin-top: 1em;
}

.filters-apply {
    width: clamp(130px, calc(50% - 16px), 180px);
}

.filter-resetting {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
}

.filter-resetting__btn {
    text-decoration: none;
    color: var(--button-primary-color);
    border: 2px solid var(--button-primary-color);
    background-color: #fff;
    width: clamp(130px, calc(50% - 16px), 180px);
    border-radius: 0;
}

.filter-resetting__btn:hover {
    color: var(--button-primary-color);
}

.filter-resetting__btn:focus:not(:focus-visible) {
    animation: button-push-animation 0.4s ease-in-out;
    box-shadow: none;
}

@media (pointer: fine) {
    .filter-resetting__btn:hover {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background-color: #f8f8f8;
    }
}

@media screen and (max-width: 991px) {
    .filters-toggler {
        color: #fff;
        background-color: var(--button-primary-color);
        border-radius: 0;
        margin-bottom: 1em;
    }
    .filters-close {
        display: block;
        position: absolute;
        right: 16px;
        top: 16px;
        border: 0;
        background: none;
    }

    .filters-drawer {
        position: fixed;
        left: 0; top: 0;
        width: 100vw; height: 100%;
        z-index: 99999;
        overflow-y: scroll;
        transform: translateY(100%);
        --bs-gutter-x: 0;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
    }

    .filters-drawer.show {
        transform: translateY(0);
    }

    .filters-toggler {
        pointer-events: all;
    }

    .filters-content {
        padding: 1em 1em 0 1em;
    }

    .filter-resetting {
        position: sticky;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100001;
        backdrop-filter: blur(8px);
        background: rgba(255, 192, 192, 0.1);
        padding: 1em;
    }
}

.category-aside__element {
    padding: 4px 0;
    color: var(--text-color-default);
    transition: 0.2s;
}

.category-aside__element:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.category-aside__element:hover {
    color: var(--text-color-default);
    /*text-decoration: underline;*/
    background-color: rgba(192, 192, 192, 0.075);

}

/** END SECTION: ФИЛЬТРЫ **/
.category-aside__viewed-element {
    display: grid;
    gap: 8px;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    font-size: 11px;
    font-weight: 600;
}

.category-aside__viewed-element a {
    color: var(--text-color-default);
}

.category-aside__viewed-image {
    grid-row: 1/-1;
}

.category-aside__viewed-price {
    font-size: 14px;
    font-weight: 400;
}

.category-aside__news-element {
    display: flex;
    padding: 4px 0;
    gap: 8px;
    color: var(--text-color-default);
}

/** SECTION: ЧАСТО ИЩУТ В ЛИСТИНГЕ КАТЕГОРИИ **/
.catalog__oftenseek {
    margin: 8px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog__oftenseek__link {
    padding: 2px 8px;
    outline: 1px solid var(--text-color-accent);
    background-color: var(--color-white);
    color: var(--text-color-accent);
    transition: all 0.2s ease-in-out;
    border-radius: var(--buttons-border-radius);
}

.catalog__oftenseek__link:hover {
    background-color: var(--text-color-accent);
    color: var(--color-white);
}
/** END SECTION: ЧАСТО ИЩУТ В ЛИСТИНГЕ КАТЕГОРИИ **/

/** SECTION: BRAND MENU */
.brands__toggler {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--text-color-accent);
    border-radius: 0;
}

.brands__toggler .chevron {
    border-color: #fff;
    transform: rotate(45deg) translateX(-4px);
    transition: transform .2s;
}

.brands__toggler.collapsed .chevron {
    border-color: #fff;
    transform: rotate(225deg) translateY(-4px);
}

.brands__menu-item {
    line-height: inherit;
    align-items: start;
    margin: 0 1rem;
}

.brands__menu-item a {
    color: var(--text-color-default);
    display: flex;
    align-items: start;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    /*letter-spacing: 0.2px;*/
    padding: 0.5rem 0;
}

.brands__menu-item:not(:last-child) a {
    @media (max-width: 765px) {
        border-bottom: 1px dashed #ccc;
        padding: 1rem 0;
    }
}

.brands__menu-item:last-child a {
    @media (max-width: 765px) {
        padding: 1rem 0 0.5rem 0;
    }
}

/*.brands__menu-item:first-child a {*/
/*    @media (max-width: 765px) {*/
/*        border-top: 1px dashed #ccc;*/
/*    }*/
/*}*/

/** END SECTION: BRAND MENU */

/* #main_nav{
	border: 5px solid red;
}

#topmenu{
	border: 5px solid green;
} */

.input__border-enabled {
    border: 1px solid #d2d3d7;
    border-radius: 4px;
}

.input__border-none {
    border: none;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;

    color: #666666;
}

.button__padding-inline__none {
    padding-right: 0;
    padding-left: 0;
}

.button__block-width-10 {
    margin-left: auto;
    margin-right: 5px;
    width: 10%;
}

.email-header {
    gap: 4px;
    align-items: center;
}

.email-header a {
    color: #666666;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
    text-decoration-line: underline;
}

.display-flex__block--row {
    position: relative;
    display: flex;
    flex-direction: row;
}

.header-desktop__top {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.center-align-items {
    align-items: center;
    justify-content: center;
}

.new_icon_header {
    margin-left: 59px;
}

.width-block__icon {
    width: 100%;
}

.icon-block__margin {
    padding-right: 10%;
}

.display-inline__block {
    display: inline-block;
}

.width111 {
    width: 111%;
}

.width20 {
    width: 20% !important;
}

.display-none {
    display: none;
}

.input-search__max-width {
    max-width: 270px;
}

.input-search-header-top {
    margin-right: 1%;
}

.fa-user-circle-o {
    display: block;
    height: 18px;
    width: 18px;
    margin-right: 5px;
}

.fa-user-circle-o::before {
    display: block;
    height: 100%;
    width: 100%;
    padding-top: 4px;
}

.lk-icon {
    display: flex;
}

.logo-top {
    width: 108px;
}

.top-link-onheader {
    gap: 4px;
    justify-content: end;
    max-width: 50%;
    width: 100%;
}

.mobile-header {
    display: none;
    justify-content: space-between;
    width: 100%;
}

.header-mobile__line {
    display: flex;
    align-items: center;
    width: 100%;
}

.icon-whatsup {
    width: 20px;
    height: 20px;
}

.ltoggle {
    padding-left: 20px;
}

.toggle span {
    width: 30px;
}

.navbar-toggler-icon {
    border-radius: 50px;
}

.navbar-toggler-icon::after {
    border-radius: 50px;
}

.navbar-toggler-icon::before {
    border-radius: 50px;
}

.searchpro__field .searchpro__field-container {
    max-width: 85%;
    width: 100%;
}

.menu-mobile > .container {
    margin: 0;
    padding: 0;
    margin-inline: auto;
}

.icon-mobile__menu-no-opacity {
    margin-right: 2px;
}

.icon-mobile__menu {
    opacity: 0.7;
    margin-right: 7px;
}

.phone-mobile a {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    text-align: left;

    color: #666666 !important;
}

.phone-menu__mobile {
    gap: 7px;
}

@media (max-width: 1400px) {
    .input-search-header-top {
        margin-right: 1%;
    }

    .basket__total-sum__block {
        margin-left: 5%;
    }

    .display-adaptive__none {
        display: none;
    }
}

@media (max-width: 1199px) {
	.phone-header-top {
		gap: 8px;
	}

	.phone-header svg {
		display: none;
	}
}

@media (max-width: 991px) {
    .mobile-header {
        display: flex;
        padding-left: 8px;
    }

    .product-card__product-header {
        display: none;
    }

    .product-card__product-header__mobile {
        display: grid;
    }

    .item-list-menu {
        flex-grow: 1;
    }

    .main-menu-item {
        padding-right: calc(1rem + 8px);
    }

    .d992-none {
        display: none;
    }

    .fixed-bottom .count {
        left: calc(50% + 4px);
    }

    .input-search-header-top {
        margin: 0 !important;
        width: 100%;
    }

    .input-search-header-top > .searchpro__field.input__border-enabled {
        width: 100%;
    }

    .input-search__max-width {
        max-width: 100%;
    }

    .searchpro__field .searchpro__field-container {
        max-width: 87%;
    }

    .button-header-top {
        margin-top: 0 !important;
        padding: 16px 16px;
    }

    .email-header a {
        font-size: 20px;
    }

    .email-header {
        gap: 0;
    }

    .phone-menu__mobile {
        gap: 0;
    }

	.phone-header svg {
		display: block;
	}

    .phone-mobile {
        margin: 5px;
    }

    .offcanvas {
        overflow-y: scroll;
        /*max-height: 905px;*/
    }
}

.menu-mobile {
    margin-bottom: 16px;
}

.menu-mobile .container {
    max-width: 92%;
    width: 100%;
    padding: 0;
}

.header-mobile__phone {
    justify-content: center;
    gap: 5%;
    margin-inline: 10px 5px;
}

.work-time_span {
    display: inline;
}

.mobile-none650 {
    display: block;
}

.mobile-br {
    display: none;
}

.offcanvas-body > ul {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (max-width: 767px) {
	.phone-header {
		font-size: 12px;
	}
	.phone-header svg {
		display: none;
	}
}

@media (max-width: 650px) {
    .work-time_span {
        display: none;
    }

    .mobile-br {
        display: block;
    }

    .work-time__text {
        font-size: 16px;
    }

    .email-header a {
        font-size: 16px;
    }

    .mobile-none650 {
        display: none;
    }

    .icon-whatsup {
        width: 16px;
        height: 16px;
    }

	.phone-header {
		font-size: 14px;
	}

	.phone-header svg {
		display: block;
	}

    .phone-mobile {
        padding: 0;
    }

    .icon-mobile__menu {
        width: 18px;
    }

    .phone-mobile a {
        font-weight: 400;
        font-size: 16px;
        text-decoration-line: underline;
    }

	.mini-cart {
		min-width: 0;
	}

    .product-card__product-header__mobile .h1 {
        font-size: 2rem;
    }
}

.work-time_span {
    margin-inline: 10px;
}

a.phone.link-hover:hover > a {
    color: #f05400 !important;
}

.link-hover:hover,
.link-hover:hover p,
.link-hover:hover a {
    cursor: pointer;
    color: #f05400;
}

.link-underline {
    text-decoration: underline;
    text-decoration-color: #6c757d;
}

.link-underline:hover {
    text-decoration: none;
}

.buy1click-checkbox-box svg.buy1click-checkbox__icon {
    display: none;
}

/*РЕДИЗАЙН ЛИСТИНГА НАЧАЛО*/

.listing-item__padding-null {
    padding: 0;
}

.listing-item__conteiner {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.listing-item__row-code {
    display: flex;
    justify-content: space-between;
}

.listing-item__code {
    font-size: 12px;
    margin-bottom: 0;
}

.listing-item__align-center {
    display: flex;
    align-items: center;
}

.listing-item__small-btns {
    display: flex;
    gap: 12px;
}

.fav-comp-button {
    color: var(--text-color-default);
    display: flex;
    align-items: center;
}

.fav-comp-button.active {
    color: var(--text-color-accent);
}

.fav-comp-button:hover {
    color: var(--text-color-accent);
}

.listing-item__in-stock {
    display: flex;
    width: fit-content;
    align-items: center;
    background-color: #178754;
    border-radius: 4px;
    padding: 6px 9px;
    color: #fff;
    gap: 8px;
}

.listing-item__btn--container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.listing-item__wrapper {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.btn-inline-secondary {
    padding: 10px;
    width: 100%;
    text-decoration: none;
    color: #fff;
    background-color: #f75c08;
    border-color: #f75c08;
}

.btn-inline-secondary:hover {
    color: #f75c08;
    background-color: #fff;
    border-color: #f75c08;
}

.btn-inline-secondary:hover .fa.ot {
    color: #f75c08;
}

.price-item,
.price {
    font-size: 23px;
    font-weight: 600;
    line-height: 32.5px;
}

.order_btn {
    font-size: 18px;
}

.breadcrumb {
    margin-bottom: 0;
}

.listing-item__row-code {
    margin-top: 10px;
}

@media (max-width: 1280px) {
    .price-item,
    .price {
        font-size: 25px;
        font-weight: 600;
        line-height: 32.5px;
    }
}

@media (max-width: 765px) {
    h1 {
        font-size: 25px;
    }

    .listing-item__pre-wrapper {
        margin-top: 5px;
    }

    .listing-item__code {
        font-size: 12px;
    }

    .listing-item__padding-null a {
        font-weight: 600;
        font-size: 12px;
        line-height: 11.7px;

        color: #101010;
    }

    .listing-item__in-stock {
        padding: 4px 8px;
    }

    .listing-item__in-stock > svg {
        width: 12px;
        height: 12px;
    }


    .listing-item__in-stock p {
        font-size: 12px;
    }

    .order_btn,
    .price-item {
        font-size: 12px;
        line-height: 20px;
        padding: 10px;
    }

    .price {
        font-size: 13px;
        line-height: 11.7px;
    }


    .listing-item__conteiner {
        padding: 8px;
    }

    .product_name {
        margin-top: 10px;
    }

    .listing-item__wrapper {
        gap: 5px;
    }


    .listing-item__btn--container .order_btn svg {
        max-height: 20px;
        max-width: max-content;
    }
}

.hit-sales {
    position: absolute;
    left: 0px;
    top: 0px;
    height: auto;
    width: auto;
    max-width: 105px;
    margin: 0;
    padding: 10px 13px;
    border-bottom-right-radius: 5px;
    background-color: #36cc3d;

    color: #fff;

    text-wrap: nowrap;
    font-size: 11px;
    font-weight: 200;
    line-height: 14.3px;
    letter-spacing: 0.02em;
    text-align: left;
    text-transform: uppercase;
}

@media (max-width: 765px) {
    .hit-sales {
        padding: 8px 11px;
        font-size: 9px;
        font-weight: 300;
        line-height: 11.7px;
    }

    .main-menu-item {
        padding: 0.1rem 1rem !important;
    }

    .btn-sm {
        padding: 4px 4px;
        margin-right: 0 !important;
    }
}

.checkbox-color {
    display: flex;
    align-items: center;
}

.checkbox-color__conteiner:not(:last-child) {
    margin-bottom: 5px;
}

.checkbox-color > .form-check-input {
    margin-top: 0px;
    margin-right: 8px;
}

.custom-checkbox.ligh:checked + label::before {
    background-image: none;
}

.custom-checkbox:checked + label::before {
    background-image: none;
}

.custom-checkbox + label {
    border-radius: 25px;
    height: auto;
}

.custom-checkbox + label::before {
    border-radius: 25px;
    width: 1.3em;
    height: 1.3em;
}

.color-filter-name {
    margin-left: 5px;
}

.color-filter-name a.seofilter {
    font-size: 16px;
    text-transform: capitalize;
}

.checkbox-color label {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 25px;
}

.checkbox-color label::before {
    content: '';
    display: inline-block;
    border-radius: 25px;
    width: 1.27em;
    height: 1.27em;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.price2 {
    display: none;
}

.price-item {
    text-wrap: nowrap;
}

.breadcrumbs__control {
    display: none;
}

/*РЕДИЗАЙН ЛИСТИНГА КОНЕЦ*/

/* стили таблицы для страницы Возврат товара*/

.product-warranty_table td img {
    max-width: 100%;
}

.adaptive-display {
    display: block;
}


@media (max-width: 765px) {
    .product-warranty_table td {
        position: relative;
    }

    .product-warranty_table td > img {
        position: absolute;
        top: 0;
    }
}


.modal-content > .modal-body {
    opacity: 100 !important;
}


@media (max-width: 990px) {

    .adaptive-display {
        display: none;
    }
}


.nav-item.phone-header + a > img {
    height: 24px;
}

.owl-carousel .product-item__buy-one-click,
.owl-carousel .product-item__description {
    display: none;
}

@media (max-width: 480px) {
    .mini-cart {
        padding: 0 8px;
    }
	.phone-header {
		font-size: 12px;
	}
	.phone-header svg {
		display: none;
	}
	.whatsapp-icon {
		width: 24px;
		height: 24px;
	}
	.badge-counter__icon {
		width: 24px;
		height: 24px;
	}
    .product-card__product-header__mobile .h1 {
        font-size: 1.5rem;
    }
}
