html {
    height: 100%
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    font-family: var(--body-font, 'Verdana');
    color: var(--body-c);
    background: var(--body-bg, #fff);
    overflow-anchor: none
}

body.scroll-disabled,
body.scroll-disabled2 {
    overflow: hidden
}

h1 {
    font-size: 1.8em;
    margin: 0 0 25px;
    color: var(--h1-c)
}

h2 {
    font-size: 1.6em;
    margin: 0 0 15px;
    color: var(--h2-c)
}

h3 {
    font-size: 1.4em;
    margin: 0 0 15px;
    color: var(--h3-c)
}

h4 {
    font-size: 1.2em;
    margin: 0 0 15px;
    color: var(--h4-c)
}

h5 {
    font-size: 1.1em;
    margin: 0 0 10px;
    color: var(--h5-c)
}

h6 {
    font-size: 1.0em;
    margin: 0 0 10px;
    color: var(--h6-c)
}

a,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
    cursor: pointer;
    outline: none !important
}

button,
select,
.btn,
.btn:active,
.btn:hover,
.btn:focus,
.nav-tabs .li {
    outline: none !important;
    -moz-user-select: none !important;
    -webkit-user-select: none !important
}

button {
    border: none !important
}

iframe {
    max-width: 100%
}

a,
.dropdown-menu li > a i {
    color: var(--a-c)
}

a:hover,
a:focus,
a:active {
    color: var(--a-c-hover)
}

.row {
    margin: 0 -10px
}

.row-flex {
    display: flex;
    flex-wrap: wrap
}

.row-flex:before,
.row-flex:after {
    display: none
}

*[class*='col-'] {
    padding: 0 10px
}

div.heading {
    display: flex;
    align-items: center;
    margin: 0 0 15px;
    font-weight: 700;
    font-size: 1.3em;
    color: var(--heading-c);
    justify-content: center;
    font-size: 30px;
    font-weight: 500;
        font-size: 44px;
    font-weight: 500;
}

.heading__link {
    margin: 0 0 0 20px;
    text-decoration: underline;
    font-size: .7em
}

label {
    font-weight: 400
}

hr {
    margin: 10px 0
}

.checkbox,
.radio {
    margin: 15px 0
}

.radio label {
    display: flex !important;
    padding: 0
}

.radio input {
    position: relative !important;
    margin: 0 10px 0 0 !important
}

.radio input + img {
    margin-right: 10px
}

.input {
    display: flex;
    align-items: center;
    padding: 0 !important;
    cursor: pointer
}

.input input {
    position: relative !important;
    min-width: 14px;
    width: 14px;
    height: 14px;
    margin: 0 10px 0 0 !important;
    padding: 0 !important;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: solid 1px #ccc;
    outline: none !important;
    cursor: pointer
}

.input input:hover {
    border-color: #aaa
}

.input input[type="checkbox"] {
    border-radius: 2px
}

.input input[type="checkbox"]:checked {
    background: var(--input-checked-bg);
    border: none
}

.input input[type="checkbox"]:checked:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 10px;
    height: 5px;
    border: solid 2px #fff;
    border-top: none;
    border-right: none;
    transform: translate(-50%, -80%) rotate(-45deg)
}

.input input[type="radio"] {
    border-radius: 100%
}

.input input[type="radio"]:checked {
    background: var(--input-checked-bg);
    border: none
}

.input input[type="radio"]:checked:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border: solid 3px #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%)
}

.input-group .input-group-addon {
    text-align: center;
    font-size: .95em;
    background: #f5f5f5;
    padding: 0 10px;
    border: solid 1px #e6e6e6;
    border-right: none
}

.input-group .input-group-addon i + span {
    padding: 0 0 0 6px
}

.input-group-btn {
    font-size: .9em
}

.input-group-btn .btn {
    height: 34px
}

form .form-control {
    height: 36px
}

form textarea.form-control {
    height: auto
}

.form-control {
    font-size: .95em;
    border: solid 1px rgba(0 0 0 / .1);
    border-radius: var(--border-radius-1)
}

.form-control.input-warning {
    border-color: var(--input-warning-border-c) !important
}

.form-control[readonly] {
    opacity: .7;
    pointer-events: none
}

.form-control:focus {
    box-shadow: none
}

.form-control:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: all ease .3s
}

.form-control:focus::-moz-placeholder {
    opacity: 0;
    transition: all ease .3s
}

.form-control:focus:-ms-input-placeholder {
    opacity: 0;
    transition: all ease .3s
}

.form-control:focus:-input-placeholder {
    opacity: 0;
    transition: all ease .3s
}

.search-btn-clear {
    display: none;
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    padding: 0;
    text-align: center;
    border: none;
    border-radius: 100%;
    background: rgba(0 0 0 / .03);
    cursor: pointer
}

select.form-control {
    padding-right: 30px;
    background: url(../image/chevron.png) no-repeat #fff;
    background-size: 7px;
    background-position: top 50% right 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none
}

.img-responsive {
    margin: 0 auto
}

.img-thumbnail {
    border: none
}

.highlight {
    font-weight: 500;
    background: #fcf8e3
}

.alert {
    position: relative;
    padding: 12px 30px 12px 15px;
    font-size: .95em;
    border: none;
    border-radius: var(--border-radius-1)
}

.alert a {
    text-decoration: underline
}

.alert i {
    margin: 0 5px 0 0
}

.alert .close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%)
}

.text-danger {
    padding: 4px 0 0;
    line-height: normal;
    font-size: .95em;
    color: var(--input-warning-c, #f00)
}

span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
    display: inline
}

.visible-xxl,
.visible-xl {
    display: none
}

.required .control-label:before {
    content: '* ';
    color: #f00
}

.div-text-empty {
    padding: 20px;
    margin: 0 0 40px;
    background: #f7f7f7;
    border-radius: var(--border-radius-1)
}

.dropdown-menu {
    min-width: 200px;
    max-height: 50vh;
    overflow: auto;
    padding: 10px;
    border-radius: var(--border-radius-1);
    scrollbar-width: thin
}

.dropdown-menu li > a {
    display: flex;
    align-items: center;
    padding: 7px 10px
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
    border-radius: var(--border-radius-1)
}

.dropdown-menu li > a i,
.dropdown-menu li > a img {
    min-width: 15px;
    margin: 0 7px 0 0;
    text-align: center
}

.dropdown-menu::-webkit-scrollbar {
    width: 8px;
    background: #eee;
    border-radius: 4px
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px
}

.buttons {
    overflow: auto;
    margin: 0 0 20px
}

.btn {
    height: 34px;
    padding: 0 12px;
    border: none;
    border-radius: var(--border-radius-1, 4px);
    transition: color linear .2s, background linear .2s
}

a.btn {
    line-height: 32px
}

a.btn-lg {
    line-height: 34px
}

a.btn-xl {
    line-height: 38px
}

.btn .fa + span,
.btn .fas + span,
.btn .far + span {
    margin: 0 0 0 8px
}

.btn i.visible-xs + span {
    margin: 0
}

.btn-xs {
    height: 26px;
    padding: 0 10px;
    line-height: 22px
}

.btn-sm {
    height: 30px;
    line-height: 28px !important
}

.btn-lg {
    height: 36px;
    font-size: 1em;
    font-weight: 500;
    padding: 0 15px
}

.btn-xl {
    height: 38px;
    font-size: 1.1em;
    font-weight: 500;
    padding: 0 20px
}

.btn + .btn-lg,
.btn + .btn-xl {
    margin: 0 0 0 15px
}

.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
    font-size: 1.0em
}

.btn-group > .btn-xs {
    font-size: 9px
}

.btn-group > .btn-sm {
    font-size: 10.2px
}

.btn-group > .btn-lg {
    font-size: 15px
}

.btn.disabled {
    opacity: 1;
    cursor: default
}

.btn.disabled2 {
    display: none !important
}

.btn-default {
    color: var(--btn-default-c);
    background: var(--btn-default-bg)
}

.btn-default:hover,
.btn-default:focus {
    color: var(--btn-default-c-hover);
    background: var(--btn-default-bg-hover)
}

.btn-primary {
    color: var(--btn-primary-c);
    background: var(--btn-primary-bg)
}

.btn-primary:hover,
.btn-primary:focus {
    color: var(--btn-primary-c-hover);
    background: var(--btn-primary-bg-hover)
}

.btn-danger {
    color: var(--btn-danger-c);
    background: var(--btn-danger-bg)
}

.btn-danger:hover,
.btn-danger:focus {
    color: var(--btn-primary-c-hover);
    background: var(--btn-primary-bg-hover)
}

.list-group-item:not(.ocfilter-option) {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: .95em;
    background: none !important;
    border: none
}

.list-group-item:not(:first-child) {
    border-top: solid 1px rgba(0 0 0 / .06)
}

.list-group-item:hover {
    background: rgba(0 0 0 / .03) !important
}

header {
    flex: 0 0 auto;
    background: var(--header-bg, transparent)
}

.top-menu {
    background: var(--top-menu-bg)
}

.top-menu .container {
    display: flex;
    align-items: center;
    height: 34px
}

.top-menu__links {
    flex: 1 1 auto
}

.top-menu__buttons {
    display: flex;
    white-space: nowrap
}

.top-menu__buttons .btn-group {
    margin: 0 0 0 10px
}

.top-menu .btn-group {
    display: flex;
    vertical-align: unset
}

.top-menu__btn {
    font-size: .85em;
    padding: 2px 10px;
    border-radius: var(--border-radius-1);
    color: var(--top-menu-btn-c);
    background: rgba(0 0 0 / .03);
    transition: color linear .15s, background linear .15s
}

.top-menu__btn span {
    margin: 0 0 0 8px
}

.top-menu__btn:hover,
#top .open .btn-group__btn {
    color: var(--top-menu-btn-c-hover);
    background: rgba(0 0 0 / .05)
}

.top-menu__account:not(.status-1),
.top-menu__wishlist:not(.status-1),
.top-menu__compare:not(.status-1) {
    display: none
}

.top-menu__wishlist.status-1 {
    margin: 0 30px 0 0
}

.top-menu__compare.status-1 {
    margin: 0 30px 0 -30px
}

.top-menu__compare-icon {
    transform: rotate(90deg)
}

.top-menu__wishlist-total.uni-badge,
.top-menu__compare-total.uni-badge {
    margin-right: -2px;
    padding: 0 6px;
    font-size: .95em;
    color: inherit
}

.header-block {
    display: flex;
    flex-wrap: nowrap;
    padding: 25px 0;
    transition: padding linear .15s
}

header.fixed .header-block {
    padding: 15px 0
}

.header-block__item {
    display: flex;
    align-items: center
}

.header-block__item-logo {
    order: 0;
    padding: 0 15px 0 0
}

.header-logo {
    max-width: 294px;
        margin: 0 auto;
}

.header-logo span,
.header-logo a {
    font-weight: 500;
    font-size: 1.6em;
    color: var(--header-phones-m-c)
}

.header-block__item-search {
    flex: 1 1 auto;
    order: 1;
    padding: 0 30px 0 5px
}

.header-search {
    width: 100%
}

.header-search__form {
    position: relative;
    display: flex
}

.header-search__category-btn {
    display: flex;
    align-items: center;
    height: 34px;
    font-size: .9em;
    padding: 0 15px;
    color: var(--header-search-cat-btn-c);
    background: var(--header-search-cat-btn-bg);
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important
}

.header-search__category-icon {
    line-height: 34px !important
}

.header-search__category-span {
    display: none;
    overflow: hidden;
    max-width: 80px;
    white-space: nowrap;
    text-overflow: ellipsis
}

.header-search__category-span.v {
    display: inline
}

.header-search__input {
    padding: 0 12px;
    color: var(--header-search-input-c);
    background: var(--header-search-input-bg);
    border: none;
    border-radius: var(--border-radius-1)
}

.header-search__category + .header-search__input {
    border-radius: var(--border-radius-0-1-1-0)
}

.header-search__btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 1px;
    height: calc(100% - 2px);
    width: 40px;
    color: var(--header-search-input-c);
    background: none;
    transform: translate(0, -50%)
}

.header-search__btn:hover {
    background: rgba(0 0 0 / .03);
    border-color: rgba(0 0 0 / .07);
    border-radius: var(--border-radius-0-1-1-0)
}

.header-search .search-btn-clear {
    top: 7px;
    right: 45px
}

.header-search__input::-webkit-input-placeholder {
    color: var(--header-search-input-c)
}

.header-search__input::-moz-placeholder {
    color: var(--header-search-input-c)
}

.header-search__input:-ms-input-placeholder {
    color: var(--header-search-input-c)
}

.header-search__input:-input-placeholder {
    color: var(--header-search-input-c)
}

.header-block__item-telephone {
    order: 2;
    padding: 0 20px;
    gap: 20px;
}

.header-phones {
    position: relative;
    padding-right: 10px
}

.header-phones.has-addit {
    padding-right: 30px
}

.header-phones__main {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    cursor: pointer
}

.header-phones__main:hover {
    color: var(--header-phones-m-c-hover)
}

.header-phones__main-img-i {
    width: 28px;
    text-align: center
}

.header-phones__main.two-line:first-child {
    margin: 0 0 2px
}

.header-phones__main img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 14px
}

.header-phones__main i {
    font-size: .85em
}

.header-phones__main.two-line i {
    font-size: .8em
}

.header-phones__show-phone {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    font-size: .8em;
    color: #fff;
    background: rgba(0 0 0 / .04);
    transform: translateY(-50%);
    border-radius: 100%;
    cursor: pointer
}

.header-phones__show-phone:hover {
    color: #fff;
    background: rgba(0 0 0 / .08)
}

.open .header-phones__show-phone {
    transform: rotate(-180deg) translateY(50%)
}

.header-phones__additionals {
    text-align: right
}

.header-phones__additional {
    color: var(--header-phones-m-c-hover);
    font-size: .9em;
    font-weight: 500;
    cursor: pointer
}

.header-phones__additional.selected {
    color: var(--header-phones-m-c);
    cursor: default
}

.header-phones__additional img {
    width: auto;
    height: auto;
    margin-top: -2px;
    max-height: 16px
}

.header-phones__additional + span {
    margin: 0 0 0 10px
}

.header-phones__a {
    color: var(--header-phones-a-c) !important
}

.header-phones__a:hover {
    background-color: transparent
}

.header-phones__span {
    border-bottom: dotted 1px
}

.header-phones__text {
    padding: 5px 10px;
    color: #888;
    font-size: .95em
}

.header-phones__callback {
    padding: 10px !important;
    text-transform: uppercase;
    text-decoration: underline dotted;
    font-weight: 500 !important;
    color: var(--a-c) !important
}

.header-cart__btn {
    position: relative;
    cursor: pointer
}

.header-cart__icon {
    font-size: 2.6em
}

.header-cart__dropdown {
    display: none
}

.header-cart__wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
    max-height: 70vh;
    border-bottom: solid 1px rgba(0 0 0 / .07);
    scrollbar-width: thin
}

.header-cart__wrapper::-webkit-scrollbar {
    width: 8px;
    background: #eee;
    border-radius: 4px
}

.header-cart__wrapper::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px
}

.header-cart__wrapper .preloader {
    position: fixed;
    border-radius: var(--border-radius-1)
}

.header-cart__item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    min-height: 80px
}

.header-cart__item:first-child {
    padding-top: 0
}

.header-cart__item:not(:first-child) {
    border-top: solid 1px rgba(0 0 0 / .07)
}

.header-cart__item-wrapper {
    display: flex;
    align-items: center;
    width: 100%
}

.header-cart__image {
    flex: 0 0 80px;
    margin: 0 15px 0 0
}

.header-cart__name {
    flex: 1 1 0;
    min-width: 155px;
    font-size: .95em;
    font-weight: 500;
    padding: 0 20px 0 0;
    overflow: hidden;
    word-wrap: break-word
}

.header-cart__stock {
    margin: 10px 0;
    font-weight: 700;
    font-size: .75em;
    color: #f00
}

.header-cart__option-item,
.header-cart__recurring {
    margin: 5px 0 0;
    font-size: .75em
}

.header-cart__quantity {
    padding: 0 25px 0 0
}

.header-cart__quantity .qty-switch {
    margin: 0
}

.header-cart__price {
    flex: 0 1 80px;
    padding: 0 10px 0 0;
    white-space: nowrap;
    font-weight: 500
}

.header-cart__total {
    flex: 0 1 100px;
    white-space: nowrap;
    font-weight: 500
}

.header-cart__price-text,
.header-cart__total-text {
    margin: 0 0 5px;
    color: #888;
    line-height: 1em;
    font-size: .65em
}

.header-cart__remove-btn {
    border: none;
    background: none;
    color: var(--a-c)
}

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

.header-cart__totals {
    margin: 25px 0
}

.header-cart__totals-item:not(:first-child) {
    display: none
}

.header-cart__totals-item:not(:first-child) {
    margin: 5px 0 0
}

.header-cart__totals-item {
    display: flex;
    justify-content: flex-end;
    font-size: 1.2em;
    font-weight: 700
}

.header-cart__totals-text {
    margin: 0 5px;
    white-space: nowrap
}

.header-cart__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto !important;
    width: 180px;
    height: 180px;
    max-width: 100%;
    max-height: 100%;
    text-align: center;
    font-weight: 500;
    color: #888
}

.header-cart__empty-icon {
    margin: 0 0 20px;
    font-size: 6em
}

.header-block__item-account,
.header-block__item-wishlist,
.header-block__item-compare,
.header-block__item-cart {
    order: 3;
    padding: 0 15px;
    flex-direction: column;
    justify-content: center
}

.header-account,
.header-wishlist,
.header-compare {
    position: relative
}

.header-account__icon,
.header-wishlist__icon,
.header-compare__icon {
    font-size: 2em;
    cursor: pointer
}

.header-compare__icon {
    transform: rotate(90deg)
}

.header-block__item-wishlist + .header-block__item-cart .header-cart__icon,
.header-block__item-compare + .header-block__item-cart .header-cart__icon,
.header-block__item-account + .header-block__item-cart .header-cart__icon {
    font-size: 2em
}

.header-cart__total-items,
.header-wishlist__total-items,
.header-compare__total-items {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -4px;
    right: -10px;
    color: var(--header-icon-total-c);
    background: var(--header-icon-total-bg);
    padding: 0 3px;
    min-width: 16px;
    height: 16px;
    font-size: .8em;
    border-radius: 100%
}

.header-account__icon,
.header-wishlist__icon,
.header-compare__icon,
.header-cart__icon {
    color: var(--header-icon-c)
}

.header-block__item-telephone + .header-block__item-cart .header-block__item-caption {
    display: none
}

.menu {
    position: relative;
    z-index: 998;
    min-height: 46px;
    color: var(--menu-main-c);
    background: none;
}

.menu__header {
    display: flex;
    align-items: center;
    height: 46px;
    padding: 0 12px;
    font-weight: 500;
    cursor: pointer
}

.menu__collapse {
    position: absolute;
    z-index: 900;
    width: auto;
    max-width: 100%;
    top: 46px;
    margin: 0;
    padding: 0;
    list-style: none
}

.menu__level-1-li {
    position: relative;

    transition: all linear .15s
}

.menu__level-1-li:last-child {
    border-radius: var(--border-radius-0-0-1-1)
}

.menu__level-1-a {
    display: flex;
    flex: 1 1 100%;
    min-height: 46px;
    height: 100%;
    align-items: center;
    padding: 0 0 0 15px;
    font-weight: 500;
    color: var(--menu-main-level-1-c)
}

.menu__level-1-a:hover {
    color: var(--menu-main-level-1-c-hover)
}

.menu__level-1-a.disabled {
    pointer-events: none;
    cursor: default
}

.menu__level-1-li:after,
.menu__chevron-level-1 {
    color: var(--menu-main-level-1-c)
}

.menu__level-1-icon {
    margin: 0 10px 0 0
}

.menu__level-1-img {
    width: 16px;
    height: 16px;
    margin: 0 7px 0 0
}

.menu__level-2 {
    background: var(--menu-main-level-2-bg)
}

.menu__level-2-ul {
    list-style: none;
    padding: 0
}

.menu__level-2-a {
    display: flex;
    align-items: center;
    min-height: 46px;
    font-weight: 500;
    color: var(--menu-main-level-2-c)
}

.menu__level-2-a:hover {
    color: var(--menu-main-level-2-c-hover)
}

.menu__level-2-a.disabled {
    pointer-events: none;
    cursor: default
}

.menu__chevron-level-2 {
    color: var(--menu-main-level-2-c)
}

.menu__level-3-ul {
    list-style: none;
    padding: 0
}

.menu__level-3-a {
    display: flex;
    align-items: center;
    color: var(--menu-main-level-3-c)
}

.menu__level-3-a:hover {
    color: var(--menu-main-level-3-c-hover)
}

.menu__more {
    color: var(--menu-main-level-2-c)
}

.menu__more-span {
    text-decoration: underline
}

.menu__additional {
    width: 50px;
    max-width: 50px
}

.menu__level-1-a.additional {
    font-size: 1.4em
}

.menu1 .menu__header {
    color: var(--menu-main-header-c);
    background: var(--menu-main-header-bg);
    border-radius: 100px;
}

.menu1 .menu__collapse {
    color: var(--menu-main-c);
    background: var(--menu-main-bg)
}

.menu1 .menu__level-1-li.open {
    background: #fff;
}

.menu1 .menu__level-1-li:first-child {
    border-top: none
}

.menu2 .menu__level-1-li:hover {
  
}

main {
    flex: 1 0 auto;
    padding: 0px 0;
    background: var(--main-bg, transparent)
}

main.blur {
    position: relative
}

.breadcrumb-h1.col-md-offset-3 {
    overflow: hidden;
    padding: 0 0 0 6px
}

.breadcrumb {
    list-style: none;
    margin-bottom: 10px;
    padding: 0 0 10px;
    overflow-x: auto;
    white-space: nowrap;
    background: 0;
    font-size: .95em
}

.breadcrumb li {
    display: inline-block
}

.breadcrumb li + li:before {
    padding: 0 5px;
    color: #ccc;
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    font-size: .75em;
    content: "\f101"
}

.breadcrumb {
    scrollbar-width: thin
}

.breadcrumb::-webkit-scrollbar {
    height: 5px;
    background: #eee;
    border-radius: 5px
}

.breadcrumb::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px
}

.banner {
    margin: 0 0 20px
}

.banner-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    text-align: center;
    font-size: .95em;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 0 15px #000;
    border-top: solid 1px rgba(255 255 255 / .2);
    background: rgba(0 0 0 / .2);
    border-radius: var(--border-radius-0-0-1-1)
}

.menu-module__ul,
.list-group {
    background: var(--menu-module-bg);
    border-radius: var(--border-radius-1);
    overflow: hidden
}

.menu-module__ul {
    list-style: none;
    margin: 0 0 25px;
    padding: 0
}

.menu-module__li:not(:first-child) {
    border-top: solid 1px rgba(0 0 0 / .06)
}

.menu-module__a {
    display: flex;
    justify-content: space-between;
    padding: 13px 15px;
    font-weight: 500
}

.menu-module__children-a {
    display: flex;
    align-items: center;
    padding: 0 15px 7px;
    font-size: .95em;
    color: var(--menu-module-c2) !important
}

.menu-module__children-a:hover {
    color: var(--menu-module-c2-hover) !important
}

.menu-module__children-a:first-child {
    margin-top: -2px
}

.menu-module__children-a:last-child {
    padding-bottom: 15px
}

i.menu-module__chevron {
    display: flex;
    width: 24px;
    height: 20px;
    margin: 0 -5px 0 0;
    justify-content: center;
    align-items: center;
    font-size: .8em;
    color: rgba(0 0 0 /.5);
    border-radius: var(--border-radius-1)
}

.menu-module__chevron:hover,
.menu-module__chevron.open {
    background: rgba(0 0 0 / .05)
}

.menu-module__chevron.open {
    transform: rotate(-180deg)
}

.menu-module__a,
.menu-module__a:focus,
a.list-group-item {
    color: var(--menu-module-c1)
}

.menu-module__a:hover,
a.list-group-item:hover a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus,
a.list-group-item:hover {
    color: var(--menu-module-c1-hover)
}

.uni-badge {
    min-width: 16px;
    margin: 0 0 0 8px;
    padding: 0 8px;
    font-size: .7em;
    background: rgba(0 0 0 / .07);
    border-radius: var(--border-radius-1)
}

.uni-form {
    overflow: hidden;
    padding: 20px;
    background: #f7f7f7;
    border-radius: var(--border-radius-1)
}

.uni-form__heading {
    margin: 0 0 5px;
    color: #666
}

.sticker {
    position: absolute;
    top: -5px;
    left: -5px;
    z-index: 8
}

.sticker__item {
    display: flex;
    width: fit-content;
    height: 23px;
    align-items: center;
    clear: both;
    margin: 0 0 5px;
    padding: 0 10px;
    font-size: .85em;
    opacity: .8;
    white-space: nowrap;
    border-radius: var(--border-radius-1)
}

.sticker__item.reward {
    color: var(--sticker-reward-c);
    background: var(--sticker-reward-b)
}

.sticker__item.special {
    color: var(--sticker-special-c);
    background: var(--sticker-special-b)
}

.sticker__item.bestseller {
    color: var(--sticker-bestseller-c);
    background: var(--sticker-bestseller-b)
}

.sticker__item.new {
    color: var(--sticker-new-c);
    background: var(--sticker-new-b)
}

.sticker__item.sku {
    color: var(--sticker-sku-c);
    background: var(--sticker-sku-b)
}

.sticker__item.upc {
    color: var(--sticker-upc-c);
    background: var(--sticker-upc-b)
}

.sticker__item.ean {
    color: var(--sticker-ean-c);
    background: var(--sticker-ean-b)
}

.sticker__item.jan {
    color: var(--sticker-jan-c);
    background: var(--sticker-jan-b)
}

.sticker__item.isbn {
    color: var(--sticker-isbn-c);
    background: var(--sticker-isbn-b)
}

.sticker__item.mpn {
    color: var(--sticker-mpn-c);
    background: var(--sticker-mpn-b)
}

.option {
    position: relative;
    z-index: 1
}

.option__group {
    margin: 0 0 5px
}

.option__group-name {
    display: block;
    margin: 0 0 10px;
    font-size: .95em;
    font-weight: 500
}

.option__item {
    float: left;
    position: relative;
    z-index: 1;
    margin: 0 15px 15px 0;
    cursor: pointer
}

.option__item.ended {
    cursor: not-allowed
}

.option__item.ended .option__name,
.option__item.ended:hover .option__name {
    opacity: .5;
    filter: grayscale(100%)
}

.option__item.ended .option__img {
    opacity: .5;
    filter: grayscale(100%);
    border: solid 2px rgba(0 0 0 / .25) !important
}

.option__item input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer
}

.option__select {
    margin: 0 0 10px;
    padding: 0 13px;
    height: 26px;
    line-height: 20px;
    color: var(--option-select-c)
}

.option__name {
    display: block;
    white-space: nowrap;
    margin: 0;
    padding: 0 10px;
    font-size: .9em;
    width: auto;
    height: 26px;
    line-height: 26px;
    color: var(--option-name-c);
    background: var(--option-name-bg);
    border-radius: var(--border-radius-1);
    transition: all linear .1s
}

.option__item:not(.ended):hover .option__name {
    color: var(--option-name-c-hover);
    background: var(--option-name-bg-hover)
}

.option__item:not(.ended) input:checked + .option__name {
    color: var(--option-name-c-checked);
    background: var(--option-name-bg-checked)
}

.option__img {
    width: 26px;
    padding: 1px;
    border: solid 2px rgba(0 0 0 / .1);
    border-radius: 3px;
    pointer-events: none;
    transition: all ease-in-out .15s
}

.option__img:hover,
.option input:hover + .option__img,
.option input:checked + .option__img {
    border-color: var(--option-img-hover)
}

.option__popup {
    position: absolute;
    z-index: 9999;
    display: none;
    overflow: hidden;
    max-width: 95%;
    padding: 4px;
    text-align: center;
    font-size: .8em;
    background: #fff;
    border-radius: var(--border-radius-1);
    box-shadow: 0 4px 10px rgba(0 0 0 / .2)
}

.option__popup-img {
    margin: 0 0 5px
}

.option .text-danger {
    position: absolute;
    top: -8px;
    font-weight: 500;
    padding: 7px 10px;
    border-radius: var(--border-radius-1);
    background: #fff;
    box-shadow: 0 0 15px rgba(0 0 0 / .3)
}

.option__popup.module {
    width: var(--option-popup-img-w)
}

.qty-switch {
    display: flex;
    float: left;
    margin: 0 12px 0 0
}

.qty-switch__input {
    width: 36px;
    height: 34px;
    padding: 0;
    text-align: center;
    border-right: none;
    border-radius: var(--border-radius-1-0-0-1)
}

.qty-switch__btn.fa {
    display: block;
    width: 20px;
    height: 17px;
    line-height: 15px;
    text-align: center;
    font-size: .5em;
    color: #666;
    background: #f2f2f2;
    border: solid 1px #e3e3e3;
    cursor: pointer
}

.qty-switch__btn.fa:hover {
    background: #eaeaea
}

.qty-switch__btn.fa-plus {
    border-radius: var(--border-radius-0-1-0-0)
}

.qty-switch__btn.fa-minus {
    border-top: none;
    border-radius: var(--border-radius-0-0-1-0)
}

.qty-switch__cart .qty-switch__input {
    height: 30px !important;
    border-radius: 0;
    border: solid 1px #eee !important
}

.qty-switch__cart .qty-switch__btn {
    width: 28px;
    height: 30px;
    line-height: 30px;
    border: none !important
}

.qty-switch__cart .qty-switch__btn.fa-plus {
    border-radius: var(--border-radius-0-1-1-0)
}

.qty-switch__cart .qty-switch__btn.fa-minus {
    border-radius: var(--border-radius-1-0-0-1)
}

.rating {
    display: flex;
    align-items: center;
    min-height: 20px;
    font-size: .95em
}

.rating .fa-star {
    margin: 0 2px 0 0;
    color: var(--rating-star-c-active)
}

.rating .far.fa-star {
    color: #ccc
}

.rating .fa-comment {
    margin: 0 3px 0 10px;
    color: #999
}

.rating:hover .fas {
    color: var(--rating-star-c-active)
}

.rating .uni-badge {
    line-height: 14px;
    font-weight: 500;
    color: #666
}

.price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 700;
    color: var(--price-c);
    white-space: nowrap
}

.price .price-old {
    font-weight: 500;
    font-size: .7em;
    color: var(--price-old-c);
    text-decoration: line-through
}

.price .price-new {
    margin: 0 15px 0 0;
    color: var(--price-new-c)
}

.price-tax {
    margin: 10px 0 0;
    color: #999;
    font-size: .8em
}

.add_to_cart {
    color: var(--add-to-cart-btn-c);
    background: var(--add-to-cart-btn-bg)
}

.add_to_cart:hover,
.add_to_cart:focus,
.add_to_cart:active {
    color: var(--add-to-cart-btn-c-hover);
    background: var(--add-to-cart-btn-bg-hover)
}

.add_to_cart.in_cart {
    color: var(--add-to-cart-btn-c-incart);
    background: var(--add-to-cart-btn-bg-incart)
}

.add_to_cart.in_cart:hover,
.add_to_cart.in_cart:focus,
.add_to_cart.in_cart:active {
    color: var(--add-to-cart-btn-c-incart-hover);
    background: var(--add-to-cart-btn-bg-incart-hover)
}

.add_to_cart.qty-0 {
    color: var(--add-to-cart-btn-c-disabled);
    background: var(--add-to-cart-btn-bg-disabled)
}

.add_to_cart.qty-0:hover,
.add_to_cart.qty-0:focus,
.add_to_cart.qty-0:active {
    color: var(--add-to-cart-btn-c-disabled-hover);
    background: var(--add-to-cart-btn-bg-disabled-hover)
}

.add_to_cart.disabled {
    color: var(--add-to-cart-btn-c-disabled);
    background: var(--add-to-cart-btn-bg-disabled)
}

.add_to_cart.disabled:hover,
.add_to_cart.disabled:focus,
.add_to_cart.disabled:active {
    color: var(--add-to-cart-btn-c-disabled-hover);
    background: var(--add-to-cart-btn-bg-disabled-hover)
}

.btn.quick-order {
    color: var(--quick-order-btn-c);
    background: var(--quick-order-btn-bg)
}

.btn.quick-order:hover,
.btn.quick-order:focus,
.btn.quick-order:active {
    color: var(--quick-order-btn-c-hover);
    background: var(--quick-order-btn-bg-hover)
}

button.compare,
button.wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    width: 30px;
    height: 30px;
    font-size: .8em;
    border-radius: 50%;
    transition: all linear .15s
}

button.compare .fas {
    transform: rotate(90deg)
}

.wishlist,
.wishlist a {
    color: var(--wishlist-btn-c);
    background: var(--wishlist-btn-bg)
}

.wishlist:hover,
.wishlist a:hover,
.wishlist.active {
    color: var(--wishlist-btn-c-hover);
    background: var(--wishlist-btn-bg-hover)
}

.compare,
.compare a {
    color: var(--compare-btn-c);
    background: var(--compare-btn-bg)
}

.compare:hover,
.compare a:hover,
.compare.active {
    color: var(--compare-btn-c-hover);
    background: var(--compare-btn-bg-hover)
}

.uni-href {
    cursor: pointer
}

.uni-item {
    width: 100%;
    background: #fff;
    padding: 15px;
    border: solid 1px rgba(0 0 0 / .06);
    background-clip: padding-box;
    border-radius: var(--border-radius-1);
    transition: box-shadow linear .1s
}

.uni-item-bg {
    align-items: center !important;
    background: #f7f7f7;
    padding: 15px;
    border-radius: var(--border-radius-1);
    transition: all ease-in-out .15s
}

.uni-item-bg:hover {
    background: #eee
}

.uni-module {
    margin-bottom: 15px
}

.uni-module__wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    opacity: 0
}

.uni-module__wrapper.load-complete {
    opacity: 1;
    transition: none !important
}

.uni-module .owl-stage {
    display: flex
}

.uni-module__item,
.uni-module .owl-item {
    display: flex;
    float: left;
    padding: 0 10px
}

.uni-module .owl-nav {
    left: -5px !important;
    right: -5px !important;
    margin: -7px 0 0
}

.uni-module .owl-dots {
    margin: -10px 0 25px !important
}

.product-thumb {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    margin: 0 0 20px
}

.product-thumb.hover {
    position: absolute;
    z-index: 99
}

.product-thumb__image {
    position: relative;
    z-index: 1;
    margin: 0 0 15px;
    padding: 0 0 10px
}

.product-thumb__image:hover .uni-timer {
    visibility: hidden;
    opacity: 0
}

.product-thumb__name {
    margin: 0 0 auto;
    padding: 0 0 10px;
    font-weight: 500;
    color: var(--prod-thumb-name);
    word-wrap: break-word;
    font-size: 18px;
}

.product-thumb__name:hover {
    color: var(--prod-thumb-name-hover)
}

.product-thumb__caption {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    overflow: hidden
}

.product-thumb__model {
    margin: 0 0 15px;
    font-size: .85em
}

.product-thumb__model:before {
    content: attr(data-text);
    margin: 0 5px 0 0
}

.product-thumb__description {
    flex: 0 1 100%;
    margin: 0 0 10px;
    font-size: .95em;
    word-wrap: break-word
}

.product-thumb__description.description {
    color: #666
}

.product-thumb__attribute {
    flex-basis: content;
    color: #000
}

.product-thumb__attribute-value:not(:last-child):after {
    content: '/';
    padding: 0 2px 0 5px;
    color: #ccc
}

.product-thumb__attribute-value {
    color: var(--body-c)
}

.product-thumb__option {
    margin: 0
}

.product-thumb__option .option__group {
    margin: 0;
    clear: both
}

.product-thumb__option .option__group:after {
    display: block;
    clear: both;
    content: '';
    height: 5px
}

.product-thumb__rating {
    margin: 0 0 15px;
    color: var(--a-c)
}

.product-thumb__rating-text {
    margin: 0 0 0 5px
}

.product-thumb__quick-order {
    margin: 0 0 0 15px;
    opacity: var(--prod-thumb-quick-order-opacity, 0)
}

.product-thumb:hover .product-thumb__quick-order {
    opacity: 1
}

.product-thumb__wishlist,
.product-thumb__compare {
    top: 10px;
    right: 10px
}

.product-thumb__wishlist:not(.hidden) + .product-thumb__compare {
    top: 48px
}

.product-thumb__price {
    font-size: 1.3em
}

.product-thumb__cart {
    display: flex;
    margin: 20px 0 0
}

.product-thumb__cart.disabled2 {
    min-height: 34px
}

.product-thumb__addit {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center
}

.product-thumb__addit-item {
    display: flex;
    flex: 1 1 auto;
    margin: 0 5px;
    border-bottom: solid 1px #ddd
}

.product-thumb__addit-item.active {
    border-color: var(--a-c);
    opacity: .8
}

.product-thumb__addit-item:first-child {
    margin-left: 0
}

.product-thumb__addit-item:last-child {
    margin-right: 0
}

.sorts-block {
    display: flex;
    align-items: center;
    margin: 0 0 20px
}

.sorts-block__limit {
    width: auto;
    margin: 0 0 0 20px
}

.sorts-block__wrapper {
    display: flex;
    width: 100%;
    align-items: center
}

.sorts-block__sorts {
    flex: 1 1 auto
}

.sorts-block__span {
    margin: 0 20px 0 0;
    font-size: .95em;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    white-space: nowrap
}

.sorts-block__span.selected {
    font-weight: 700;
    color: var(--a-c-hover)
}

.sorts-block__span.selected:after {
    margin: 0 0 0 5px;
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    font-size: .85em
}

.sorts-block__span.selected.up:after {
    content: "\f160"
}

.sorts-block__span.selected.down:after {
    content: "\f884"
}

.sorts-block__btn-group {
    display: flex;
    white-space: nowrap;
    margin: 0 0 0 20px
}

.sorts-block__btn {
    padding: 0 12px;
    font-size: .85em !important
}

.sorts-block__btn.selected:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    content: '';
    background: rgba(0 0 0 / .06);
    border-radius: inherit
}

.product-category-list {
    margin: 0 0 30px;
    padding: 20px 20px 10px;
    background: #f7f7f7;
    border-radius: var(--border-radius-1)
}

.product-category-list ul {
    margin: 0
}

.product-category-list__item {
    position: relative;
    display: inline-block;
    margin: 0 20px 8px 0;
    line-height: 2em;
    font-weight: 500;
    font-size: .95em;
    white-space: nowrap
}

.product-category-list__item.selected {
    color: #666
}

.product-category-list__item a {
    position: relative;
    z-index: 1
}

.product-category-list__item:before {
    position: absolute;
    content: '';
    width: calc(100% + 20px);
    height: 100%;
    transform: translateX(-10px);
    border-radius: var(--border-radius-1);
    transition: background linear .1s
}

.product-category-list__item:hover:before,
.product-category-list__item.selected:before {
    background: rgba(0 0 0 / .05)
}

.product-category-list__reset {
    position: relative;
    top: 2px;
    margin: 0 0 0 5px;
    line-height: normal;
    font-size: 1.2em
}

.grid-view {
    display: flex
}

.list-view .product-thumb {
    flex-direction: row
}

.list-view .product-thumb__image {
    flex: 1 0 auto;
    margin: 0
}

.list-view .product-thumb__addit-dot {
    transform: translate(0, -15px)
}

.list-view .product-thumb__caption {
    padding: 0 25px
}

.list-view .product-thumb__name {
    margin: 0
}

.list-view .product-thumb__description {
    display: block !important
}

.list-view .product-thumb__option {
    display: block !important
}

.list-view .option__select {
    max-width: 200px
}

.list-view .product-thumb__price {
    margin-top: auto
}

.list-view .product-thumb__cart {
    margin-right: -20px
}

.compact-view {
    flex: 1 1 100%
}

.compact-view .product-thumb {
    flex-direction: row;
    align-items: center;
    flex: 1 1 100%
}

.compact-view .product-thumb__image {
    min-width: 80px;
    width: 80px;
    margin: 0;
    padding: 0
}

.compact-view .product-thumb__caption {
    flex-direction: row;
    width: 100%;
    align-items: center;
    padding: 0
}

.compact-view .product-thumb__name {
    flex: 1 1 100%;
    margin: 0;
    padding: 0 10px 0 20px
}

.compact-view .product-thumb__option {
    display: block !important;
    min-height: 75px;
    flex: 0 0 20%;
    margin: 0;
    padding: 0 10px
}

.compact-view .qty-indicator {
    display: none;
    min-height: 75px;
    margin: 0;
    padding: 0 10px;
    justify-content: center
}

.compact-view .qty-indicator:before {
    display: none
}

.compact-view .product-thumb__price {
    justify-content: center;
    min-width: 115px;
    padding: 0 10px;
    text-align: center;
    font-size: 1.2em
}

.compact-view .product-thumb__price .price-new {
    margin: 0
}

.compact-view .product-thumb__cart {
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    white-space: nowrap
}

.compact-view .product-thumb__add-to-cart span {
    margin: 0
}

.compact-view .product-thumb__quick-order {
    opacity: 1
}

.compact-view .product-thumb__addit,
.compact-view .sticker,
.compact-view .product-thumb__model,
.compact-view .uni-timer,
.compact-view .product-thumb__description,
.compact-view .product-thumb__rating,
.compact-view .product-thumb__wishlist,
.compact-view .product-thumb__compare,
.compact-view .product-thumb__add-to-cart i,
.compact-view .product-thumb__quick-order {
    display: none
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0 0
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 32px;
    margin: 0 0 15px;
    border-radius: var(--border-radius-1);
    font-weight: 700
}

.pagination li + li {
    margin: 0 0 0 10px
}

.pagination li a,
.pagination li a:hover,
.pagination li a:visited {
    color: var(--pagination-c);
    background: var(--pagination-bg)
}

.pagination li.active span,
.pagination li.active span:hover,
.pagination li.active span:focus {
    color: var(--pagination-c-active);
    background: var(--pagination-bg-active)
}

.pagination-text {
    margin: 0 0 40px;
    font-size: .95em;
    color: #888;
    text-align: center
}

.article_description {
    margin: 0 0 40px;
    line-height: 1.7em;
    word-wrap: break-word
}

.article_description a {
    text-decoration: underline
}

.article_description img {
    width: auto !important;
    max-width: 100%
}

.html-module {
    margin: 0 0 30px
}

.home-page .html-module {
    padding: 20px 20px 10px;
    background: rgba(0 0 0 / .03);
    border-radius: var(--border-radius-1)
}

.home-page .html-module h1 {
    font-size: 1.6em;
    margin: 0 0 15px
}

.home-page .html-module p {
    line-height: 1.7em
}

.category-info {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 0 40px;
    padding: 15px;
    background: #f7f7f7;
    border-radius: var(--border-radius-1);
    line-height: 1.5em;
    font-size: .95em
}

.category-info_description {
    height: 100%
}

.category-info__image {
    float: left;
    max-width: 150px;
    margin: 0 20px 5px 0
}

.category-info img {
    max-width: 100%;
    border-radius: var(--border-radius-1)
}

.category-info-bottom .category-info {
    display: block !important
}

.category-info .desc-collapse {
    background: inherit
}

.category-info .desc-collapse:before {
    background: linear-gradient(0deg, #f7f7f7 0%, transparent 100%)
}

.desc-collapse {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    text-align: center;
    font-weight: 500;
    background: #fff
}

.desc-collapse:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(0deg, #fff 0%, transparent 100%)
}

.category-list {
    margin-bottom: 25px
}

.category-list > div {
    margin: 0 0 20px
}

.category-list__item {
    display: flex;
    height: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 0 !important;
    text-align: center;
    font-size: .95em;
    font-weight: 500
}

.category-list__img {
    border-radius: var(--border-radius-1-1-0-0)
}

.category-list__name {
    width: 100%;
    padding: 15px;
    word-wrap: break-word
}

.manufacturer-page-list__name {
    margin: 0 10px 20px;
    font-weight: 700
}

.nav-tabs {
    display: flex;
    flex-wrap: var(--nav-tabs-flex-wrap, nowrap);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    border-radius: var(--border-radius-1);
    margin: 0 0 20px;
     background: none;
    white-space: nowrap
}

.nav-tabs li {
    display: flex;
    align-items: center;
    height: 48px;
    margin: 0;
    padding: 0 15px
}

.nav-tabs li a {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--nav-tabs-c)
}

.nav-tabs li.active a,
.nav-tabs li.active a:focus,
.nav-tabs li.active a:hover {
    color: var(--nav-tabs-c-active)
}

.nav-tabs li a:after {
    position: absolute;
    left: 0;
    width: 0;
    bottom: -2px;
    content: '';
    transition: all ease-in-out .15s;
    border-bottom: solid 2px !important
}

.nav-tabs li.active a:after,
.nav-tabs li a:hover:after {
    width: 100%
}

.carousel {
    margin: 0 0 25px;
    border: solid 1px rgba(0 0 0 / .08);
    background: #fff;
    border-radius: var(--border-radius-1)
}

.footer {
    flex: 0 1 auto;
    padding: 25px 0 0;
    color: var(--footer-c);
    background: var(--footer-bg)
}

.footer.blur {
    position: relative;
    z-index: 1
}

.footer__column-heading {
    display: flex;
    align-items: center;
    margin: 0 0 15px;
    font-weight: 700;
    font-size: 1.2em;
    color: var(--footer-heading-c)
}

.footer__column-icon {
    margin: 0 5px 0 -5px;
    font-size: .8em
}

.footer__column-ul {
    margin: 0
}

.footer__column-li {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    font-size: .95em;
    font-weight: 500
}

.footer__column-li:last-child {
    margin: 0 0 20px
}

.footer a,
.footer__column-a,
.footer__column-a:hover,
.footer__column-a:active,
.footer__column-a:visited {
    color: var(--footer-c) !important
}

.footer__column-a:hover {
    text-decoration: underline
}

.footer__contacts-icon {
    min-width: 15px;
    margin: 0 5px 0 0
}

.footer__contacts-icon.fa-phone-alt {
    font-size: .8em
}

.footer__contacts-img {
    width: auto;
    height: auto;
    max-height: 16px;
    margin: 0 5px 0 0
}

.footer__text {
    padding: 20px 0;
    font-size: .95em;
    border-top: solid 1px rgba(0 0 0 / .08)
}

.footer__socials-payments {
    overflow: hidden;
    padding: 15px 0;
    background: rgba(0 0 0 / .05)
}

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

.footer__socials-icon {
    width: 30px;
    height: 30px;
    line-height: 30px !important;
    text-align: center;
    font-size: 1.15em;
    color: #fff;
    border-radius: var(--border-radius-1);
    opacity: .8;
    transition: all ease-in-out .15s;
    cursor: pointer
}

.footer__socials-icon:hover {
    opacity: 1
}

.footer__socials-icon + .footer__socials-icon {
    margin: 0 0 0 15px
}

.footer__socials-icon.fa-odnoklassniki {
    background: #EF8117
}

.footer__socials-icon.fa-vk {
    background: #597BA0
}

.footer__socials-icon.fa-facebook {
    background: #3A5795
}

.footer__socials-icon.fa-twitter {
    background: #59ADEA
}

.footer__socials-icon.fa-instagram {
    background: #125688
}

.footer__socials-icon.fa-youtube {
    background: #E62117
}

.footer__socials-icon.fa-viber {
    background: #563DBD
}

.footer__socials-icon.fa-whatsapp {
    background: #00E676
}

.footer__socials-icon.fa-tiktok {
    background: #fe2c55
}

.footer__socials-icon.fa-telegram-plane {
    background: #0088cc
}

.footer__payments {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    overflow: hidden;
    margin: 0 0 -10px 0
}

.footer__payments-icon {
    overflow: hidden;
    margin: 0 0 10px 10px;
    width: 50px;
    height: 30px;
    border-radius: var(--border-radius-1)
}

.footer__payments-icon:not(img) {
    background-image: url('../image/payment_icon_sprite.png')
}

.footer__payments-icon.visa {
    background-position: -150px -120px
}

.footer__payments-icon.master {
    background-position: -100px -30px
}

.footer__payments-icon.yandex {
    background-position: -150px -150px
}

.footer__payments-icon.webmoney {
    background-position: -100px -150px
}

.footer__payments-icon.qiwi {
    background-position: 0 0px
}

.footer__payments-icon.sberbank {
    background-position: -150px -30px
}

.footer__payments-icon.cyberplat {
    background-position: 0 -30px
}

.footer__payments-icon.alfa {
    background-position: -50px 0px
}

.footer__payments-icon.paypal {
    background-position: 0 -90px
}

.footer__payments-icon.eport {
    background-position: 0 -60px
}

.footer__payments-icon.mailofrussia {
    background-position: -100px 0px
}

.footer__payments-icon.rapida {
    background-position: -100px -120px
}

.footer__payments-icon.contact {
    background-position: 0 -120px
}

.footer__payments-icon.vtb24 {
    background-position: 0 -150px
}

.footer__payments-icon.sms {
    background-position: -150px -90px
}

.footer__payments-icon.skrill {
    background-position: -150px -60px
}

.footer__payments-icon.rbk {
    background-position: -150px 0px
}

.footer__payments-icon.western-union {
    background-position: -200px 0px
}

.footer__payments-icon.mir {
    background-position: -199px -30px
}

.fly-block {
    position: fixed;
    z-index: 1020;
    right: 20px;
    bottom: 20px
}

.fly-block__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0 0 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 100%;
    transition: all ease-in-out .3s
}

.fly-block__back {
    color: #666;
    background: #e2e2e2
}

.fly-block__scrollup {
    margin: 0;
    color: #fff;
    background: rgba(0 0 0 / .3);
    transform: scale(0)
}

.fly-block__scrollup.visible {
    transform: scale(1)
}

.fly-block__scrollup:hover {
    background: rgba(0 0 0 / .5)
}

.fly-block__scrollup:not(.visible) {
    margin: -66px 0 0
}

.simplecheckout .radio label,
.simpleregister .radio label {
    display: flex
}

.simplecheckout-cart .quantity .input-group .btn {
    height: 30px
}

.animated.fade:not(.disabled) {
    display: block !important;
    padding: 0 !important
}

.modal {
    z-index: 1070;
    text-align: center
}

.modal-content {
    border: none;
    border-radius: var(--border-radius-1)
}

.modal-header {
    display: flex;
    align-items: center;
    position: relative;
    background: #f7f7f7;
    border-bottom: none;
    border-radius: var(--border-radius-1-1-0-0)
}

.modal-title {
    margin-right: 45px
}

.modal-header .close {
    position: absolute;
    right: 0;
    width: 42px;
    height: 100%;
    z-index: 99;
    color: #444;
    background: rgba(0 0 0 / .05);
    opacity: 1
}

.modal-dialog {
    max-width: 95%;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    -o-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important
}

.modal-dialog.modal-sm {
    width: 400px
}

.modal-dialog.modal-fit {
    width: fit-content
}

.modal-body {
    background: #fff;
    border-radius: var(--border-radius-0-0-1-1)
}

.modal-backdrop.in {
    background: var(--backdrop-bg-dark);
    opacity: 1
}

#modal-cart .modal-dialog {
    width: 740px
}

#modal-cart img {
    padding: 5px;
    background: #fff;
    border-radius: 4px
}

.modal-body .uni-wrapper {
    padding: 0
}

.owl-carousel {
    position: relative;
    display: none
}

.owl-carousel .owl-stage {
    touch-action: manipulation
}

.owl-carousel .owl-stage-outer {
    overflow: hidden
}

.owl-carousel .owl-item {
    position: relative;
    z-index: 1;
    min-height: 1px;
    float: left;
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.owl-carousel .owl-nav:not(.disabled) {
    opacity: 1
}

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

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

.owl-carousel.owl-loaded {
    display: block
}

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

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

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

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

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

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

.no-js .owl-carousel {
    display: block
}

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url('../image/owl.video.play.png') no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

.owl-carousel .owl-nav {
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 10px;
    right: 10px;
    opacity: 0
}

.owl-carousel .owl-next,
.owl-carousel .owl-prev {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: solid 2px rgba(0 0 0 / .08) !important;
    transform: translate(0, -50%)
}

.owl-carousel .owl-next:hover,
.owl-carousel .owl-prev:hover {
    border-color: rgba(0 0 0 / .2) !important
}

.owl-carousel .owl-nav .disabled {
    cursor: default;
    opacity: 0
}

.owl-carousel .owl-nav .owl-next {
    right: 0
}

.owl-carousel .owl-nav button {
    color: var(--carousel-nav-btn-c);
    background: var(--carousel-nav-btn-bg)
}

.owl-carousel .owl-dots {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    text-align: center
}

.owl-carousel .owl-dots .owl-dot {
    display: block;
    width: 20px;
    height: 4px;
    background: var(--carousel-dot-bg);
    border-radius: var(--border-radius-1);
    transition: all linear .2s;
    padding: 0;
    border: none
}

.owl-carousel .owl-dots .owl-dot + .owl-dot {
    margin: 0 0 0 10px
}

.owl-carousel .owl-dots .owl-dot.active {
    background: var(--carousel-dot-bg-active);
    cursor: default
}

.uni-timer {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 11px;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: opacity ease-in-out .15s
}

.uni-timer__group {
    text-align: center;
    min-width: 45px;
    padding: 2px 6px;
    background: var(--timer-bg);
    border-radius: var(--border-radius-1)
}

.uni-timer__group:not(:last-child) {
    margin: 0 5px 0 0
}

.uni-timer__digit {
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--timer-digit-c)
}

.uni-timer__text {
    margin: -3px 0 0;
    color: var(--timer-text-c);
    font-size: .65em
}

.uni-alert {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 1080;
    top: 50px;
    right: 15px;
    width: 320px;
    max-width: 95%;
    font-size: .95em;
    border: 0;
    padding: 15px 25px 15px 15px;
    border-radius: var(--border-radius-1);
    box-shadow: 3px 3px 10px rgba(0 0 0 / .2);
    align-items: center
}

.uni-alert__icon {
    margin: 0 13px 0 0;
    font-size: 2.5em
}

.uni-alert__icon.fa-times {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 8px 10px;
    font-size: .9em;
    opacity: 1;
    cursor: pointer
}

.uni-alert a {
    text-decoration: underline
}

.alert-success,
.alert-success a {
    color: var(--alert-success-c);
    background: var(--alert-success-bg)
}

.alert-warning,
.alert-warning a {
    color: var(--alert-warning-c);
    background: var(--alert-warning-bg)
}

.alert-danger,
.alert-danger a {
    color: var(--alert-danger-c);
    background: var(--alert-danger-bg)
}

.swiper-viewport {
    border-radius: var(--border-radius-1)
}

.swiper-viewport .swiper-button-prev:before,
.swiper-viewport .swiper-button-next:before,
.dream-filter .rdf- s .rdf-group .checkbox > label > span:after {
    font-family: "Font Awesome\ 5 Free" !important;
    font-weight: 900
}

.swiper-viewport .swiper-pager .swiper-button-next:before,
.swiper-viewport .swiper-pager .swiper-button-prev:before {
    color: var(--swiper-pagination-bg-active)
}

.swiper-viewport .swiper-pagination .swiper-pagination-bullet {
    background: var(--swiper-pagination-bg)
}

.swiper-viewport .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--swiper-pagination-bg-active)
}

.tooltip-inner {
    max-width: 220px
}

.tooltip-inner {
    padding: 3px -5px;
    color: var(--tooltip-c);
    background: var(--tooltip-bg);
    border-radius: var(--border-radius-1)
}

.tooltip.top .tooltip-arrow {
    border-top-color: var(--tooltip-bg);
    border-radius: var(--border-radius:1-0-0-0)
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: var(--tooltip-bg)
}

.tooltip.left .tooltip-arrow {
    border-left-color: var(--tooltip-bg)
}

.tooltip.right .tooltip-arrow {
    border-right-color: var(--tooltip-bg)
}

.preloader {
    position: absolute;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: var(--backdrop-bg-light)
}

.preloader:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 36px;
    height: 36px;
    margin: -18px auto auto -18px;
    content: '';
    border: solid 3px;
    border-color: var(--preloader-border-c);
    border-radius: 100%;
    animation: spin 1s infinite linear
}

.captcha {
    overflow: hidden;
    margin-bottom: 15px !important
}

.captcha__input {
    float: left;
    width: 200px;
    max-width: 45%
}

.captcha__img {
    height: 33px;
    padding-left: 15px
}

.pass-wrap {
    position: relative;
    height: 100%
}

.subscribe .pass-wrap {
    top: -100%
}

.pass-wrap .far {
    position: absolute;
    top: 50%;
    right: 10px;
    color: #888;
    transform: translateY(-50%);
    cursor: pointer
}

.error-not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 370px;
    margin: 0 0 40px;
    font-weight: 500;
    color: #888
}

.error-not-found__404 {
    font-size: 9em
}

.error-not-found__404-text {
    padding: 0 25px
}

@media (-webkit-min-device-pixel-ratio:0) and (hover:none) and (pointer:coarse) {

    select:focus,
    textarea:focus,
    input:focus {
        font-size: 16px
    }
}

@media (max-width:1199px) {
    .top-menu__account.switch-on-tablet {
        display: block
    }

    .header-block__item-account.switch-on-tablet {
        display: none
    }

    .header-block__item-telephone {
        padding: 0 15px
    }

    .header-block__item-caption {
        display: none
    }

    .menu1 .menu__banner {
        display: none
    }

    .uni-module .product-thumb__description,
    .grid-view .product-thumb__description {
        display: none
    }

    .uni-module .product-thumb__option,
    .grid-view .product-thumb__option,
    .compact-view .product-thumb__option {
        display: none !important
    }

    .product-thumb .qty-switch__input {
        width: 28px
    }

    .product-thumb__add-to-cart i {
        display: none
    }

    .product-thumb__add-to-cart span {
        margin: 0 !important
    }
}

@media (max-width:991px) {
    header {
        padding-bottom: var(--header-padding-bottom, 0)
    }

    .top-menu__btn-text {
        display: none
    }

    .header-block__item-logo {
        flex: 1 1 auto
    }

    .header-logo {
        max-width: 195px
    }

    #search2 {
        padding: 0 10px
    }

    #search2 .header-search__category + .header-search__input {
        flex: 1 1 auto
    }

    .menu-wrapper {
        position: fixed;
        z-index: 1070;
        top: 0;
        left: -100%;
        margin: 0;
        padding: 0;
        overflow-y: auto;
        width: 100%;
        height: 100%;
        background: var(--menu-main-bg);
        transition: all ease-in-out .15s
    }

    .menu-wrapper.show {
        left: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, .2)
    }

    .menu__header {
        height: 54px;
        background: rgba(0, 0, 0, .06)
    }

    .menu__collapse {
        top: 54px
    }

    .menu__header-title {
        font-size: 1.25em;
        flex: 1 1 auto
    }

    .menu__header-icon.fa-times {
        display: flex !important;
        width: 44px;
        height: 100%;
        margin: 0 -12px 0 0;
        align-items: center;
        justify-content: center;
        background: rgba(0 0 0 / .05);
        padding-left: 25px;
    }

    .menu-open {
        float: left;
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin: 0 20px 0 10px;
        font-weight: 500;
        color: var(--menu-main-header-c);
        background: var(--menu-main-header-bg)
    }

    .menu__collapse {
        display: block;
        height: auto !important;
        font-size: 1em
    }

    header .menu,
    header .menu__level-1-li {
        border-radius: 0 !important
    }

    .menu__level-1-a {
        padding-right: 40px
    }

    .menu__level-2 {
        overflow: hidden
    }

    .menu__level-2:not(.in) {
        height: 0
    }

    .menu__level-2-a {
        padding: 0 32px 0 15px;
        border-top: solid 1px rgba(0 0 0 / .1)
    }

    .menu__level-3 {
        overflow: hidden;
        padding: 0;
        margin: 0
    }

    .menu__level-3:not(.in) {
        height: 0
    }

    .menu__level-3-li {
        border-top: solid 1px rgba(0 0 0 / .05)
    }

    .menu__level-3-a {
        padding: 0 32px 0 25px
    }

    .menu__level-1-a,
    .menu__level-2-a,
    .menu__level-3-a {
        min-height: 50px
    }

    .menu__chevron {
        position: absolute;
        top: 10px;
        right: 6px;
        z-index: 9;
        width: 30px;
        height: 30px;
        line-height: 30px !important;
        text-align: center;
        font-size: .85em;
        cursor: pointer;
        border-radius: var(--border-radius-1)
    }

    .menu__chevron.open {
        background: rgba(0 0 0 / .05);
        transform: rotateX(180deg)
    }

    .menu__banner,
    .menu__additional,
    .menu__level-2-img {
        display: none
    }

    .list-view .product-thumb__image {
        width: 42%;
        min-width: 35%
    }

    .compact-view .product-thumb__image {
        display: none
    }

    .compact-view .qty-switch {
        display: none
    }

    .compact-view .product-thumb__name {
        padding-left: 0
    }

    .product-thumb__quick-order,
    .owl-carousel .owl-nav {
        opacity: 1
    }

    .footer__payments {
        justify-content: flex-start;
        margin: 0 0 0 -10px
    }

    .error-not-found {
        width: 320px;
        height: 320px
    }

    /* .menu__level-1-li:not(.new-items) + .menu__level-1-li.new-items{border-top:solid 20px rgba(0 0 0 / .03)} */
}

@media (max-width:767px) {
    h1 {
        margin: 0 0 20px;
        font-size: 1.5em;
        line-height: 1.3
    }

    div.heading {
        font-size: 1.2em
    }

    .header-block {
        margin: 0;
        padding: 22px 0
    }

    .header-logo {
        max-width: 175px
    }

    .header-phones__main {
        font-size: 1.1em
    }

    .header-phones__show-phone {
        font-size: .65em
    }

    .header-phones__additionals {
        display: none
    }

    .header-phones__ul {
        left: auto;
        right: 0
    }

    .header-cart__icon {
        font-size: 2.1em
    }

    .header-cart__totals-item,
    .header-cart__buttons {
        justify-content: center
    }

    .header-cart__buttons .btn-default {
        display: none
    }

    .breadcrumb li:not(:first-child):not(:last-child) {
        display: var(--breadcrumb-mobile-display, inline)
    }

    .uni-module .owl-nav > div:not(.disabled) {
        opacity: .8
    }

    .grid-view {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%
    }

    .list-view {
        flex: 0 1 100%
    }

    .nav-tabs li {
        padding-right: 5px
    }

    .nav-tabs li a {
        font-size: 1.1em
    }

    .footer__column {
        width: 100%
    }

    .footer__column-heading {
        position: relative
    }

    .footer__column-heading .fa-chevron-down {
        position: absolute;
        right: 0;
        font-size: .7em
    }

    .footer__column-heading.open .fa-chevron-down {
        transform: rotate(180deg)
    }

    .footer__column:not(:first-child) {
        padding-top: 15px;
        border-top: solid 1px rgba(0 0 0 / .07)
    }

    .fly-block__item {
        width: 40px;
        height: 40px
    }

    .fly-block__item.visible-xs {
        display: flex !important
    }
}

@media (max-width:575px) {
    .top-links.btn-group {
        display: var(--top-menu-links-display, flex)
    }

    .top-menu__wishlist {
        display: var(--top-menu-wishlist-display, block) !important
    }

    .top-menu__compare {
        display: var(--top-menu-compare-display, block) !important
    }

    .top-menu__account {
        display: var(--top-menu-account-display, block) !important
    }

    .header-logo {
        max-width: 155px
    }

    .header-block__item-telephone {
        padding: var(--header-telephone-padding, 0 15px 0 5px)
    }

    .top-menu__wishlist.status-1,
    .top-menu__compare.status-1 {
        margin: 0
    }

    .top-menu__wishlist.status-2,
    .top-menu__compare.status-2,
    .top-menu__account.status-2 {
        display: block
    }

    .header-block__item-wishlist,
    .header-block__item-compare,
    .header-block__item-account {
        display: none
    }

    .header-block__item-cart {
        display: var(--header-cart-display, flex);
        min-width: 31px;
        padding: 0 0 0 5px
    }

    .header-cart__total-items {
        right: -6px;
        bottom: -4px;
        padding: 0 3px;
        min-width: 14px;
        height: 14px;
        font-size: .6em
    }

    .header-cart__item-wrapper {
        flex-wrap: wrap
    }

    .header-cart__name {
        flex: 1 1 100%;
        margin: 0 0 15px
    }

    .header-cart__quantity {
        padding: 0 15px 0 0
    }

    .header-cart__quantity .qty-switch__input {
        height: 28px !important
    }

    .header-cart__quantity .qty-switch__btn {
        width: 25px;
        height: 28px;
        line-height: 28px
    }

    .top-menu__compare {
        margin: 0
    }

    .header-phones__main {
        font-size: 1em
    }

    .menu-open__title:not(.show-on-mobile) {
        display: none
    }

    .header-search__category.hide-on-mobile {
        display: none
    }

    .header-search__input.hide-on-mobile {
        border-radius: var(--border-radius-1)
    }

    .sorts-block__item:first-child {
        min-width: 90px
    }

    .product-category-list__item {
        white-space: normal
    }

    .uni-module {
        padding: 0 5px
    }

    .uni-module .owl-item,
    .uni-module__item {
        padding: 0 5px
    }

    .uni-module__wrapper {
        display: flex;
        flex-wrap: wrap
    }

    .uni-module .owl-dots {
        margin: 0 0 25px !important
    }

    .products-block {
        margin-bottom: 20px
    }

    .product-thumb {
        margin: 0 0 10px;
        padding: 10px
    }

    .product-thumb__image {
        padding: 0
    }

    .product-thumb__name {
        font-size: .95em
    }

    .product-thumb .sticker {
        top: 0;
        left: 0
    }

    .product-thumb__model:before {
        display: var(--prod-thumb-model-before-display, none)
    }

    .product-thumb__add-to-cart,
    .product-thumb__cart.disabled2 {
        flex: 1 1 auto;
        max-width: 100%
    }

    .product-thumb__cart .btn {
        font-size: .9em
    }

    .product-thumb .uni-timer,
    .product-thumb .product-thumb__description,
    .product-thumb__option,
    .list-view .product-thumb__option,
    .product-thumb__addit {
        display: none !important
    }

    .product-thumb__wishlist,
    .product-thumb__compare {
        right: 5px
    }

    .list-view .product-thumb__caption {
        padding: 0 25px 0 12px
    }

    .compact-view .product-thumb__image {
        display: none
    }

    .compact-view .product-thumb__price {
        justify-content: flex-end;
        font-size: 1.1em;
        padding-right: 15px
    }

    .compact-view .product-thumb__add-to-cart i {
        display: inline !important
    }

    .compact-view .product-thumb__add-to-cart span {
        display: none
    }

    .category-info__image {
        display: none
    }

    .hidden-on-mobile {
        display: none !important
    }

    .owl-carousel .owl-dots .owl-dot {
        height: 2px;
        margin-bottom: 10px !important
    }
}

@media (max-width:425px) {
    .header-logo {
        max-width: 135px
    }

    .product-thumb__rating-text {
        display: none
    }
}

@media (max-width:380px) {

    .header-logo a,
    .header-logo span {
        font-size: 1em
    }

    .header-phones__main {
        font-size: .97em
    }

    .header-cart__total {
        flex: 0 1 auto
    }
}

@media (max-width:350px) {
    .header-phones__main {
        font-size: .9em
    }

    .product-thumb .qty-switch,
    .product-thumb__quick-order {
        display: none
    }

    .btn-xl {
        padding: 0 15px
    }
}

@media (min-width:575px) {
    .top-menu.switch-on-mobile {
        display: none
    }

    .header-block__item-account.switch-on-mobile {
        display: flex
    }
}

@media (min-width:768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: '';
        height: 100%
    }

    .footer__column-ul {
        display: block !important;
        height: auto !important
    }
}

@media (min-width:992px) {
    header {
        position: var(--header-position);
        top: var(--header-position-top);
        z-index: var(--header-position-z)
    }

    header.fixed {
        box-shadow: var(--header-box-shadow)
    }

    .top-links .top-menu__btn {
        display: none
    }

    .top-links__ul {
        position: static;
        display: flex;
        align-items: center;
        background: none;
        box-shadow: none;
        list-style: none;
        margin: 0;
        padding: 0;
        border-radius: 0
    }

    .top-links__li {
        margin: 0 20px 0 0
    }

    .top-links .top-links__a {
        margin-top: -3px;
        padding: 0;
        font-size: .85em;
        color: var(--top-menu-btn-c);
        background: none !important
    }

    .top-links .top-links__a:hover {
        color: var(--top-menu-btn-c-hover)
    }

    .header-block__item-search.order-2 {
        order: 2;
        padding-left: 10px
    }

    .header-block__item-telephone.order-1 {
        order: 1;
        padding-left: 5px
    }

    .header-block__item-menu {
        padding: 0 15px
    }

    .header-block__item-menu + .header-block__item-search + .header-block__item-telephone {
        padding-left: 15px
    }

    .header-menu__btn {
        font-weight: 500;
        color: var(--menu-main-header-c);
        background: var(--menu-main-header-bg)
    }

    .header-menu__btn.show .header-menu__icon:before {
        content: '\f00d'
    }

    .main-menu {
        position: relative;
        z-index: 998
    }


    .menu1:hover .menu__collapse {
        display: block !important
    }

    .menu__header-icon {
        margin: 0 10px 0 0
    }

    .menu1 .menu__collapse,
    i.menu__chevron {
        display: none
    }

    .menu1:not(.new) .menu__collapse {
        border-radius: var(--border-radius-0-0-1-1)
    }

    .menu:not(.new) .menu__level-2 {
        max-height: auto
    }

    .menu__level-1-li {
        display: flex;
        align-items: center
    }

    .menu__level-1-li.has-children:after {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 46px;
        text-align: center;
        font-family: "Font Awesome\ 5 Free";
        font-weight: 900;
        content: "\f107";
        font-size: .75em;
        transition: transform ease-in-out .15s
    }

    .menu__level-1-li.open:after {
        transform: rotate(-90deg)
    }

    .menu__level-2 {
        position: absolute;
        z-index: -1;
        top: 0;
        left: 100%;
        display: none;
        align-content: flex-start;
        flex-wrap: wrap;
        overflow-y: auto;
        padding: 0 10px;
        border-radius: var(--border-radius-0-1-1-0);
        box-shadow: 0 4px 10px rgba(0 0 0 / .2);
        scrollbar-width: thin
    }

    .menu__level-2.open {
        display: flex
    }

    .menu__level-2::-webkit-scrollbar {
        width: 8px;
        background: #eee;
        border-radius: var(--border-radius-1)
    }

    .menu__level-2::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: var(--border-radius-1)
    }

    .menu__level-2.column-1 {
        flex-wrap: nowrap;
        flex-direction: column
    }

    .menu__level-2-wrap {
        display: flex;
        flex-wrap: wrap;
        height: fit-content
    }

    .menu__level-2-ul.has-image {
        padding-left: 65px
    }

    .menu__level-2-ul.has-image:not(.has-children) > div {
        display: flex;
        align-items: center;
        min-height: 70px
    }

    .menu__level-2-img {
        position: absolute;
        top: 10px;
        left: 5px;
        width: 50px
    }

    .menu__level-2-ul {
        flex: 0 0 auto;
        padding: 0 10px
    }

    .menu__level-2-a.has-children {
        min-height: auto;
        margin: 14px 0 10px
    }

    .menu__level-2:not(.column-10) .menu__level-2-a {
        font-weight: 700
    }

    .menu__level-3 {
        padding: 0 0 15px
    }

    .menu__level-3-li + li {
        margin: 7px 0 0
    }

    .menu__level-3-a:hover {
        text-decoration: underline
    }

    .menu1 .column-1 {
        width: 255px
    }

    .menu1 .column-2 {
        width: 490px
    }

    .menu1 .column-3,
    .menu1 .column-4 {
        width: 720px
    }

    .menu-wrapper.new {
        display: none;
        position: absolute;
        top: 0%;
        left: 10px;
        right: 10px;
        z-index: 988;
        padding: 0;
        border-radius: var(--border-radius-0-0-1-1)
    }

    .menu1.new {
        max-height: 80vh;
        overflow-x: hidden;
        overflow-y: auto;
        background: var(--menu-bg, var(--menu-main-level-2-bg));
        box-shadow: var(--menu-shadow, 0 4px 10px rgba(0 0 0 / .2));
        border-radius: var(--border-radius-0-0-1-1);
        scrollbar-width: thin
    }

    .menu1.new .menu__header {
        display: none
    }

    .menu1.new .menu__collapse {
        position: static;
        top: 0;
        display: block;
        width: calc(25% - 15px);
        height: var(--menu-height);
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: var(--border-radius-0-0-0-1);
        scrollbar-width: thin
    }

    .menu1.new .menu__level-1-li {
        position: static
    }

    .menu1.new .menu__level-1-li:last-child {
        border-radius: var(--border-radius-0-0-0-1)
    }

    .menu1.new .menu__level-2 {
        height: var(--menu-height);
        max-height: 100%;
        left: 220px;
        border-radius: var(--border-radius-0-0-1-0);
        box-shadow: none
    }

    .menu__level-2-ul.col-md-3:nth-child(n+5):before,
    .menu__level-2-ul.col-md-4:nth-child(n+4):before,
    .menu__level-2-ul.col-md-6:nth-child(1n+3):before,
    .menu__level-2-ul.col-md-12:nth-child(n+2):before {
        display: block;
        content: '';
        border-top: solid 1px rgba(0 0 0 / .05)
    }

    .menu2 .collapse {
        height: fit-content !important
    }

    .menu2 .menu__header {
        display: none
    }

    .menu2 .menu__collapse {
        display: flex;
        top: 0
    }

    .menu2 .menu__level-1-li {
        flex: 1 1 auto;
        position: static;
        border: none;
        
    }

    .menu2 .menu__level-1-li:last-child {
      
        border-radius: 0
    }

    .menu2 .menu__level-1-li:after {
        margin-left: -15px
    }

    .menu2 .menu__level-1-li.open:after {
        transform: rotateX(-180deg)
    }

    .menu2 .menu__level-1-a {
        justify-content: center;
        padding: 0 15px;
        white-space: nowrap
    }

    .menu2 .menu__level-1-li.menu__additional:after {
        display: none
    }

    .menu2 .menu__level-2 {
        top: 100%;
        left: auto !important;
        border-radius: var(--border-radius-0-0-1-1)
    }

    .menu2 .column-1 {
        width: 25%
    }

    .menu2 .column-2 {
        width: 50%
    }

    .menu2 .column-3 {
        width: 75%
    }

    .menu2 .column-4 {
        width: 100%
    }

    .menu2.new {
        margin-left: 0
    }

    .menu2.new .menu__level-1-li:first-child {
        box-shadow: inset 1px 0 0 rgba(0 0 0 / .08)
    }

    .menu-right {
        z-index: 98;
        height: 46px;
        margin-left: -20px;
        background: none
    }

    .menu-right .menu__level-1-li:first-child {
        box-shadow: none
    }

    .menu-right .menu__level-1-a,
    .menu-right .menu__level-1-li:after {
        color: #ffffff;
    }

    .menu-right .menu__level-1-li:hover .menu__level-1-a {
        color: #ffffff;
    }

    .menu-right .menu__level-2 {
        background: var(--menu-right-level-2-bg)
    }

    .menu-right .menu__level-2-a {
        color: var(--menu-right-level-2-c)
    }

    .menu-right .menu__level-2-a:hover {
        color: var(--menu-right-level-2-c-hover)
    }

    .menu-right .menu__level-3-a {
        color: var(--menu-right-level-3-c)
    }

    .menu-right .menu__level-3-a:hover {
        color: var(--menu-right-level-3-c-hover)
    }

    .column-3 .menu__level-2-wrap {
        flex: 1 1 66.67%
    }

    .column-4 .menu__level-2-wrap {
        flex: 1 1 75%
    }

    .column-3 .menu__banner {
        flex: 0 1 33.33%
    }

    .column-4 .menu__banner {
        flex: 0 1 25%
    }

    .menu__banner {
        max-width: 300px;
        margin: 20px 0;
        padding: 0 10px;
        overflow: hidden;
        border-radius: 3px
    }

    .menu__banner img {
        max-width: 100%;
        border-radius: 2px;
        cursor: pointer
    }

    .nav-tabs {
        scrollbar-width: thin
    }

    .nav-tabs::-webkit-scrollbar {
        height: 5px;
        background: #eee;
        border-radius: 5px
    }

    .nav-tabs::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 5px
    }

    .uni-item:hover {
        border: solid 1px transparent;
        box-shadow: 0 5px 15px rgba(0 0 0 / .12)
    }

    .modal-header {
        padding: 15px 20px
    }

    .modal-header .close:hover {
        opacity: 1
    }

    .modal-body {
        padding: 20px
    }
}

@media (min-width:767px) and (max-width:1200px) {

    .uni-module .product-thumb__quick-order,
    .grid-view .product-thumb__quick-order {
        margin: 0 0 0 10px;
        padding: 0 10px
    }
}

@media (min-width:1200px) {
    .top-menu.switch-on-tablet {
        display: none
    }

    .header-logo span,
    .header-logo a {
        font-size: 1.9em
    }

    .header-block__item-account.switch-on-tablet {
        display: flex
    }

    .header-block__item-caption {
        margin: 5px 0 0;
        text-align: center;
        font-size: .7em;
        color: var(--header-block-caption-c)
    }

    .menu1.new .menu__level-2 {
        left: 270px
    }

    .menu1 .column-1 {
        width: 270px
    }

    .menu1 .column-2 {
        width: 540px
    }

    .menu1 .column-3,
    .menu1 .column-4 {
        width: 870px
    }

    .list-view .product-thumb {
        padding: 15px 20px
    }

    .list-view .product-thumb__caption {
        padding-left: 30px
    }

    .list-view .product-thumb__option .option__group {
        display: flex;
        flex-wrap: wrap;
        align-items: center
    }

    .list-view .product-thumb__option .option__group:first-child {
        margin: 5px 0 0
    }

    .list-view .product-thumb__option .option__group-name {
        margin: 0 15px 14px 0
    }

    .list-view .product-thumb__option .text-danger {
        z-index: 9;
        top: 0
    }

    .compact-view .qty-indicator,
    .compact-view .product-thumb__quick-order {
        display: flex
    }

    .compact-view .product-thumb__quick-order {
        display: inline
    }
}

@media (min-width:1345px) {
    .container {
        width: 1340px
    }

    .menu1.new .menu__level-2 {
        left: 310px
    }

    .menu1 .column-1 {
        width: 257px
    }

    .menu1 .column-2 {
        width: 494px
    }

    .menu1 .column-3 {
        width: 736px
    }

    .menu1 .column-4 {
        width: 997px
    }

    .visible-xl {
        display: block
    }

    .hidden-xl {
        display: none
    }
}

@media (min-width:1600px) {
    .container {
        width: 1500px
    }

    .menu-wrapper.new .menu__collapse {
        width: calc(20% - 15px)
    }

    .menu1.new .menu__level-2 {
        left: 279px
    }

    .menu1 .column-1 {
        width: 313px
    }

    .menu1 .column-2 {
        width: 606px
    }

    .menu1 .column-3 {
        width: 904px
    }

    .menu1 .column-4 {
        width: 1191px
    }

    .col-xxl-1 {
        width: 5%
    }

    .col-xxl-2 {
        width: 10%
    }

    .col-xxl-2-1 {
        width: 12.5%
    }

    .col-xxl-3 {
        width: 15%
    }

    .col-xxl-3-1 {
        width: 16.66666667%
    }

    .col-xxl-4 {
        width: 20%
    }

    .col-xxl-5 {
        width: 25%
    }

    .col-xxl-6 {
        width: 30%
    }

    .col-xxl-6-1 {
        width: 33.33333333%
    }

    .col-xxl-8 {
        width: 40%
    }

    .col-xxl-9 {
        width: 45%
    }

    .col-xxl-10 {
        width: 50%
    }

    .col-xxl-11 {
        width: 55%
    }

    .col-xxl-12 {
        width: 60%
    }

    .col-xxl-13 {
        width: 65%
    }

    .col-xxl-15 {
        width: 75%
    }

    .col-xxl-16 {
        width: 80%
    }

    .col-xxl-17 {
        width: 85%
    }

    .col-xxl-18 {
        width: 90%
    }

    .col-xxl-20 {
        width: 100%
    }

    .col-xxl-offset-4 {
        margin-left: 20%
    }

    .col-xxl-offset-5 {
        margin-left: 25%
    }

    .col-xxl-offset-6 {
        margin-left: 30%
    }

    .visible-xxl {
        display: block
    }

    span.visible-xxl {
        display: inline
    }
}



.onebl {
    margin-bottom: 40px;
}

.prmn-cmngr {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.cgp-wrapper {
    display: none;
}


.newheader {
    position: absolute;
    width: 100%;
    z-index: 50;
    top: 20px;
}




/* ============================================ 
   Блок Первый экран (Hero) - DALOS
   Изолированные стили (префикс dl-hero-)
   ============================================ */

.dl-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    /* Контент прижат к низу как на макете */
    padding-bottom: 80px;
    background-color: #000;
    font-family: 'Onest', sans-serif, Arial;
    margin-bottom: 45px;
}

/* Видеофон */
.dl-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Затемнение (overlay) */
.dl-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 57%, rgba(0, 0, 0, 0.4) 100%),
        rgba(15, 21, 38, 0.4);
    z-index: 1;
}

/* Контент */
.dl-hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.dl-hero__title {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
    max-width: 963px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.dl-hero__subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Кнопка */
.dl-hero__btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    border: 1px solid #fff;
    border-radius: 52px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: UPPERCASE;
    letter-spacing: -0.32px;
    transition: all 0.3s ease;
    background: transparent;
}

.dl-hero__btn:hover,
.dl-hero__btn:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.dl-hero__btn-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dl-hero__btn-icon img {
    width: 100%;
    height: auto;
}

/* Адаптивность */
@media (max-width: 1199px) {
    .dl-hero__title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .dl-hero {
        padding-bottom: 60px;
    }

    .dl-hero__title {
        font-size: 36px;
    }

    .dl-hero__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .dl-hero {
        height: 80vh;
        /* На мобильных чуть меньше высоту */
        min-height: 500px;
        padding-bottom: 40px;
    }

    .dl-hero__title {
        font-size: 28px;
        padding: 0 15px;
    }

    .dl-hero__subtitle {
        font-size: 14px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .dl-hero__btn {
        padding: 16px 32px;
        font-size: 14px;
    }
}

.header-logo img {
    max-width: 150px;
}







.mailheader a {
    display: flex;
    color: #fff;
}

.mailheader a svg {
    margin-right: 10px;
    min-height: 20px;
}

.mailheader {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}


.home-banner {
    display: none !important;
}
main:after, footer:after {
    display: none !important; 
}



/* ============================================ 
   Блок Наша продукция (Slider) - DALOS
   Изолированные стили (префикс dl-products-)
   ============================================ */

.dl-products {
  padding: 80px 0;
  overflow: hidden; 
  font-family: 'Onest', sans-serif, Arial;
  background: #ffffff; /* Белый фон блока */
}

.dl-products__title {
  font-size: 44px;
  font-weight: 500;
  text-align: center;
  color: #0f1526; /* Темный заголовок */
  margin-bottom: 48px;
  letter-spacing: -0.88px;
}

/* Контейнер слайдера */
.dl-products__slider-wrap {
  position: relative;
  max-width: 1432px;
  margin: 0 auto;
}

/* Стили для Owl Carousel (стандарт для UniShop/OpenCart) */
.dl-products .owl-stage-outer {
  overflow: visible !important; /* Важно для эффекта "вылетающих" слайдов */
}

.dl-products .owl-item {
  opacity: 0.4; /* Боковые "половинки" будут полупрозрачными */
  transition: all 0.4s ease;
  transform: scale(0.95);
  display: flex;
  justify-content: center;
}

.dl-products .owl-item.active {
  opacity: 1; /* 3 центральных элемента будут яркими */
  transform: scale(1);
}

/* Карточка товара/категории */
.dl-products__item {
  background: #fbfbfb;
  border-radius: 18px;
  padding: 24px;
  width: 100%;
  max-width: 378px; /* Размер центрального слайда */
  height: 278px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none !important;
  transition: background 0.3s;
}

.dl-products__item:hover {
  background: #ffffff;
}

.dl-products__item-title {
  font-size: 22px;
  color: #0f1526;
  margin: 0;
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
}

.dl-products__item-img {
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
        margin: 0 auto;
}

/* Стрелки навигации */
.dl-products .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
    display: block;
    max-width: 100%;
    max-height: 250px;
    object-fit: none;
    margin: 0 auto;
}

.dl-products .owl-prev,
.dl-products .owl-next {
  width: 46px;
  height: 46px;
  background: #ffffff !important;
  border: 1px solid rgba(66, 113, 229, 0.6) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: all 0.3s;
  padding: 0 !important;
}

.dl-products .owl-prev:hover,
.dl-products .owl-next:hover {
  background: #4271e5 !important;
  border-color: #4271e5 !important;
}

.dl-products .owl-prev:hover img,
.dl-products .owl-next:hover img {
  filter: brightness(0) invert(1);
}

.dl-products .owl-prev img {
  transform: rotate(180deg);
}

.dl-products .owl-nav button img {
  width: 26px;
  height: 26px;
}

/* Адаптивность */
@media (max-width: 767px) {
  .dl-products__title {
    font-size: 28px;
  }
  .dl-products__item {
    height: 220px;
    padding: 15px;
  }
  .dl-products__item-title {
    font-size: 18px;
  }
}

.dl-products .item{
    width: 100%;
}



h2{
        font-size: 44px;
    font-weight: 500;
   
    color: #0f1526;
    margin-bottom: 48px;
    letter-spacing: -0.88px;
}

.rig-tab{
        display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    width: 100%;
}

/* ============================================ 
   ИСПРАВЛЕННЫЕ СТИЛИ ДЛЯ СТРЕЛОК
   ============================================ */

.dl-products .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  /* Убираем лишние свойства max-width, max-height, object-fit, margin */
  display: flex;
  justify-content: space-between; /* Разносим кнопки по краям */
  pointer-events: none; /* Чтобы клики проходили сквозь фон контейнера к кнопкам */
  z-index: 10;
  padding: 0 10px; /* Небольшие отступы от краев контейнера */
  box-sizing: border-box;
}

.dl-products .owl-prev,
.dl-products .owl-next {
  width: 46px;
  height: 46px;
  background: #ffffff !important;
  border: 1px solid rgba(66, 113, 229, 0.6) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  pointer-events: auto; /* Возвращаем возможность клика на кнопку */
  transition: all 0.3s;
  padding: 0 !important;
  /* Добавляем отступы для точной центровки относительно карточек */
  margin-top: 150px; /* Подберите это значение! Оно компенсирует stagePadding */
}

/* Остальные стили (hover, img) можно оставить без изменений */
.dl-products .owl-prev:hover,
.dl-products .owl-next:hover {
  background: #4271e5 !important;
  border-color: #4271e5 !important;
}

.dl-products .owl-prev:hover img,
.dl-products .owl-next:hover img {
  filter: brightness(0) invert(1);
}

.dl-products .owl-prev img {
  transform: rotate(180deg);
}

.dl-products .owl-nav button img {
  width: 26px;
  height: 26px;
  display: block;
}
.five5in .nav-tabs li{
        background: #fff;
        margin-right: 15px;
    border: 1px #4271e5 solid;
    border-radius: 30px;
    transition: 0.2s;
}

.five5in .nav-tabs li.active{
        background: #4271e5;
        margin-right: 15px;
    border: 1px #4271e5 solid;
    border-radius: 30px;
     transition: 0.2s;
}
.five5in .nav-tabs li:hover{
        background: rgba(66, 113, 229, 0.71);
        margin-right: 15px;
    border: 1px #4271e5 solid;
    border-radius: 30px;
     transition: 0.2s;
}

.five5in .nav-tabs li:hover a{
    color: #fff;
}


.five5in .nav-tabs li.active a, .nav-tabs li.active a:focus, .nav-tabs li.active a:hover {
    color: #ffffff;
}
.tabprod{
    display: inline-block;
    float: left;
    margin: 0
}





.five5in .nav-tabs {
        display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    border-radius: var(--border-radius-1);
    margin: 0 0 20px;
    background: none;
    white-space: nowrap;
    justify-content: flex-end;
}

.five5in .nav-tabs li a:after {
    display: none;
}

.dl-dealers {
  padding: 40px 0;
  font-family: 'Onest', sans-serif, Arial;
}

.dl-dealers__row {
  display: flex;
  gap: 32px;
  align-items: center;
 
  margin: 0 auto;
}

.dl-dealers__col-img {
  flex: 1;
  max-width: 785px;
  height: 341px;
  border-radius: 24px;
  overflow: hidden;
    padding-left: 0px;
}

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

.dl-dealers__col-content {
  flex: 1;
  background: linear-gradient(180deg, #4271e5 0%, #3f61b3 100%);
  border-radius: 24px;
  height: 341px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 74px;
  gap: 32px;
}

.dl-dealers__text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 452px;
}

.dl-dealers__title {
  font-size: 32px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}

.dl-dealers__subtitle {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.dl-dealers__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  background: #ffffff;
  border-radius: 52px;
  color: #4271e5;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.dl-dealers__btn:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}

.dl-dealers__btn img {
  width: 26px;
  height: 26px;
}

@media (max-width: 1199px) {
  .dl-dealers__col-content {
    padding: 30px 40px;
  }
  
  .dl-dealers__title {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .dl-dealers__row {
    flex-direction: column;
    height: auto;
  }
  
  .dl-dealers__col-img,
  .dl-dealers__col-content {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 300px;
  }
}

@media (max-width: 575px) {
  .dl-dealers__btn {
    padding: 15px 30px;
    width: 100%;
    justify-content: center;
  }
}

.product-thumb__name{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
}


.product-thumb__model{
       border: 1px #4271E5 solid;
    padding: 5px 10px;
    border-radius: 30px;
    color: #4271E5;
        font-size: 10px;
}

.dl-banner {
  width: 100%;
  height: 491px;
  background-image: url('https://dalosplast.ru/images/banner-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  font-family: 'Onest', sans-serif, Arial;
}

/* Оверлей для читаемости текста, если нужно */
.dl-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 21, 38, 0.4); /* Темный фильтр */
  z-index: 1;
}

.dl-banner .container {
  position: relative;
  z-index: 2;
}

.dl-banner__content {
  max-width: 880px;
}

.dl-banner__title {
  font-size: 29px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 500;
}

.dl-banner__text {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 846px;
}

.dl-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border: 1px solid #ffffff;
  border-radius: 52px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.dl-banner__btn img {
  width: 26px;
  height: 26px;
  transition: transform 0.3s ease;
}
.dl-banner__btn:hover{
    color: #fff;
}
.dl-banner__btn:hover img {

  transform: translateX(5px);
}

@media (max-width: 991px) {
  .dl-banner {
    height: auto;
    padding: 60px 0;
  }
  
  .dl-banner__title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .dl-banner__btn {
    padding: 15px 30px;
    width: 100%;
    justify-content: center;
  }
}


.rightheadmen{
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
}


.header-logo svg{
            max-height: 50px;
    width: auto;
    margin: 0 auto;
    display: block;
}


 /* --- ШАПКА СТИЛИ --- */

.common-home .header-logo svg path{
       fill: #fff!important; 
}



.newheader.information-information:not(.page-4):not(.page-9) .header-phones__main,
.newheader.information-contact:not(.page-4):not(.page-9) .header-phones__main,
.newheader.product-category:not(.page-4):not(.page-9) .header-phones__main,
.newheader.product-product:not(.page-4):not(.page-9) .header-phones__main,
.newheader.product-compare .header-phones__main,
.newheader.account-account .header-phones__main,
.newheader.account-order-info .header-phones__main,
.newheader.account-order .header-phones__main,
.newheader.account-edit .header-phones__main,
.newheader.account-password .header-phones__main,
.newheader.account-address .header-phones__main,
.newheader.account-wishlist .header-phones__main,
.newheader.account-simpleregister .header-phones__main,
.newheader.account-download .header-phones__main,
.newheader.checkout-simplecheckout .header-phones__main,
.newheader.information-uni_gallery .header-phones__main,
.newheader.account-transaction .header-phones__main,
.newheader.account-logout .header-phones__main,
.newheader.account-register .header-phones__main,
.newheader.account-register .information-uni_news_story,
.newheader.account-register .information-uni_news,
.newheader.account-login:not(.page-4):not(.page-9) .header-phones__main,
.newheader.account-simpleedit .header-phones__main,
.newheader.account-newsletter .header-phones__main {
    color: #000;
}

.newheader.information-information:not(.page-4):not(.page-9) .header-phones__show-phone,
.newheader.information-contact:not(.page-4):not(.page-9) .header-phones__show-phone,
.newheader.product-category:not(.page-4):not(.page-9) .header-phones__show-phone,
.newheader.product-product:not(.page-4):not(.page-9) .header-phones__show-phone,
.newheader.product-compare .header-phones__show-phone,
.newheader.account-account .header-phones__show-phone,
.newheader.account-order-info .header-phones__show-phone,
.newheader.account-order .header-phones__show-phone,
.newheader.account-edit .header-phones__show-phone,
.newheader.account-password .header-phones__show-phone,
.newheader.account-address .header-phones__show-phone,
.newheader.account-wishlist .header-phones__show-phone,
.newheader.account-simpleregister .header-phones__show-phone,
.newheader.account-download .header-phones__show-phone,
.newheader.checkout-simplecheckout .header-phones__show-phone,
.newheader.information-uni_gallery .header-phones__show-phone,
.newheader.account-transaction .header-phones__show-phone,
.newheader.account-logout .header-phones__show-phone,
.newheader.account-register .header-phones__show-phone,
.newheader.account-register .information-uni_news_story,
.newheader.account-register .information-uni_news,
.newheader.account-login:not(.page-4):not(.page-9) .header-phones__show-phone,
.newheader.account-simpleedit .header-phones__show-phone,
.newheader.account-newsletter .header-phones__show-phone {
    color: #000;
}

.newheader.information-information:not(.page-4):not(.page-9) .header-phones__show-phone:hover,
.newheader.information-contact:not(.page-4):not(.page-9) .header-phones__show-phone:hover,
.newheader.product-category:not(.page-4):not(.page-9) .header-phones__show-phone:hover,
.newheader.product-product:not(.page-4):not(.page-9) .header-phones__show-phone:hover,
.newheader.product-compare .header-phones__show-phone:hover,
.newheader.account-account .header-phones__show-phone:hover,
.newheader.account-order-info .header-phones__show-phone:hover,
.newheader.account-order .header-phones__show-phone:hover,
.newheader.account-edit .header-phones__show-phone:hover,
.newheader.account-password .header-phones__show-phone:hover,
.newheader.account-address .header-phones__show-phone:hover,
.newheader.account-wishlist .header-phones__show-phone:hover,
.newheader.account-download .header-phones__show-phone:hover,
.newheader.account-transaction .header-phones__show-phone:hover,
.newheader.account-simpleregister .header-phones__show-phone:hover,
.newheader.account-logout .header-phones__show-phone:hover,
.newheader.information-uni_gallery .header-phones__show-phone:hover,
.newheader.checkout-simplecheckout .header-phones__show-phone:hover,
.newheader.account-register .header-phones__show-phone:hover,
.newheader.account-register .information-uni_news_story:hover,
.newheader.account-register .information-uni_news:hover,
.newheader.account-login:not(.page-4):not(.page-9) .header-phones__show-phone:hover,
.newheader.account-simpleedit .header-phones__show-phone:hover,
.newheader.account-newsletter .header-phones__show-phone:hover {
    color: #000;
}

.newheader.information-information:not(.page-4):not(.page-9) .mailheader a,
.newheader.information-contact:not(.page-4):not(.page-9) .mailheader a,
.newheader.product-category:not(.page-4):not(.page-9) .mailheader a,
.newheader.product-product:not(.page-4):not(.page-9) .mailheader a,
.newheader.product-compare .mailheader a,
.newheader.account-account .mailheader a,
.newheader.account-order-info .mailheader a,
.newheader.account-order .mailheader a,
.newheader.account-edit .mailheader a,
.newheader.account-password .mailheader a,
.newheader.account-address .mailheader a,
.newheader.account-wishlist .mailheader a,
.newheader.account-download .mailheader a,
.newheader.account-transaction .mailheader a,
.newheader.account-simpleregister .mailheader a,
.newheader.account-logout .mailheader a,
.newheader.account-register .mailheader a,
.newheader.information-uni_news_story .mailheader a,
.newheader.information-uni_news .mailheader a,
.newheader.information-uni_gallery .mailheader a,
.newheader.checkout-simplecheckout .mailheader a,
.newheader.account-login:not(.page-4):not(.page-9) .mailheader a,
.newheader.account-simpleedit .mailheader a,
.newheader.account-newsletter .mailheader a {
    color: #000;
}

.newheader.information-information:not(.page-4):not(.page-9) .mailheader svg path,
.newheader.information-contact:not(.page-4):not(.page-9) .mailheader svg path,
.newheader.product-category:not(.page-4):not(.page-9) .mailheader svg path,
.newheader.product-product:not(.page-4):not(.page-9) .mailheader svg path,
.newheader.product-compare .mailheader svg path,
.newheader.account-account .mailheader svg path,
.newheader.account-order-info .mailheader svg path,
.newheader.account-order .mailheader svg path,
.newheader.account-edit .mailheader svg path,
.newheader.account-password .mailheader svg path,
.newheader.account-address .mailheader svg path,
.newheader.account-wishlist .mailheader svg path,
.newheader.account-download .mailheader svg path,
.newheader.account-transaction .mailheader svg path,
.newheader.account-simpleregister .mailheader svg path,
.newheader.account-logout .mailheader svg path,
.newheader.account-register .mailheader svg path,
.newheader.information-uni_news_story .mailheader svg path,
.newheader.information-uni_news .mailheader svg path,
.newheader.information-uni_gallery .mailheader svg path,
.newheader.checkout-simplecheckout .mailheader svg path,
.newheader.account-login:not(.page-4):not(.page-9) .mailheader svg path,
.newheader.account-simpleedit .mailheader svg path,
.newheader.account-newsletter .mailheader svg path {
    fill: #000;
}

.newheader.information-information:not(.page-4):not(.page-9) .menu-right .menu__level-1-a, 
.newheader.information-information:not(.page-4):not(.page-9) .menu-right .menu__level-1-li:after,
.newheader.information-contact:not(.page-4):not(.page-9) .menu-right .menu__level-1-a, 
.newheader.information-contact:not(.page-4):not(.page-9) .menu-right .menu__level-1-li:after,
.newheader.product-category:not(.page-4):not(.page-9) .menu-right .menu__level-1-a, 
.newheader.product-category:not(.page-4):not(.page-9) .menu-right .menu__level-1-li:after,
.newheader.product-product:not(.page-4):not(.page-9) .menu-right .menu__level-1-a, 
.newheader.product-product:not(.page-4):not(.page-9) .menu-right .menu__level-1-li:after,
.newheader.account-login:not(.page-4):not(.page-9) .menu-right .menu__level-1-a,
.newheader.account-login:not(.page-4):not(.page-9) .menu-right .menu__level-1-li:after,
.newheader.product-compare .menu-right .menu__level-1-a,
.newheader.account-account .menu-right .menu__level-1-a,
.newheader.account-order-info .menu-right .menu__level-1-a,
.newheader.account-order .menu-right .menu__level-1-a,
.newheader.account-edit .menu-right .menu__level-1-a,
.newheader.account-password .menu-right .menu__level-1-a,
.newheader.account-address .menu-right .menu__level-1-a,
.newheader.account-wishlist .menu-right .menu__level-1-a,
.newheader.account-download .menu-right .menu__level-1-a,
.newheader.account-transaction .menu-right .menu__level-1-a,
.newheader.account-simpleregister .menu-right .menu__level-1-a,
.newheader.account-logout .menu-right .menu__level-1-a,
.newheader.account-register .menu-right .menu__level-1-a,
.newheader.information-uni_news_story .menu-right .menu__level-1-a,
.newheader.information-uni_news .menu-right .menu__level-1-a,
.newheader.information-uni_gallery .menu-right .menu__level-1-a,
.newheader.checkout-simplecheckout .menu-right .menu__level-1-a,
.newheader.product-compare .menu-right .menu__level-1-li:after,
.newheader.account-account .menu-right .menu__level-1-li:after,
.newheader.account-order-info .menu-right .menu__level-1-li:after,
.newheader.account-order .menu-right .menu__level-1-li:after,
.newheader.account-edit .menu-right .menu__level-1-li:after,
.newheader.account-password .menu-right .menu__level-1-li:after,
.newheader.account-address .menu-right .menu__level-1-li:after,
.newheader.account-wishlist .menu-right .menu__level-1-li:after,
.newheader.account-download .menu-right .menu__level-1-li:after,
.newheader.account-transaction .menu-right .menu__level-1-li:after,
.newheader.account-simpleregister .menu-right .menu__level-1-li:after,
.newheader.account-logout .menu-right .menu__level-1-li:after,
.newheader.account-register .menu-right .menu__level-1-li:after,
.newheader.information-uni_news_story .menu-right .menu__level-1-li:after,
.newheader.information-uni_news .menu-right .menu__level-1-li:after,
.newheader.information-uni_gallery .menu-right .menu__level-1-li:after,
.newheader.checkout-simplecheckout .menu-right .menu__level-1-li:after,
.newheader.account-login:not(.page-4):not(.page-9) .menu-right .menu__level-1-li:after,
.newheader.account-simpleedit .menu-right .menu__level-1-a,
.newheader.account-simpleedit .menu-right .menu__level-1-li:after,
.newheader.account-newsletter .menu-right .menu__level-1-a,
.newheader.account-newsletter .menu-right .menu__level-1-li:after {
    color: #000000;
}

.newheader.information-information:not(.page-4):not(.page-9),
.newheader.information-contact:not(.page-4):not(.page-9),
.newheader.product-category:not(.page-4):not(.page-9),
.newheader.product-product:not(.page-4):not(.page-9),
.newheader.product-compare,
.newheader.account-account,
.newheader.account-order-info,
.newheader.account-order,
.newheader.account-edit,
.newheader.account-password,
.newheader.account-address,
.newheader.account-simpleregister,
.newheader.account-wishlist,
.newheader.account-download,
.newheader.account-transaction,
.newheader.account-logout,
.newheader.account-register,
.newheader.information-uni_news_story,
.newheader.information-uni_news,
.newheader.information-uni_gallery,
.newheader.checkout-simplecheckout,
.newheader.account-login:not(.page-4):not(.page-9),
.newheader.account-simpleedit,
.newheader.account-newsletter {
    position: relative;
    margin-top: 0px;
    margin-bottom: 40px;
}




.information-uni_news .header-phones__main,
.information-uni_news_story .header-phones__main{
    color: #000;
}






.page-4 .header-logo svg path{
       fill: #fff!important; 
}
.page-9 .header-logo svg path{
       fill: #fff!important; 
}



@media (max-width:997px){
    .rightheadmen{
        display: none;
    }
}


.attrfix{
     display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
}



.page-4 .dl-hero{
    
    background-size: cover;
}



.dalos-v2-about{
    padding: 60px 0;
}

.dalos-v2-services{
    padding: 60px 0;
}

.dalos-v2-experience{
    padding: 60px 0;
}
.dalos-v2-why{
    padding: 60px 0;
}


.dl-hero__container .breadcrumb-h1 {
    display: none;
}

@media (min-width: 992px) {
    /* --- FIXED POSITIONING FIX --- */
    /* Вырываем меню из контекста и фиксируем относительно окна */
    .menu__level-2,
    .menu1 .main-menu__collapse { /* Применяем также к основному меню каталога (если оно вертикальное/выпадающее) */
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 10000 !important;
        margin: 0 !important;
        
        /* Визуал */
        background: #fff;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        padding: 30px 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s, visibility 0.2s;
        pointer-events: none;
    }
    
    /* Для основного каталога убираем лишние отступы, если они есть */
    .menu1 .main-menu__collapse {
        padding: 15px 0;
        border-radius: 0 0 5px 5px;
    }

    /* Показываем при ховере на родительский LI (для подменю) */
    .menu__level-1-li:hover .menu__level-2 {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
        display: block !important;
    }
    
    /* Показываем при ховере на шапку меню (для основного каталога) */
    .menu-wrapper:hover .main-menu__collapse {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
        display: block !important;
    }

    /* Обертка для контента */
    .menu-full-width-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .menu-catalog-layout {
        display: flex;
        flex-wrap: wrap;
    }

    .catalog-list-col {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding-right: 30px;
        border-right: 1px solid #eee; /* Разделитель визуальный */
    }
    .col-md-1-5 {
        width: 20%;
        float: left;
        padding: 0 10px;
        position: relative;
        min-height: 1px;
    }
    
    .menu-custom-card {
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        padding: 25px 20px;
        height: 100%;
        background: #fff;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 280px;
        text-align: center;
    }
    
    .menu-custom-card:hover {
        border-color: #4a90e2;
        box-shadow: 0 10px 25px rgba(74, 144, 226, 0.15);
        transform: translateY(-2px);
    }
    
    .menu-custom-card h4 {
        margin-top: 0;
        font-size: 16px;
        font-weight: 500;
        color: #555;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .menu-custom-card:hover h4 {
        color: #4a90e2;
    }

    .menu-custom-card .img-wrap {
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .menu-custom-card img {
        max-width: 100%;
        max-height: 165px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .menu-custom-card .btn-more {
              font-weight: 400;
        color: #4271E5;
        font-size: 16px;
        text-transform: uppercase;
        text-decoration: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .menu-custom-card .btn-more i {
        display: none;
        transition: transform 0.2s;
            font-weight: 600 !important;
    }
    
    .menu-custom-card:hover .btn-more i {
         display: block;
    }
    
    .menu-catalog-layout { align-items: stretch; }
    .catalog-list-col { display: flex; flex-direction: column; row-gap: 24px; }
    .catalog-items { display: flex; flex-direction: column; row-gap: 12px; }
    .catalog-item { margin: 0; letter-spacing: -0.36px; color: #0f1526cc; font-size: 18px; }
    .catalog-link { color: #0f1526cc; text-decoration: none; }
    .catalog-link:hover { color: #4271e5; }
    
    /* --- New Catalog Layout Styles --- */
    .catalog-items-list .menu__level-1-li {
        display: block;
        width: 100%;
        margin-bottom: 0;
       
    }
    .catalog-items-list .menu__level-1-li:last-child {
        border-bottom: none;
    }
    .catalog-items-list .menu__level-1-a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        color: #333;
        text-decoration: none;
        transition: color 0.2s;
    }
    .catalog-items-list .menu__level-1-a:hover {
        color: #4271e5;
    }
    /* Hide icons if needed or adjust spacing */
    .menu__level-1-icon, .menu__level-1-img {
        margin-right: 10px;
        vertical-align: middle;
    }
    .catalog-divider { height: 1px; background: rgba(15,21,38,0.1); }
    .catalog-all { color: #4271e5; text-transform: uppercase; text-decoration: none; font-size: 16px; }
    
    .menu-cards { display: flex; gap: 24px; align-items: stretch;         min-height: 300px;}
    .menu-card { flex: 1; border-radius: 18px; padding: 24px; overflow: hidden; position: relative; }
    .menu-card.consult { background: #fbfbfb; transition: 0.2s; }
    .menu-card.consult:hover { background-image: linear-gradient(180deg, #4271e5 0%, #3f61b3 100%); color: #fff; transition: 0.2s;}
    .menu-card.consult:hover     .advice-subtitle { color: #fff; transition: 0.2s;}
    .menu-card.consult:hover     .advice-title  { color: #fff; transition: 0.2s;}
    .menu-card.consult:hover  a  { color: #fff; transition: 0.2s;}
    .advice-img { position: absolute; top: 93px; left: 207px; opacity: .6; width: 148px; height: 160px; transform: rotate(8deg); }
    .advice-title { margin: 0 0 12px 0; letter-spacing: -0.36px; color: #0f1526; font-size: 18px; }
    .advice-subtitle { margin: 0; letter-spacing: -0.28px; color: #0f1526cc; font-size: 14px; }
    .advice-cta { display: inline-block; margin-top: 24px; color: #4271e5; text-transform: uppercase; text-decoration: none; font-size: 16px; }
    
    .menu-card.dealer { background: #fff; color: #fff; }
    .menu-card .dealer-title { margin: 0 0 12px 0; letter-spacing: -0.36px; color: #000; font-size: 18px; }
    .dealer-subtitle { margin: 0; letter-spacing: -0.28px; color: #000; font-size: 14px; }
    .dealer-cta { display: inline-block; margin-top: 24px; color: #3f62b6;  text-transform: uppercase; text-decoration: none; font-size: 16px; }
    .menu-card {
    flex: 1;
    border-radius: 18px;
    padding: 24px;
    overflow: hidden;
    position: relative;
    display: flex;          /* включаем flex */
    flex-direction: column; /* вертикальное направление */
}
    .menu-card.dealer:hover{
        
    }
     .menu-card.dealer:hover { background-image: linear-gradient(180deg, #4271e5 0%, #3f61b3 100%); color: #fff; transition: 0.2s;}
    .menu-card.dealer:hover     .dealer-titlee { color: #fff; transition: 0.2s;}
    .menu-card.dealer:hover     .dealer-subtitle  { color: #fff; transition: 0.2s;}
    .menu-card.dealer:hover  .dealer-cta  { color: #fff; transition: 0.2s;}
    .menu-card.dealer:hover  .dealer-title  { color: #fff; transition: 0.2s;}
    
     .menu-card.regas:hover { background-image: linear-gradient(180deg, #4271e5 0%, #3f61b3 100%); color: #fff; transition: 0.2s;}
    .menu-card.regas:hover     .dealer-titlee { color: #fff; transition: 0.2s;}
    .menu-card.regas:hover     .dealer-subtitle  { color: #fff; transition: 0.2s;}
    .menu-card.regas:hover  .dealer-cta  { color: #fff; transition: 0.2s;}
    .menu-card.regas:hover  .dealer-title  { color: #fff; transition: 0.2s;}
    
    
.advice-cta,
.dealer-cta {
    margin-top: auto;       /* ссылка уходит вниз */
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
}
}

.menu-card{
    cursor: pointer;
}
.menu-card:hover{
        
        box-shadow: 0 10px 25px rgba(74, 144, 226, 0.15);
        transform: translateY(-2px);
      
}


#pos-banner2 .container-fluid{
    padding-left: 0px;
    padding-right: 0px;
}


#product-category h1{
    font-size: 50px;
    font-weight: 400;
    color: #000;
}

.sorts-block__btn-group button{
    background: #fff;
    border-radius: 50px;
    border:1px #4271E5 solid;
        display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.sorts-block__btn-group button:hover{
    background: rgba(66, 113, 229, 0.51);
}
.sorts-block__btn-group button.selected{
    background:#4271E5;
    color: #fff;
}
.sorts-block__btn-group button svg{
    margin-right: 5px;
}
.sorts-block__btn-group button#list-view svg{
    width: 25px;
    height: 10px;
}


.sorts-block__btn-group button svg path{
    fill:#4271E5;
}
.sorts-block__btn-group button.selected svg path{
    fill:#fff;
}

.sorts-block__limit {
    width: auto;
    margin: 0 0 0 5px;
    color: #4271E5;
    font-weight: 500;
        border:none;
}

.product-page-tabs{
    background: #FBFBFB;
}



.dl-v3-about__row{
    margin-bottom: 40px;
}

.dl-v3-conditions {
    margin-bottom: 40px;
}

.dl-v3-support-item__content h4{
    color: #fff;
}


.dl-v3-support__inner{
    margin-bottom: 40px;
}


.dl-v3-support__item-col{
    min-height: 120px;
}

.dl-v3-support__title{
    color: #fff;
}


/* ============================================ 
   Сетка оборудования (Equipment Grid) - DALOS
   Изолированные стили (префикс dl-equipment-)
   ============================================ */

.dl-equipment {
  padding: 60px 0;
  font-family: 'Onest', sans-serif, Arial;
  background: #ffffff;
}

.dl-equipment__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 колонки по умолчанию */
  gap: 24px;
}

.dl-equipment__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 16px 24px;
  background: #fbfbfb;
  border-radius: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
  height: 100%;
  min-height: 304px;
}

.dl-equipment__card:hover {
  background: #f5f5f5;
  transform: translateY(-5px);
}

.dl-equipment__img-box {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-equipment__img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Чтобы оборудование было полностью видно */
  transition: transform 0.5s ease;
}

.dl-equipment__card:hover .dl-equipment__img-box img {
  transform: scale(1.05);
}

.dl-equipment__title {
  font-size: 18px;
  line-height: 1.3;
  color: #0f1526;
  text-align: center;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.36px;
}

/* --- Адаптивность --- */

@media (max-width: 1200px) {
  .dl-equipment__grid {
    grid-template-columns: repeat(3, 1fr); /* 3 колонки на средних экранах */
  }
}

@media (max-width: 991px) {
  .dl-equipment__grid {
    grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .dl-equipment__grid {
    grid-template-columns: 1fr; /* 1 колонка на мобильных */
  }
  
  .dl-equipment__card {
    min-height: auto;
  }
  
  .dl-equipment__img-box {
    height: 180px;
  }
}

@media(min-width:997px){
    .mobmenu{
        display: none;
    }
    .moblk{display: none;}
}


@media(max-width:997px){
    .menu-cards{
        display: none;
    }
    .mendesc{
        display: none;
    }
    .menu-wrapper {
        top: 90px;
    }
    .main-menu__contacts{
        display: block!important;
    }
    .menu-wrapper {
        background: #fff;
    }
    .jscont{
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    align-content: flex-end;
    flex-wrap: wrap;
    position: absolute;
    bottom: 15%;
    }
    
    .moblk{
        float: left;
        border: 1px rgba(66, 113, 229, 0.53) solid;
        border-radius: 5px;
         width: 35px;
        height: 35px;
            display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    }
    .moblk svg{
      
    }
    .moblk svg path{
       fill:  #4271E5; 
    }
    .page-4 .moblk svg path,
    .page-9 .moblk svg path,
    .common-home .moblk svg path{
        fill:#fff;
    }
    .page-4 .moblk,
    .page-9 .moblk,
    .common-home .moblk{
        border-color: #fff;
    }
    
    
    .menu-open{
        height: 35px;
    width: 35px; 
        border: 1px rgba(66, 113, 229, 0.53) solid!important;
        background: none;
        border-radius: 5px;
    }
   
    .page-4 .menu-open,
    .page-9 .menu-open,
    .common-home .menu-open{
        border-color: #fff!important;
    }
    
    .menu-open .menu-open__icon{
        color: #4271E5; 
    }
    
    .page-4 .menu-open__icon,
    .page-9 .menu-open__icon,
    .common-home .menu-open__icon{
        color: #fff!important;
    }
    .dl-products {
    padding: 0;
        padding-bottom: 80px;
    }
}



.news-page h2{
    line-height: 44px!important;
}



.dl-hero__btn::before {
  content: '';                  /* обязательное свойство для псевдоэлемента */
  position: absolute;
  top: 0;
  left: 0;
  width: 0;                     /* изначально ширина 0 */
  height: 100%;
  background-color: #4271e5;    /* цвет заливки при наведении */
  transition: width 0.3s ease;  /* плавное изменение ширины */
  z-index: -1;                  /* псевдоэлемент под текстом */
      border-radius: 52px;          /* совпадает со скруглением кнопки (если есть) */
}

.dl-hero__btn:hover::before {
  width: 100%;                  /* при наведении ширина становится 100% */
}



.dl-banner__btn::before {
  content: '';                  /* обязательное свойство для псевдоэлемента */
  position: absolute;
  top: 0;
  left: 0;
  width: 0;                     /* изначально ширина 0 */
  height: 100%;
  background-color: #4271e5;    /* цвет заливки при наведении */
  transition: width 0.3s ease;  /* плавное изменение ширины */
  z-index: -1;                  /* псевдоэлемент под текстом */
      border-radius: 52px;          /* совпадает со скруглением кнопки (если есть) */
}


.dl-banner__btn:hover::before {
  width: 100%;  
    /* при наведении ширина становится 100% */
}


.news-page h2 {
    line-height: 0px !important;
    font-size: 25px!important;
}

.information-uni_news_story h2 {
    font-size: 25px!important;
    font-weight: 500;
    color: #0f1526;
    margin-bottom: 48px;
    letter-spacing: -0.88px;
}



.dl-dealers__btn::before {
  content: '';                  /* обязательное свойство для псевдоэлемента */
  position: absolute;
  top: 0;
  left: 0;
  width: 0;                     /* изначально ширина 0 */
  height: 100%;
  background-color: #4271e5;    /* цвет заливки при наведении */
  transition: width 0.3s ease;  /* плавное изменение ширины */
  z-index: -1;                  /* псевдоэлемент под текстом */
      border-radius: 52px;   
    border: 1px #fff solid;/* совпадает со скруглением кнопки (если есть) */
}


.dl-dealers__btn:hover::before {
  width: 100%;  
    /* при наведении ширина становится 100% */
}

.dl-dealers__btn{
   overflow: hidden;
    position: relative;
}
.dl-dealers__btn:hover{
    color: #fff;
}
.menu-card{
    
}

.rightheadmen{}

.gallery__item {
    border: 0px;
}

#menu2 .menu__level-1-a:hover{
    color: #4271e5!important;
            text-shadow: 0px 0px 20px #000;
} 

.mailheader a:hover{
    color: #4271e5!important;
            text-shadow: 0px 0px 20px #000;
} 



.product-description h2{
    font-size: 28px;
}


.btn-primary {
    color: #fff;
    background: var(--btn-primary-bg);
    border-radius: 100px;
        padding: 0px 25px;

}

.btn-primary:hover, .btn-primary:focus {
    color: var(--btn-primary-c-hover);
    background: var(--btn-primary-bg-hover);
}

.account-login .uni-form {
    overflow: hidden;
    padding: 20px;
    background: #fff;
    
}
.account-login__wrapper{
      background: #fff;
}

.account-login__wrapper {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.smalltxt{
       line-height: 20px;
    margin-bottom: 25px;
}

.centra{
    display: inline-block;
    margin: 0 auto;
}


.simpleregister-button-block{
    text-align: center!important;
}

.regabtn{
        text-align: center;
    margin-bottom: 50px;
}

.regabtn .btn{

        font-size: 19px;
    padding: 10px 30px;
    height: 55px;
}

.panel-default > .panel-heading {
    color: #ffffff!important;
    background: #4271e5!important;
    border-color: none;
}
.panel-default > .panel-heading:hover{
    background: #124fe5!important;
    
}
.panel-default > .panel-heading a:hover{
    color: #fff;
}

.panel-default > .panel-heading a:focus{
     color: #fff;
}


.page-12nb h1{
        text-align: center;
}

.page-12nb h3{
        font-size: 17px;
    font-weight: 400;
}
#form-creator-46{
        max-width: 600px;
    margin: 0 auto;
}


.product-productnb .nav-tabs li.active a:focus, .product-productnb .nav-tabs li.active a:hover {
    color: #000;
}

.product-page__share-btn{
    display: none!important;
}

.nali4{
        font-size: 15px;
    font-weight: 400;
    color: #4271E5;
    width: 100%;
}



.form-control {
    font-size: .95em;
    border: solid 1px rgb(34 108 177);
}

.qty-switch__btn.fa {
    display: block;
    width: 20px;
    height: 17px;
    line-height: 15px;
    text-align: center;
    font-size: .5em;
    color: #666;
    background: #f2f2f2;
    border: solid 1px #3F51B5;
    border-left-color: #fff;
    cursor: pointer;
        border-radius: 0;
}

.btn.quick-order {
    color: #4271e5;
    background: #ffffff;
    border: 1px #4271e5 solid !important;
    border-radius: 50px;
}

.dillerdell{
        background: #4271e53b;
    display: flex;
    padding: 8px 18px;
    border-radius: 10px;
    margin-left: 15px;
}


.dilllogin .dillerdell{
    display: none;
}


#fly-menu{
    display: none!important;
}

.plane-panelr{
        position: fixed;
    top: 30%;
    right: 0px;
    z-index: 150;
    background: #fff;
    padding: 10px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    padding-top: 20px;
    padding-left: 5px;
    border: 1px #4271e5 solid;
    border-right: 0px;
        display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    max-width: 50px;
    overflow: hidden;
}


.plane-panelr hr{
        border-top: 1px solid #d8d8d8;
    height: 1px;
        display: block;
    width: 60px;
}
.plane-panelr a svg{
    transition: 0.2s;
}
.plane-panelr a:hover svg{
    scale: 1.2;
    transition: 0.2s;
}

.header-cart__btn:hover svg{
    scale: 1.2;
    transition: 0.2s;
} 



.dl-v3-cta__inner .dl-dealers__btn{
   background: #678be3;
    color: #fff;
} 


.dl-v3-cta__inner a{
    text-decoration: none;
}


#modal-cart .qty-switch__btn.fa {
    display: block;
    width: 20px;
    height: 17px;
    line-height: 15px;
    text-align: center;
    font-size: .5em;
    color: #ffffff;
    background: #4271e5;
        height: 30px;
    line-height: 30px;
    
}

#modal-cart .qty-switch__btn.fa:hover{
    background: #0f4eea;
}


.checkout-simplecheckout .header-cart__total-items{
    display: none;
}

.checkout-simplecheckout .quantity .btn-primary {
    color: #fff;
    background: var(--btn-primary-bg);
    border-radius: 100px;
    padding: 0px 10px;
}
.simplecheckout-cart .quantity .input-group .btn {
    height: 34px;
     padding: 0px 10px;
}


.simple-content fieldset {
    text-align: left;
    width: 100%;
}

.simplecheckout-block {
    clear: both;
    margin-bottom: 20px;
    background: #FBFBFB;
    border-radius: 24px;
    padding: 20px;
}

.simple-content .checkout-heading {
    border: 0px;
    background: none;
        border-color: none!important;
}


.simple-content .form-control {
    font-size: .95em;
    border: solid 1px rgb(169 169 169);
}





.contacts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    flex: 1 1 250px; /* Карточки будут адаптироваться и переноситься на мобильных */
    min-width: 220px;
}

.contact-icon {
    font-size: 32px;
    color: #4285f4; /* Цвет иконок, можно заменить на свой синий */
    margin-right: 15px;
    margin-top: -5px; /* Небольшая корректировка для выравнивания с текстом */
}

/* Опционально: если у тебя используются картинки-спрайты вместо FontAwesome, 
   нужно будет заменить теги <i> на <img> или <div> с background-image */

.contact-info {
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    color: #333;
}

.contact-link {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-link:hover {
    color: #4285f4;
}

.contact-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.contact-text {
    font-size: 14px;
    line-height: 1.4;
}

/* Стили для мессенджеров */
.messengers-block {
    margin-top: 15px;
}

.messengers-label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.messengers-icons {
    display: flex;
    gap: 10px;
}

.msg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

.msg-icon:hover {
    opacity: 0.8;
    color: #fff;
}

.msg-icon.tg {
    background-color: #4285f4;
}

.msg-icon.wa {
    background-color: #4285f4;
}

/* Карта */
.contacts-map-full {
    margin-top: 40px;
    width: 100%;
}



/* Стили для динамического списка из админки */
.custom-dynamic-list {
    margin: 0;
    padding: 0;
    margin-top: 5px; /* Отступ от основного телефона */
}

.custom-dynamic-list .contact-list__item,
.contact-info .contact-list__item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer; /* Так как используется data-href и JS для клика */
}

.custom-dynamic-list .contact-list__icon {
    font-size: 18px;
    color: #4285f4; /* Цвет иконок из админки (Telegram/WhatsApp) */
    margin-right: 10px;
}

.custom-dynamic-list .contact-list__img {
    max-width: 20px; /* Если иконки загружены картинками */
    margin-right: 10px;
}

/* Делаем текст ссылок в цикле таким же, как у основного телефона */
.custom-dynamic-list .contact-link {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.custom-dynamic-list .contact-list__item:hover .contact-link,
.custom-dynamic-list .contact-list__item:hover .contact-list__icon {
    color: #1a73e8; /* Цвет при наведении */
}












@media (max-width:997px){
    html, body {
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
}
    .dl-products .owl-prev, .dl-products .owl-next {
    width: 40px;
    height: 40px;
    }
    .owl-carousel .owl-nav .owl-next {
    right: 15px;
}
        .owl-carousel .owl-nav .owl-prev{
    left: 15px;
}
    .newheader .row{
        margin: 0 -15px!important;
    }
    
  #pos-slider   .container-fluid {
   padding-right: 0px!important;
     padding-left: 0px!important;
    }
    
    .header-logo {
        padding-left: 20px;
    }
    
    h2 {
    font-size: 24px;
    }
    .tabprod {
            float: none;
                width: 100%;
        text-align: center;
    }
    
    .five5in .nav-tabs {
    display: block;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    border-radius: var(--border-radius-1);
    margin: 0 0 20px;
    background: none;
    white-space: nowrap;
    justify-content: center;
    flex-direction: row;
    align-content: center;
    align-items: center;
    width: 100%;
}
    .five5in .nav-tabs li {
        padding: 20px;
            margin-top: 15px;
    }
        .dl-banner {
        height: auto;
        padding: 60px 0;
        padding-top: 150px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .dl-dealers {
        padding: 0px 0;}
    
    .dl-dealers__col-img, .dl-dealers__col-content {
        min-height: 150px;
    }
    
        .dl-dealers__title {
        font-size: 22px;
    }
    .dl-dealers__col-content {
        padding: 30px 15px;
    }
    .dl-dealers__btn {
        font-size: 14px;
        }
        div.heading {
        font-size: 1.2em;
        font-size: 24px;
    }
    #product-category h1 {
    font-size: 32px;
    }
    .sorts-block__btn-group #grid-view{
        display: none;
    }
    .sorts-block__select{
            margin-right: 10px;
    }
    
   .newheader .col-xs-4.col-sm-5.col-xs-push-8.col-sm-push-0{
            display: flex;
    flex-direction: row;
    justify-content: flex-end;
    }
    
    .dalos-v2-about {
    padding: 0;
}
    
}









/* Основной контейнер */
.lk-dash {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1A1A1A;
    margin-bottom: 40px;
}

/* Приветствие */
.lk-dash__welcome {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 30px 0;
    color: #1A1A1A;
}

/* Карточки статистики */
.lk-dash__stats {
    margin-bottom: 30px;
}
.lk-dash__stat-card {
    background-color: #4B77E6;
    border-radius: 12px;
    padding: 20px 24px;
    color: #FFFFFF;
    height: 100%;
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lk-dash__stat-title {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}
.lk-dash__stat-value {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

/* Блок заказов */
.lk-dash__orders-block {
    background-color: #FAFAFA;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}
.lk-dash__orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.lk-dash__orders-title {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}
.lk-dash__orders-link {
    color: #4B77E6;
    text-decoration: none;
    font-size: 15px;
}
.lk-dash__orders-link:hover {
    text-decoration: underline;
}

/* Список заказов */
.lk-dash__order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #EBEBEB;
}
.lk-dash__order-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.lk-dash__order-id {
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}
.lk-dash__order-id:hover {
    color: #4B77E6;
}
.lk-dash__order-date {
    font-size: 14px;
    color: #999999;
}
.lk-dash__order-right {
    text-align: right;
}
.lk-dash__order-total {
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 8px;
}

/* Бейджи статусов */
.lk-dash__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 500;
}
.lk-dash__badge--blue { background-color: #4B77E6; }
.lk-dash__badge--green { background-color: #22C55E; }
.lk-dash__badge--red { background-color: #EF4444; }

/* Нижний баннер */
.lk-dash__banner {
    background-color: #4B77E6;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
}
.lk-dash__banner-title {
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #FFFFFF;
}
.lk-dash__banner-desc {
    font-size: 16px;
    opacity: 0.9;
}
.lk-dash__btn {
    display: inline-flex;
    align-items: center;
    background-color: #FFFFFF;
    color: #4B77E6;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lk-dash__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #4B77E6;
    text-decoration: none;
}

/* Адаптив под мобильные */
@media (max-width: 768px) {
    .lk-dash__stats > div { margin-bottom: 16px; }
    .lk-dash__stats > div:last-child { margin-bottom: 0; }
    
    .lk-dash__banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .lk-dash__banner-info { margin-bottom: 24px; }
    .lk-dash__orders-block { padding: 20px; }
}


.poddash{
    background-color: #FAFAFA;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}



.nlist .list-group-item{
     transition: 0.2s;
}
.nlist .list-group-item svg{
    width: 40px;
}


.nlist .list-group-item:hover{
    transition: 0.2s;
        background: #4b77e6 !important;
    color: #fff;
    border-radius: 14px;
}
.nlist .list-group-item:hover svg path{
    transition: 0.2s;
    fill:#fff;
}


.tooltip {
  position: fixed;
  background: #4271e5;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-family: inherit;
  max-width: 200px;
  word-wrap: break-word;
  pointer-events: none;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: normal;
}

/* Стрелка, если тултип слева */
.tooltip.tooltip-left::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

/* Стрелка, если тултип справа */
.tooltip.tooltip-right::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}


.account-loginnb #column-left{
    display: none!important;
}



/* Контейнер */
.dealer-block { 
  
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Карточка (сброс отступов Bootstrap для row) */
.dealer-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(19, 47, 95, 0.15);
  margin-left: 0;
  margin-right: 0;
}

/* Делаем колонки одинаковой высоты на десктопе через Flexbox */
@media (min-width: 992px) {
  .dealer-card {
    display: flex;
    align-items: stretch;
  }
  .dealer-card::before,
  .dealer-card::after {
    display: none;
  }
  .dealer-illustration {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .dealer-offer {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
}

.dealer-card > [class*="col-"] {
      padding-left: 30px;
  padding-right: 0;
}

/* Левая часть - Иллюстрация */
.dealer-illustration {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dealer-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

/* Правая часть - Контент */
.dealer-offer {
  color: #fff;
  padding: 48px;
  background-image: linear-gradient(180deg, #4271e5 0%, #3f61b3 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dealer-title {
  margin: 0 0 16px;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  color: #ffffff;
}
.dealer-lead {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.4;
}

/* Список преимуществ */
.dealer-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.dealer-features li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}
.dealer-features li:last-child {
  margin-bottom: 0;
}
.dealer-features .icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 12px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.dealer-features .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Кнопка */
.dealer-btn {
  align-self: flex-start;
  background: #ffffff;
  color: #4271e5;
  text-decoration: none;
  border-radius: 52px;
  padding: 16px 32px;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  transition: all .2s ease;
}
.dealer-btn:hover, .dealer-btn:focus {
  text-decoration: none;
  color: #2b5fd6;
  background: #f8f9fa;
}
.dealer-btn img {
  width: 24px;
  height: 24px;
  margin-left: 12px;
}

/* Адаптив */
@media (max-width: 991px) {
  .dealer-title { font-size: 28px; }
  .dealer-offer { padding: 40px 32px; }
}
@media (max-width: 767px) {
  .dealer-offer { padding: 32px 24px; }
  .dealer-btn { 
    width: 100%; 
    justify-content: center; 
  }
}


.account-simpleregisternb #column-left{
    display: none!important;
}


.account-order-infonb .account-order-info__description{
       background: #f2f2f2;
    padding: 30px;
    border-radius: 18px;
    width: 48%;
    float: left;
    margin-right: 1%;
}

.account-order-infonb div.heading{
    font-size: 23px;
}

.account-order-infonb .adresinf{
    display: none;
}





































































































































































































































































































































































































































































































































































































































































































































































































































































































