:root {
    --primary: #7F45F1;
    --lite-purple: #f1e9fb;
    --lite-purple2: #ece1fb;
    --lite-purple3: #b9b3f1;
    --lite-purpl4: #b08bf7;
    --lite-purpl5: #e8ddff;
    --gray-2: #F5F5FA;
    --gray-4: #eae9f0; /*rgba(234, 233, 240, 1)*/
    --gray-5: #b8b8b8;
    --gray-7: #a0a1ad;
    --white: #fff;
    --black: #000;
    --dark: #2e2e2e;
    --dark5: #1e1e1e;
    --green2: #00BF63;
    --green4: #00a254;
    --red1: #e32222;
}

::selection {
    background: var(--lite-purple);
    color: var(--black);
}

html:not(.with-fancybox),
html:not(.with-fancybox) body {
    scrollbar-gutter: stable;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--primary);
    transition: .3s;
    text-decoration: none;
}

a:hover {
    opacity: .8;
}

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

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

.transition {
    transition: 0.3s;
}

.btnNone {
    box-shadow: none;
    background-color: transparent;
    border: none;
    outline: none;
}

.btnBrdPrimary {
    border-radius: 5px;
    border: 1px solid var(--primary);
    box-shadow: 0px 0px 6px 0px rgba(127, 69, 241, 1);
    padding: 13px 13px;
    min-height: 48px;
}


.btnCheck input {
    opacity: 0;
    margin: 0;
    width: 0;
    height: 0;
}

.checkTickText {
    padding-left: 46px;
    min-height: 30px;
}

.checkTickText:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid var(--gray-5);
}

.checkTickText:after {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    translate: -50% -50%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.3s;
    width: 21px;
    height: 15px;
    background-image: url("/assets/icons/tickPrimary.svg");
    opacity: 0;
}

.btnCheck input:checked ~ .checkTickText:after {
    opacity: 1;
}

.cursor-pointer {
    cursor: pointer;
}

p {
    margin: 0 0 16px;
}

img {
    max-width: 100%;
}

body {
    margin: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    background: var(--white);
    color: var(--dark);
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.scrollCustom::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    padding-right: 4px;
}

.scrollCustom::-webkit-scrollbar-track {
    background-color: var(--white);
    border-radius: 10px;
}

.scrollCustom::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}

.ls-1 {
    letter-spacing: 0.01em;
}

.ln-1 {
    line-height: 1;
}

.fz-13 {
    font-size: 13px;
}

.fz-14 {
    font-size: 14px;
}

.fz-15 {
    font-size: 15px;
}

.\!fz-16 {
    font-size: 16px !important;
}

.fz-20 {
    font-size: 20px;
}

.fz-24 {
    font-size: 24px;
}

.fz-25 {
    font-size: 25px;
}

.fz-32 {
    font-size: 32px;
}

@media (min-width: 768px) {
    .fz-md-20 {
        font-size: 20px;
    }
}

.fw-5 {
    font-weight: 500;
}

.\!fw-5 {
    font-weight: 500 !important;
}

.fw-6 {
    font-weight: 600;
}

.fw-7 {
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .fw-md-5 {
        font-weight: 500;
    }
}

@media screen and (min-width: 992px) {
    .fw-lg-6 {
        font-weight: 600;
    }
}

.p-0 {
    padding: 0;
}

.p-15 {
    padding: 15px;
}

.\!px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-8 {
    padding-left: 8px;
    padding-right: 8px;
}

.py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-16 {
    padding-top: 16px;
    padding-bottom: 16px;
}

@media screen and (min-width: 768px) {
    .px-md-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .px-md-16 {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.ml-auto {
    margin-left: auto;
}

.mr-12 {
    margin-right: 12px;
}

.m-0 {
    margin: 0;
}

.mt-auto {
    margin-top: auto;
}

.mt-n3 {
    margin-top: -3px;
}

.mt-7 {
    margin-top: 7px;
}

.mt-13 {
    margin-top: 13px;
}

.mt-16 {
    margin-top: 16px;
}

.mb-7 {
    margin-bottom: 7px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-13 {
    margin-bottom: 13px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .mt-md-4 {
        margin-top: 4px;
    }

    .mb-md-13 {
        margin-bottom: 13px;
    }

    .mb-md-16 {
        margin-bottom: 16px;
    }
}

.bg-white {
    background: var(--white);
}

.bg-secondary {
    background: var(--gray-2);
}

.brdGray-4 {
    border: 1px solid var(--gray-4);
}

.brdBbGray-4 {
    border-bottom: 1px solid var(--gray-4);
}

.brdBbLast-transparent:last-child {
    border-bottom: 1px solid transparent;
}

@media (min-width: 768px) {
    .brdGray-md-4 {
        border: 1px solid var(--gray-4);
    }

    .brdPrimary-md-4 {
        border: 1px solid var(--primary);
    }
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.top-15 {
    top: 15px;
}

.top-full {
    top: 100%;
}

.left-0 {
    left: 0;
}

.left-16 {
    left: 16px;
}

.right-15 {
    right: 15px;
}

@media (min-width: 768px) {
    .relative-md {
        position: relative;
    }
}
@media (min-width: 992px) {
    .relative-lg {
        position: relative;
    }
}
.block {
    display: block;
}

.hidden {
    display: none !important;
}

.table {
    display: table;
}

.flex {
    display: flex;
}

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

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

@media (min-width: 768px) {
    .block-md {
        display: block;
    }

    .\!block-md {
        display: block !important;
    }

    .hidden-md {
        display: none;
    }
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

@media (min-width: 768px) {
    .overflow-md-visible {
        overflow: visible;
    }
}
@media (min-width: 992px) {
    .overflow-lg-visible {
        overflow: visible;
    }
}
.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-16 {
    gap: 16px;
}

.gap-20 {
    gap: 20px;
}

.gap-24 {
    gap: 24px;
}

.gap-40 {
    gap: 40px;
}

@media (min-width: 768px) {
    .hidden-md {
        display: none;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }
}

@media (min-width: 992px) {
    .gap-lg-13 {
        gap: 13px;
    }

    .gap-lg-24 {
        gap: 24px;
    }

    .gap-lg-62 {
        gap: 62px;
    }
}

@media (min-width: 1200px) {
    .gap-xl-40 {
        gap: 40px;
    }
}

.flex-1 {
    flex: 1;
}

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

.justify-between {
    justify-content: space-between;
}

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

.flex-col {
    flex-direction: column;
}

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

.items-end {
    align-items: flex-end;
}

body:has(.boxXl) header .container {
    max-width: 1330px;
}

body:has(.greenBtnH) header .enter-h {
    width: 187px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green2);
    border-color: var(--green2);
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

body:has(.greenBtnH) header .enter-h:hover {
    background-color: var(--green4);
    border-color: var(--green4);
}

@media (max-width: 991px) and (min-width: 768px) {
    body:has(.greenBtnH) header .enter-h {
        width: 160px;
        padding: 10px 8px;
    }

    body:has(.greenBtnH) header .nav-h {
        gap: 16px;
    }
}

@media screen and (max-width: 767px) {
    body:has(.mdHiddenF) footer {
        display: none;
    }
}

.container {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.container.boxXl {
    max-width: 1330px;
}

.h-full {
    height: 100%;
}

.h-12 {
    height: 12px;
}

.h-13 {
    height: 13px;
}

.\!min-h-50 {
    min-height: 50px !important;
}

.w-full {
    width: 100%;
}

.w-screen {
    width: 100vw;
}

.w-8 {
    width: 8px;
}

.w-15 {
    width: 15px;
}

.grid-rows-12 {
    grid-template-columns: repeat(12, 1fr);
}

.grid {
    display: grid;
}

.col-span-9 {
    grid-column: span 9;
}

.col-span-8 {
    grid-column: span 8;
}

.col-span-7 {
    grid-column: span 7;
}

.col-span-6 {
    grid-column: span 6;
}

.col-span-5 {
    grid-column: span 4;
}

.col-span-4 {
    grid-column: span 4;
}

.col-span-3 {
    grid-column: span 3;
}

.col-span-2 {
    grid-column: span 2;
}

.col-span-1 {
    grid-column: span 1;
}

.gap-12 {
    gap: 48px;
}

.self-end {
    align-self: flex-end;
}

.ic {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.size-14 {
    width: 14px;
    height: 14px;
}

.size-20 {
    width: 20px;
    height: 20px;
}

.size-26 {
    width: 26px;
    height: 26px;
}

.size-40 {
    width: 40px;
    height: 40px;
}

.size-48 {
    width: 48px;
    height: 48px;
}

.radius-15 {
    border-radius: 15px;
}

@media (min-width: 576px) {
    .radius-sm-15 {
        border-radius: 15px;
    }
}

@media (min-width: 768px) {
    .radius-md-15 {
        border-radius: 15px;
    }

    .radius-md-20 {
        border-radius: 20px;
    }
}

.min-h-0 {
    min-height: 0;
}

.max-w-390 {
    max-width: 390px;
}

@media (min-width: 576px) {
    .max-w-sm-390 {
        max-width: 390px;
    }
}

.noHovOpacity:hover {
    opacity: 1;
}

.translateAbs {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.objectContain {
    object-fit: contain;
}

.objectCover {
    object-fit: cover;
}

.hamburger-h {
    background-image: url("/assets/icons/hamburger-h.svg");
    width: 15px;
    height: 11px;
}

.arrowLeftPrimary {
    background-image: url("/assets/icons/arrowLeftPrimary.svg");
}

.crossDark {
    background-image: url("/assets/icons/crossDark.svg");
}

.crossGray {
    background-image: url("/assets/icons/crossGray.svg");
}

.crossWhite {
    background-image: url("/assets/icons/crossWhite.svg");
}

.crossPrimary {
    background-image: url("/assets/icons/crossPrimary.svg");
}

.basketPrimary {
    background-image: url("/assets/icons/basketPrimary.svg");
}

.tickBlackRight {
    background-image: url("/assets/icons/tickBlackRight.svg");
}

.bg-lk {
    background-image: url("/assets/icons/lkWhite.svg");
}

.bg-sellers {
    background-image: url("/assets/icons/sellersWhite.svg");
}

.bg-masters {
    background-image: url("/assets/icons/mastersWhite.svg");
}

.bg-question {
    background-image: url("/assets/icons/questionWhite.svg");
}

.bg-phone {
    background-image: url("/assets/icons/phoneWhite.svg");
}

.wrapHovBasketPrimary:hover .basketPrimary {
    background-image: url("/assets/icons/basketPrimaryHov.svg");
}

.plusPrimary {
    background-image: url("/assets/icons/plusPrimary.svg");
}

.wrapFocPlusPrimary:focus .plusPrimary {
    background-image: url("/assets/icons/plusWhite.svg");
}

.bold {
    font-weight: 600;
}

.underline {
    text-decoration: underline;
}

.text-red {
    color: var(--red1);
}

.text-white {
    color: var(--white);
}

.text-dark {
    color: var(--dark);
}

.text-gray-5 {
    color: var(--gray-5);
}

.\!text-primary {
    color: var(--primary) !important;
}

.text-primary {
    color: var(--primary);
}

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

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

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

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

.hovTextPurpl4:hover {
    color: var(--lite-purpl4);
}

/* + marketLink-h */
.marketLink-h {
    padding: 0;
    position: relative;
    margin-top: -18px;
    border-bottom: 1px solid var(--gray-4);
    margin-bottom: 16px;
}

.marketLink-h .wrapText {
    flex: 1 1 0;
    font-size: 14px;
    line-height: 17px;
    color: rgba(65, 65, 65, 1);
}

.marketLink-h .wrapBox:hover {
    opacity: 1;
}

.marketLink-h .wrapBox {
    padding: 16px 16px 16px 46px;
    gap: 10px;
}

.marketLink-h .btnCrossGray {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketLink-h .btn-primary {
    padding: 8px;
    width: 121px;
    height: 34px;
    border-radius: 100px;
    font-weight: 500;
    transition: 0.3s;
}

.marketLink-h .wrapBox:active .btn-primary {
    background-color: var(--gray-5);
}

@media (min-width: 991px) {
    .marketLink-h {
        display: none;
    }
}

/*.rounded-box {*/
/*    padding: 0 58px;*/
/*    display: inline-flex;*/
/*    position: relative;*/
/*}*/

/*.rounded-box.end {*/
/*    margin-left: auto;*/
/*}*/

/*.box-secondary:before,*/
/*.box-secondary:after,*/
/*.box-secondary .box-wrapper {*/
/*    background: var(--gray-2);*/
/*}*/

/*.box-lite-purple:before,*/
/*.box-lite-purple:after,*/
/*.box-lite-purple .box-wrapper {*/
/*    background: var(--lite-purple);*/
/*}*/

/*.slide-0:before,*/
/*.slide-0:after,*/
/*.slide-0 .box-wrapper {*/
/*    background: #A978E8;*/
/*}*/

/*.slide-1:before,*/
/*.slide-1:after,*/
/*.slide-1 .box-wrapper {*/
/*    background: #DCD6ED;*/
/*}*/

/*.slide-2:before,*/
/*.slide-2:after,*/
/*.slide-2 .box-wrapper {*/
/*    background: #c4b2e0;*/
/*}*/

/*.slide-3:before,*/
/*.slide-3:after,*/
/*.slide-3 .box-wrapper {*/
/*    background: #9043F6;*/
/*}*/

/*.rounded-box:before,*/
/*.rounded-box:after {*/
/*    content: "";*/
/*    width: 58px;*/
/*    height: 58px;*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    transition: .3s;*/
/*}*/

/*.rounded-box:before,*/
/*.rounded-footer:before {*/
/*    left: 0;*/
/*}*/

/*.rounded-box:after {*/
/*    right: 0;*/
/*}*/

/*.box-wrapper {*/
/*    border-radius: 28px 28px 0 0;*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    position: relative;*/
/*    padding: 10px 12px;*/
/*    margin: 0;*/
/*    min-height: 58px;*/
/*    min-width: 276px;*/
/*    transition: .3s;*/
/*}*/

/*.box-wrapper:before,*/
/*.box-wrapper:after {*/
/*    content: "";*/
/*    width: 58px;*/
/*    height: 58px;*/
/*    background: #fff;*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    z-index: 2;*/
/*}*/

/*.box-wrapper:before {*/
/*    right: 100%;*/
/*    border-radius: 0 0 28px 0;*/
/*}*/

/*.box-wrapper:after {*/
/*    left: 100%;*/
/*    border-radius: 0 0 0 28px;*/
/*}*/

/*.title-box {*/
/*    color: var(--dark);*/
/*    font-weight: bold;*/
/*    font-size: 20px;*/
/*    margin-bottom: 0;*/
/*}*/

/*.slide-0 .title-box,*/
/*.slide-3 .title-box,*/
/*.slide-0 ~ .swiper .swiper-text,*/
/*.slide-3 ~ .swiper .swiper-text {*/
/*    color: var(--white);*/
/*}*/

/*.box-bottom.rounded-box:before,*/
/*.box-bottom.rounded-box:after,*/
/*.box-bottom .box-wrapper:before,*/
/*.box-bottom .box-wrapper:after {*/
/*    top: 0;*/
/*    bottom: auto;*/
/*}*/

/*.box-bottom .box-wrapper:before {*/
/*    border-radius: 0 28px 0 0;*/
/*}*/

/*.box-bottom .box-wrapper:after {*/
/*    border-radius: 28px 0 0 0;*/
/*}*/

/*.box-bottom .box-wrapper {*/
/*    border-radius: 0 0 28px 28px;*/
/*}*/

/*.text-right > .box-bottom {*/
/*    padding-right: 0;*/
/*}*/

/*.text-right > .box-bottom:after,*/
/*.text-right > .box-bottom .box-wrapper:after {*/
/*    display: none;*/
/*}*/

[id] {
    scroll-margin-top: 58px;
}

html {
    scroll-behavior: smooth;
}

.btn {
    font-size: 20px;
    line-height: 1.2;
    box-shadow: none;
    font-weight: 600;
    min-height: 50px;
    outline: none;
    border-radius: 100px;
    border-style: solid;
    padding: 8px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    letter-spacing: 0.01em;
}

.btn-secondary {
    color: var(--black);
    border-color: var(--primary);
    font-size: 12px;
    border-width: 1px;
    font-weight: 400;
    min-height: 34px;
    padding: 8px 16px;
    transition: 0.3s;
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: var(--gray-5) !important;
}

.btn-secondary:focus {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

.btn-success {
    background-color: var(--green2);
    border-color: var(--green2);
    color: var(--white);
}

.btn-success:hover {
    background-color: var(--green4);
    border-color: var(--green4);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--lite-purpl4);
    border-color: var(--lite-purpl4);
}

.btn-primary:focus {
    color: var(--primary);
    background: var(--lite-purpl5);
    border-color: var(--lite-purpl5);
}

/* header */
.gasWorkersBanner{

    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
    margin-top: -22px;
}
@media screen and (min-width: 768px){
    .gasWorkersBanner{
        margin-top: -24px;
        margin-bottom: 24px;
        background-color: var(--lite-purpl5);
    }
}
.gasWorkersBanner .wrapBox{
    display: flex;
    gap: 7px;
}
@media screen and (min-width: 768px){
    .gasWorkersBanner .wrapBox{
        align-items: center;
        gap: 15px;
    }
}
.gasWorkersBanner .wrapBoxLeft{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    flex: 1;
}

@media screen and (min-width: 768px){
    .gasWorkersBanner .wrapBoxLeft{
        gap: 15px;
    }
}
.gasWorkersBanner .wrapBoxLeft .textBox{
    font-weight: 600;
    font-size: 12px;
    color: #007896;

}
@media screen and (max-width: 767px){
    .gasWorkersBanner .wrapBoxLeft .textBox{
        width: 100%;
    }
}
@media screen and (min-width: 768px){
    .gasWorkersBanner .wrapBoxLeft .textBox{
        flex: 1;
    }
}
.gasWorkersBanner .btnBanner{
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 19px;
    padding: 1px 10px 2px 10px;
    background-color: #D9D9D9;
    border-radius: 15px;
    align-self: flex-start;
    line-height: 1;
    font-size: 12px;
    font-weight: 600;
    color: #7B7B7B;
}
@media screen and (max-width: 767px){
    .gasWorkersBanner .btnBanner{
        margin-top: 5px;
    }
}
@media screen and (min-width: 768px){
    .gasWorkersBanner .btnBanner{
        align-self: center;
    }
}
.gasWorkersBanner .btnBanner .ic{
    height: 8px;
    width: 5px;
    background-image: url("/assets/icons/ic-gray-right.svg");
}
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px 0;
    z-index: 100;
    background: var(--white);
}
.logo-h {
    width: 100px;
    height: 28px;
    display: block;
    background-image: url("/assets/icons/ic-duga-purple-80.svg");
    margin-right: auto;
}
@media screen and (min-width: 768px) {
    .header {
        padding: 24px 0;
    }
}

@media screen and (min-width: 768px) {
    .menu-h {
        flex: 1;
    }
}





@media screen and (min-width: 992px) {
    .logo-h {
        width: 157px;
        height: 43px;
        margin-right: 49px;
    }
}

.nav-h {
    list-style-type: none;
    padding: 0;
    display: flex;
    align-items: center;
    margin: 0;
}


@media screen and (min-width: 768px) {
    .nav-h {
        margin: 0 auto 0 0;
    }
}


ul.nav-h li {
    margin-bottom: 0;
}

header .link-h:hover {
    color: var(--dark);
    opacity: 1;
}

header .link-h:not(.enter-h) {
    font-family: "IBM Plex Sans", sans-serif;
    padding: 0;
    transition: .3s;
}

ul.nav-h li.active a {
    pointer-events: none;
    color: var(--dark);
}

@media screen and (max-width: 991px) {
    .nav-h {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav-h li {
        width: 100%;
    }
}

@media screen and (min-width: 992px) {
    header .link-h:not(.enter-h) {
        color: var(--primary);
        font-size: 16px;
    }
    .nav-h li .link-h {
        display: inline-block;
    }

    .nav-h {
        gap: 24px;
    }
}

@media screen and (min-width: 992px) {
    .nav-h {
        gap: 16px;
    }
}
@media screen and (min-width: 1160px) {
    .nav-h {
        gap: 40px;
    }
}
@media screen and (max-width: 992px) {

    .nav-h{
        flex-wrap: wrap;
    }
    .nav-h li{
        width: 100%;
    }
    .header{
        padding: 22px 0;
    }

    ul.nav-h li.active a {
        color: var(--white);
    }

    .hamburger-h {
        margin-right: 8px;
    }

    .enter-h {
        margin: 0;
        padding: 0;
        background-color: transparent !important;
        min-height: auto;
        border-radius: 0;
        color: var(--white);
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 18px;
    }

    .activeMini-h {
        display: block !important;
    }

    .menu-h .logo-f {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 47px;
        height: 13px;
    }

    .menu-h .crossWhite {
        position: absolute;
        top: 22px;
        right: 22px;
    }

    .logo-h {
        width: 47px;
        height: 13px;
    }

    .menu-h {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--primary);
        padding: 102px 22px;
        transition: 0.3s;
    }

    .menu-h:not(.active) {
        translate: -100% 0;
    }

    .menu-h .wrapBox {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    header .link-h {
        color: var(--white);
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 18px;
        margin-left: 0;
        min-height: auto;
    }
}
.enter-h {
    font-size: 16px;
    display: inline-flex;
    align-items: center;

}

.enter-h:hover {
    background-color: var(--lite-purple2);
    opacity: 1;
}

@media screen and (min-width: 992px) {
    .enter-h {
        min-height: 44px;
        background-color: var(--lite-purple);
        border-radius: 100px;
        padding: 10px 21px;
        margin-left: 40px;
    }
}

/*.enter-h__ic {*/
/*    background-image: url("/assets/icons/ic-user-purple-22.svg");*/
/*    width: 22px;*/
/*    height: 22px;*/
/*    margin-left: 20px;*/
/*    display: block;*/
/*}*/

main {
    flex: 1;
}

.rounded-wrap {
    border-radius: 28px;
}

.rounded-wrap-r-b {
    border-radius: 28px 28px 0 28px;
}


/* modal */
.dropdownCustom:not(.active) {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}

.notActiveHidden:not(.active) {
    display: none;
}

.opacityWiggle {
    animation: opacityWiggle 0.3s ease-in-out;
}

@keyframes opacityWiggle {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.wrapModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 100%;*/
    transition: 0.3s;
    z-index: 100;
}

.bgModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-color: var(--black);
    cursor: pointer;
}

.modalCookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
}

.modalCookieContent {
    padding: 15px 16px;
    width: 100%;
    max-width: 1538px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
}

.modalCookieContent .leftBox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
}

.modalCookieContent .leftBox .title {
    font-weight: 500;
    font-size: 14px;
}

.modalCookieContent .leftBox .textBox {
    font-size: 14px;
}

.modalCookieContent .leftBox .weraBox {
    flex: 1;

}

.topModal {
    min-height: 58px;
}

.topModal .ic {
    top: 50%;
    translate: 0 -50%;
}

.topModal .textBox {
    padding-left: 30px;
    padding-right: 30px;
}

@media screen and (max-width: 991px) {
    .modalCookieContent .leftBox {
        gap: 16px;
    }

}

@media screen and (max-width: 767px) {
    .modalCookieContent .leftBox .textBox {
        line-height: 1;
        display: inline-block;
    }

    .modalCookieContent .cookieImg {
        display: none;
    }

    .modalCookieContent {
        flex-wrap: wrap;
        padding: 20px 16px;
    }

    .modalCookieContent .rightBox {
        width: 100%;
    }

}

@media screen and (min-width: 768px) {
    .modalCookieContent .btn {
        width: 235px;
    }

    .modalCookieContent .leftBox .weraBox {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .modalCookieContent .leftBox .title {
        width: 100%;
        font-size: 24px;
        display: block;
    }

    .modalCookieContent .leftBox .textBox {
        display: block;
        width: 100%;
    }
}

@media screen and (min-width: 992px) {
    .modalCookieContent {
        gap: 40px;
    }

    .modalCookieContent .leftBox {
        gap: 40px;
        min-height: 95px;
    }
}

.modalCookieContent .cookieImg {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

@media screen and (min-width: 992px) {
    .modalCookieContent .cookieImg {
        width: 95px;
        height: 95px;
    }
}

.modalCookieContent .btn {
    font-size: 16px;
    width: 108px;
    margin-left: auto;
}

.modalCookieContent .cookieLink {
    text-decoration: underline;
}

.modal-wrapper {
    transition: height 0s ease-out 1s;
    height: 0;
    z-index: 100;
}

.modal-wrapper.active {
    transition: height 0s ease-in 0s;
    height: 100%;
}

.group\/modal:not(.active) {
    pointer-events: none;
}
.group\/modal:not(.active) *{
    pointer-events: none !important;
}
.group\/modal:not(.active) .bgModal {
    opacity: 0;
    pointer-events: none;
}

.group\/modal:not(.active) .modal-panel {
    opacity: 0;
}

.modal-wrapper.active .modal-panel {
    transform: none;
}

.wrap-modal {
    width: calc(100vw - 32px);
}

.wrap-modal.modal-center {
    min-height: calc(100vh - 32px);
}

.modal-panel {
    transform: scale(0.8);
    transition: all 0.3s ease-in-out;
    z-index: 10;
}

.modal-wrapper.congratulateModal .modal-panel {
    padding: 123px 25px 0 25px;
    height: 100vh;
}

.modal-wrapper.congratulateModal .modal-panel {
    display: flex;
    flex-direction: column;
}

.modal-wrapper.congratulateModal .wrapBox {
    max-width: 303px;
}

.modal-wrapper.congratulateModal .rocketImg {
    width: 156px;
    height: 156px;
}


@media screen and (min-width: 576px) {
    .modal-wrapper.congratulateModal .rocketImg {
        width: 115px;
        height: 115px;
    }

    .modal-wrapper.congratulateModal .modal-panel {
        padding: 40px 25px 15px 25px;
        max-height: 420px;
    }
}

@media screen and (max-width: 575px) {
    .modal-wrapper.congratulateModal .wrapBtn {
        margin-left: -25px;
        margin-right: -25px;
        width: calc(100% + 50px);
        padding: 35px 25px;
        background-color: var(--gray-2);
    }

    .modal-wrapper.congratulateModal .wrap-modal {
        width: 100vw;
    }

    .modal-wrapper.mobileBottom .wrap-modal {
        width: 100vw;
        align-items: flex-end;
        height: 100%;
    }

    .modal-wrapper.mobileBottom .modal-panel {
        border-radius: 15px 15px 0 0;
        max-width: none;
        transform: translateY(100%);
        padding: 38px 16px 30px 16px;
    }

    .modal-wrapper.mobileBottom.active .modal-panel {
        transform: translateY(0);
    }

    .modal-wrapper.mobileBottom .modal-panel {

    }

    .modal-wrapper.mobileBottom .crossGray {
        background-image: none;
        width: 40px;
        height: 4px;
        border-radius: 24px;
        top: 8px;
        right: 50%;
        translate: 50% 0;
        background-color: var(--gray-4);
    }
}

.catalogModalBtn {
    padding: 0 15px;
    color: var(--dark5);
    cursor: pointer;
}

.catalogModalBtn:hover,
.catalogModalBtn.active {
    background-color: var(--lite-purple3);
}

.catalogModalBtn .textBox {
    min-height: 56px;
    border-top: 1px solid var(--gray-4);
}

.catalogSecondModal {
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


.catalogSecondModal .catalogModalBtn {
    min-width: 100%;
}
.catalogModal .closeFirst {
    position: absolute;
    top: 0;
    right: 0;
}
.catalogModal .title{
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark5);
    transition: 0.3s;
    display: block;
}
.catalogModal a.title:hover{
    background-color: var(--lite-purple3);
}
@media screen and (min-width: 992px) {
    .catalogSecondModal .title{
        padding-right: 15px !important;
        border-top-left-radius: 20px !important;
        border-top-right-radius: 20px !important;
    }
    .catalogModal {
        overflow: visible;
    }

    .catalogModal .wrap-modal {
     pointer-events: none;
        min-height: auto;
        width: 100%;
    }

    .catalogModal .modal-panel {
        border: 1px solid var(--gray-4);
        max-width: none;
        padding: 0;
        border-radius: 20px;
        width: 300px;
        pointer-events: all;
        margin-left: 200px;
        margin-top: 76px;
    }


    .catalogModal .title{
        padding: 15px 63px 15px 15px;
        font-size: 20px;
    }
    .catalogModalItem:last-child .catalogModalBtn{
        border-radius: 0 0 20px 20px;
    }
    .catalogSecondModal {
        left: 100%;
        margin-left: 15px;
        border-radius: 20px;
        border: 1px solid var(--gray-4);
    }
    .catalogSecondModal:not(.active) {
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
    }
    .catalogSecondModal .catalogModalBtn:first-child .textBox {
        border: none;
    }
    .catalogSecondModal .catalogModalBtn{
        width: max-content;
        border-radius: 0 !important;
    }
    .catalogSecondModal .catalogModalBtn:last-child{
        border-bottom-right-radius: 20px !important;
        border-bottom-left-radius: 20px !important;
    }
    .catalogSecondModal .catalogModalBtn:first-child{
        border-top-left-radius: 20px !important;
        border-top-right-radius: 20px !important;
    }
    .catalogSecondModal .catalogModalBtn{
        max-width: 300px;
    }
    .catalogSecondModal .btnClose {
        display: none;
    }
}
@media screen and (min-width: 1160px){
    .catalogModal .modal-panel{
        width: 400px;
    }
    .catalogSecondModal .catalogModalBtn{
        max-width: 400px;
    }
}
@media screen and (max-width: 991px){
    .catalogModal{
        pointer-events: none;
    }
    .catalogModal .closeFirst{
        top: -53px;
    }
    .catalogModal:not(.active) .modal-panel{
        transform: translateX(-100%);
    }
    .catalogModal{
        overflow: hidden;
    }
    .catalogModal .wrap-modal{
        width: 100%;
        height: 100%;
        padding: 0;
        align-items: flex-end;
        pointer-events: none;
    }
    .catalogModal .bgModal{
        display: none;
    }
    .catalogModal .modal-panel{
        width: 100%;
        height: calc(100% - 57px);
        pointer-events: all;
    }
    body:has(.marketLink-h:not(.hidden)) .catalogModal .modal-panel{
        height: calc(100% - 136px);
    }
    .catalogSecondModal:not(.active) {
        transform: translateX(-100%);
    }
    .catalogSecondModal{
        width: 100%;
        height: 100%;
    }
    .catalogSecondModal .btnClose{
        position: absolute;
        top: -53px;
        right: 0;
        z-index: 10;
    }
    body:has(.catalogModal.active) .hamburger-h{
        position: relative;
        z-index: 9;
    }
}


/* modal */

/* footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 40px 0;
}

.footer ul {
    list-style-type: none;
    margin-bottom: 0;
    padding: 0;
}


footer p {
    margin: 0 0 8px;
}

footer p:last-child {
    margin: 0;
}

.bottom-f {
    margin-top: 40px;
    gap: 40px;
}

.bottom-f .contentBox {
    display: table;
}

.bottom-f .contentBox:not(:last-child) {
    margin-bottom: 16px;
}

.bottom-f .left-f {
    gap: 24px;
}

.bottom-f .left-f .wrapBox {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .bottom-f .soc-f {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-direction: column;
    }

    .bottom-f .left-f {
        width: 100%;
    }

    .bottom-f .contentBox {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

@media screen and (min-width: 768px) {
    .bottom-f .soc-f {
        order: 1;
    }

    .bottom-f .left-f {
        flex: 1;
        order: 0;
    }
}

@media screen and (min-width: 992px) {
    .bottom-f {
        margin-top: 60px;
        gap: 24px;
    }

    .bottom-f .left-f .wrapBox {
        width: calc(50% - 12px);
        max-width: 360px;
    }
}

.logo-f {
    width: 100px;
    height: 28px;
    background-image: url("/assets/icons/ic-duga-white-80.svg");
    margin-right: 16px;
}

@media screen and (min-width: 768px) {
    .logo-f {
        order: 0;
    }
}

@media screen and (min-width: 992px) {
    .logo-f {
        width: 157px;
        height: 43px;
        margin-right: 49px;
    }
}

.nav-f {
    margin-top: 40px;
}

.nav-f li {
    margin-bottom: 0;
}

.nav-f li a:hover {
    opacity: 1;
    color: var(--lite-purple3);
}

.nav-f li.active a {
    color: var(--lite-purple3);
    pointer-events: none;
}

.nav-f li:not(:last-child) {
    margin-right: 24px;
}

@media screen and (max-width: 767px) {
    .nav-f {
        overflow: auto;
        white-space: nowrap;
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .nav-f {
        order: 1;
        margin-top: 0;
    }
}

@media screen and (min-width: 992px) {
    .nav-f li:not(:last-child) {
        margin-right: 40px;
    }
}

.enter-f {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    background-color: var(--lite-purple);
    color: var(--primary);
    padding: 10px 21px;
    border-radius: 100px;
}

.enter-f:hover {
    background-color: var(--lite-purple2);
    opacity: 1;
}

.top-f .right-f {
    gap: 24px;
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .top-f .right-f {
        order: 2;
    }
}

.title-f {
    margin: 0 0 16px;
    font-size: 24px;
}

@media screen and (max-width: 767px) {
    .title-f {
        text-align: center;
    }
}

.soc-f .socLink-f img, .socCode-f {
    display: block;
    background: #fff;
    border-radius: 15px;
}

.soc-f {
    width: 100%;
}

.socLink-f {
    display: table;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .socCode-f {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .socLink-f {
        display: none;
    }

    .soc-f {
        max-width: 212px;
    }
}

.modal {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    overflow: auto;
    z-index: 990;
    top: 0;
    left: 0;
    padding: 16px;

}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-box {
    background: #fff;
    max-width: 1024px;
    width: 100%;
    padding: 24px;
    border-radius: 16px;
    margin: auto;
}

.modal-box .close {
    margin: 0 0 16px auto;
    display: block;
}

.close:hover {
    opacity: .8;
}

.close {
    cursor: pointer;
    background-image: url("/assets/icons/ic-close-12.svg");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    border: none;
    box-shadow: none;
    outline: none;
    font-size: 0;
    background-color: #fff;
    transition: .3s;
}

/*  ++ mainCatalog ++ */
.miniCard {
    color: var(--black);
}

.miniCard .wrapImg {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid var(--gray-4);
    aspect-ratio: 215/287;
    margin-bottom: 13px;
}

.miniCard .wrapImg img {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.miniCard .priceBox {
    margin-bottom: 9px;
}

.miniCard .nameBox {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wrapMiniCard .btn-primary {
    margin-top: 13px;
}

.miniCard .nameBox .wrapBox {
    color: var(--gray-5);
}

.mainCatalog .scrollSwiper {
    margin: 43px 0 0 0;
}

.mainCatalog {
    padding-top: 16px;
    padding-bottom: 16px;
}

@media screen and (min-width: 768px) {
    .mainCatalog {
        padding-top: 19px;
        padding-bottom: 60px;
    }
}

.topCatalog h1 {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0;
    flex: 1;
}

.topCatalog .wrapHovBasketPrimary {
    margin-left: 15px;
    margin-bottom: 20px;
}

.mainCatalog .topCatalog {
    margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
    .mainCatalog .topCatalog {
        margin-bottom: 43px;
    }

    .topCatalog .wrapHovBasketPrimary {
        margin-bottom: 15px;
    }

    .topCatalog h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .topCatalog .wrapText {
        font-size: 20px;
    }
}


.mainCatalog .breadCrumbs {
    margin-bottom: 33px;
}

.wrapCatalog {
    column-gap: 63px;
    row-gap: 25px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media screen and (min-width: 640px) {
    .wrapCatalog {
        column-gap: 60px;
        row-gap: 43px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (min-width: 992px) {
    .wrapCatalog {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media screen and (min-width: 1200px) {
    .wrapCatalog {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/*  -- mainCatalog -- */


/*  ++ breadCrumbs ++ */
.breadCrumbs ul {
    padding-left: 0;
    margin: 0;
    flex-wrap: wrap;
    white-space: nowrap;
}

.breadCrumbs li {
    font-size: 20px;
    color: var(--dark5);
}

.breadCrumbs li a {
    color: var(--dark5);
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.breadCrumbs li a:hover {
    opacity: 1;
    color: var(--primary);
    border-color: var(--primary);
}

.breadCrumbs li:not(:last-child):after {
    content: '/';
    margin: 0 4px;
}

/*  -- breadCrumbs -- */


/*  ++ mainCard ++ */

.mainCard {
    padding-top: 10px;
    padding-bottom: 170px;
    color: var(--dark5);
}

@media screen and (min-width: 768px) {
    .mainCard {
        padding-top: 19px;
        padding-bottom: 60px;
    }
}

.mainCard .wrapBreadCrumbsCard {
    margin-bottom: 10px;
    gap: 16px;
    flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
    .mainCard .wrapBreadCrumbsCard {
        margin-bottom: 43px;
    }
}

.wrapBreadCrumbsCard .breadCrumbs {
    flex: 1;
}


.swiperThumbsCard {
    width: calc(100% - 16px);
    position: absolute;
    bottom: 14px;
    left: 16px;
    z-index: 2;
}

@media screen and (min-width: 992px) {
    .swiperThumbsCard {
        bottom: 0;
        left: 0;
        height: 100%;
        width: 74px;
    }
}

.wrapSwiperCard {
    position: relative;
}

@media screen and (max-width: 575px) {
    .wrapSwiperCard {
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }
}

@media screen and (min-width: 768px) {
    .wrapSwiperCard {
        max-width: 393px;
    }
}

@media screen and (min-width: 992px) {
    .wrapSwiperCard {
        max-width: 477px;
        padding-left: 93px;
    }
}

.swiperCard-item,
.swiperThumbsCard-item {
    position: relative;
    overflow: hidden;
}

.swiperCard-item img,
.swiperThumbsCard-item img {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiperThumbsCard-item {
    border-radius: 10px;
    width: 48px;
    height: 65px;
}

@media screen and (min-width: 992px) {
    .swiperThumbsCard-item {
        width: 100%;
        height: 100px;
        border-radius: 20px;
    }
}

.swiperCard-item {

    aspect-ratio: 384/521;
}

@media screen and (min-width: 768px) {
    .swiperCard-item {
        border-radius: 15px;
    }
}

.swiperNav {
    background-image: url("/assets/icons/swiperNav.svg");
}

.swiperNav:hover {
    background-image: url("/assets/icons/swiperNavHov.svg");
}

.swiperNav:focus {
    background-image: url("/assets/icons/swiperNavFoc.svg");
}

.disabledOpacity0.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;

}

.wrapSwiperCard .swiperNav {
    position: absolute;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .btnCard {
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 14px 25px 19px 25px;
        background-color: var(--gray-2);
        z-index: 10;
    }
}

@media screen and (max-width: 991px) {
    .wrapSwiperCard .swiperNav {
        bottom: 22px;
    }

    .wrapSwiperCard .btnNext {
        right: 16px;
        rotate: -90deg;
    }

    .wrapSwiperCard .btnPrev {
        left: 16px;
        rotate: 90deg;
    }
}

@media screen and (min-width: 992px) {
    .wrapSwiperCard .btnNext {
        bottom: 13px;
    }

    .wrapSwiperCard .btnPrev {
        top: 13px;
        rotate: 180deg;
    }

    .wrapSwiperCard .swiperNav {
        left: 37px;
        translate: -50% 0;
    }
}

.mainCardTop {
    gap: 16px;
    margin-bottom: 16px;
}

@media screen and (min-width: 576px) {
    .mainCardTop {
        gap: 20px;
    }
}

@media screen and (min-width: 768px) {
    .mainCardTop {
        margin-bottom: 43px;
    }
}

@media screen and (min-width: 1200px) {
    .mainCardTop {
        gap: 61px;
    }
}

.contentMainCard {
    column-gap: 20px;
    row-gap: 15px;
    flex: 1;
    align-self: flex-start;
}

@media screen and (min-width: 768px) {
    .contentMainCard .rightBox {
        order: 1;
        padding: 14px;
        border: 1px solid var(--gray-4);
        margin-left: auto;
        border-radius: 15px;
    }

    .contentMainCard .leftBox {
        order: 0;
    }

    .contentMainCard .bottomBox {
        order: 2;
    }
}

@media screen and (min-width: 1200px) {
    .contentMainCard {
        gap: 30px;
    }

    .contentMainCard .leftBox,
    .contentMainCard .rightBox {
        flex: 1;
        align-self: flex-start;
    }
}

@media screen and (max-width: 1199px) {
    .contentMainCard .leftBox,
    .contentMainCard .rightBox {
        width: 100%;
    }
}

@media screen and (min-width: 1200px) {
    .contentMainCard .rightBox {
        max-width: 370px;
    }
}

.contentMainCard .rightBox .priceCard {
    font-size: 20px;
    margin-bottom: 20px;
}

.contentMainCard .rightBox .priceCardText {
    font-size: 14px;
    margin-bottom: 13px;
}

@media screen and (max-width: 767px) {
    .contentMainCard .rightBox .priceCardText {
        text-align: center;
        line-height: 1;
    }
}

@media screen and (min-width: 768px) {
    .contentMainCard .rightBox .priceCardText {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 1200px) {
    .contentMainCard .leftBox {
        max-width: 345px;
    }
}

.contentMainCard .leftBox .cardGrayInfo {
    margin-bottom: 15px;
}

.contentMainCard .leftBox h1 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .contentMainCard .leftBox h1 {
        font-size: 20px;
    }
}

.cardGrayInfo {
    display: inline-block;
    font-size: 14px;
    padding: 10px 17px;
    line-height: 1;
    background-color: var(--gray-2);
    border-radius: 30px;
}

.contentMainCard .leftBox .countForm {
    max-width: 214px;
}

.countForm {
    border: 1px solid var(--dark5);
    border-radius: 5px;
    padding-right: 11px;
}

.countForm input {
    padding: 15px 23px;
    font-size: 14px;
    flex: 1;
    min-width: 0;
}

.countForm .wrapBtn {
    gap: 17px;
    padding-left: 5px;
    padding-right: 5px;
}

.countForm .countFormBtn {
    width: 25px;
    height: 25px;
}

.btnPlus {
    background-image: url("/assets/icons/btnPlus.svg");
}

.btnPlus:hover {
    background-image: url("/assets/icons/btnPlusHov.svg");
}

.btnPlus:focus {
    background-image: url("/assets/icons/btnPlusFoc.svg");
}

.btnMinus {
    background-image: url("/assets/icons/btnMinus.svg");
}

.btnMinus:hover {
    background-image: url("/assets/icons/btnMinusHov.svg");
}

.btnMinus:focus {
    background-image: url("/assets/icons/btnMinusFoc.svg");
}

.deleteBasket {
    background-image: url("/assets/icons/deleteBasket.svg");
}

.deleteBasket:hover {
    background-image: url("/assets/icons/deleteBasketHov.svg");
}

.deleteBasket:focus {
    background-image: url("/assets/icons/deleteBasketFoc.svg");
}

.editPen {
    background-image: url("/assets/icons/editPen.svg");
}

.editPen:hover {
    background-image: url("/assets/icons/editPenHov.svg");
}

.editPen:focus {
    background-image: url("/assets/icons/editPenFoc.svg");
}

.contentMainCard .bottomBox .tableInfo {
    margin-bottom: 15px;
    max-width: 507px;
}

.tableInfo-item {

    gap: 16px;
}

.tableInfo-item:not(:last-child) {
    margin-bottom: 15px;
}

.tableInfo-item .boxText {
    position: relative;
    background-color: var(--white);
    font-size: 14px;
}

.mainCardMiddle {
    margin-bottom: 20px;
    gap: 33px;
}

@media screen and (min-width: 768px) {
    .mainCardMiddle {
        margin-bottom: 43px;
    }
}

.mainCardMiddleInfo h2 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 15px;
}

.mainCardMiddleInfo .textBox {
    font-size: 14px;
}

.mainCardMiddleTable h2 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 0;
}

.mainCardMiddleTable .tableInfo {
    max-width: 286px;
}

.mainCardBottom h2 {
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
    .mainCardBottom h2 {
        font-size: 20px;
        margin-bottom: 33px;
    }
}

.cardBottom {
    column-gap: 63px;
    row-gap: 25px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media screen and (min-width: 640px) {
    .cardBottom {
        column-gap: 60px;
        row-gap: 43px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (min-width: 992px) {
    .cardBottom {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media screen and (min-width: 1200px) {
    .cardBottom {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/*  -- mainCard -- */


/*  ++ mainBasket ++ */


.mainBasket {
    padding-top: 16px;
    padding-bottom: 194px;
}

.mainBasket .breadCrumbs {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .mainBasket .breadCrumbs {
        display: none;
    }
}

@media (min-width: 992px) {
    .mainBasket {
        padding-top: 19px;
        padding-bottom: 60px;
    }
}

.mainBasket .basketTop {
    margin-bottom: 43px;
}

.basketTop .basketTopTitle {
    gap: 16px;
}

.basketTop .basketTopInfo {
    margin-top: 43px;
}

.wrapBasketContent .basketContent {
    max-width: 869px;
    flex: 1;
    align-self: flex-start;
}

.basketContent .deleteBasket {
    position: absolute;
    bottom: 10px;
    left: 101px;
}

@media (min-width: 992px) {
    .basketContent .deleteBasket {
        left: 139px;
    }
}

@media (min-width: 1200px) {
    .basketContent .deleteBasket {
        left: 182px;
    }
}

.basketContentLink {
    padding-left: 101px;
    margin-bottom: 40px;
    min-height: 82px;
}

@media (min-width: 992px) {
    .basketContentLink {
        margin-bottom: 46px;
        padding-left: 139px;
        min-height: 118px;
    }
}

@media (min-width: 1200px) {
    .basketContentLink {
        padding-left: 182px;
    }
}

.basketContentLink .wrapImg {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 122px;
}

@media (min-width: 992px) {
    .basketContentLink .wrapImg {
        width: 119px;
        height: 162px;
    }
}

@media (max-width: 991px) {
    .basketContentLink .textBox {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .basketContentLink .textBox {
        flex: 1;
        max-width: 470px;
        order: 0;
        min-width: 0;
    }

    .basketContentLink .priceBox {
        order: 1;
    }
}

.basketSidebar {
    padding: 16px;
    align-self: flex-start;
    border-top: 1px solid var(--gray-4);
    border-bottom: 1px solid var(--gray-4);
}

@media (min-width: 768px) {
    .basketSidebar {
        max-width: 370px;
        padding: 14px;
        width: calc(50% - 10px);
    }

    .basketSidebar .editPen {
        position: absolute;
        top: 14px;
        right: 14px;
    }

    .basketSidebar .topBoxTitle {
        padding-right: 40px;
    }
}

.wrapAddressCart .addressCart {
    flex: 1;
}

@media (max-width: 767px) {
    .basketSidebar {
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }

    .basketSidebar .wrapBtn {
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 35px 25px;
        background-color: var(--gray-2);
    }

    .wrapAddressCart .addressCart {
        padding-left: 29px;
    }

    .wrapAddressCart .addressCart:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 17px;
        height: 20px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/assets/icons/pointAddress.svg");
    }
}

.addressDropdown .wrapBox {
    max-height: calc(100vh - 269px);
}

.addressDropdown-item {
    min-height: 57px;
}

.addressDropdown-item:hover,
.addressDropdown-item.active {
    background-color: var(--lite-purpl5);
}


.addressModal .wrapBtn {
    padding: 35px 25px;
}

.modal-wrapper .addressModal.modal-panel {
    height: 100%;
}

.addressModalContent {
    padding: 16px;
}

.addressModalContent .titleForm {
    color: var(--gray-5);
}

.modal-wrapper .addressModal .modal-panel {
    align-self: stretch;
}

@media (max-width: 767px) {
    .modal-wrapper .addressModal.wrap-modal {
        width: 100%;
        height: 100%;
    }

}

@media (min-width: 768px) {
    .modal-wrapper .addressModal.wrap-modal {
        max-width: 390px;
        margin: auto;
    }

    .modal-wrapper .addressModal.wrap-modal .modal-panel {
        max-height: 634px;
        margin: auto;
        height: calc(100vh - 32px);
    }

    .addressDropdown .wrapBox {
        max-height: 370px;
        height: calc(100vh - 296px);
    }
}

/*  -- mainBasket -- */


/*  ++ wrapForm ++ */
.wrapForm .crossDark {
    top: 50%;
    right: 19px;
    translate: 0 -50%;
}

.wrapForm input {
    border-bottom: 2px solid var(--primary);
    height: 27px;
    padding: 13px;
}

.wrapForm input.phone {
    padding-right: 40px;
}

.wrapForm.brdBlack input {
    border: 1px solid var(--dark5);
    height: 47px;
    border-radius: 5px;
}

.wrapForm.brdBlack input::-webkit-input-placeholder {
    color: var(--gray-5);
    transition: 0.3s;
}

.wrapForm.brdBlack input::-moz-placeholder {
    color: var(--gray-5);
    transition: 0.3s;
}

/* Firefox 19+ */
.wrapForm.brdBlack input:-moz-placeholder {
    color: var(--gray-5);
    transition: 0.3s;
}

/* Firefox 18- */
.wrapForm.brdBlack input:-ms-input-placeholder {
    color: var(--gray-5);
    transition: 0.3s;
}


.wrapForm.brdBlack input:focus::-webkit-input-placeholder {
    color: transparent;
}

.wrapForm.brdBlack input:focus::-moz-placeholder {
    color: transparent;
}

/* Firefox 19+ */
.wrapForm.brdBlack input:focus:-moz-placeholder {
    color: transparent;
}

/* Firefox 18- */
.wrapForm.brdBlack input:focus:-ms-input-placeholder {
    color: transparent;
}

.grid-rows-hidden {
    grid-template-rows: 0fr;
}

.wrapForm.error .errorBox {
    grid-template-rows: 1fr;
    transition: 0.3s;
}

.errorText.active {
    grid-template-rows: 1fr;
    transition: 0.3s;
}

/*  -- wrapForm -- */
