html {
    margin: 0;
    padding: 0;
}

body {
    background-color: #FBFBFB;
    font-size: 16px;
    font-family: "Golos Text", Arial, sans-serif;
    font-optical-sizing: auto;
    color: #131313;
}

* {
    box-sizing: border-box;
}

:root {
    --black: #232323;
    --light: #ffffff;
    --ascent: #001AC3;
    --ascent-light: #F2F3FC;
    --pink: #E94B98;
    --orange: #FFAD29;
    --green: #24D70C;
    --gray: #E8E8E8;
    --gray-dark: #8A8A8A;
    --blue: #001AC3;
}

h1 {
    font-size: 24px;
    font-weight: 700;
}

.h1 {
    font-size: 24px;
    font-weight: 700;
}

h2 {
    font-size: 22px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-weight: 700;
}

h4 {
    font-size: 17px;
    font-weight: 700;
}

h5 {
    font-size: 15px;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: #001AC3;
    transition: all .2s;
}

a:hover {
    text-decoration: underline;
    filter: contrast(1.1);
}

.color-a {
    color: #001AC3;
}

.red {
    color: #dc000b;
}

.no-wrap {
    white-space: nowrap;
}

.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

.bold-light {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.light {
    font-weight: 300;
}

.top0 {
    margin-top: 0;
}

.top5 {
    margin-top: 5px;
}

.top10 {
    margin-top: 10px;
}

.top30 {
    margin-top: 30px;
}

.top50 {
    margin-top: 50px;
}

.top80 {
    margin-top: 80px;
}

.left10 {
    margin-left: 10px;
}

.left20 {
    margin-left: 20px;
}

.no-margin {
    margin: 0;
}

.d-none {
    display: none;
}

.hide {
    display: none !important;
}

.invisible {
    visibility: hidden !important;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

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

.full-width {
    width: 100%;
    box-sizing: border-box;
}

.view-pc {
    display: block;
}

.view-mobile {
    display: none;
}

.ascent {
    color: var(--ascent);
}

.section {
    margin-bottom: 60px;
}

@media (max-width: 700px) {
    .view-pc {
        display: none;
    }

    .view-mobile {
        display: block;
    }
}

table {
    border-collapse: collapse;
}

.table {
    margin-bottom: 1rem;
    color: #212529;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody+tbody {
    border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.dt {
    display: table;
}

.dt>* {
    display: table-row;
}

.dt .col {
    display: table-cell;
    padding: 7px 0;
}

.dt .col:last-child {
    padding-left: 10px;
}

.loader1 {
    width: 120px;
    height: 20px;
    border-radius: 20px;
    background: linear-gradient(orange 0 0) 0/0% no-repeat lightblue;
    animation: l2 2s infinite steps(10);
}

@keyframes l2 {
    100% {
        background-size: 110%
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    vertical-align: middle;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--ascent);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--ascent);
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch-label {
    margin-left: 15px;
    display: inline-block;
    vertical-align: middle;
}

.switch-box {
    display: flex;
    align-items: center;
}

.image-box {
    position: relative;
}

.image-box a,
.image-box .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.image-box.water a {
    background: url("../images/logo_500.png") center center no-repeat;
    background-size: contain;
    opacity: 0.4;
}

.pointer {
    cursor: pointer;
}

.violet,
a.violet {
    color: var(--ascent); !important;
}

.orange,
a.orange {
    color: var(--orange) !important;
}

.btn {
    display: inline-block;
    border-radius: 50px;
    border: 0;
    padding: 15px 40px;
    font-weight: 500;
    font-size: 22px;
    color: #FFFFFF;
    background: var(--ascent);
    text-align: center;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    transition: all .2s;
}

.btn-small {
    padding: 10px 20px;
    font-size: 18px;
}

.btn.btn-blue {
    background: var(--blue);
}

.btn.btn-green {
    background: var(--green);
}

.btn.btn-gradient {
    background: linear-gradient(107.29deg, #A66AFF 15.82%, #001AC3 78.56%);
}

.btn.btn-gradient:hover {
    background: linear-gradient(-107.29deg, #A66AFF 15.82%, #001AC3 78.56%);
}

.btn-full-width {
    display: block;
    border-radius: 50px;
    padding: 25px;
    font-weight: 700;
    font-size: 24px;
}

.btn-white {
    color: var(--ascent);
    background: #FFFFFF;
    border: 1px solid var(--ascent);
}

.btn:hover {
    text-decoration: none;
}

.btn:focus,
.btn.focus {
    text-decoration: none;
}

.btn.disabled,
.btn:disabled {
    opacity: 0.65;
}

label.form-label {
    display: block;
}

.form-label {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.form-label span {
    font-weight: 700;
    font-size: 18px;
    color: var(--ascent);
    position: relative;
    top: -7px;
}

.form-error {
    text-align: center;
    color: darkred;
    margin: 20px 0;
    display: none;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
}

.form-control {
    padding: 15px;
    color: #555555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 15px;
}

.form-control:focus {
    border-color: var(--ascent);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(138, 105, 212, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(138, 105, 212, 0.6);
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999;
}

.form-control::-webkit-input-placeholder {
    color: #999;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #eeeeee;
    opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
    cursor: not-allowed;
}

textarea.form-control {
    height: auto;
}

.card {
    background-color: #fff;
    border: 1px solid var(--gray);
    border-radius: 25px;
    padding: 30px;
}

@media (max-width: 768px) {
    .card {
        padding: 20px;
    }
}

/* header */
header.container {
    padding: 0;
}

.header {
    padding: 0;
    box-shadow: 0px 4px 7.3px rgba(0, 0, 0, 0.04);
    border-radius: 0px 0px 30px 30px;
    background-color: var(--light);
    overflow: hidden;
}

.header-phone {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.header-phone a {
    color: #232323;
}

.header-row {
    padding: 10px 25px;
}

.header-row.top {
    background-color: var(--ascent-light);
}

.header-row.middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.header-row.middle.sticky {
    position: fixed;
    box-shadow: 0px 4px 7.3px rgba(0, 0, 0, 0.04);
    border-radius: 0px 0px 30px 30px;
    background-color: var(--light);
    padding: 15px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}

.header-row.middle .logo img {
    max-width: 390px;
}

.header-row.middle .catalog-link {
    display: inline-block;
    background-color: var(--ascent-light);
    background-image: url('../images/icons-new/catalog.svg');
    background-position: center left 18px;
    background-repeat: no-repeat;
    border: 1px solid var(--ascent);
    padding: 9px 18px;
    padding-left: 45px;
    border-radius: 15px;
    color: var(--black);
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
}

.header-row.middle .search {
    padding: 0 10px;
}

.header-search-form {
    width: 100%;
    display: flex;
    align-items: stretch;
}

.header-search-form input {
    width: 100%;
    padding: 8px 15px;
    border: 1px solid var(--ascent);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.header-search-form input:focus {
    outline: 1px solid var(--ascent);
}

.header-search-form button {
    width: 55px;
    border: 1px solid var(--ascent);
    background-color: var(--ascent);
    background-image: url('../images/icons-new/search-white.svg');
    background-position: center;
    background-repeat: no-repeat;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    transition: all .2s;
    cursor: pointer;
}

.header-search-form button:hover {
    filter: contrast(1.5);
}

.header-row.middle .buttons {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.header-row.middle .buttons a {
    display: inline-block;
    text-align: center;
    height: 100%;
    font-size: 15px;
    color: var(--black);
}

.header-row.middle .header-icon {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
}

.header-row.middle .header-cart-icon {
    background-image: url('../images/icons-new/cart.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.header-row.middle .header-user-icon {
    background-image: url('../images/icons-new/user.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.header-row.middle .header-cart-icon .count {
    position: absolute;
    display: inline-block;
    top: -5px;
    right: -20px;
    background-color: var(--ascent-light);
    border-radius: 5px;
    width: 20px;
    height: 20px;
    opacity: .7;
}

.header-row.bottom .menu {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 5px;
}

.header-row.bottom .menu a {
    color: var(--gray-dark);
}

.header-row.bottom .menu .header-promos-link {
    color: var(--green);
    padding-right: 20px;
    background-image: url('../images/icons-new/promos.svg');
    background-position: right center;
    background-repeat: no-repeat;
}

.header-row.bottom .menu .header-payment-link {
    color: var(--ascent);
}

@media (max-width: 768px) {
    .header {
        border-radius: 0px;
    }

    .header-row.top .header-phone {
        justify-content: center;
    }

    .header-row.middle {
        padding-top: 15px;
        padding-bottom: 5px;
    }

    .header-row.middle.sticky {
        border-radius: 0px;
    }

    .header-row.middle .logo img {
        max-width: 200px;
    }

    .header-row.bottom {
        padding-bottom: 15px;
    }
}

/* Menu PC */
header .catalog-dropdown {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 800px;
    background-color: var(--light);
    border-radius: 0 0 30px 30px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    z-index: 100;
}

header:has(.header-row.middle.sticky) .catalog-dropdown {
    position: fixed;
    top: 80px;
}

header .catalog-dropdown.open {
    display: block;
}

header .catalog-dropdown-columns {
    display: flex;
    gap: 0;
}

header .catalog-dropdown-col {
    flex: 1;
    padding: 0 16px;
    border-right: 1px solid rgba(0,0,0,.07);
}

header .catalog-dropdown-col:first-child { 
    padding-left: 0; 
}

header .catalog-dropdown-col:last-child  { 
    border-right: none; 
}

header .catalog-dropdown-col ul {
    list-style: none;
    margin: 0; 
    padding: 0;
}

header .catalog-dropdown-link img {
    width: 18px;
    height: 18px;
}

header .catalog-dropdown-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 8px;
    border-radius: 10px;
    color: var(--black);
    font-size: 14px;
    overflow: hidden;
}

header .catalog-dropdown-link:hover {
    background-color: var(--ascent-light);
    color: var(--ascent);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200000;
    pointer-events: none;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 340px;
    background: var(--light);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    padding: 20px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    pointer-events: auto;
}

.mobile-menu.open .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.mobile-menu-close button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--gray-dark);
    font-size: 24px;
    line-height: 1;
}

.mobile-menu-panel .mobile-menu-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--black);
}

.mobile-menu-panel .mobile-menu-item {
    display: block;
    font-size: 16px;
    padding: 10px 0;
}

.mobile-menu-panel .mobile-catalog-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: var(--black);
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-panel .mobile-catalog-item a.active {
    color: var(--ascent);
}
/* /header */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    border-radius: 15px;
    margin: 20px 0px;
    padding: 0;
    list-style: none;
}

@media (max-width: 768px) {
    .breadcrumb {
        margin: 20px 0px;
    }
}

.breadcrumb-item a {
    color: var(--gray-dark);
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: var(--black);
    content: ">";
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--black);
}

.white-popup {
    position: relative;
    background: #FFF;
    padding: 70px 80px;
    width: auto;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);
}

.white-popup.small {
    max-width: 820px;
}

.white-popup h1 {
    margin-top: 0;
}

.white-popup .popup-scroll {
    overflow-y: auto;
    max-height: calc(100vh - 230px);
    padding: 0 14px 0 0;
}

.relative {
    position: relative;
}

.show-tooltip {
    cursor: pointer;
}

.tooltip-express-left .tooltip {
    width: 160px;
    right: 120%;
    top: -10px;
}

.tooltip-express-top .tooltip {
    bottom: 95%;
    left: 0;
    right: 0;
}

.tooltip-cart-top .tooltip {
    bottom: 100%;
    left: -30px;
    width: 200px;
}

.tooltip {
    background-color: rgba(138, 105, 212, 0.95);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    position: absolute;
    z-index: 200;
    white-space: normal;
    text-align: center;
    font-weight: normal;
}

.arrow,
.arrow::before {
    position: absolute;
    width: 8px;
    height: 8px;
    background: inherit;
}

.arrow {
    visibility: hidden;
    bottom: -4px;
    left: 7px;
}

.arrow::before {
    visibility: visible;
    content: '';
    transform: rotate(45deg);
}

.alert {
    padding: 20px 30px;
    color: white;
    font-weight: 700;
    background: var(--ascent);
    border-radius: 30px;
}

.alert-no-bold {
    padding: 20px 30px;
    color: white;
    background: var(--ascent);
    border-radius: 30px;
}

.alert-info {
    padding: 20px 30px;
    color: white;
    background: var(--ascent);
    border-radius: 15px;
}

.badge {
    display: inline-block;
    padding: 6px 15px;
    color: white;
    background: var(--orange);
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
}

.badge-blue {
    background: var(--ascent);
}

.badge-green {
    background: var(--green);
}

.badge-light {
    background: var(--ascent-light);
    color: var(--black);
}

.badge svg {
    vertical-align: top;
}

.top20 {
    margin-top: 20px;
}

@media (max-width: 700px) {

    .btn,
    .btn-white {
        border-radius: 50px;
        padding: 15px 25px;
        font-size: 20px;
    }

    .btn-small {
        padding: 8px 16px;
        font-size: 14px;
    }

    .btn-full-width {
        border-radius: 50px;
        padding: 15px 25px;
        font-size: 18px;
    }

    .breadcrumb {
        font-size: 14px;
    }

    .white-popup {
        padding: 20px 15px;
        margin: 10px auto;
    }

    .white-popup .popup-scroll {
        max-height: calc(100vh - 70px);
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 26px;
    }

    .h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    .form-label {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .arrow {
        left: 5px;
    }

    .badge {
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
    }

    .tooltip {
        padding: 3px 5px;
        font-size: 11px;
    }

    .tooltip-express-left .tooltip {
        width: 90px;
        right: 115%;
        top: -10px;
    }

    .tooltip-cart-top .tooltip {
        right: -30px;
        left: auto;
        width: 150px;
    }
}

/* END #Common */

/* #Slider */
.container-slider {
    max-width: 1300px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.slider-wrap {
    padding: 0;
}

.slider-box {
    position: relative;
}

.slider-box .arrow-prev,
.slider-box .arrow-next {
    width: 30px;
    height: 30px;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    padding: 0;
    cursor: pointer;
    margin-top: -15px;
    border: none;
    outline: none;
    z-index: 20;
    border-radius: 15px;
}

.slider-box .arrow-prev {
    left: 5px;
    background: url("../images/icons-new/banner-arrow.svg") no-repeat;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
    background-size: contain;
    transform: scaleX(-1);
}

.slider-box .arrow-next {
    right: 5px;
    background: url("../images/icons-new/banner-arrow.svg") no-repeat;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
    background-size: contain;
}

.swiper-button-disabled {
    opacity: 0.6;
    cursor: auto;
    pointer-events: none;
}

@media (max-width: 500px) {
    .container-slider .container {
        padding: 0;
    }

    .slider-box .arrow-prev {
        display: none;
    }

    .slider-box .arrow-next {
        display: none;
    }
}

/* END #Slider */

/* Pagination */
.pagination-box {
    margin-top: 20px;
    text-align: center;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
}

.pagination>li {
    display: inline;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 2px 10px;
    line-height: 1.42857143;
    color: #131313;
    text-decoration: none;
    background-color: #fff;
    border-radius: 4px;
    margin: 0;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    z-index: 2;
    color: #131313;
    background-color: #eeeeee;
    border-color: #ddd;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: var(--ascent);
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    color: #777777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.pagination .next a {
    background: url("../images/icons/right.svg") center center no-repeat;
    display: inline-block;
    width: 24px;
    height: 24px;
    padding: 2px;
    margin-left: 10px;
}

.pagination .prev a {
    background: url("../images/icons/right.svg") center center no-repeat;
    display: inline-block;
    width: 24px;
    height: 24px;
    padding: 2px;
    margin-right: 10px;
    transform: rotate(180deg);
}

/* END #Common */

/* #Main */
.page-main {
    padding: 0;
}

.main-banners .container {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.main-banners__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 25px;
}

.main-banners-catalog {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--ascent);
    gap: 25px;
    padding: 15px;
    width: 300px;
    max-height: 315px;
}

.main-banners-catalog__wrapper {
    overflow-y: scroll;
    padding-right: 10px;
    height: 100%;
}

.main-banners-catalog__wrapper::-webkit-scrollbar {
    width: 8px;
    padding-right: 10px;
}

.main-banners-catalog__wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.main-banners-catalog__wrapper::-webkit-scrollbar-thumb {
    background: #2f5cff;
    border-radius: 10px;
}

.main-banners-catalog__wrapper::-webkit-scrollbar-thumb:hover {
    background: #1d3ed6;
}

@media (max-width: 1200px) {
    .main-banners-catalog {
        display: none;
    }
}

.main-banners-catalog .catalog-dropdown-columns {
    display: flex;
    flex-direction: column;
}

.main-banners-catalog .catalog-dropdown-col {
    flex: 1 1 100%;
    padding: 0;
}

.main-banners-catalog .catalog-dropdown-col ul {
    list-style: none;
    margin: 0; 
    padding: 0;
}

.main-banners-catalog .catalog-dropdown-link img {
    width: 18px;
    height: 18px;
}

.main-banners-catalog .catalog-dropdown-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--black);
    font-size: 16px;
    overflow: hidden;
    background-image: url('../images/icons-new/arrow-right.svg');
    background-position: right 8px center;
    background-repeat: no-repeat;
}

.main-banners-catalog .catalog-dropdown-link:hover {
    background-color: var(--ascent-light);
    filter: none;
    color: var(--ascent);
}

.main-banners-slider {
    flex: 1;
    width: 100%;
    min-width: 0; 
    overflow: hidden;
}

.main-banners-slider img {
    width: 100%;
}

.block-banner, .block-banner .swiper {
    height: 100%;
} 

.block-banner .item {
    position: relative;
    border-radius: 20px;
    background-position: center center;
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ffffff;
    border: 1px solid var(--gray);
    width: 100%;
    height: 100%;
    padding-top: 33.3888%;
}

.block-banner .banner-universal {
    background-image: var(--background-pc);
}

@media (max-width: 500px) {
    .block-banner .banner-universal {
        background-image: var(--background-mob);
    }
}

.block-banner .item img {
    border-radius: 15px;
    max-width: 100%;
}

.block-banner .swiper {
    position: relative;
}

.block-banner .arrow-next,
.block-banner .arrow-prev {
    position: absolute;
    background: url("../images/icons-new/banner-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 30px;
    height: 30px;
    top: calc((100% - 30px) / 2);
    cursor: pointer;
    border: none;
    outline: none;
    right: 20px;
    z-index: 20;
}

.block-banner .arrow-prev {
    right: auto;
    left: 20px;
    transform: scaleX(-1);
}

.block-banner .bullets {
    position: absolute;
    bottom: 15px !important;
    left: 50% !important;
    width: auto !important;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
}

.block-banner .bullets span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    margin: 0 5px;
    background: #a58fd7;
}

.block-banner .bullets span.active {
    width: 30px;
    background: var(--ascent);
}

.swiper-products {
    align-items: stretch;
}

.swiper-product {
    height: auto !important;
}

.swiper-product .item {
    height: 100%;
}

.block-products {
    margin-bottom: 60px;
}

.block-products .head {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.block-products .head h2 {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 8px;
}

.block-products .head h2 img {
    width: 20px;
    height: 20px;
}

.block-products .head .description {
    font-weight: normal;
    font-size: 16px;
    margin-top: 5px;
}

.block-products .head .btn {
    font-weight: 400;
    font-size: 20px;
    padding: 14px 25px;
    width: 300px;
}

.block-products .all-bar {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.block-products .all-bar .btn {
    width: 300px;
}

.page-main .all-link {
    width: 790px;
    margin: 0 auto;
}

.how-to {
    margin-top: 70px;
    text-align: center;
}

.how-to .desktop {
    max-width: 800px;
    margin: auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-wrapper.mob {
    position: relative;
    padding-bottom: 201%;
    /* 852/479 */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about {
    padding: 20px 0;
    margin-bottom: 50px;
    font-size: 20px;
}

.about .h {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

.about h1 {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 0;
}

.about .images {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about .images img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.about .images-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 250px));
    column-gap: 20px;
    row-gap: 20px;
    justify-content: space-between;
}

.about .images-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.about .warehouse-items {
    margin-top: 30px;
}

.about .warehouse-items .item {
    text-align: center;
}

.about .warehouse-items img {
    max-height: 300px;
    max-width: 99%;
    border-radius: 25px;
}

.features {
    background: var(--ascent);
    padding: 50px 0;
    margin-bottom: 50px;
    color: white;
}

.features .features-slider {
    display: none;
}

.features .h {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

.features .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 40px;
    column-gap: 25px;
}

.features .item {
    max-width: 280px;
    text-align: center;
}

.features .swiper-slide .item {
    max-width: none;
    padding: 0 40px;
}

.features .icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.features .item .image-box {
    background: white;
    border-radius: 25px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .icon img {
    width: 60px;
}

.features .item .name {
    color: #FFD600;
    font-weight: 600;
}

.features .item .text {
    margin-top: 10px;
    font-size: 16px;
}

.features .arrow-next,
.features .arrow-prev {
    position: absolute;
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 20;

    right: 10px;
    background: url("../images/icons/arrow_right_small.svg");
    width: 19px;
    height: 56px;
    top: calc((100% - 40px) / 2);
    margin-top: -28px;
}

.features .arrow-prev {
    right: auto;
    left: 10px;
    transform: scaleX(-1);
}

@media (max-width: 1200px) {
    .block-banner .banner1 .btn {
        bottom: 5%;
    }
}

@media (max-width: 900px) {
    .block-products .head .h {
        font-size: 32px;
    }

    .page-main .all-link {
        width: auto;
        padding: 0 30px;
    }

    .block-banner .banner1 .btn {
        bottom: 5%;
        padding: 15px 30px;
        left: calc(50% - 200px / 2);
    }

    .block-calc {
        background: var(--ascent);
    }
}

@media (max-width: 850px) {
    .block-products .head .candy-heart {
        width: 30px;
        min-width: 30px;
        height: 30px;
        background-size: cover;
    }

    .block-products .head .candy-twist {
        width: 40px;
        min-width: 40px;
        height: 40px;
        background-size: cover;
    }

    .block-products .head {
        margin-bottom: 30px;
        column-gap: 15px;
    }
}

@media (max-width: 700px) {
    .block-banner {
        background: none;
        min-height: auto;
        padding-bottom: 20px;
    }

    .block-banner .container {
        padding-top: 10px;
    }
    
    .block-banner .swiper {
        position: relative;
        padding-bottom: 60px;
    }

    .block-banner .bullets {
        bottom: 5px !important;
    }

    .block-banner .arrow-next, .block-banner .arrow-prev {
        top: initial;
        bottom: 5px !important;
    }

    .block-banner .arrow-next {
        right: 5px;
    }

    .block-banner .arrow-prev {
        left: 5px;
    }

    .block-products .head .btn {
        box-sizing: border-box;
        width: 100%;
        font-size: 14px;
        padding: 7px 15px;
        white-space: nowrap;
    }

    .block-products .all-bar .btn {
        box-sizing: border-box;
        width: 100%;
        font-size: 16px;
        white-space: nowrap;
    }

    .about .images-grid {
        grid-template-columns: repeat(2, minmax(130px, 300px));
        column-gap: 10px;
        row-gap: 10px;
    }

    .about .images-grid .item:nth-child(5) {
        display: none;
    }
}

@media (max-width: 500px) {
    .block-products {
        margin-bottom: 30px;
    }

    .block-banner .item {
        padding-top: 130.4709%;
    }

    .features {
        padding: 30px 0;
    }

    .features .h {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .features .items {
        display: none;
    }

    .features .features-slider {
        display: block;
    }

    .features .item .image-box {
        width: 80px;
        height: 80px;
    }

    .features .icon img {
        width: 50px;
    }

    .block-map .h {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .block-calc {
        margin-top: 50px;
        padding: 30px 0;
    }

    .block-calc .h {
        font-size: 20px;
    }

    .block-products .head .h .description {
        font-size: 14px;
    }

    .about {
        padding: 10px 0;
        font-size: 16px;
    }

    .about .h {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .reviews {
        padding: 25px 0;
        font-size: 16px;
    }

    .reviews .h {
        font-size: 20px;
        margin-bottom: 0;
    }
}

.page-main .reviews-yandex {
    margin-top: 35px;
    margin-bottom: 25px;
}

.page-main .reviews-yandex .item {
    display: flex;
    flex-direction: column;
    width: auto;
    padding: 25px;
    gap: 15px;
    background-color: white;
    border-radius: 30px;
    color: #111111;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    height: 350px;
}

.page-main .reviews-yandex .item .star-img {
    position: absolute;
    width: 50%;
    aspect-ratio: 1 / 1;
    right: 0;
    bottom: -8%;
    background: url("../images/icons/new/ic_review_yandex_star.svg") no-repeat center/contain;
}

.page-main .reviews-yandex .item .date {
    font-weight: 400;
    font-size: 14px;
    color: #8F8F8F;
}

.page-main .reviews-yandex .item .name-stars {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.page-main .reviews-yandex .item .name-stars .username {
    font-size: 18px;
    font-weight: 500;
}

.page-main .reviews-yandex .item .name-stars .stars {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
}

.page-main .reviews-yandex .item .name-stars .stars .star {
    width: 17px;
    height: 17px;
    background: url("../images/icons/ic_star_review.svg") no-repeat center center;
}

.page-main .reviews-yandex .item .divider {
    background-color: #E1E1E1;
    height: 1px;
}

.page-main .reviews-yandex .item .review-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 128%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    /* максимум 6 строк */
    height: 131px;
    /* рассчитано для 6 строк */
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-main .reviews-yandex .item .more {
    font-size: 16px;
    font-weight: 600;
    color: #8F8F8F;
    transition: color 1s ease;
    margin-top: auto;
}

.page-main .reviews-yandex .item .more:hover {
    text-decoration: none;
    color: var(--ascent);
}

.page-main .reviews-yandex .item .yamaps-logo {
    background: url("../images/icons/ic_yandex_logo.svg") no-repeat center/contain;
    width: 103px;
    height: 21px;
}


@media(max-width: 500px) {
    .page-main .reviews-yandex .item {
        padding: 20px;
        border-radius: 23px;
        height: 280px;
    }

    .page-main .reviews-yandex .item .date {
        font-size: 11px;
    }

    .page-main .reviews-yandex .item .name-stars .username {
        font-size: 14px;
    }

    .page-main .reviews-yandex .item .name-stars .stars {
        gap: 5px;
    }

    .page-main .reviews-yandex .item .name-stars .stars .star {
        width: 13px;
        height: 13px;
    }

    .page-main .reviews-yandex .item .divider {
        height: 0.75px;
    }

    .page-main .reviews-yandex .item .review-text {
        font-size: 13px;
        height: 100px;
    }

    .page-main .reviews-yandex .item .more {
        font-size: 12px;
    }

    .page-main .reviews-yandex .item .yamaps-logo {
        width: 77px;
        height: 16px;
    }

    .page-main .reviews-yandex .bullets {
        margin-top: 30px;
    }

    .reviews .slider-box .arrow-prev,
    .reviews .slider-box .arrow-next {
        width: 32px;
        height: 32px;
        margin-top: -16px;
        background-size: 32px 32px;
    }
}

/* END #Main */

/* #Products */
.page-products {
    /*background: url("../images/head_catalog.png") no-repeat -200px -60px;*/
}

.page-products h1 {
    font-weight: 700;
    color: var(--ascent);
}

.page-products .head .container {
    position: relative;
    min-height: 180px;
}

.page-products .head .h {
    position: absolute;
    right: 120px;
    top: 80px;
    font-weight: 700;
    font-size: 46px;
    color: var(--ascent);
}

.product-items.grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(156px, 282px));
    column-gap: 20px;
    row-gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
}

.product-items .item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid var(--gray);
    box-shadow: 1px 5px 15px 0px rgba(0, 0, 0, 0.04);
    padding: 8px;
    border-radius: 20px;
    transition: border .2s;
}

.product-items .item:hover {
    border: 1px solid var(--ascent);
}

.product-items .image {
    position: relative;
    text-align: center;
    max-width: 550px;
}

.product-items .img-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.product-items .item img {
    max-width: 90%;
    border-radius: 10px;
}

.product-items .info {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-items .name {
    text-align: center;
    font-size: 15px;
    line-height: 20px;
}

.product-items .name a {
    color: #131313;
}

.product-items .markdown {
    font-size: 14px;
    margin-top: 5px;
}

.product-items .note {
    margin-top: 5px;
    font-weight: 400;
    color: #8C8C8C;
}

.product-items .price-box {
    margin-top: auto;
    padding-top: 10px;
}

.price-box>.box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    min-height: 50px;
}

.price-box.discount .price {
    color: #FF0000;
}

.price-box.discount .express {
    color: #FF0000;
}

.price-box.markdown .price {
    color: limegreen;
}

.price-box.markdown .express {
    color: limegreen;
}

.price-box .price-for-box {
    font-weight: normal;
    font-size: .9em;
}

.price-box .price-note {
    font-weight: 600;
    color: var(--black);
    font-size: 16px;
    min-height: 35px;
    background-color: var(--ascent-light);
    flex: 1 1 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 8px 12px;
    border-radius: 15px;
    transition: all .2s;
}

.price-line {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 5px;
}

.price-box .price-note.a-promo {
    color: var(--green);
    background-color: rgba(231, 247, 229, 1);
}

.price-box .price-note.a-promo .price-for-box {
    color: var(--gray-dark);
}

.price-box .price-old {
    font-weight: normal;
    white-space: nowrap;
    font-size: 13px;
    text-decoration: line-through;
    color: var(--gray-dark);
}

.price-box .express {
    color: var(--ascent);
}

.price-box .unit {
    padding: 0 2px;
    padding-bottom: 5px;
    border-bottom: 1px solid #D9D9D9;
    color: var(--ascent);
    position: relative;
    font-size: 14px;
    display: flex;
    gap: 3px;
    justify-content: space-between;
}

.price-box .express-bar {
    background: var(--ascent);
    color: white;
    border-radius: 5px;
    font-size: 13px;
    padding: 3px 5px;
    text-align: center;
    position: relative;
    margin-top: -5px;
}

.price-box .express-bar.error {
    background: #880000;
}

.price-box .unit .question {
    display: inline-block;
    background: url("../images/icons/question.svg") no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    padding: 0;
    font-size: 0;
    border: none;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    top: -2px;
}

.price-box > .box .controls-box {
    width: 100%;
} 

.price-box .plus,
.price-box .minus {
    display: inline-block;
    background-color: transparent;
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
    background-repeat: no-repeat;
    font-size: 0;
    border: none;
    cursor: pointer;
    outline: 0;
    padding: 0;
}

.price-box .plus {
    background-image: url("../images/icons/plus.svg");
}

.price-box .plus-info {
    display: none;
}

.price-box > .box .controls-box:has(.minus.hide) .plus {
    background-image: none;
    background-color: var(--ascent);
    border-radius: 25px;
    width: 100%;
    font-size: 14px;
    color: #fff;
}

.price-box > .box .controls-box:has(.minus.hide) .plus-info {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.price-box > .box .controls-box:has(.minus.hide) .plus-info img {
    width: 24px;
    height: 24px;
}

.price-box .minus {
    background-image: url("../images/icons/minus.svg");
}

.price-box .plus:active,
.price-box .minus:active {
    opacity: 0.8;
}

.price-box .not-available {
    font-size: 14px;
    color: #4d4d4d;
}

.price-box .controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 36px;
    transition: all .2s;
}

.price-box .controls .quantity {
    flex: 1 1 50%;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--gray-dark);
    margin: 0 3px;
    padding: 2px 5px;
    height: 36px;
    border-radius: 10px;
    box-shadow: none;
}

.price-box .cart-count {
    opacity: 0;
    font-size: 14px;
    color: var(--ascent);
    text-align: center;
    margin-top: 5px;
    min-height: 17px;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.price-box .cart-count a {
    color: var(--ascent);
}

.price-box .cart-count.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.price-box > .box .delivery-box {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    line-height: 1;
    margin-top: -2px;
    padding: 0 3px;
    color: var(--gray-dark);
} 

.price-box > .box .delivery-box svg {
    color: var(--ascent);
} 

@media (max-width: 760px) {
    .price-box > .box .delivery-box {
        font-size: 12px;
    } 
}

.product-badges {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    z-index: 1000;
}

.product-badges span {
    font-size: 0;
}

.product-badges img {
    border-radius: 0px !important;
    height: 22px;
}

.badge-nds {
    position: absolute;
    border-radius: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 1000;
}

.badge-nds img {
    border-radius: 0px !important;
    height: 22px;
}

.page-products .categories {
    margin-top: 50px;
}

.page-products .categories .item {
    margin: 10px 0;
}

.page-products .categories a {
    font-size: 20px;
    color: #8C8C8C;
}

.page-products .categories.special {
    font-weight: bold;
    margin-bottom: 20px;
}

.page-products .categories.special a {
    color: #131313;
}

@media (max-width: 760px) {
    .product-badges img {
        height: 18px;
    }

    .badge-nds img {
        height: 18px;
    }
}

.express-categories {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.express-categories li a {
    color: var(--black);
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    border: 1px solid var(--gray);
    border-radius: 20px;
}

.express-categories li.active a {
    color: var(--black);
    border: 1px solid var(--ascent);
}

.express-filter {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.express-filter li {
    display: inline-block;
    margin-right: 20px;
    padding: 10px 0;
}

.express-filter li.active {
    padding: 10px 20px;
    background: var(--ascent);
    border-radius: 20px;
}

.express-filter li.active a {
    color: white;
}

.express-info {
    margin-bottom: 30px;
}

.express-info .under {
    margin-top: 20px;
    font-size: 16px;
    color: var(--ascent);
}

.express-info .under svg {
    vertical-align: middle;
}

@media (max-width: 1100px) {
    .page-products .head {
        display: none;
    }

    .product-items.grid {
        grid-template-columns: repeat(3, minmax(156px, 282px));
        column-gap: 25px;
        row-gap: 50px;
    }
}

@media (max-width: 760px) {
    .product-items.grid {
        grid-template-columns: repeat(2, minmax(140px, 300px));
        column-gap: 25px;
        row-gap: 40px;
    }

    .express-filter {
        font-size: 14px;
    }

    .nds-filter {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .product-items.grid {
        column-gap: 10px;
        row-gap: 10px;
        margin-top: 30px
    }

    .price-box .not-available {
        font-size: 12px;
        max-width: 70px;
        text-align: right;
    }

    .price-box .express-bar {
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 12px;
    }

    .price-box .unit {
        font-size: 13px;
        padding-bottom: 2px;
    }

    .price-box .unit .question {
        background-size: 16px 16px;
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }

    .price-box .price .light svg {
        width: 12px;
        height: 12px;
    }

    .product-items .price-box .price {
        font-size: 16px;
    }

    .product-items .price-box .price-old {
        font-size: 12px;
    }

    .product-items .price-box .price-note {
        font-size: 12px;
        min-height: 14px;
    }

    .product-items .price-box .plus,
    .product-items .price-box .minus {
        background-size: 28px 28px;
        width: 28px;
        height: 28px;
    }

    .product-items .price-box .controls {
        min-height: 28px;
    }

    .product-items .price-box .controls .quantity {
        width: 38px;
        font-size: 16px;
        height: 28px;
        margin: 0 1px;
        padding: 2px 3px;
    }

    .price-box .cart-count {
        font-size: 12px;
        min-height: 14px;
        margin-top: 2px;
    }

    .product-items .name {
        line-height: 16px;
        margin-bottom: 5px;
    }

    .product-items .name a {
        font-size: 14px;
    }

    .page-products h1 {
        font-size: 32px;
    }

    .product-items .info {
        margin-top: 0;
    }
}

@media (max-width: 340px) {
    .price-box .unit {
        font-size: 13px;
    }

    .product-items .price-box .price {
        font-size: 14px;
    }

    .product-items .price-box .price-old {
        font-size: 10px;
    }

    .product-items .price-box .controls .quantity {
        width: 32px;
        font-size: 14px;
        margin: 0 0;
    }
}

/* END #Products */

/* #Product */
.page-product {
    min-height: 500px;
}

.product-card {
    display: flex;
    margin-top: 45px;
    column-gap: 30px;
}

.product-card .product-badges {
    position: absolute;
    top: 0;
    right: 0;
}

.product-card .badge-nds {
    position: absolute;
    bottom: 0;
    right: 0;
}

.product-card h1 {
    font-size: 24px;
    margin: 0;
    margin-bottom: 20px;
}

.product-card>div {
    flex-basis: 50%;
}

.product-card .main-image {
    position: relative;
}

.product-card .images img.main {
    border-radius: 25px;
    max-width: 99%;
}

.product-card .images .thumbs {
    box-sizing: border-box;
    margin-top: 30px;
    text-align: center;
    max-width: 550px;
    position: relative;
    padding: 0 50px;
}

.product-card .images .thumbs .button-next {
    position: absolute;
    right: 0;
    top: 15px;
    background: url("../images/icons/arrow_right_circle_hover.svg");
    background-size: cover;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.product-card .images .thumbs .button-prev {
    position: absolute;
    left: 0;
    top: 15px;
    background: url("../images/icons/arrow_right_circle_hover.svg");
    background-size: cover;
    width: 40px;
    height: 40px;
    transform: rotate(180deg);
    cursor: pointer;
}

.product-card .images .thumbs .button-next:hover,
.product-card .images .thumbs .button-prev:hover {
    background: url("../images/icons/arrow_right_circle_active.svg");
    background-size: cover;
}

.product-card .images .thumbs .button-next.swiper-button-disabled,
.product-card .images .thumbs .button-prev.swiper-button-disabled {
    background: url("../images/icons/arrow_right_circle.svg");
    background-size: cover;
}

.product-card .images .thumbs img {
    width: 82px;
    border-radius: 10px;
    margin: 1px;
    cursor: pointer;
}

.product-card .images .thumbs img:hover {
    /*filter: drop-shadow(0px 0px 7px #6DD761);*/
}

.product-card .code {
    margin-bottom: 20px;
    margin-top: -10px;
    font-size: 16px;
}

.product-card .markdown {
    margin-bottom: 20px;
}

.product-card .description {
    margin-top: 35px;
}

.product-card .price-box {
    margin-bottom: 25px;
    max-width: 300px;
}

.mainSwiper {
    max-width: 550px;
    width: 100%;
}

.mainSwiper img {
    max-width: 99%;
}

.swiper.thumbSwiper {
    width: 100%;
    height: 80px;
}

.thumbSwiper .swiper-slide {
    opacity: 0.6;
}

.thumbSwiper .swiper-slide:hover {
    opacity: 1;
}

.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

@media (max-width: 1800px) {
    .page-product {
        background: url("../images/back_product.png") left -250px top 650px no-repeat;
    }
}

@media (max-width: 1300px) {
    .page-product {
        background: none;
    }
}

@media (max-width: 850px) {
    .page-product {
        min-height: auto;
    }

    .product-card {
        flex-direction: column;
        gap: 20px;
        margin-top: 25px;
    }

    .product-card .images {
        text-align: center;
    }

    .product-card .images .thumbs {
        margin-left: auto;
        margin-right: auto;
    }

    .product-card .main-image {
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .product-card h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .product-card .images .thumbs {
        margin-top: 10px;
    }

    .product-card .images .thumbs img {
        width: 70px;
    }

    .product-card .images .thumbs {
        padding: 0 32px;
    }

    .product-card .images .thumbs .button-next,
    .product-card .images .thumbs .button-prev {
        top: 15px;
        width: 25px;
        height: 25px;
    }

    .product-card .price-box {
        max-width: none;
    }
}


/* END #Product */

/* #Cart */
.page-cart {}

.page-cart .cart-contents {
    margin-top: 30px;
}

.page-cart .cart-contents .top-buttons {
    display: flex;
    justify-content: flex-end;
}

.page-cart .cart-contents .top-buttons .excel-icon {
    margin-right: 10px;
    position: relative;
    top: 2px;
}

.page-cart h1 {
    text-align: center;
}

.page-cart h1 small {
    font-weight: 500;
    margin-left: 20px;
    font-size: 0.7em;
    color: #5d5d5d;
}


.page-cart .cart-items {
    margin-bottom: 30px;
}

.page-cart .item {
    display: flex;
    column-gap: 30px;
    margin-bottom: 30px;
    font-size: 16px;
    align-items: center;
    justify-content: space-between;
}

.page-cart .item:last-child {
    margin-bottom: 0;
}

.page-cart .item .line-break {
    display: none;
}

.page-cart .item .image {
    min-height: 50px;
}

.page-cart .item .image img {
    width: 80px;
    border-radius: 10px;
}

.page-cart .item .data {
    flex-grow: 1;
    display: flex;
    column-gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.page-cart .del-btn {
    cursor: pointer;
}

.page-cart .price {
    font-weight: 700;
    font-size: 22px;
    white-space: nowrap;
    flex-basis: 250px;
    flex-shrink: 1;
    text-align: left;
}

.page-cart .name {
    font-weight: 500;
    font-size: 18px;
    flex-basis: 350px;
}

.page-cart .name a {
    color: #131313;
}

.page-cart .express-icon {
    vertical-align: middle;
}

.page-cart .express-icon svg {
    width: 20px;
    height: 20px;
}

.page-cart .total-box {
    margin-top: 20px;
}

.page-cart .totals {
    display: flex;
    justify-content: space-between;
}

.page-cart .totals .count {
    margin-left: 20px;
}

.page-cart .totals .sum-box {
    font-weight: 700;
    font-size: 26px;
}

.page-cart .totals .old-sum-box {
    color: grey;
    text-decoration: line-through;
    font-size: 24px;
}

.page-cart .weight-box {
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-end;
    column-gap: 30px;
}

.page-cart .calc-link {
    display: none;
    text-align: right;
    margin-bottom: 10px;
}

.page-cart .min-sum {
    margin-top: 20px;
    text-align: center;
}

.page-cart .bonus-box {
    margin-top: 10px;
}

.page-cart .bonus-box .badge {
    font-size: 16px;
}

.page-cart .totals .sum {
    margin-left: 20px;
    white-space: nowrap;
}

.page-cart .input-box {
    flex-basis: 180px;
    font-size: 18px;
}

.page-cart .input-box .label {
    font-size: 18px;
    margin-bottom: 14px;
    position: relative;
    margin-top: -35px;
}

.page-cart .quantity {
    display: inline-block;
    margin-right: 10px;
    width: 80px;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    padding: 2px 5px;
    height: 42px;
}

.page-cart .buttons {
    margin-top: 30px;
    text-align: right;
}

.page-cart .buttons a {
    margin-bottom: 30px;
}

.page-cart .h2 {
    font-weight: 700;
    font-size: 32px;
    margin: 60px 0 40px 0;
}

.page-cart .cart-empty {
    margin: 0 auto;
    text-align: center;
    max-width: 580px;
}

.page-cart .cart-empty .hint {
    font-weight: 400;
    font-size: 24px;
    color: #8C8C8C;
    margin-bottom: 40px;
}

.page-cart .cart-empty .btn {
    width: 486px;
}

.page-cart .price-link-box {
    margin-bottom: 30px;
}

.page-cart .express-bar {
    background: var(--ascent);
    color: white;
    border-radius: 5px;
    font-size: 12px;
    padding: 3px 5px;
    text-align: center;
    position: relative;
    margin-top: 7px;
}

.page-cart .express-bar.error {
    background: #880000;
}

.delivery-popup {
    /*max-width: 360px;*/
    max-width: 380px;
    text-align: center;
    padding: 25px 25px;
}

@media (max-width: 1750px) {
    .page-cart {
        background: none;
    }
}

@media (max-width: 1200px) {
    .page-cart .price {
        flex-basis: 130px;
        flex-shrink: 0;
        text-align: left;
    }

    .page-cart .input-box {
        flex-shrink: 0;
    }

    .page-cart .label {
        display: none;
    }
}

@media (max-width: 900px) {
    .page-cart .label {
        display: none;
    }

    .page-cart .item .image img {
        width: 75px;
        border-radius: 10px;
    }

    .page-cart .name {
        font-size: 20px;
    }
}

@media (max-width: 750px) {
    .page-cart {
        min-height: auto;
    }

    .page-cart .item {
        align-items: flex-start;
        column-gap: 20px;
    }

    .page-cart .item .data {
        column-gap: 10px;
        flex-wrap: wrap;
        row-gap: 10px;
        align-items: flex-start;
    }

    .page-cart .item .image img {
        width: 75px;
        border-radius: 10px;
    }

    .page-cart .name {
        flex-basis: 100%;
        font-weight: 500;
        font-size: 14px;
    }

    .page-cart .del img {
        width: 40px;
        height: 40px;
    }

    .page-cart .item .line-break {
        display: block;
        width: 100%;
    }

    .page-cart .input-box {
        flex-basis: auto;
        font-size: 16px;
    }

    .page-cart .field {
        display: inline-block;
        text-align: center;
    }

    .page-cart .input-box span.-unit {
        display: block;
        margin-top: 5px;
        font-size: 14px;
    }

    .page-cart .express-bar {
        max-width: 80px;
        font-size: 10px;
    }

    .page-cart .express-bar .unit {
        display: none;
    }

    .page-cart .quantity {
        margin: 0;
        width: 60px;
        font-weight: 600;
        font-size: 18px;
        padding: 2px 5px;
        height: 32px;
    }

    .page-cart .price {
        flex-basis: auto;
        font-size: 18px;
    }

    .page-cart .totals .sum-box {
        font-size: 20px;
    }

    .page-cart .totals .old-sum-box {
        font-size: 18px;
    }

    .page-cart .cart-empty .btn {
        width: 100%;
        box-sizing: border-box;
    }

    .page-cart .weight-box {
        flex-direction: column;
        row-gap: 10px;
        font-size: 16px;
        text-align: right;
    }

    .page-cart .calc-link {
        font-size: 16px;
    }
}

@media (max-width: 340px) {
    .page-cart .totals .sum-box {
        font-size: 18px;
    }
}

/* END #Cart */

/* #Order */
.auth-box {
    padding: 30px;
    background-color: #fff;
    border: 1px solid var(--gray);
    border-radius: 25px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.auth-box input {
    width: 100%;
}

.auth-info {
    background-color: var(--ascent);
    padding: 30px;
    text-align: center;
    border-radius: 25px;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}

.page-order {
    padding-top: 20px;
}

.page-order .order-form {
    max-width: 700px;
    padding-top: 20px;
    margin: 0 auto;
}

.page-order .order-form .note {
    background-color: var(--ascent);
    padding: 30px;
    text-align: center;
    border-radius: 25px;
    margin: 0 auto;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}

.page-order .order-form .note ul {
    list-style: none;
    padding: 0;
}

.page-order .order-form form {
    background-color: #fff;
    padding: 30px;
    border: 1px solid var(--gray);
    border-radius: 25px;
}

.page-order .order-form input, .page-order .order-form textarea {
    width: 100%;    
}

.page-order .order-form-bottom {
    text-align: center;
}

.page-order .city-info {
    font-size: 22px;
    text-align: center;
}

.page-order .city-info span {
    font-weight: bold;
}

.page-order .order-success {
    margin: 60px auto;
    text-align: center;
    max-width: 580px;
    display: none;
}

.page-order h1 {
    text-align: center;
}

.page-order .hint {
    font-weight: 400;
    font-size: 24px;
    color: #8C8C8C;
    margin-bottom: 40px;
}

.page-order .h2 {
    font-weight: 700;
    font-size: 32px;
    margin: 60px 0 40px 0;
}

.page-order .info {
    font-weight: 400;
    font-size: 24px;
    background: var(--ascent); url("../images/icons/edit_white.svg") no-repeat 30px 30px;
    color: white;
    box-sizing: border-box;
    padding: 30px 50px 30px 114px;
    padding-left: 114px;
    border-radius: 50px;
}

.page-order .note ul {
    margin: 20px 0 0 0;
    padding: 0 0 0 25px;
}

.page-order .note li {
    margin-bottom: 7px;
}

.page-order form .row {
    margin-bottom: 32px;
}

.page-order form .row:last-child {
    margin-bottom: 0;
}

.page-order form .row-columns {
    display: flex;
    column-gap: 32px;
}

.page-order form .row-columns>div {
    flex-basis: 50%;
}

/*выбор города в чекауте*/
.page-order .row .input-wrapper {
    position: relative;
}

.page-order .row .input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.page-order .row .suggestions {
    list-style: none;
    padding: 0;
    max-height: 200px;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: left;
    background: white;
    position: absolute;
    top: 60px;
}

.suggestions::-webkit-scrollbar-thumb {
    background-color: var(--ascent);
    border: 4px solid transparent;
    border-radius: 8px;
    background-clip: padding-box;
}

.suggestions::-webkit-scrollbar {
    width: 16px;
}

.page-order .row .suggestions li {
    padding: 10px;
    cursor: pointer;
}

.page-order .row .suggestions li:hover {
    background: #f2f2f2;
}

.page-order .row .error {
    color: red;
    font-size: 13px;
    margin-top: 8px;
    display: none;
}

.page-order .row .geolocate {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    /*padding: 5px;*/
    width: 30px;
    height: 30px;
}

.page-order .row .geolocate img {
    width: 100%;
    height: 100%;
}

/**/

.page-order .sum-box {
    margin-bottom: 30px;
}

.page-order .sum {
    font-size: 24px;
    text-align: right;
}

.page-order .sum-old {
    font-size: 22px;
    color: grey;
    text-decoration: line-through;
}

.page-order .bonus-sum {
    font-size: 22px;
}

@media (max-width: 700px) {
    .page-order .note {
        font-size: 18px;
        padding-left: 80px;
        margin-top: 30px;
    }

    .page-order .info {
        font-size: 18px;
        border-radius: 30px;
        background-size: 40px 40px;
        padding-left: 90px;
    }

    .page-order form .row-columns {
        flex-wrap: wrap;
    }

    .page-order form .row-columns>div {
        flex-basis: 100%;
    }

    .page-order form .row-columns>div:first-child {
        margin-bottom: 32px;
    }

    .page-order .city-info {
        font-size: 20px;
    }
}

/* END #Order */

/* #Orders */
.page-lk-order h2,
.page-lk-order h3 {
    color: #3d3d3d;
}

.page-lk-order .head {
    margin-top: 30px;
    display: flex;
    column-gap: 30px;
    align-items: center;
}

.page-lk-order .order-btns {
    margin-top: 20px;
}

.page-lk-order .order-btns .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.page-lk-order .tracking {
    margin-top: 20px;
    min-height: 30px;
    display: flex;
}

.page-lk-order .weight-box {
    margin-top: 20px;
}

.page-lk-order .tracking .status {
    margin-left: 20px;
    flex-basis: auto;
}

.page-lk-order .tracking .loader {
    margin-left: 10px;
    position: relative;
    top: -3px;
}

.page-lk-order .head .h1 {
    vertical-align: middle;
}

.page-lk-order .head .btn {}

.page-lk-order .head .loader {
    margin-left: 10px;
}

.page-lk-order .head .date {}

.page-lk-order .head .bonus {
    white-space: nowrap;
}

.page-lk-order .head .status {}

.page-lk-order .item {
    display: flex;
    column-gap: 30px;
    margin-bottom: 30px;
    font-size: 16px;
    align-items: center;
    justify-content: space-between;
}

.page-lk-order .item .line-break {
    display: none;
}

.page-lk-order .item .image {
    min-height: 50px;
}

.page-lk-order .item .image img {
    width: 126px;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
}

.page-lk-order .add-photos {
    width: 126px;
}

.page-lk-order .add-photos a:hover {
    text-decoration: none;
}

.page-lk-order .item .image img.add {
    width: 35px;
    border-radius: 10px;
}

.page-lk-order .item .data {
    flex-grow: 1;
    display: flex;
    column-gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.page-lk-order .del-btn {
    cursor: pointer;
}

.page-lk-order .sum {
    flex-basis: 200px;
    flex-shrink: 1;
    text-align: left;
}

.page-lk-order .price {
    font-weight: 700;
    font-size: 22px;
    white-space: nowrap;
}

.page-lk-order .name {
    font-weight: 500;
    font-size: 18px;
    flex-basis: 350px;
}

.page-lk-order .order-items .name a {
    color: #131313;
}

.page-lk-order .quantity {
    font-size: 20px;
    font-weight: 600;
}

.page-lk-order .label {
    margin-bottom: 5px;
}

.page-lk-order .sums {
    margin-top: 30px;
    font-size: 22px;
    margin-bottom: 30px;
}

.page-lk-order .sums .row {
    margin-bottom: 15px;
}

.page-lk-order .totals {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 30px;
}

.page-lk-order .documents .doc-group {
    margin-bottom: 20px;
}

.page-lk-order .documents .doc-group .group {
    margin-bottom: 10px;
    font-weight: bold;
}

.page-lk-order .documents .doc-item {
    margin-bottom: 10px;
    display: flex;
    column-gap: 20px;
}

.page-lk-order .doc-item .name svg {
    margin-right: 8px;
}

.page-lk-order .documents .date {
    flex-basis: 140px;
}

@media (max-width: 1200px) {
    .page-lk-order .sum {
        flex-basis: 130px;
        flex-shrink: 0;
        text-align: left;
    }

    .page-lk-order .label {
        display: none;
    }
}

@media (max-width: 900px) {
    .page-lk-order .label {
        display: none;
    }

    .page-lk-order .item .image img {
        width: 75px;
        border-radius: 10px;
    }

    .page-lk-order .name {
        font-size: 20px;
    }
}

@media (max-width: 750px) {
    .page-lk-order {
        min-height: auto;
    }

    .page-lk-order .item {
        align-items: flex-start;
        column-gap: 20px;
    }

    .page-lk-order .unit {
        font-size: 12px;
    }

    .page-lk-order .item .data {
        column-gap: 10px;
        flex-wrap: wrap;
        row-gap: 10px;
        align-items: flex-start;
    }

    .page-lk-order .item .image img {
        width: 75px;
        border-radius: 10px;
    }

    .page-lk-order .add-photos {
        width: 75px;
    }

    .page-lk-order .item .image img.add {
        width: 30px;
        border-radius: 8px;
    }

    .page-lk-order .name {
        flex-basis: 100%;
        font-weight: 500;
        font-size: 14px;
    }

    .page-lk-order .item .line-break {
        display: block;
        width: 100%;
    }

    .page-lk-order .quantity {
        font-size: 18px;
    }

    .page-lk-order .sum {
        flex-basis: auto;
        font-size: 18px;
    }

    .page-lk-order .price {
        font-size: 18px;
    }

    .page-lk-order .sums {
        font-size: 18px;
    }

    .page-lk-order .totals {
        font-size: 22px;
    }

    .page-lk-order .head {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .page-lk-order .documents .date {
        font-size: 15px;
    }

    .page-lk-order .documents .group {
        font-size: 15px;
    }

    .page-lk-order .tracking {
        font-size: 14px;
    }

    .page-lk-order .tracking .number {
        flex-basis: 150px;
    }
}

@media (max-width: 340px) {
    .page-lk-order .totals {
        font-size: 18px;
    }

    .page-lk-order .sums {
        font-size: 16px;
    }
}

/* END #Orders */

/* Add */
.popup-wrap {
    position: relative;
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    margin: 0 auto;
}

.popup-wrap .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
}

/* Loader */
.loader {
    display: inline-block;
    border: 6px solid #f3f3f3;
    /* Light grey */
    border-top: 6px solid var(--ascent);
    /* Blue */
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

/* Cabinet */
@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato/Lato-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato/Lato-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

.page-cabinet {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.page-cabinet .container {
    padding-left: 0;
    /*15*/
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
}

.page-cabinet .container-with-padding {
    max-width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.page-cabinet h2 {
    color: #131313;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 32px;
}

.page-cabinet .history-link {
    margin-left: 10px;
}

.page-cabinet .top-row {
    display: flex;
    justify-content: space-between;
}

.page-cabinet .top-row .logout {
    margin-top: 20px;
}

.page-cabinet .bonus .amount {
    font-size: 22px;
    font-weight: bold;
}

.page-cabinet .bonus .item {
    margin-bottom: 20px;
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.page-cabinet .bonus .left {
    flex-basis: 230px;
}

.page-cabinet .bonus .left-expire {
    flex-basis: 100px;
}

.page-cabinet .bonus .date {
    font-size: 14px;
    color: #6c6c6c;
    margin-bottom: 5px;
}

.page-cabinet .bonus .comment {}

.page-cabinet .bonus .sum {
    font-size: 20px;
    font-weight: 700;
    flex-basis: 110px;
    white-space: nowrap;
    text-align: right;
}

.currency {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("../images/icons/currency.svg");
    vertical-align: top;
}

.page-cabinet .currency {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("../images/icons/currency_white.svg");
    vertical-align: top;
}

.page-cabinet .bonus .sum.plus .currency {
    background: url("../images/icons/currency_blue.svg");
}

.page-cabinet .bonus .sum.minus .currency {
    background: url("../images/icons/currency_orange.svg");
}

.page-cabinet .bonus .sum.plus {
    color: var(--ascent);
}

.page-cabinet .bonus .sum.minus {
    color: var(--ascent);
}

/* обновленный личный кабинет */
.page-cabinet .cabinet-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.page-cabinet .client-card {
    background: #F7F7F7;
    border-radius: 24px;
    padding: 30px;
}

.page-cabinet .client-card .client-name {
    font-size: 24px;
    font-weight: 600;
    color: #131313;
    margin-bottom: 20px;
}

.page-cabinet .client-card .client-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-cabinet .client-card .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.page-cabinet .client-card .contact-item svg {
    flex-shrink: 0;
}

.page-cabinet .cabinet-top .client-card .contact-edit {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #C5C5C5;
}

.page-cabinet .cabinet-top .client-card .contact-edit .icon-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #C5C5C533;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid #C5C5C533;
}

.page-cabinet .cabinet-top .client-card .contact-edit .icon-circle.verified {
    background-color: #2DC444;
    border-color: #2DC444;
}

.page-cabinet .cabinet-top .client-card .contact-edit .icon-circle img {
    width: 50%;
    height: 50%;
}

.page-cabinet .cabinet-top .client-card .contact-edit .contact-input {
    flex: 1 1 0;
    padding: 8px 12px;
    outline: none;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    min-width: 0;
}

.page-cabinet .cabinet-top .client-card .contact-edit .message {
    font-size: 14px;
    font-weight: 500;
}

.page-cabinet .cabinet-top .client-card .contact-edit .icon-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.page-cabinet .cabinet-top .client-card .contact-edit .icon-button.pencil {
    width: 18px;
    height: 18px;
    background-color: #929292;
    -webkit-mask: url('../images/icons/ic_save.svg') no-repeat center;
    mask: url('../images/icons/ic_save.svg') no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.page-cabinet .managers-card {
    background: #F7F7F7;
    border-radius: 24px;
    padding: 30px;
}

.page-cabinet .managers-card .managers-title {
    font-size: 20px;
    font-weight: 600;
    color: #131313;
    margin-bottom: 20px;
}

.page-cabinet .managers-card .managers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-cabinet .managers-card .manager-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.page-cabinet .managers-card .manager-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-cabinet .managers-card .manager-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-cabinet .managers-card .manager-info {
    flex: 1;
}

.page-cabinet .managers-card .manager-name {
    font-size: 18px;
    font-weight: 600;
    color: #131313;
    margin-bottom: 8px;
}

.page-cabinet .managers-card .manager-contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.page-cabinet .managers-card .manager-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #131313;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-cabinet .managers-card .manager-contact svg {
    color: #8C8C8C;
}

.page-cabinet .managers-card .manager-contact:hover {
    color: #131313;
}

.page-cabinet .managers-card .manager-contact svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .page-cabinet .cabinet-top {
        grid-template-columns: 1fr;
        margin: 30px 14px;
        gap: 20px;
    }

    .page-cabinet .client-card {
        padding: 25px;
    }

    .page-cabinet .client-card .client-name {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .page-cabinet .client-card .contact-item {
        font-size: 15px;
    }

    .page-cabinet .managers-card {
        padding: 25px;
    }

    .page-cabinet .managers-card .managers-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .page-cabinet .managers-card .manager-name {
        font-size: 16px;
    }

    .page-cabinet .managers-card .manager-contact {
        font-size: 14px;
    }
}

.page-cabinet .balance-partner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.page-cabinet .cabinet-balance {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 28px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.page-cabinet .balance-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.page-cabinet .balance-amount {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
}

.page-cabinet .balance-currency {
    font-size: 15px;
    opacity: 0.85;
}

.page-cabinet .cabinet-partner {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 16px;
    padding: 28px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(240, 147, 251, 0.3);
}

.page-cabinet .cabinet-partner span {
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: center;
}

.page-cabinet .cabinet-partner .button {
    background: white;
    color: #f5576c;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.page-cabinet .cabinet-partner .button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .page-cabinet .balance-partner-container {
        grid-template-columns: 1fr;
        margin: 30px 14px;
        gap: 20px;
    }
}

.page-cabinet .leave-container {
    text-align: right;
}

.page-cabinet .leave {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    border: none;
    background-color: #F3F3F3;
    color: #8C8C8C;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.page-cabinet .leave:hover {
    color: white;
    background-color: #a6a5a5;
}

.page-cabinet .orders .sort {
    margin-bottom: 30px;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 17px;
    border: 1px solid #CBCBCB;
    gap: 0;
}

.page-cabinet .page-cabinet .orders {
    padding: 40px 102px;
    background: #F7F7F7;
    max-width: 1200px;
    border-radius: 40px;
    margin: 30px auto;
}

.page-cabinet .page-cabinet .orders h2 {
    color: #131313;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
}

.page-cabinet .page-cabinet .orders .sort {
    margin-bottom: 30px;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 17px;
    border: 1px solid #CBCBCB;
    /*gap: 15px;*/
    gap: 0;
}

.page-cabinet .orders .sort .text {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    flex-basis: auto;
    flex-wrap: wrap;
    gap: 10px;
}

.page-cabinet .orders .sort .text-file {
    font-size: 17px;
    font-weight: 600;
    flex-basis: auto;
}

.page-cabinet .orders .sort .sort-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0;
}

.page-cabinet .orders .sort .sort-icon {
    margin: 0 -2px;
    width: 17px;
    height: 17px;
    display: block;
    background-color: #131313;
    mask: url("../images/icons/arrow_cabinet_up.svg") no-repeat center/contain;
    -webkit-mask: url("../images/icons/arrow_cabinet_up.svg") no-repeat center/contain;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.page-cabinet .orders .sort .sort-icon.up {
    transform: rotate(0deg);
}

.page-cabinet .orders .sort .sort-icon.down {
    transform: rotate(180deg);
}

.page-cabinet .orders .sort .sort-icon:not(.active) {
    background-color: #8C8C8C;
}

.page-cabinet .orders .item {
    margin-bottom: 15px;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #CFCFCF;
    row-gap: 20px;
}

.page-cabinet .orders .name-box {
    flex-basis: 300px;
}

.page-cabinet .orders .name {
    font-size: 18px;
    font-weight: 600;
    flex-basis: 160px;
}

.page-cabinet .orders .name a {
    color: #131313;
}

.page-cabinet .orders .date {
    flex-basis: 180px;
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
}

.page-cabinet .orders .sum {
    font-size: 18px;
    font-weight: 600;
    flex-basis: 140px;
    white-space: nowrap;
    text-align: right;
}

.page-cabinet .orders .status {
    flex-basis: 155px;
    display: inline-block;
    color: #131313;
    background: #CFCFCF;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 10px 15px;
    white-space: nowrap;
}

.page-cabinet .orders .status-small {
    font-size: 14px;
}

.page-cabinet .orders .status-medium {
    font-size: 16px;
}

.page-cabinet .orders .status-big {
    font-size: 18px;
}

/* цвета по статусам */
.page-cabinet .orders .status-sent,
.status-paid,
.page-cabinet .orders .status-pickup {
    background-color: #2DC444;
    color: #FCFCFC;
}

.page-cabinet .orders .status-wait-payment {
    background-color: var(--ascent);
    color: #FCFCFC;
}

.page-cabinet .orders .status-canceled {
    background-color: #F44336;
    color: #FCFCFC;
}

.page-cabinet .orders .status-other {
    background-color: #CFCFCF;
    color: #131313;
}

.page-cabinet .orders .download {
    /*flex-basis: 100px;*/
    flex-basis: auto;
    font-size: 17px;
    font-weight: 600;
    display: inline-flex;
    color: #131313;
}

.page-cabinet .orders .download .download-icon {
    margin-left: 5px;
    width: 17px;
    height: 17px;
    background: url("../images/icons/download.svg") no-repeat center/contain;
}

.page-cabinet .documents .item {
    margin-bottom: 10px;
    display: flex;
    column-gap: 20px;
}

.page-cabinet .documents .name svg {
    margin-right: 8px;
}

.page-cabinet .preorders {
    padding: 40px 102px;
    background: #F7F7F7;
    max-width: 1200px;
    border-radius: 40px;
    margin: 30px auto;
}

.page-cabinet .preorders h2 {
    color: #131313;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    margin-top: 0;
}

.page-cabinet .preorders .item {
    margin-bottom: 15px;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #CFCFCF;
    row-gap: 20px;
    column-gap: 30px;
}

.page-cabinet .preorders .name-box {
    flex-basis: 300px;
}

.page-cabinet .preorders .name {
    font-size: 18px;
    font-weight: 600;
    flex-basis: 250px;
}

.page-cabinet .preorders .name a {
    color: #131313;
}

.page-cabinet .preorders .date {
    flex-basis: 180px;
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
}

.page-cabinet .preorders .status {
    flex-basis: 155px;
    display: inline-block;
    background-color: #2DC444;
    color: #FCFCFC;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 10px 15px;
    white-space: nowrap;
}

.page-cabinet .cabinet-birthdate-notice {
    background: #F7F7F7;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.page-cabinet .cabinet-birthdate-notice .birthdate-notice-text {
    font-size: 16px;
    color: #131313;
    flex: 1;
}

.page-cabinet .cabinet-birthdate-notice .birthdate-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.page-cabinet .cabinet-birthdate-notice .birthdate-input-row input[type="date"] {
    padding: 10px 20px;
    border: 1px solid #C5C5C5;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    background: #fff;
    outline: none;
}

.page-cabinet .cabinet-birthdate-notice .birthdate-submit {
    display: inline-block;
    border-radius: 50px;
    border: 0;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    background: var(--ascent);
    text-align: center;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.page-cabinet .cabinet-birthdate-notice .birthdate-submit:hover {
    background: #f09020;
}

@media (max-width: 1080px) {
    .page-cabinet .orders {
        padding: 40px 14px;
        border-radius: 0;
    }

    .page-cabinet .preorders {
        padding: 40px 14px;
        border-radius: 0;
    }
}

@media (max-width: 750px) {

    /* ширина экрана телефона ~ 392 */
    .page-cabinet .bonus .item {
        column-gap: 10px;
    }

    .page-cabinet .bonus .date {
        font-size: 15px;
    }

    .page-cabinet .bonus .sum {
        font-size: 18px;
    }

    .page-cabinet .bonus .comment {
        font-size: 15px;
    }

    .page-cabinet .orders .sort {
        padding: 25px 25px;
        row-gap: 30px;
    }

    .page-cabinet .orders .sort .text-file {
        display: none;
    }

    .page-cabinet .orders .sort .text {
        font-size: 16px;
        gap: 5px;
        align-items: center;
    }

    .page-cabinet .orders .sort .text-status {
        font-size: 16px;
        flex-basis: auto;
    }

    .page-cabinet .orders .item {
        margin-bottom: 30px;
        flex-wrap: wrap;
        row-gap: 20px;
        column-gap: 0;
        padding: 25px;
    }

    .page-cabinet .orders .name {
        flex-basis: 100%;
        order: 0;
    }

    .page-cabinet .orders .date {
        flex-basis: 50%;
        order: 1;
    }

    .page-cabinet .orders .sum {
        order: 2;
        flex-basis: auto;
        /* 25% */
    }

    .page-cabinet .orders .status {
        flex-basis: 45%;
        order: 3;
        padding: 10px 10px;
    }

    .page-cabinet .orders .download {
        order: 4;
        flex-basis: auto;
    }

    .page-cabinet .documents .date {
        font-size: 15px;
    }

    .page-cabinet .documents .name {
        font-size: 16px;
    }

    .page-cabinet .history-link {
        display: block;
        margin-top: 5px;
        margin-left: 0;
    }

    .page-cabinet .documents {
        margin: 0 14px;
    }

    .page-cabinet .preorders .item {
        margin-bottom: 30px;
        flex-wrap: wrap;
        row-gap: 20px;
        column-gap: 0;
        padding: 25px;
    }

    .page-cabinet .preorders .name {
        flex-basis: 100%;
        order: 0;
    }

    .page-cabinet .preorders .date {
        flex-basis: 50%;
        order: 1;
    }

    .page-cabinet .preorders .status {
        flex-basis: 45%;
        order: 3;
        padding: 10px 10px;
    }

}

@media (max-width: 348px) {
    .page-cabinet .orders .sort .text {
        font-size: 15px;
        gap: 3px;
        align-items: center;
    }
}

.page .dropzone {
    background: none repeat scroll 0 0 white;
    border: 2px dashed var(--ascent);
    border-radius: 5px;
    min-height: 30px;
    padding: 14px;
    width: 100%;
}

.page .dropzone.dz-drag-hover {
    border-style: solid;
}

.page .dropzone .dz-message {
    font-size: 20px;
}

.page .promotions-list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 15px;
}

.page .promotions-list a {
    text-decoration: none;
    color: var(--black);
}

.page .promotions-list .promotion-item {
    flex: 1 1 45%;
    min-width: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 20px;
    gap: 20px;
}

.page .promotions-list .promotion-item:hover {
    border: 1px solid var(--ascent);
}

.page .promotions-list .promotion-item img,
.page .promotions-list .promotion-item .no-image {
    width: 100px;
    min-width: 100px;
    height: 100px;
    object-fit: contain;
}

.page .promotions-list .promotion-item .no-image {
    background: #f5f5f5;
}

.page .promotions-list .promotion-item .promotion-info {
    flex: 1;
}

.page-cart .dropzone {
    margin: 30px 0;
}

.promocode-box {
    text-align: right;
}

.promocode-input {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 50px;
}

@media (max-width: 700px) {
    .promocode-input {
        padding: 8px 16px;
        font-size: 14px;
    }
}

.benefits {
    margin-bottom: 60px;
}

.benefits__list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.benefits__item {
    flex: 1;
    min-width: 150px;
    background: #ffffff;
    border: 1px solid var(--gray);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    text-align: center;
    transition: 0.2s;
    scroll-snap-align: center;
}

.benefits__item:hover {
    border: 1px solid var(--ascent);
}

.benefits__item img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
}

.benefits__item div {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 700px) {
    .benefits__list {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

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

    .benefits__item {
        min-width: 70%;
    }
}

.about {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
}

.about__image img {
    max-width: 350px;
}

@media (max-width: 1024px) {
    .about {
        flex-direction: column;
    }

    .about__image img {
        max-width: 100%;
    }
    
}

.advantages__list {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.advantages__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advantages__item {
    flex: 1 1 15%;
}


.advantages__item img {
    max-width: 100%;
}

@media (max-width: 768px) {
    .advantages__list {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        font-size: 16px;
        padding-bottom: 10px;
    }

    .advantages__item {
        flex: 0 0 calc(50% - 10px);
        scroll-snap-align: start;
    }
}

.faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq__question {
    border-bottom: 1px solid var(--gray);
}
 
.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    transition: color 0.2s ease;
}
 
.faq__question:hover {
    color: var(--ascent);
}
 
.faq__item.is-active .faq__question {
    color: var(--ascent);
    border-bottom: 2px solid var(--ascent);
}
 
.faq__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ascent);
    transition: transform 0.3s ease;
}
 
.faq__item.is-active .faq__icon {
    transform: rotate(90deg);
}
 
.faq__answer {
    display: none;
    padding-bottom: 20px;
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    max-width: 680px;
}
 
.faq__answer p + p {
    margin-top: 10px;
}
 
@media (max-width: 768px) {
    .faq__title {
        font-size: 22px;
    }
 
    .faq__question {
        font-size: 15px;
        padding: 16px 0;
    }
 
    .faq__answer {
        font-size: 14px;
    }
}

/* footer */
footer.container {
    padding: 0;
}

.footer {
    background: #ffffff;
    border-radius: 25px;
    border: 1px solid rgba(243, 243, 243, 1);
    margin-top: 40px;
}

.footer-row {
    padding: 30px;
    padding-bottom: 0;
}

.footer-row.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-row.top .logo img {
    width: 100%;
    max-width: 390px;
}

.footer-row.top .contacts {
    margin-left: auto;
    text-wrap: nowrap;
}

.footer-row.top .contacts .phone {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-row.top .contacts .phone img {
    width: 24px;
    height: 24px;
}

.footer-row.top .contacts .phone a {
    color: var(--black);
}

.footer-row.top .contacts .times {
    color: var(--gray-dark);
    font-size: 16px;
}

.footer-row.top .social {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-row.middle .menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-row.middle .menu a {
    color: var(--gray-dark);
}

.footer-row.middle .menu .header-promos-link {
    color: var(--green);
    padding-right: 20px;
    background-image: url('../images/icons-new/promos.svg');
    background-position: right center;
    background-repeat: no-repeat;
}

.footer-row.middle .menu .header-payment-link {
    color: var(--ascent);
}

/* Menu PC */
.footer-row.bottom {
    padding-left: 20px;
}

.footer .catalog-dropdown-columns {
    display: flex;
    padding-bottom: 30px;
}

.footer .catalog-dropdown-col {
    flex: 1 1 25%;
    max-width: 25%;
    padding: 0;
}

.footer .catalog-dropdown-col ul {
    list-style: none;
    margin: 0; 
    padding: 0;
}

.footer .catalog-dropdown-link img {
    width: 18px;
    height: 18px;
}

.footer .catalog-dropdown-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--black);
    font-size: 16px;
    overflow: hidden;

    background-image: url('../images/icons-new/arrow-right.svg');
    background-position: right 8px center;
    background-repeat: no-repeat;
}

.footer .catalog-dropdown-link:hover {
    background-color: var(--ascent-light);
    padding-left: 10px;
    filter: none;
    color: var(--ascent);
}

.under-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
    padding: 30px;
    border-radius: 25px;
    background-color: var(--ascent-light);
}

.mobile-dockbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background-color: #fff;
    z-index: 100000;
    box-shadow: 0px -4px 7.3px 0px rgba(0, 0, 0, 0.04);
    padding: 15px 20px;
    max-height: 75px;
}

.mobile-dockbar .dockbar-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    gap: 5px;
}

.mobile-dockbar .dockbar-icon {
    display: inline-block;
    position: relative;
    background-size: contain;
    width: 24px;
    height: 24px;
}

.mobile-dockbar .dockbar-home-icon {
    background-image: url('../images/icons-new/home.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.mobile-dockbar .dockbar-catalog-icon {
    background-image: url('../images/icons-new/catalog.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.mobile-dockbar .dockbar-cart-icon {
    background-image: url('../images/icons-new/cart.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.mobile-dockbar .dockbar-user-icon {
    background-image: url('../images/icons-new/user.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.mobile-dockbar .dockbar-cart-icon .count {
    position: absolute;
    display: inline-block;
    top: -5px;
    right: -20px;
    background-color: var(--ascent-light);
    border-radius: 5px;
    width: 20px;
    height: 20px;
    text-align: center;
    opacity: .7;
}

@media (max-width: 768px) {
    .footer {
        border-radius: 0;
    }

    .footer-row.top {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-row.top .logo img {
        max-width: 250px;
    }

    .footer-row.top .contacts {
        margin-left: 0;
    }

    .footer-row.top .contacts .times {
        font-size: 14px;
    }

    .footer-row.middle .menu {
        flex-direction: column; 
        align-items: flex-start;
        gap: 20px;
    }

    .under-footer {
        border-radius: 0;
        margin-bottom: 90px;
    }
}