@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

html,
body,
button,
input,
textarea {
    /*font-family: "Poppins", sans-serif !important;*/
    font-weight: 400;
    font-style: normal;
}

.impact-font {
    font-family: Impact, sans-serif;
}

[class ^= "poppins-"] {
    font-family: "Poppins", sans-serif;
}

.poppins-thin {
    font-weight: 100;
}

.poppins-extralight {
    font-weight: 200;
}

.poppins-light {
    font-weight: 300;
}

.poppins-regular {
    font-weight: 400;
}

.poppins-medium {
    font-weight: 500;
}

.poppins-semibold {
    font-weight: 600;
}

.poppins-bold {
    font-weight: 700;
}

.poppins-extrabold {
    font-weight: 800;
}

.poppins-black {
    font-weight: 900;
}

:root {
    --white-color: #fff;
    --black-color: #000;
    --verylight-color: #F9FAFC;
    --lightgray-color: #E0E5F0;
    --lightgray-color-2: #F9FAFC1A;
    --light-color: rgba(255, 255, 255, .6);
    --green-color: #1EBF77;
    --bluegray-color: #435275;
    --bluegraylight-color: #43527566;
    --bluegraylight-color-2: #EEF1F7;
    --darkgray-color: #21232B;
    --darkgray-color-2: #2A2D37;
    --orange-color: #E87324;
    --lightrose-color: #DF1A1A1A;
}

/**/
.df {
    display: flex;
    place-items: center;
    &.flex-start {
        place-items: flex-start;
    }
    &.flex-normal {
        place-items: normal;
    }
    &.flex-end {
        place-items: flex-end;
    }
    &.flex-stretch {
        align-items: stretch;
    }
}

.none {
    display: none;
}

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

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

.flex-0-25 {
    flex: .25;
}

.flex-0-5 {
    flex: .5;
}

.flex-1 {
    flex: 1;
}

.flex-1-5 {
    flex: 1.5;
}

.flex-2 {
    flex: 2;
}

.flex-2-5 {
    flex: 2.5;
}

.flex-3 {
    flex: 3;
}

.grid {
    display: grid;
    &.two-cols {
        grid-template-columns: 1fr 1fr;
    }
    &.three-cols {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.mr-auto {
    margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-15 {
    margin-left: 15px;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-25 {
    gap: 25px;
}

.gap-50 {
    gap: 50px;
}

.fs40 {
    font-size: 40px;
}

.fs48 {
    font-size: 48px;
}

.fs72 {
    font-size: 72px;
}

.fs124 {
    font-size: 124px;
}

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

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

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

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

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

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

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

.bold-text {
    font-weight: bold;
}

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

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

.lh-100 {
    line-height: 100%;
}

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

.black-bg {
    background-color: var(--black-color);
}

.verylight-bg {
    background-color: var(--verylight-color);
}

.darkgray-bg {
    background-color: var(--darkgray-color);
}

.darkgray-bg-2 {
    background-color: var(--darkgray-color-2);
}

.orange-bg {
    background-color: var(--orange-color);
}

.green-bg {
    background-color: var(--green-color);
}

.bluegraylight-bg {
    background-color: var(--bluegraylight-color-2);
}

.lightrose-bg {
    background-color: var(--lightrose-color);
}

.ls-04 {
    letter-spacing: .4px;
}

.uppercase {
    text-transform: uppercase;
}

.border-rad-8 {
    border-radius: 8px;
}

.border-rad-10 {
    border-radius: 10px;
}

.border-rad-12 {
    border-radius: 12px;
}

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

.border-rad-16 {
    border-radius: 16px;
}

.border-rad-32 {
    border-radius: 32px;
}

.border-rad-40 {
    border-radius: 40px;
}

.border-rad-60 {
    border-radius: 60px;
}

.border-rad-full {
    border-radius: 100%;
}

.padding-5 {
    padding: 5px;
}

.padding-10 {
    padding: 10px;
}

.padding-15 {
    padding: 15px;
}

.padding-20 {
    padding: 20px;
}

.padding-25 {
    padding: 25px;
}

.padding-30 {
    padding: 30px;
}

.padding-40 {
    padding: 40px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-7 {
    padding-top: 7px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-7 {
    padding-bottom: 7px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-15 {
    padding-left: 15px;
}

.pr-75 {
    padding-right: 75px !important;
}

.pr-50 {
    padding-right: 50px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-15 {
    padding-right: 15px;
}

.pl-10 {
    padding-left: 10px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-10 {
    padding-right: 10px;
}

.pl-5 {
    padding-left: 5px;
}

.border-top-1-lightgray {
    border-top: 1px var(--lightgray-color) solid;
}

.border-bottom-1-lightgray {
    border-bottom: 1px var(--lightgray-color) solid;
}

.border-1-bluegraylight {
    border: 1px var(--bluegraylight-color) solid;
}

.border-1-orange {
    border: 1px var(--orange-color) solid;
}

.border-1-green {
    border: 1px var(--green-color) solid;
}

.border-1-bluegraylight-2 {
    border: 1px var(--bluegraylight-color-2) solid;
}

.border-1-lightgray {
    border: 1px var(--lightgray-color) solid;
}

.border-1-lightgray-2 {
    border: 1px var(--lightgray-color-2) solid;
}

.border-bottom-rad-60 {
    --size:60px;
    border-bottom-left-radius: var(--size);
    border-bottom-right-radius: var(--size);
    @media screen and (width <= 440px) {
        --size:0;
        .container {
            width: auto;
        }
    }
}

._container {
    max-width: 1720px;
}

.container {
    max-width: 1460px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.back-btn-holder {
    --size:32px;
    min-width:var(--size);
    max-width:var(--size);
    height:var(--size);
    display: flex;
    place-content: center;
    place-items: center;
}

main {
    .main-frame {
        transform: translateY(-60px);
        @media screen and (width <= 440px) {
            transform:none;
        }
    }
    .btn {
        box-shadow: none;
        &.btn--orange,
        &.small-btn {
            padding: 11px 25px;
            transition: opacity .4s;
            &:hover {
                opacity: .75;
            }
            @media screen and (width <= 440px) {
                display: block;
            }
        }
    }
    .slider--web {
        .slider-content,
        .slider-engine,
        .slider-box {
            height:100%;
        }
        .slider-box {
            background-size: cover !important;
            background-position: center !important;
            .slider__text {
                width: 100%;
                h1 {
                    margin:0;
                    margin-bottom:20px;
                    background: linear-gradient(to right, var(--white-color), #D8D8D8);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    span {
                        -webkit-text-fill-color: var(--orange-color);
                    }
                }
            }
        }
    }
}

/* header */
header {
	&:has(> .attention-bar.active) ~ main .slider--web {
		height: calc(100dvh - (44px + 48px + 71px) + 60px);
	}
	&:has(> .attention-bar:not(.active)) ~ main .slider--web {
		height: calc(100dvh - (48px + 71px) + 60px);
	}
}

.header__top {
    min-height: 48px;
    @media screen and (width <= 440px) {
        height: auto;
    }
    &:before {
        content:none;
    }
    ._container {
        min-height:inherit;
        place-content: center;
        .languages {
            margin-left: 0;
            .languages__title:after,
            .languages__list:before {
                content:none;
            }
            .languages__title,
            .languages__list {
                background-color:transparent;
            }
            .languages__title {
                width: auto;
                border-left: 1px #EEF1F750 solid;
                border-right: 1px #EEF1F750 solid;
                border-radius: 0;
                @media screen and (width <= 440px) {
                    width: max-content;
                }
                .globe {
                    position: static;
                }
            }
            .languages__list {
                background-color: var(--black-color);
                width: auto;
                top: 29px;
                left: 37px;
                box-shadow: none;
                @media screen and (width <= 440px) {
                    display: none !important;
                }
                .languages__link:hover {
                    background-color:transparent;
                }
            }
            .languages__txt {
                color: var(--verylight-color);
                @media screen and (width <= 440px) {
                    padding-left: 0;
                }
            }
        }
    }
    .discover-btn {
        height: 37px;
        border: 1px #F9FAFC30 solid;
        background-color: #F9FAFC30;
    }
    .calculator-delivery__block {
        .btn--calculator {
            margin-top: 0;
            margin-right: 0;
            width: auto;
            color: var(--verylight-color);
            text-indent: 0;
            &:before {
                background-image: url('/img/svg/icons/calculator-lightgray.svg');
                position: static;
                min-width: 20px;
                opacity: 1;
            }
            &:after {
                display: none;
            }
            &:hover:before {
                transition:none;
            }
        }
    }
    .phone {
        padding-left: 0;
        margin-top: 0;
        margin-right: 0;
        color: var(--verylight-color);
        &:before {
            background-image: url('/img/svg/icons/phone-lightgray.svg');
            background-position: initial;
            width: 16px;
            height: 15px;
            position: static;
        }
    }
}
.header-main {
    height: calc(48px + 71px);
    .header-main__inner {
        height: inherit;
        .header__top {
            background-color: #05080F;
            a,
            .languages__title,
            .btn--calculator {
                transition: opacity .4s;
                &:hover {
                    opacity: .85;
                }
            }
        }
    }
}
.header__bottom {
    background-color: var(--white-color);
    min-height: 70px;
    ._container {
        min-height:inherit;
        .logo-container {
            margin-top: 0;
            margin-right: auto;
            .header__logo {
                width: 139px;
                height: 34px;
                background-image: url(/img/boxy_logo-black.svg);
                background-size: contain;
                background-position: center;
            }
        }
        .menu__link {
            padding-right:21px;
            line-height: 70px;
            color: var(--bluegray-color);
            @media screen and (width <= 440px) {
                line-height: normal;
                padding-left: 0;
                padding-right: 0;
            }
            & ~ .menu__sub .menu__sub__link {
                color: var(--bluegray-color);
            }
            &:after {
                content:none;
            }
        }
        .menu__sub:not(.top-menu__sub) {
            top: 70px;
        }
        .menu__item__dropdown {
            .fa-chevron-down {
                margin-left: 5px;
                transition: rotate .5s;
            }
            &.active .fa-chevron-down {
                rotate: 180deg;
            }
        }
        .ver-top-box {
            margin-top: 0;
            margin-right: 0;
        }
        button.ver-top-box {
            padding: 8px 24px 9px;
            border:1px var(--orange-color) solid;
            transition: opacity .4s;
            &:hover {
                text-decoration: none;
                opacity: .75;
            }
        }
        .btn--orange__reg {
            margin-top: 0;
            box-shadow: none;
            padding: 9px 24px 10px;
        }
    }
}

main .slider--web .slider-nav {
    bottom: calc(30px + 60px);
    .slider-nav-items {
        border: 0;
    }
    .slider-nav-items.active {
        background-color: var(--orange-color);
    }
}

/* 'Buy online, ... ' section */
#buy-online-section {
    padding-top: 150px;
    .block--online__list {
        margin-bottom: 0;
        .block--online__item {
            margin-right: 0;
            height: 500px;
            border: 1px var(--bluegraylight-color-2) solid;
            &:nth-child(odd) {
                place-content: flex-end;
            }
            &:nth-child(n) {
                background-repeat: no-repeat;
            }
            &:nth-child(1) {
                background-position: 50% 10%;
            }
            &:nth-child(2) {
                background-position: 75% 100%;
            }
            &:nth-child(3) {
                background-position: 50% 10%;
            }
            &.on-top {
                background-position-y: 10%;
            }
            h3 {
                p {
                    all: unset;
                }
            }
            h3 {
                div, span, strong {
                    all: unset !important;
                    span, strong {
                        all: unset !important;
                    }
                }
            }
            p {
                span {
                    font-family: "Poppins", sans-serif !important;
                    font-size: 14px !important;
                    color:var(--bluegray-color) !important;
                    line-height: 22px;
                }
            }
            &:before {
                position: static;
                width: 40px;
                height: 40px;
                margin-left: 0;
                margin-bottom: 15px;
                display: flex;
                place-items: center;
                place-content: center;
                margin-top: auto;
                border-radius: 100%;
                font-family: Impact, sans-serif;
                font-size: 18px;
                color: var(--white-color);
                background-color: #31333F;
            }
            &:after {
                content:none;
            }
        }
        &.inner-page {
            .block--online__item {
                &:nth-child(n) {
                    background-size: 55%;
                    @media screen and (width <= 440px) {
                        place-content: flex-end;
                        background-size: 65%;
                        background-position: center 10%;
                    }
                }
                &.on-top {
                    background-position-x: 50%;
                }
            }
        }
    }
}

/* 'Shipping methods and prices' section */
.shipping-methods-tab {
    justify-content: center;
    li {
        height: 44px;
        border:1px #8091B766 solid;
        border-radius: 48px;
        cursor: pointer;
        transition: all .5s;
        @media screen and (width <= 440px) {
            height: 40px;
        }
        h3 {
            color:#8091B7;
            transition: all .5s;
        }
        div:has(svg) {
            height:20px;
            transition: all .5s;
        }
        &:hover,
        &.active {
            --color:#E87324;
            border-color: var(--color);
            svg path {
                fill:var(--color);
            }
            h3 {
                color: var(--color);
            }
        }
    }
}

.table-responsive:has(.block--delivery__table) {
    overflow-x: visible;
    @media screen and (width <= 440px) {
        overflow-x: auto;
    }
}

.block--delivery__table {
    --inner-rad: 16px;
    table-layout: auto;
    border-collapse: separate;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, .04);
    thead {
        height:60px;
        background-color: var(--verylight-color);
        border-top-left-radius: var(--inner-rad);
        border-top-right-radius: var(--inner-rad);
        tr:only-child {
            th:first-child {
                border-top-left-radius: var(--inner-rad);
            }
            th:last-child {
                border-top-right-radius: var(--inner-rad);
            }
        }
    }
    tbody {
        td {
            height:80px;
            border-bottom: 1px var(--bluegraylight-color-2) solid;
        }
        tr:last-child {
            td:first-child {
                border-bottom-left-radius: var(--inner-rad);
            }
            td:last-child {
                border-bottom-right-radius: var(--inner-rad);
            }
        }
    }
    th,
    td {
        text-align: left;
        padding-left: 20px;
    }
}

.calculate-shipping-cost-btn {
    --size: 48px;
    place-content: center;
    min-width: var(--size);
	max-width: var(--size);
    height: var(--size);
    color: var(--white-color);
    transition: opacity .4s;
    @media screen and (width <= 440px) {
        --size: 32px;
    }
    &.rotate--45 {
        rotate: -45deg;
    }
    &:hover {
        opacity: .85;
    }
}

/* 'Why Choose Us?' section */
.why-choose-us-boxy {
    max-width: 435px;
    position: absolute;
    top:-23%;
    right: 0;
}

/* 'Best shops' section */
#best-shops-section {
    .flexslider {
        .flex-direction-nav {
            display: none;
        }
        @media screen and (width <= 440px) {
            margin-bottom: 0;
            min-height: auto;
            .slides img {
                height: 48px;
                object-fit: contain;
            }
        }
    }
}

/* calculator */
.modal-dialog {
    .modal-content {
        border-radius: 16px;
        .modal__close {
            width: 13px;
            height: 13px;
            top: 25px;
            right: 25px;
            background-size: cover;
        }
        .select2-container .select2-selection--single {
            height: 48px;
            padding-left: 5px;
            border: 1px #8091B766 solid;
            border-radius: 12px;
            font-weight: 500;
            .select2-selection__rendered {
                > span {
                    font-size: 16px;
                    font-weight: 500;
                    color: var(--darkgray-color);
                    img {
                        margin-right: 13px;
                    }
                }
            }
        }
    }
}

.modal-calculator {
    .select2-container .select2-selection--single {
        text-transform: initial;
    }
    .select2-selection__rendered {
        font-size: 16px;
        line-height: 46px;
    }
}

#modal--calculator {
    .calculator-modal-title {
        > span {
            text-decoration: none !important;
            a {
                font-size: 14px;
                text-decoration: inherit !important;
            }
        }
    }
    .shipping-conditions-box {
        .form-radiobox {
            border:1px #8091B766 solid;
            padding: 8px 9px;
            &:has(input:checked) {
                border-color: var(--orange-color);
            }
            label {
                display: flex;
                align-items: flex-start;
                flex-direction: column;
                padding-left: 0;
                .modal-type__text {
                    color: #8091B7;
                }
            }
        }
    }
    .calculator-weight-box {
        border:1px #8091B766 solid;
        max-width: 183px;
        .select2-container .select2-selection--single {
            height: 36px;
            border: 1px var(--bluegraylight-color-2) solid;
            padding-left: 0;
            background: var(--verylight-color);
            text-transform: uppercase;
            font-weight: 500;
            color: var(--darkgray-color);
            .select2-selection__rendered {
                line-height: 36px;
            }
        }
    }
    .form-checkbox {
        .form-checkbox-slide {
            width: 46px;
            height: 24px;
            border: 1px var(--lightgray-color) solid;
            background: #F5F7FA;
            border-radius: 34px;
            cursor: pointer;
            transition-property: border, background;
            transition-duration: .5s;
            &:before {
                content:"";
                --size:20px;
                width: var(--size);
                height: var(--size);
                border-radius: 100%;
                display: block;
                background: #8091B7;
                margin-left: 2px;
                margin-top: 1px;
                transition-property: margin-left, background;
                transition-duration: .5s;
            }
        }
        label {
            padding-left: 0;
            display: flex;
            .parcel__icon {
                &:before {

                }
            }
        }
        &:has(input:checked) {
            .form-checkbox-slide {
                border-color: var(--orange-color);
                background: var(--orange-color);
                &:before {
                    margin-left: 22px;
                    background: var(--white-color);
                }
            }
        }
    }
    .dimensions-box,
    .export-dimensions-box {
        input[type="text"] {
            border: 1px #8091B766 solid;
            height: 48px;
            padding-left: 15px;
            border-radius: 8px;
            color:#8091B7;
        }
    }
}

.tippy-box[data-theme="light"] {
    transform: translateY(10px);
    padding:10px;
    border:1px var(--bluegraylight-color-2) solid;
    border-radius: 12px;
    box-shadow: none;
    background: var(--verylight-color);
    font-size: 12px;
    color:var(--bluegray-color);
    .tippy-arrow {
        display: none;
    }
}

/* inner pages */
.inner-header {
    height: 710px;
}

.inner-header {
    height: 710px;
    background-size: cover;
    background-position: center;
    .container {
        height: inherit;
        h5 {
            background: linear-gradient(to right, var(--white-color), #D8D8D8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }
    @media screen and (width <= 440px) {
        height: 470px;
        & ~ .main-frame {
            transform: translateY(-60px);
        }
    }
}

.fancybox:not(.calculate-shipping-cost-btn) {
    width: auto;
}

.how-it-works {
    .block--online__item {
        padding-top: 40px;
    }
}

.faq__line {
    min-height: 59px;
    .faq__title--out {
        min-height: inherit;
        .faq__title {
            border:0;
            padding: 0 0 0 20px;
            @media screen and (width <= 440px) {
                padding-left: 10px;
            }
            min-height: inherit;
            &.select {
                background: var(--verylight-color);
            }
            .faq__plus-btn {
                top: 20px;
                right: 20px;
                left: auto;
                scale: .6;
                &:before,
                &:after {
                    background-color:var(--bluegray-color);
                }
            }
        }
    }
    .faq__inner-block {
        padding-bottom: 20px;
        padding-right: 20px;
        > div > span {
            font-size: unset !important;
        }
    }
}

#buy-for-me-form {
    .btn.add-link {
        background-color: transparent;
        color: var(--orange-color);
        transition: all .5s;
        &:hover {
            border-color: var(--orange-color);
        }
    }
    .form-box {
        margin-bottom: 0;
    }
    .form-box-link,
    .form-box-name {
        width: auto;
    }
    .form-box-link {
        .special-shop,
        .buy-for-me_question {
            top: auto;
            bottom: 17%;
        }
        &:has(p.form-error-text:not(:empty)),
        &:has(~ .form-box-name p.form-error-text:not(:empty)) {
            .special-shop,
            .buy-for-me_question {
                top: 38%;
                bottom: 0;
                @media screen and (width <= 440px) {
                    top: 32%;
                }
            }
        }
    }
    .form-box-name {
        padding-left: 0;
    }
    .form-box-delete {
        padding: 0;
        .delete-link {
            --size:40px;
            width: var(--size);
            height: var(--size);
            place-items: center;
            place-content: center;
        }
    }
    button[type="submit"] {
        height: 48px;
        &:disabled:hover {
            opacity: 1;
            cursor: not-allowed;
        }
    }
}

.form-box {
    input[type="text"] {
        height: 50px;
        border-color: var(--bluegraylight-color-2);
        border-radius: 12px;
        color: var(--darkgray-color);
        @media screen and (width <= 440px) {
            border-radius: 8px;
        }
    }
}

.register .form-box input.field--phone-number {
    height: 42px;
}


/* footer */
.footer__top {
    padding-bottom:50px;
    background-color: var(--black-color);
    .footer__left {
        .footer__top--sub {
            margin-top: 0;
            .footer-contacts__menu {
                li {
                    text-align: right;
                    img {
                        vertical-align: middle;
                    }
                    a:hover {
                        color:var(--white-color);
                    }
                }
                .footer-contacts__link.green-text {
                    color: var(--green-color);
                }
            }
            .footer-nav__menu {
                a {
                    color: var(--light-color);
                    &:hover {
                        color: var(--white-color);
                    }
                }
            }
            .mobile-store-list {
                a {
                    transition: opacity .4s ease;
                }
                a:hover {
                    opacity: .85;
                }
            }
        }
        .footer__bottom--sub {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px var(--lightgray-color-2) solid;
            .social__link {
                --size:40px;
                width: var(--size);
                height: var(--size);
                background-size: auto;
                background-repeat: no-repeat;
                background-position: center;
                border: 1px rgba(255, 255, 255, .12) solid;
            }
            .very-bottom-links {
                border-left: 1px var(--lightgray-color-2) solid;
                @media screen and (width <= 440px) {
                    border-left:0;
                }
                a:hover {
                    color: var(--white-color);
                }
            }
        }
    }
    .footer__right {
        background-color: rgba(255, 255, 255, .06);
        .control {
            all: unset;
            &:before {
                display: none;
            }
        }
        #footer-email-form {
            .form-box {
                margin-bottom: 15px;
                input[type="text"],
                input[type="email"],
                textarea {
                    background-color: transparent;
                    height: 54px;
                    border-radius: 12px;
                    border-color: rgba(255, 255, 255, .2);
                    padding-left: 16px;
                    padding-right: 16px;
                    color: var(--white-color);
                    &::placeholder {
                        font-weight: 500;
                        color: rgba(255, 255, 255, .4);
                    }
                    &:focus {
                        box-shadow: none;
                    }
                }
                .select2-container {
                    height: 54px;
                    border-radius: 12px;
                    border: 1px rgba(255, 255, 255, .2) solid;
                    padding-left: 5px;
                    .selection {
                        height: inherit;
                        .select2-selection {
                            height: inherit;
                            background-color: transparent;
                            border: 0;
                            .select2-selection__rendered {
                                background: transparent;
                                border: 0;
                                color: var(--white-color);
                                line-height: 54px;
                            }
                        }
                    }
                }
                textarea {
                    height: 100px;
                }
            }
            .form-box-small--out:last-of-type .form-box.form-box--small {
                margin-bottom: 0;
                button[type="submit"] {
                    width: auto;
                    border-radius: 12px;
                    background-color: var(--orange-color);
                    &:hover {
                        background-color: #df5c1e;
                    }
                }
            }
        }
    }
}

/* user */
.user.active {
    display: flex;
    place-items: center;
    gap: 5px;
    @media screen and (width <= 440px) {
        margin-right: 0;
        position: relative;
    }
    .message {
        margin-left: 0;
        margin-right: 10px;
        border-right: 1px #8091B7 solid;
        padding-right: 40px;
        @media screen and (width <= 440px) {
            position: relative;
            top: 12px;
        }
        &:before,
        &:after {
            --size:24px;
            width: var(--size);
            height: var(--size);
            background-image: url('/img/svg/icons/bell-2.svg');
        }
        .message__number {
            display: flex;
            place-items: center;
            place-content: center;
            width: 15px;
            min-height: 20px;
            border-radius: 100%;
        }
    }
    .menu__item {
        .user__name {
            padding-left: 10px;
            padding-right: 10px;
            place-items: center;
            .loggedin-user-avatar {
                --size:44px;
                width: var(--size);
                height: var(--size);
                place-content: center;
            }
        }
    }
    .balance-bonus__price {
        --size:44px;
        height: var(--size);
        padding-left: 5px;
        padding-right: 15px;
        @media screen and (width <= 440px) {
            padding-right: 5px;
        }
        .currency_symbol {
            --size:32px;
            width: var(--size);
            height: var(--size);
            place-content: center
        }
        .balance-amount {
            font-family: "Poppins", sans-serif;
        }
    }
}

/* my-addresses */
.profile-tab-section {
    .profile-tab__top {
        height: 64px;
        .tab {
            margin-right: 0 !important;
            a.tab__title {
                border: 0;
                background: transparent;
                width: auto;
                padding: 0 35px;
                border-radius: 12px;
                color: #8091B7;
                @media screen and (width <= 440px) {
                    padding-left: 10px;
                    padding-right: 10px;
                    place-content: center;
                }
                &:hover,
                &.active {
                    border-radius: 12px;
                    color: var(--white-color);
                    background-color: var(--darkgray-color);
                    &:after {
                        content:none;
                    }
                }
            }
        }
    }
    .btn--orange {
        padding: 0 35px;
        min-width: initial;
        height: 52px;
        box-shadow: none !important;
        border-radius: 8px;
        .btn--verybig__txt {
            &:before {
                display: none;
            }
        }
    }
    @media screen and (width <= 440px) {
        display: block !important;
    }
}

#address-tab.address__tab {
    padding-bottom: 50px;
    .my-addresses-block {
        margin-bottom: auto;
        .tab__title {
            width: 100%;
            border: 0;
            border-radius: 8px !important;
            padding-top: 0;
            padding-bottom: 0;
            background-color: transparent;
            color: var(--bluegray-color);
            line-height: 55px;
            &:hover,
            &.active {
                background-color: var(--darkgray-color);
                color: var(--white-color);
                &:after {
                    content: none;
                }
            }
            .icon__flag--small {
                width: 28px;
                height: 20px;
                border-radius: 0;
                img {
                    width: inherit;
                    height: inherit;
                    object-fit: cover;
                }
            }
        }
        @media screen and (width <= 440px) {
            display: block;
            width: 100%;
        }
    }
    .tab-content {
        margin-left: 0;
        .tab-inner {
            .address__block {
                width: auto;
                .address__box {
                    all: unset;
                    .address__inner {
                        border-radius: 16px !important;
                        border-color: var(--lightgray-color);
                        background-color: var(--verylight-color);
                        padding: 25px 20px;
                        @media screen and (width <= 440px) {
                            padding: 15px;
                        }
                        .address__table {
                            tr {
                                td {
                                    padding-top: 10px;
                                    padding-bottom: 10px;
                                    &:first-child {
                                        padding-left: 5px;
                                        color: var(--bluegray-color);
                                    }
                                    &:last-child {
                                        padding-right: 5px;
                                        p {
                                            color: var(--bluegray-color);
                                        }
                                    }
                                }
                                &:first-child td {
                                    padding-top: 0;
                                    padding-bottom: 0;
                                }
                                & {
                                    td {
                                        &:not(:first-child),
                                        &:not(:last-child) p {
                                            font-weight: bold;
                                            color: var(--darkgray-color);
                                            .select2-selection {
                                                height: 44px;
                                                .select2-selection__rendered {
                                                    font-size: 16px;
                                                    color: #21232B;
                                                    line-height: 44px;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                            .address-copy__txt {
                                font-size: 16px;
                                font-weight: normal;
                                color: var(--bluegray-color);
                                @media screen and (width <= 440px) {
                                    font-size: 12px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    .tab-right {
        .btn--orange {
            margin-right: 0;
            background: #E873241A;
            color: var(--orange-color);
            @media screen and (width <= 440px) {
                width: 100%;
            }
        }
    }
    &:before {
        content:none;
    }
}

/* my-orders */
#order-tab {
    .order-search {
        input {
            height: 44px;
            padding-left: 40px;
            color: #8091B7;
            &::placeholder {
                color: #8091B7;
            }
        }
        @media screen and (width <= 440px) {
            display: block;
        }
    }
    .tab--vertical .tab-link__out {
        @media screen and (width > 440px) {
            max-width: 335px;
        }
        .tab {
            .tab__title {
                width: 100%;
                border: 0;
                background-color: transparent;
                height: 56px;
                --pad:15px;
                padding-left: var(--pad);
                padding-right: var(--pad);
                border-radius: 8px !important;
                color:var(--bluegray-color);
                &.active,
                &:hover {
                    background-color: var(--darkgray-color);
                    color:var(--white-color);
                    svg {
                        path,
                        circle {
                            stroke: var(--white-color);
                        }
                    }
                }
                &:before,
                &:after {
                    content: none;
                }
                .my-orders-left-tab-text {
                    position: static;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
                .my-orders-left-tab-count {
                    padding-top: 0;
                }
                @media screen and (width <= 440px) {
                    display: flex;
                }
            }
        }
    }
    #orders-list-container {
        margin-left: 0;
        .table--expected-parcels {
            tr, th, td {
                border:0;
            }
            th, td {
                padding: 0 15px;
                &:not(.arrow__col--out) a {
                    padding-left:0;
                    padding-right:0;
                    height: auto;
                }
            }
            thead {
                th {
                    height: 48px;
                    &:first-child {
                        border-top-left-radius: 12px;
                        border-bottom-left-radius: 12px;
                    }
                    &:last-child {
                        border-top-right-radius: 12px;
                        border-bottom-right-radius: 12px;
                    }
                }
            }
            tbody {
                td {
                    height: 60px;
                    border-bottom: 1px var(--lightgray-color) solid;
                    font-weight: bold;
                    &.data-delivery--out,
                    &.data-receiving--out {
                        a {
                            color: var(--bluegray-color);
                        }
                    }
                    &.arrow__col--out {
                        .table__icon {
                            --size:36px;
                            min-width: var(--size);
                            max-width: var(--size);
                            height: var(--size);
                            padding-left: 0;
                            padding-right: 0;
                            display: flex;
                            place-content: center;
                            &:hover {
                                background-color: var(--darkgray-color);
                                svg path {
                                    stroke:var(--white-color);
                                }
                            }
                        }
                    }
                }
            }
        }
        .pagination__out {
            .pagination__link {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 3px;
                --size:40px;
                min-width: var(--size);
                height: var(--size);
                padding-left: 15px;
                padding-right: 15px;
                &.pagination__link--active,
                &:hover {
                    background-color: var(--darkgray-color);
                    color: var(--white-color);
                    svg path {
                        stroke: var(--white-color);
                    }
                }
                &.disabled {
                    display: none;
                }
            }
            @media screen and (width <= 768px) {
                display: block;
            }
        }
        .pagination-limit {
            margin-top: 0;
            .select2-selection {
                height: 36px;
                .select2-selection__rendered {
                    border-radius: 12px;
                    height: 34px;
                    line-height: 31px;
                    border: 1px var(--bluegraylight-color-2) solid;
                    background: var(--verylight-color);
                    color: var(--darkgray-color);
                }
            }
            @media screen and (width <= 440px) {
                transform:none;
                max-width: max-content;
                .select {
                    margin: 0;
                }
            }
        }
    }
}

/* add-parcel */
.sale-order {
    padding-top: 30px;
    .parcel-per-countries {
        label {
            cursor: pointer;
            img {
                width: 28px;
                max-height: 20px;
                object-fit: cover;
            }
        }
        div:has( > input:checked) {
            border-color:var(--green-color);
            input:checked::before {
                box-shadow: inset 1em 1em var(--green-color);
            }
        }
        div > input {
            &:checked::before {
                box-shadow: inset 1em 1em var(--green-color);
            }
        }
    }
    .form-box {
        margin-bottom: 0;
        input[type="text"],
        textarea {
            height: 48px;
            border-radius: 8px;
            color:var(--bluegray-color);
            &::placeholder {
                color:var(--bluegray-color);
            }
        }
        input[type="text"].field--price-per-item {
            width: 100%;
        }
        textarea {
            height: 100px;
            padding: 10px;
        }
        &.other-store {
            width: 100%;
            .select2-container--default {
                width: inherit !important;
            }
        }
        @media screen and (width <= 440px) {
            .error-txt {
                text-align: left;
            }
        }
    }
    .select2-container--default .select2-selection--single {
        height: 48px;
        border-radius: 8px;
        .select2-selection__rendered {
            font-size: 16px;
            font-weight: bold;
            color:var(--darkgray-color);
            line-height: 48px;
        }
    }
    .declaration-container {
        .declaration-currency-list {
            position: absolute;
            right: 10px;
            top: 6px;
            .select2-selection--single {
                height: 36px;
                border-top-left-radius: 8px;
                border-top-right-radius: 8px;
                border-left: 1px #dedede solid;
                border: 1px var(--bluegraylight-color-2) solid;
                background-color: var(--verylight-color);
                .select2-selection__rendered {
                    line-height: 36px;
                }
            }
        }
        .declaration-row {
            .delete__icon {
                position: static;
                width: fit-content;
                height: auto;
            }
        }
    }
    .attach-invoice {
        @media screen and (width <= 440px) {
            #uploadifive-undefined {
                margin-left: 0;
            }
        }
    }
    .declaration__price_customs_limit-block {
        float: none;
        width: auto;
        display: flex;
        gap: 10px;
        &:not(:has(> :nth-child(n):not(.dn))) {
            padding-top: 0;
        }
        .declaration__price_customs_limit-text {
            right: auto;
            width: auto;
        }
        .declaration__price_customs_limit-icon {
            right: auto;
            top: auto;
            order: -1;
        }
    }
    #recipients-block {
        .recipient-radiobox__line {
            min-height: auto;
            margin-bottom: 0;
            padding-right: 0;
            p {
                margin-top: 0;
            }
        }
    }
    .order-action__icon {
        --size: 40px;
        min-width: var(--size);
        max-width: var(--size);
        height: var(--size);
        display: flex;
        place-content: center;
        place-items: center;
        &:hover {
            background-color: var(--darkgray-color);
            svg path {
                stroke:var(--white-color);
            }
        }
    }
}

@media screen and (width <= 440px) {
    .hide-on-mobile {
        display: none;
    }

    .show-on-mobile {
        display: block;
    }

    .flex-on-mobile {
        display: flex;
        align-items: center;
    }

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

    .flex-start-on-mobile {
        place-items: flex-start;
    }

    .gap-30-on-mobile {
        gap: 30px;
    }

    .gap-15-on-mobile {
        gap: 15px;
    }

    .gap-10-on-mobile {
        gap: 10px;
    }

    .gap-5-on-mobile {
        gap: 5px;
    }

    .border-rad-32-on-mobile {
        border-radius: 32px;
    }

    .border-rad-16-on-mobile {
        border-radius: 16px;
    }

    .border-rad-12-on-mobile {
        border-radius: 12px;
    }

    .border-rad-6-on-mobile {
        border-radius: 6px;
    }

    .mt-25-on-mobile {
        margin-top: 25px;
    }

    .mt-0-on-mobile {
        margin-top: 0;
    }

    .mb-30-on-mobile {
        margin-bottom: 30px;
    }

    .mb-25-on-mobile {
        margin-bottom: 25px;
    }

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

    .mb-0-on-mobile {
        margin-bottom: 0;
    }

    .ml-0-on-mobile {
        margin-left: 0;
    }

    .pb-50-on-mobile {
        padding-bottom: 50px;
    }

    .pb-35-on-mobile {
        padding-bottom: 35px;
    }

    .pb-25-on-mobile {
        padding-bottom: 25px;
    }

    .pb-10-on-mobile {
        padding-bottom: 10px;
    }

    .pb-0-on-mobile {
        padding-bottom: 0;
    }

    .pt-50-on-mobile {
        padding-top: 50px;
    }

    .pt-35-on-mobile {
        padding-top: 35px;
    }

    .pt-10-on-mobile {
        padding-top: 10px;
    }

    .pl-0-on-mobile {
        padding-left: 0;
    }

    .padding-20-on-mobile {
        padding: 20px;
    }

    .padding-15-on-mobile {
        padding: 15px;
    }

    .border-rad-0-on-mobile {
        border-radius: 0;
    }

    .fs32-on-mobile {
        font-size: 32px;
    }

    .fs24-on-mobile {
        font-size: 24px;
    }

    .fs20-on-mobile {
        font-size: 20px;
    }

    .fs16-on-mobile {
        font-size: 16px;
    }

    .fs14-on-mobile {
        font-size: 14px;
    }

    .lh-20-on-mobile {
        line-height: 20px;
    }

    .left-aligned-on-mobile {
        text-align: left;
    }

    .center-aligned-on-mobile {
        text-align: center;
    }

    .full-width-on-mobile {
        width: 100%;
    }

    .block--online__item {
        min-height: 404px;
        display: block;
    }

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

    #burger {
        left: auto;
        right: 20px;
        top: 69px;
        .lines {
            background-color: #1C274C;
        }
    }

    body:has(.header.menu-open) {
        overflow-y: hidden;
    }

    .header.menu-open {
        .header__bottom {
            top: 118px !important;
            .languages {
                display: flex;
                place-content: center;
                .languages__txt {
                    padding-left: 0;
                }
                .languages__title {
                    margin-right: 0;
                    padding-left: 10px;
                    padding-right: 10px;
                    .globe {
                        display: none;
                    }
                }
            }
        }
    }

    .header__top {
        .calculator-delivery__block {
            display: block;
            .btn--calculator {
                padding-left: 0;
                padding-right: 0;
                height: auto;
                gap: 0;
            }
        }
        .languages {
            display: block;
            margin-top: 0;
            margin-bottom: 0;
        }
        .phone {
            display: block;
            padding-right: 0;
        }
    }

    .header__logo-on-mobile {
        .header__logo {
            width: 116px;
            height: 20px;
            margin-top: 25px;
            background-image: url(/img/boxy_logo-black.svg);
            background-size: contain;
        }
    }

    #buy-online-section {
        padding-top: 75px;
        & .block--online__list {
            & .block--online__item {
                &:before {
                    --size:32px;
                    width: var(--size);
                    height: var(--size);
                    font-size: 16px;
                }
                h3 {
                    padding-bottom: 10px;
                    font-size: 20px;
                }
            }
        }
    }
    .inner-header ~ .main-frame #buy-online-section {
        padding-top: 50px;
    }

    .tab-top .select2-selection.select2-selection--single {
        height: auto;
    }

    .select2-selection.select2-selection--single {
        border: 1px solid #aaa !important;
        border-radius: 8px !important;
        padding-left: 5px;
    }

    .footer__top {
        padding-bottom: 25px;
        & .footer__left {
            & .footer__top--sub {
                .footer-logo img {
                    width: 93px;
                }
                .footer-contacts__menu {
                    place-items: normal;
                    li {
                        text-align: left;
                    }
                }
            }
            .footer__bottom--sub {
                place-items: normal;
                ul {
                    place-items: normal;
                }
            }
        }
    }
}

