/* Базовые */
#wholesale {
    color: #0c0e1b;
    overflow: hidden;
}

.wholesale-container {
    max-width: 1514px;
    width: 100%;
    padding: 0 32px;
    margin: 0 auto;
}

.maxwidth-theme {
    max-width: 1514px;
}

.col-xs-12,
.col-sm-12,
.col-md-12 {
    padding: 0;
}

body > .body:not(.index) > .main {
    padding-bottom: 0;
}

.wholesale-title {
    font-size: 45px;
    font-weight: 600;
    line-height: 50px;
    text-align: left;
    margin: 0;
}

.wholesale-text {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    text-align: left;
    margin: 0;
}

b {
    font-weight: 700;
}

.wholesale-btn {
    width: max-content;
    padding: 25px 65px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    text-align: left;
    color: #fff;
    cursor: pointer;
}

.wholesale-btn-gradient {
    background: linear-gradient(97.08deg, #ec375a 0%, #b32120 50%, #ff6c89 65%, #ec375a 80%);
    background-size: 200% 200%;
    animation: gradientShift 4s infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    75% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

input[type='text'],
input[type='email'] {
    outline: none;
    border: 2px solid transparent;
    border-radius: 12px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    color: #0c0e1b;
    padding: 7px 15px;
    transition: 0.4s;
}

input[type='text']::placeholder,
input[type='email']::placeholder {
    color: #606060;
}

input[type='text'].error,
input[type='email'].error {
    border: 2px solid #931a1d;
}

button {
    outline: none;
    border: none;
    border-radius: 12px;
    background-color: #fff;
    color: #0c0e1b;
    font-family: Manrope;
    font-size: 20px;
    font-weight: 700;
    line-height: 55px;
    padding: 0 32px;
    cursor: pointer;
    text-align: center;
}

label:has(input[type='checkbox']) {
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
    width: max-content;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
}

label:has(input[type='checkbox'])::before {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 2px;
    border: 2px solid transparent;
    transition: 0.4s;
}

label:has(input[type='checkbox'].error)::before {
    border: 2px solid #931a1d;
}

label:has(input[type='checkbox']:checked)::before {
    content: url(../imgs/check.svg);
}

label input[type='checkbox'] {
    display: none;
}

label:has(input[type='checkbox']) a {
    color: #fff;
}

label:has(input[type='checkbox']) a:hover {
    border-bottom: 1px solid #fff;
}

button.cookie_accept {
    line-height: 24px;
}

#main.no-widget #cookie_note,
#main.no-widget .b24-widget-button-wrapper {
    display: none !important;
}

/* Шапка */

.wholesale-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.wholesale-header-container {
    padding: 22px 0 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wholesale-logo img {
    height: 58px;
    display: block;
}

.wholesale-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 23px;
}

.wholesale-menu-item {
    font-size: 17px;
    font-weight: 400;
    line-height: 40px;
    text-align: left;
    color: #0c0e1b;
}

.wholesale-mobile-header {
    display: none;
}

/* Основной блок */

#wholesale-main {
    margin-top: 107px;
    background-color: #e4e2ef;
    position: relative;
    overflow: hidden;
}

#wholesale-main::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 128px;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(166, 191, 255, 0.25) 15.5%, #a6bfff 100%);
}

#wholesale-main .wholesale-container {
    position: relative;
    z-index: 10;
}

.wholesale-main-title {
    padding-top: 112px;
}

#wholesale-main h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    text-align: left;
    margin: 0;
}

.wholesale-main-sub-title {
    margin: 5px 0 0;
    font-size: 25px;
    font-weight: 500;
    line-height: 33px;
    text-align: left;
}

.wholesale-main-text {
    margin-top: 48px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.01em;
    text-align: left;
}

.wholesale-main-text p {
    margin: 0 0 6px;
}

.wholesale-main-bg {
    position: absolute;
    right: 0;
    bottom: -26px;
    z-index: 5;
    max-width: 55%;
}

.wholesale-main-mobile-bg {
    display: none;
}

.wholesale-main-btn {
    margin-top: 70px;
    margin-bottom: 26px;
    display: block;
}

.wholesale-main-btn:hover {
    color: #fff;
}

/* Коллекции */

#wholesale-collections {
    padding-top: 70px;
}

.wholesale-collections-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
}

.wholesale-collections-list-item {
    border-radius: 15px;
    max-width: 675px;
    width: 100%;
    aspect-ratio: 675/305;
    position: relative;
    padding: 28px 15px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    cursor: pointer;
}

.wholesale-collections-list-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.wholesale-collections-list-item-name {
    position: relative;
    z-index: 5;
    font-size: 29px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    border-bottom: 1px solid rgba(12, 14, 27, 0.5);
    display: flex;
    align-items: center;
}

.wholesale-collections-list-item-name svg {
    position: absolute;
    left: calc(100% + 12px);
}

/* Преимущества */

#wholesale-advantages {
    padding-top: 70px;
}

.wholesale-advantages-wrapper {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
    border-radius: 15px 15px 0 0;
    padding: 0 70px 75px;
    margin-top: 54px;
}

.wholesale-advantages-tabs {
    display: flex;
    justify-content: space-between;
    gap: 13px;
}

.wholesale-advantages-tab {
    padding: 16px 40px;
    font-size: 20px;
    width: 100%;
    min-width: max-content;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    background-color: #f4f4f4;
    border-radius: 0 0 15px 15px;
    cursor: pointer;
    transition: 0.5s;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

.wholesale-advantages-tab.active {
    color: #fff;
    background: linear-gradient(97.08deg, #ec375a 0%, #b32120 50%, #ff6c89 65%, #ec375a 80%);
    background-size: 200% 200%;
    animation: gradientShift 4s infinite;
    box-shadow: 0px 2px 0px 0px #960e0d;
}

#wholesale-advantages-swiper {
    margin-top: 25px;
}

.wholesale-advantages-slide {
    padding: 25px 0;
    display: grid;
    grid-template-columns: 6.3fr 6fr;
    gap: 70px;
}

.wholesale-advantages-slide img {
    border-radius: 15px;
    width: 100%;
    display: block;
}

.wholesale-advantages-slide-text {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
}

.wholesale-advantages-slide-text ul {
    padding-left: 20px;
}

.wholesale-advantages-slide-text ul:last-child {
    margin-bottom: 0;
}

.wholesale-advantages-slide-text ul li {
    list-style-type: disc;
    margin-bottom: 32px;
    line-height: 32px;
}

.wholesale-advantages-slide-text ul li:last-of-type {
    margin-bottom: 0;
}

.wholesale-advantages-slide-text ul li::before {
    display: none;
}

/* Форма "Получите каталог" */

#wholesale-catalog-form {
    background: #ec375a;
    position: relative;
}

#wholesale-catalog-form::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: url('../imgs/pulse.png');
    background-position-x: -43px;
    background-position-y: 93px;
    background-repeat: repeat-x;
    z-index: 5;
}

#wholesale-catalog-form .wholesale-container {
    position: relative;
    z-index: 10;
}

.wholesale-catalog-form-bg {
    background: linear-gradient(90deg, #ec375a 0%, #ff7e97 30.5%, #ec375a 100%);
    position: absolute;
    height: 100%;
    width: calc(100% + 212px);
    max-width: 1726px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 1;
}

.wholesale-catalog-form-bg::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: url('../imgs/texture.png');
    background-size: 8px;
    background-repeat: repeat;
}

.wholesale-catalog-form-container {
    display: grid;
    padding: 40px 0;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    color: #fff;
}

.wholesale-catalog-form-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.wholesale-catalog-form {
    /* padding-top: 25px; */
}

.wholesale-catalog-form h2 {
    font-size: 26px;
    font-weight: 800;
    line-height: 27px;
    text-align: left;
    margin-bottom: 5px;
    color: #fff;
}

.wholesale-catalog-form .sub-title {
    font-size: 23px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
}

.wholesale-catalog-form-input-group {
    display: flex;
    align-items: center;
    max-height: 58px;
    gap: 20px;
    margin-top: 21px;
    margin-bottom: 11px;
}

.wholesale-catalog-form-input-group input {
    width: 225px;
}

.wholesale-catalog-form p {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    margin: 10px 0 0;
}

.form-error-text {
    display: none;
    margin-top: 10px;
    color: #931a1d;
    text-shadow: 0px 0px 15px #fff;
}

form.error .form-error-text {
    display: block;
}

/* Команда */

#wholesale-team {
    padding-top: 70px;
}

.wholesale-team-info p {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    text-align: left;
    margin-top: 22px;
}

.wholesale-team-slider-container {
    display: grid;
    grid-template-columns: 35px 25fr 7fr 35px;
    gap: 30px;
}

.wholesale-team-slider-nav,
.wholesale-cases-slider-nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wholesale-cases-slider-nav.hidden-nav {
    opacity: 0;
    pointer-events: none;
}

.wholesale-team-slider-nav svg,
.wholesale-cases-slider-nav svg {
    border-radius: 50%;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

#wholesale-team-slider-main {
    width: 100%;
    aspect-ratio: 10/7.4;
    border-radius: 25px;
}

#wholesale-team-slider-main .swiper-slide {
    background-color: #606060;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 10/7.4;
}

#wholesale-team-slider-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#wholesale-team-slider-pagination {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 2.8/7.4;
    border-radius: 15px;
}

#wholesale-team-slider-pagination .swiper-slide {
    aspect-ratio: 2.8/2.18;
    background-color: #606060;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

#wholesale-team-slider-pagination .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wholesale-slider-mobile-nav-container {
    display: none;
}

/* Кейсы */

#wholesale-cases {
    padding-top: 70px;
}

.wholesale-cases-info p {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    text-align: left;
    margin-top: 22px;
}

.wholesale-cases-container {
    background: linear-gradient(180deg, #ec375a 2.87%, #ff7e97 49.47%, #ec375a 99.95%);
    position: relative;
    padding: 60px 0 100px;
}

.wholesale-cases-container::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: url('../imgs/texture.png');
    background-size: 8px;
    background-repeat: repeat;
    z-index: 1;
}

.wholesale-cases-container .wholesale-container {
    position: relative;
    z-index: 2;
}

.wholesale-cases-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#wholesale-cases-slider {
    max-width: 1275px;
    border-radius: 15px 15px 0 0;
}

.wholesale-case-card {
    border: 1px solid #ffffff;
    border-radius: 15px;
    height: 380px;
    position: relative;
    padding: 18px;
}

.wholesale-case-card h3 {
    display: flex;
    align-items: flex-start;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
    color: #fff;
}

.wholesale-case-card h3::before {
    content: '';
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 10px;
    margin-top: 7px;
}

.wholesale-case-card img {
    position: absolute;
    width: calc(100% + 2px);
    height: calc(100% - 63px);
    object-fit: cover;
    left: -1px;
    bottom: -1px;
    border-radius: 0 0 15px 15px;
    clip-path: ellipse(393px 393px at 378px 395px);
}

.wholesale-case-text {
    margin-top: 10px;
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    color: #fff;
}

/* Программа лояльности */

#wholesale-loyalty-program {
    padding: 70px 0;
}

.wholesale-loyalty-program-info .wholesale-text {
    margin-top: 10px;
}

.wholesale-loyalty-program-table {
    box-sizing: border-box;
    margin-top: 34px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    outline: 1px solid rgba(0, 0, 0, 0.02) !important;
    border-radius: 15px;
    overflow: hidden;
}

.wholesale-loyalty-program-table-row {
    display: grid;
    grid-template-columns: 5fr 4fr 2.6fr 2.6fr;
}

.wholesale-loyalty-program-table-row:has(.wholesale-loyalty-program-table-title) {
    background-color: #e4e2ef;
}

.wholesale-loyalty-program-table-row:nth-of-type(2) {
    background-color: rgba(228, 226, 239, 0.1);
    font-weight: 400;
}

.wholesale-loyalty-program-table-row:nth-of-type(3) {
    background-color: rgba(228, 226, 239, 0.25);
    font-weight: 500;
}

.wholesale-loyalty-program-table-row:nth-of-type(4) {
    background-color: rgba(228, 226, 239, 0.52);
    font-weight: 600;
}

.wholesale-loyalty-program-table-row:nth-of-type(5) {
    background-color: rgba(228, 226, 239, 0.75);
    font-weight: 700;
}

.wholesale-loyalty-program-table-row:nth-of-type(6) {
    background-color: rgba(228, 226, 239, 1);
    font-weight: 800;
}

.wholesale-loyalty-program-table-row > div {
    border-right: 1px solid rgba(0, 0, 0, 0.02);
}

.wholesale-loyalty-program-table-row > div:last-child {
    border-right: none;
}

.wholesale-loyalty-program-table-title {
    padding: 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
}

.wholesale-loyalty-program-table-cell {
    font-size: 20px;
    line-height: 32px;
    text-align: left;
    padding: 20px 10px;
}

.wholesale-loyalty-program-epilog {
    margin-top: 55px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.wholesale-loyalty-program-epilog > div {
    padding-top: 45px;
    padding-bottom: 45px;
    display: flex;
    align-items: center;
}

.wholesale-loyalty-program-epilog-left {
    background-color: rgba(228, 226, 239, 0.5);
}

.wholesale-loyalty-program-epilog-right {
    background-color: rgba(247, 229, 229, 0.5);
}

.wholesale-loyalty-program-epilog-content {
    width: 100%;
    max-width: 757px;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
}

.wholesale-loyalty-program-epilog-left .wholesale-loyalty-program-epilog-content {
    margin: 0 0 0 auto;
    padding: 0 32px;
}

.wholesale-loyalty-program-epilog-right .wholesale-loyalty-program-epilog-content {
    margin: 0 auto 0 0;
    padding: 0 32px 0 65px;
}

#wholesale-loyalty-program .scroll-bar {
    display: none;
}

.wholesale-loyalty-program-blocks {
    display: none;
}

/* Форма обратной связи */

#wholesale-callback-form {
    background-color: #ec375a;
    position: relative;
}

#wholesale-callback-form::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: url('../imgs/texture.png');
    background-size: 8px;
    background-repeat: repeat;
    z-index: 2;
}

.wholesale-callback-form-bg {
    background: linear-gradient(90deg, #ec375a 0%, #ff7e97 68.5%, #ec375a 100%);
    position: absolute;
    height: 100%;
    width: calc(100% + 212px);
    max-width: 1726px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 1;
}

#wholesale-callback-form .wholesale-container {
    padding: 0;
    position: relative;
    z-index: 5;
}

.wholesale-callback-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.wholesale-callback-form {
    padding: 32px 20px 32px 32px;
    color: #fff;
}

.wholesale-callback-form h2 {
    margin: 0;
    font-size: 39px;
    font-weight: 700;
    line-height: 50px;
    text-align: left;
    color: #fff;
}

.wholesale-callback-form p {
    margin-top: 5px;
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    text-align: left;
    margin-bottom: 0;
}

.wholesale-callback-form-inputs {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    width: 100%;
    max-width: 595px;
}

.wholesale-callback-form-info {
    width: 100%;
    height: 100%;
    position: relative;
}

.wholesale-callback-form-info img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wholesale-callback-form-quote {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    padding: 20px 15px;
    border-radius: 15px 15px 0 15px;
    max-width: 620px;
    width: calc(100% - 20px);
    position: absolute;
    right: 10px;
    bottom: 23px;
    background-color: #fff;
}

.wholesale-callback-form-quote::before {
    content: url(../imgs/quote.svg);
    position: absolute;
    left: 10px;
    top: -16px;
}

img.wholesale-callback-form-info-mobile-bg {
    display: none;
}

/* Уведомления и попапы */

.wholesale-notifications {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 500;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.wholesale-notification {
    pointer-events: all;
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.15);
    scale: 0.5;
    opacity: 0;
    animation: open-notification 0.5s forwards;
}

@keyframes open-notification {
    0% {
        scale: 0.5;
        opacity: 0;
    }
    100% {
        scale: 1;
        opacity: 1;
    }
}

.wholesale-notification.close {
    pointer-events: none;
    animation: close-notification 0.5s forwards;
}

@keyframes close-notification {
    0% {
        scale: 1;
        opacity: 1;
    }
    100% {
        scale: 0.5;
        opacity: 0;
    }
}

.wholesale-notification-close {
    pointer-events: all;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 18px;
    width: 20px;
    height: 20px;
    color: #606060;
    transition: 0.5s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

.wholesale-notification-close:hover {
    color: #ec375a;
}

.wholesale-notification-title {
    font-size: 18px;
    font-weight: 700;
}

.wholesale-notification-text {
    font-size: 14px;
    margin-top: 10px;
}

.wholesale-notification.error .wholesale-notification-text {
    color: #ec375a;
}

.wholesale-popups {
    position: fixed;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
}

.wholesale-popups-bg {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.wholesale-popups.open {
    opacity: 1;
    pointer-events: all;
}

.wholesale-popup {
    opacity: 0;
    scale: 0.5;
    transform: translateY(100%);
    transition: 0.5s;
    position: absolute;
    z-index: 5;
    overflow-y: auto;
    overflow-x: hidden;
}

.wholesale-popup.open {
    opacity: 1;
    scale: 1;
    transform: translateY(0);
    z-index: 7;
}

.wholesale-popup-close {
    font-size: 18px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    color: #b3b3b3;
    transition: 0.5s;
    position: absolute;
    right: 30px;
    top: 10px;
    cursor: pointer;
}

.wholesale-popup-close:hover {
    color: #ec375a;
}

.wholesale-collections-popup {
    max-width: 1512px;
    width: calc(100% - 40px);
    max-height: calc(100vh - 40px);
    border-radius: 25px;
    background-color: #fff;
    padding: 40px 30px;
}

.wholesale-collections-popup-title {
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    color: #0c0e1b;
}

.wholesale-collections-popup-videos {
    margin-top: 46px;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}

.wholesale-collections-popup-videos video {
    width: calc(25% - 50px);
    aspect-ratio: 36/64;
    object-fit: cover;
    border-radius: 15px;
}

.wholesale-collections-popup .wholesale-main-btn {
    margin: 50px auto 0;
}

.wholesale-messages-popup {
    border-radius: 15px;
    padding: 40px;
    background-color: #fff;
    max-width: 700px;
    width: calc(100% - 40px);
    max-height: calc(100vh - 40px);
}

.wholesale-messages-popup-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #0c0e1b;
}

.wholesale-messages-popup-content.error {
    color: rgb(220, 47, 47);
}

.wholesale-messages-popup-title {
    font-size: 28px;
}

.wholesale-messages-popup-text {
    font-size: 18px;
}

.swiper.wholesale-collections-videos-slider {
    display: none;
}

@media screen and (max-width: 1460px) {
    .wholesale-advantages-slide-text {
        font-size: 21px;
    }
}

@media screen and (max-width: 1300px) {
    .wholesale-menu-item {
        font-size: 14px;
    }

    #wholesale-main h1 {
        font-size: 36px;
        line-height: 50px;
    }

    .wholesale-main-text {
        font-size: 14px;
        line-height: 21px;
    }

    .wholesale-main-bg {
        max-width: 50%;
    }

    .wholesale-collections-list-item-name {
        font-size: 22px;
    }

    .wholesale-advantages-tab {
        font-size: 16px;
        padding: 16px 30px;
    }

    .wholesale-advantages-slide-text {
        font-size: 18px;
    }

    .wholesale-loyalty-program-epilog-content {
        font-size: 18px;
    }
}


br.mobile {
    display: none;
}

@media screen and (max-width: 1300px) {
    br.mobile {
        display: block;
    }

    .wholesale-catalog-form-bg {
        background: linear-gradient(140.72deg, #ec375a 28.45%, #ff7e97 42.06%, #bf2d4a 73.07%);
        width: 100%;
        background-size: 3227px auto;
        background-position: 40% center;
    }

    .wholesale-catalog-form-container {
        grid-template-columns: 1fr;
        padding: 43px 0 57px;
        gap: 20px;
    }

    .wholesale-catalog-form-container img {
        height: auto;
    }

    .wholesale-catalog-form h2 {
        font-size: 22px;
        font-weight: 800;
        line-height: 22px;
        text-align: left;
    }

    .wholesale-catalog-form .sub-title {
        margin-top: 3px;
        font-size: 17px;
        font-weight: 600;
        line-height: 26px;
        text-align: left;
    }

    .wholesale-catalog-form-input-group {
        flex-direction: column;
        margin: 17px 0 11px;
        gap: 20px;
        max-height: unset;
    }

    .wholesale-catalog-form-input-group input,
    .wholesale-catalog-form-input-group button {
        width: 100%;
    }

    .wholesale-catalog-form p {
        margin-top: 17px;
        font-size: 13px;
        font-weight: 500;
        line-height: 18px;
        text-align: left;
    }

    .wholesale-catalog-form p br {
        display: none;
    }

    .wholesale-catalog-form .wholesale-select {
        width: 100%;
    }

}

@media screen and (max-width: 1200px) {
    .wholesale-catalog-form-input-group {
        max-height: unset;
    }

    .wholesale-header {
        display: none;
    }

    .wholesale-container {
        padding: 0 16px;
    }

    #wholesale-main {
        margin-top: 0;
    }

    #wholesale-main::after {
        display: none;
    }

    #wholesale-main .wholesale-container {
        padding-bottom: 23px;
    }

    #wholesale-main .wholesale-container::after {
        content: '';
        position: absolute;
        background: #fff;
        height: 98px;
        width: 100%;
        bottom: 0;
        left: 0;
        border-radius: 12px 12px 0 0;
        z-index: 5;
    }

    .wholesale-main-title {
        padding-top: 46px;
    }

    #wholesale-main .wholesale-main-title h1 {
        font-size: 35px;
        font-weight: 600;
        line-height: 36px;
        text-align: left;
    }

    .wholesale-main-sub-title {
        font-size: 20px;
        font-weight: 500;
        line-height: 20px;
        text-align: left;
        margin-top: 16px;
    }

    .wholesale-main-sub-title br {
        display: none;
    }

    .wholesale-main-text {
        display: none;
    }

    .wholesale-main-bg {
        display: none;
    }

    .wholesale-main-mobile-bg {
        display: block;
        width: calc(100% + 32px);
        aspect-ratio: 360/336;
        margin: 40px -16px -20px;
        position: relative;
        z-index: -1;
    }

    .wholesale-main-btn {
        margin: 0;
        position: relative;
        z-index: 10;
    }

    .wholesale-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 18px;
        font-weight: 700;
        line-height: 22px;
        text-align: center;
    }

    #wholesale-collections {
        padding-top: 16px;
    }

    .wholesale-title {
        font-size: 30px;
        font-weight: 600;
        line-height: 35px;
        text-align: left;
    }

    .wholesale-collections-list {
        flex-direction: column;
        gap: 25px;
        margin-top: 24px;
    }

    .wholesale-collections-list-item {
        padding: 8px 14px;
    }

    .wholesale-collections-list-item-name {
        font-size: 15px;
        font-weight: 600;
        text-align: left;
        line-height: 22px;
        border-bottom: 1px solid rgba(12, 14, 27, 0.25);
    }

    .wholesale-collections-list-item-name svg {
        width: 11px;
        left: calc(100% + 9px);
    }

    #wholesale-advantages {
        padding-bottom: 35px;
    }

    .wholesale-advantages-wrapper {
        margin-top: 34px;
        padding: 85px 13px 30px;
        border-radius: 15px;
        position: relative;
    }

    .wholesale-advantages-tabs-wrapper {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 52px;
        overflow: hidden;
        border-radius: 15px 15px 0 0;
        transition: 0.5s;
    }

    .wholesale-advantages-tabs-wrapper::after {
        content: url(../imgs/select.svg);
        height: 26px;
        width: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 16px;
        top: 14px;
        z-index: 10;
        transition: 0.5s;
        pointer-events: none;
    }

    .wholesale-advantages-tabs-wrapper.open {
        border-radius: 15px;
    }

    .wholesale-advantages-tabs-wrapper.open::after {
        transform: rotateZ(180deg);
    }

    .wholesale-advantages-tabs {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        flex-direction: column;
        gap: 0px;
        z-index: 10;
        background-color: #f4f4f4;
        transition: 0.5s;
    }

    .wholesale-advantages-tab {
        width: 100%;
        height: 55px;
        max-width: 100%;
        font-size: 18px;
        font-weight: 700;
        line-height: 20px;
        text-align: left;
        border-radius: 0;
        padding: 16px;
    }

    #wholesale-advantages-swiper {
        margin-top: 0;
    }

    .wholesale-advantages-slide {
        padding: 0;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .wholesale-advantages-slide-text * {
        font-size: 16px;
        line-height: 20px;
        text-align: left;
    }

    .wholesale-advantages-slide-text ul li {
        line-height: 20px;
        margin-bottom: 20px;
    }

    .wholesale-advantages-slide-text ul li br {
        display: none;
    }

    #wholesale-catalog-form::before {
        display: none;
    }

    label:has(input[type='checkbox']) {
        width: 100%;
        line-height: 13px;
    }

    #wholesale-team {
        padding-top: 35px;
    }

    .wholesale-team-info p {
        margin: 8px 0 29px;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        text-align: left;
    }

    .wholesale-team-info p br {
        display: none;
    }

    .wholesale-team-slider-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    #wholesale-team-slider-pagination {
        aspect-ratio: unset;
    }

    #wholesale-team-slider-pagination .swiper-slide {
        height: fit-content;
    }

    .wholesale-team-slider-container .wholesale-team-slider-nav {
        display: none;
    }

    .wholesale-slider-mobile-nav-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px;
    }

    #wholesale-team .wholesale-slider-mobile-nav-container {
        margin-top: 25px;
    }

    .wholesale-mobile-nav-pag {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .wholesale-mobile-nav-pag-item {
        height: 11px;
        width: 11px;
        min-width: 11px;
        border-radius: 50%;
        background-color: #ec375a;
        opacity: 0.2;
        transition: 0.5s;
    }

    .wholesale-mobile-nav-pag-item.active {
        opacity: 1;
    }

    .wholesale-cases-container {
        padding: 30px 0;
    }

    .wholesale-cases-info p {
        margin: 8px 0 33px;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        text-align: left;
    }

    .wholesale-cases-slider-wrapper .wholesale-cases-slider-nav {
        display: none;
    }

    .wholesale-case-card {
        aspect-ratio: 360/340;
        height: unset;
        padding: 15px;
    }

    .wholesale-case-card img {
        aspect-ratio: 6/5;
        height: unset;
    }

    .wholesale-case-card h3 {
        font-size: 18px;
        font-weight: 700;
        line-height: 20px;
        text-align: left;
    }

    .wholesale-case-card h3::before {
        width: 12px;
        min-width: 12px;
        height: 12px;
        margin-right: 8px;
        margin-top: 5px;
    }

    #wholesale-cases .wholesale-slider-mobile-nav-container {
        margin-top: 22px;
    }

    #wholesale-cases .wholesale-mobile-nav-pag-item {
        background-color: #fff;
    }

    #wholesale-loyalty-program {
        padding-bottom: 0;
    }

    .wholesale-loyalty-program-info .wholesale-text {
        margin-top: 8px;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        text-align: left;
    }

    .wholesale-loyalty-program-info .wholesale-text br {
        display: none;
    }

    .wholesale-loyalty-program-table-wrapper {
        display: none;
    }

    /* .wholesale-loyalty-program-table-wrapper {
        overflow: hidden;
        box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
        outline:1px solid rgba(0, 0, 0, 0.02) !important;
        margin: 30px 0;
        border-radius: 15px;
    }

    .wholesale-loyalty-program-table {
        width: 900px;
        margin: 0;
    }

    .wholesale-loyalty-program-table-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .wholesale-loyalty-program-table-title {
        font-size: 17px;
    }

    .wholesale-loyalty-program-table-cell {
        font-size: 16px;
    }

    #wholesale-loyalty-program .scroll-bar {
        display: block;
    }

    .scroll-bar {
        position: relative;
        width: 100%;
        height: 4px;
        background-color: #D1D1D1;
        border-radius: 2px;
        cursor: pointer;
    }

    .scroll-thumb {
        position: absolute;
        height: 100%;
        width: 50px;
        background-color: #000000;
        border-radius: 2px;
        transition: background-color 0.3s;
    }

    .scroll-thumb:hover {
        background-color: #0C0E1B;
    } */

    .wholesale-loyalty-program-epilog {
        margin-top: 44px;
        grid-template-columns: 1fr;
    }

    .wholesale-loyalty-program-epilog > div {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .wholesale-loyalty-program-epilog-content {
        padding: 0 30px;
        font-size: 14px;
        font-weight: 500;
        line-height: 18px;
        text-align: left;
    }

    .wholesale-loyalty-program-epilog-right .wholesale-loyalty-program-epilog-content {
        padding: 0 30px;
        margin: 0;
    }

    .wholesale-loyalty-program-blocks {
        display: block;
        margin: 50px -16px 0;
        width: calc(100% + 32px);
        position: relative;
    }

    .wholesale-loyalty-program-blocks__btns {
        position: absolute;
        top: 50%;
        left: 0%;
        transform: translate(0%, -50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        visibility: hidden;
        z-index: 50;
        padding-inline: 16px;
    }

    .wholesale-loyalty-program-blocks__btns._hide {
        opacity: 0;
        pointer-events: none;
    }

    .wholesale-loyalty-program-blocks__btns-item {
        visibility: visible;
        height: 30px;
        width: 30px;
        min-width: 30px;
        max-width: 30px;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
    }

    .wholesale-loyalty-program-blocks__btns-item svg {
        transition: 0.5s;
    }

    .wholesale-loyalty-program-blocks__btns-item:active {
        background-color: #dc2f2f;
        transition: 0.2s;
    }

    .wholesale-loyalty-program-blocks__btns-item:active .stroke-dark-light * {
        stroke: #fff;
        transition: 0.1s;
    }

    .swiper-slide.wholesale-loyalty-program-slide {
        width: 260px;
        padding: 0 16px;
    }

    .wholesale-loyalty-program-block {
        border-radius: 12px;
        border: 1px solid #e4e2ef;
        overflow: hidden;
    }

    .wholesale-loyalty-program-block h3 {
        font-size: 22px;
        font-weight: 700;
        line-height: 30.05px;
        text-align: center;
        text-transform: uppercase;
        margin: 0;
        width: 100%;
        background-color: #d7d2ef;
    }

    .wholesale-loyalty-program-block .loyalty-sum {
        padding: 16px;
        background-color: #ece8ff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .wholesale-loyalty-program-block .loyalty-sum span {
        font-size: 13px;
        font-weight: 500;
        line-height: 17.76px;
        text-align: center;
    }

    .wholesale-loyalty-program-block .loyalty-sum b {
        font-size: 19px;
        font-weight: 700;
        line-height: 25.95px;
        text-align: center;
    }

    .wholesale-loyalty-program-block .loyalty-sale {
        padding: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .wholesale-loyalty-program-block .loyalty-sale span {
        font-size: 13px;
        font-weight: 500;
        line-height: 17.76px;
        text-align: center;
        display: flex;
        align-items: center;
        position: relative;
    }

    .wholesale-loyalty-program-block .loyalty-sale span::after {
        content: '?';
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #efeff0;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        right: -22px;
        font-size: 14px;
    }

    .wholesale-loyalty-program-block .loyalty-sale b {
        font-size: 20px;
        font-weight: 700;
        line-height: 27.32px;
        text-align: center;
    }

    .loyalty-sale-value {
        display: flex;
        align-items: center;
        gap: 11px;
    }

    .loyalty-sale-separator {
        width: 1px;
        height: 16px;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .loyalty-sale-tip {
        position: absolute;
        height: calc(100% - 10px);
        width: calc(100% - 16px);
        top: 5px;
        left: 8px;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: 400;
        line-height: 13px;
        text-align: center;
        opacity: 0;
        scale: 0.5;
        pointer-events: none;
        transition: 0.5s;
    }

    .loyalty-sale.show-tip .loyalty-sale-tip {
        opacity: 1;
        scale: 1;
    }

    .loyalty-sale-tip::after {
        content: '?';
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #efeff0;
        border-radius: 50%;
        top: 2px;
        right: 2px;
        width: 16px;
        height: 16px;
        font-size: 14px;
    }

    .wholesale-loyalty-program-number {
        width: 35px;
        height: 35px;
        margin: 5px auto 0;
        font-size: 24px;
        font-weight: 200;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wholesale-loyalty-program-number span {
        z-index: 2;
        position: relative;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ec375a;
        border: 1px solid #ec375a;
        background-color: #fff;
        border-radius: 50%;
        width: 35px;
        height: 35px;
    }

    .wholesale-loyalty-program-slide:first-child .wholesale-loyalty-program-number::before {
        content: '';
        position: absolute;
        border-bottom: 3px dashed #ec375a;
        width: 260px;
        right: 50%;
        z-index: -1;
        transition: 0.5s;
    }

    .wholesale-loyalty-program-number::after {
        content: '';
        position: absolute;
        border-bottom: 3px dashed #cccccc;
        width: 260px;
        left: 50%;
        z-index: -1;
        transition: 0.5s;
    }

    .swiper-slide.visited .wholesale-loyalty-program-number::after {
        border-bottom: 3px dashed #ec375a;
    }

    .wholesale-loyalty-program-slide:last-child .wholesale-loyalty-program-number::after {
        display: none;
    }

    #wholesale-callback-form .wholesale-container {
        padding: 0 16px;
    }

    .wholesale-callback-form-container {
        grid-template-columns: 1fr;
    }

    .wholesale-callback-form {
        padding: 30px 0;
    }

    .wholesale-callback-form h2 {
        font-size: 30px;
        font-weight: 700;
        line-height: 35px;
        text-align: left;
    }

    .wholesale-callback-form p {
        margin-top: 8px;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        text-align: left;
    }

    .wholesale-callback-form p br {
        display: none;
    }

    .wholesale-callback-form-info {
        width: calc(100% + 32px);
        margin: 0 -16px;
    }

    img.wholesale-callback-form-info-bg {
        display: none;
    }

    img.wholesale-callback-form-info-mobile-bg {
        display: block;
    }

    .wholesale-callback-form-info img {
        height: unset;
        aspect-ratio: 3.9/4.4;
    }

    .wholesale-callback-form-quote {
        padding: 15px;
        font-size: 13px;
        font-weight: 400;
        line-height: 15px;
        text-align: left;
    }

    .wholesale-messages-popup-title {
        font-size: 18px;
    }

    .wholesale-messages-popup-text {
        font-size: 14px;
    }

    .wholesale-popup-close {
        font-size: 16px;
        width: 30px;
        height: 30px;
        background: rgba(118, 118, 128, 0.122);
        color: rgba(60, 60, 67, 0.6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 15px;
        right: 17px;
    }

    .wholesale-collections-popup {
        width: 100%;
        padding: 16px;
        bottom: 0;
        border-radius: 25px 25px 0 0;
    }

    .wholesale-collections-popup-title {
        font-size: 28px;
        font-weight: 600;
        line-height: 35px;
        text-align: left;
    }

    .wholesale-popup-close span {
        display: none;
    }

    .wholesale-collections-popup-videos {
        display: none;
    }

    .swiper.wholesale-collections-videos-slider {
        margin-top: 18px;
        position: relative;
        display: block;
    }

    .wholesale-collections-videos-slider .wholesale-collections-video-wrapper {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
    }

    .wholesale-collections-videos-slider .wholesale-collections-video-wrapper::before {
        content: '';
        position: absolute;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 20px, rgba(0, 0, 0, 0) 80px);
        z-index: 5;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
    }

    .wholesale-collections-videos-slider video {
        aspect-ratio: 36/60;
        width: 100%;
        object-fit: cover;
        object-position: top;
        max-height: 75dvh;
        display: block;
    }

    .wholesale-collections-popup .wholesale-main-btn {
        margin-top: 18px;
    }

    .video-nav {
        position: absolute;
        z-index: 9;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
    }

    .video-prev,
    .video-next {
        width: 100%;
    }

    .wholesale-collections-videos-slider-pagination {
        position: absolute;
        top: 15px;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        z-index: 10;
    }

    .wholesale-slider-pagination-item {
        width: 35px;
        min-width: 35px;
        height: 3px;
        border-radius: 1px;
        background-color: #fff;
        opacity: 0.3;
        transition: 0.5s;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .wholesale-slider-pagination-item::before {
        content: '';
        position: absolute;
        height: 30px;
        width: 100%;
    }

    .wholesale-slider-pagination-item.active {
        opacity: 1;
    }

    .bottom-icons-panel {
        display: none !important;
    }

    #main .b24-widget-button-position-bottom-right {
        right: 5px;
        bottom: 100px;
    }

    .wholesale-mobile-header {
        display: block;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        position: fixed;
        z-index: 99999;
        transition: 0.5s;
        pointer-events: none;
    }

    .wholesale-mobile-header.open {
        background-color: rgba(0, 0, 0, 0.5);
        pointer-events: all;
    }

    .wholesale-mobile-header-container {
        pointer-events: all;
        position: absolute;
        padding: 20px 16px 24px;
        border-radius: 15px 15px 0 0;
        border-top: 1px solid #e0d4d4;
        box-shadow: 0px -4px 24px 0px rgba(0, 0, 0, 0.188);
        width: 100%;
        display: flex;
        flex-direction: column;
        background-color: #fff;
        bottom: 0;
        transform: translateY(calc(100% - 89px));
        transition: 0.5s;
    }

    .wholesale-mobile-header.open .wholesale-mobile-header-container {
        transform: translateY(0);
    }

    .wholesale-mobile-header-close,
    .wholesale-mobile-header-open {
        position: absolute;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #efeff0;
        color: rgba(60, 60, 67, 0.6);
        top: 26px;
        right: 21px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        z-index: 5;
    }

    .wholesale-mobile-header-close {
        opacity: 0;
        pointer-events: none;
    }

    .wholesale-mobile-header-open {
        opacity: 1;
        pointer-events: all;
    }

    .wholesale-mobile-header.open .wholesale-mobile-header-close {
        opacity: 1;
        pointer-events: all;
    }

    .wholesale-mobile-header.open .wholesale-mobile-header-open {
        opacity: 0;
        pointer-events: none;
    }

    .wholesale-mobile-header-menu {
        margin: 42px 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .wholesale-mobile-header-menu a.wholesale-menu-item {
        font-size: 25px;
        font-weight: 400;
        line-height: 40px;
        text-align: center;
    }

    .wholesale-contacts {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        font-size: 16px;
        line-height: 40px;
        text-align: left;
    }

    .wholesale-contacts .phones__callback {
        border-bottom: 1px solid currentColor;
    }
}

/* select */

.wholesale-select {
    border: 2px solid transparent;
    border-radius: 12px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    color: #0c0e1bc0;
    padding: 0px 10px;
    transition: 0.4s;
    align-self: flex-start;
    min-width: 202px;
    user-select: none;
}

.wholesale-select._selected {
    color: #0c0e1b;
    font-size: 14px;
}

.wholesale-select._error {
    border: 2px solid #931a1d;
}

.wholesale-select-options-item {
    font-size: 12px;
    width: max-content;
    line-height: 20px;
    height: 20px;
    cursor: pointer;
    transition: 0.5s;
    color: #0c0e1b;
}

.wholesale-select-options-item::after {
    content: "✓";
    margin-left: 5px;
    opacity: 0;
    color: #dc2f2f;
    transition: .5s;
}

@media (hover: hover) { 
    .wholesale-select-options-item:hover {
        transition: 0.2s;
        color: #dc2f2f;
    }
}

@media screen and (max-width: 1200px) {
    .wholesale-select-options-item:hover {
        transition: 0.2s;
        color: #0c0e1b;
    }
}

.wholesale-select-options-item._selected {
    color: #dc2f2f;
}

.wholesale-select-options-item._selected::after {
    color: #dc2f2f;
    opacity: 1;
}

.wholesale-callback-form .wholesale-select-value,
.wholesale-catalog-form .wholesale-select-value {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wholesale-catalog-form .wholesale-select._selected .wholesale-select-value {
    font-size: 14px;

}

.wholesale-select .wholesale-select-value svg {
    transition: 0.3s;
    min-width: 20px;
}

.wholesale-select._open .wholesale-select-value svg {
    transform: rotate(-180deg);
}

.wholesale-callback-form .wholesale-select {
    width: 100%;
}

.wholesale-select-options {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s;
    overflow: hidden;
}

.wholesale-select._open .wholesale-select-options {
    grid-template-rows: 1fr;
    padding-bottom: 5px;
    margin-top: -5px;
}

@media screen and (max-width: 1300px) {
    .wholesale-select {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    
    .wholesale-select-options-item {
        font-size: 14px;
    }

    .wholesale-select-options > div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
}