:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #e8ab08;
    --accent-color-2: #ff842c;
    --accent-dark-color: #4f4f4f;
    --accent-background-color: #f5f6f7;
    --page-max-width: 1920px;
    --container-padding: 123px;
    --container-margin-bottom: 80px;
    --fancybox-bg: rgba(24, 24, 27, 0.5);
    --input-error-background-color: #fce7e7;
    --input-error-border-color: #faababbd;
    --tooltip-background-color: #fff;
}

@media (max-width: 1260px) {
    :root {
        --container-padding: 5%;
    }
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
    opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
    outline: 2px solid #f00;
    outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
    opacity: 0.4;
    pointer-events: none;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
}

body {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.site-container {
    min-height: 100vh;
}

.is-hidden {
    display: none !important;
}

.btn-reset {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

/* || HEADER start|| */
.h-nav {
    display: grid;
}

.header {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9;
    transition: 0.3s ease;
    background-color: #f2f2f2;
}

.top-nav {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) 1fr minmax(227px, 379px);
    gap: 25px 35px;
    grid-auto-flow: row;
    grid-template-areas: 'top-nav__logo top-nav__top top-nav__action' 'top-nav__logo top-nav__bottom top-nav__action';
    transition: 0.3s ease;
}
.top-nav__logo {
    grid-area: top-nav__logo;
    padding: 10px 0 10px 100px;
}
.top-nav__logo-large {
    height: 100%;
    display: flex;
    align-items: center;
}
.top-nav__logo-small {
    height: 100%;
    display: none;
}
@media (max-width: 1200px) {
    .top-nav__logo-large {
        display: none;
    }
    .top-nav__logo-small {
        display: flex;
    }
}
@media (max-width: 850px) {
    .top-nav__logo {
        padding: 10px 0 10px 40px;
    }
}
.top-nav__top {
    padding-top: 15px;
    grid-area: top-nav__top;
    display: flex;
    justify-content: flex-end;
}
.top-nav__top-item:not(:first-of-type) {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #4f4f4f;
    position: relative;
}
.top-nav__top-item--mobile-trigger {
    display: none;
}
.top-nav__top-tel {
    display: flex;
    align-items: center;
    color: #222222;
    font-size: 16px;
    letter-spacing: 0.07em;
    white-space: nowrap;
}
.top-nav__top-tel span {
    margin-left: 10px;
    white-space: nowrap;
}
@media (max-width: 990px) {
    .top-nav__top-tel span {
        display: none;
    }
}
@media (max-width: 650px) {
    .top-nav__top-item:first-of-type {
        display: none;
    }
    .top-nav__top-item:not(:first-of-type) {
        margin-left: 10px;
        padding-left: 10px;
        border: none;
    }
}
@media (max-width: 450px) {
    .top-nav__top-item.top-nav__top-cart {
        display: flex;
        align-items: center;
    }
    .top-nav__top-item.top-nav__top-cart .top-nav__top-cart-icon img {
        width: 30px;
    }
    .top-nav__top-item.top-nav__top-cart .top-nav__top-cart-title,
    .top-nav__top-item.top-nav__top-cart .top-nav__top-cart-actions {
        display: none;
    }
}
.top-nav__top-account {
    display: grid;
    grid-template-columns: 18px 1fr;
    grid-template-areas: 'top-nav__account-icon top-nav__top-account-title' 'top-nav__account-icon top-nav__top-account-actions';
    gap: 0 10px;
}
.top-nav__top-account-icon {
    grid-area: top-nav__account-icon;
}
.top-nav__top-account-title {
    grid-area: top-nav__top-account-title;
    color: #222222;
    font-size: clamp(14px, 1.2vw, 16px);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
}
.top-nav__top-account-actions {
    grid-area: top-nav__top-account-actions;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.top-nav__top-account-actions a {
    white-space: nowrap;
    display: block;
    font-size: 12px;
    color: var(--accent-color);
    padding: 0 0 0 10px;
}
.top-nav__top-cart {
    display: grid;
    grid-template-columns: 18px 1fr;
    grid-template-areas: 'top-nav__cart-icon top-nav__top-cart-title' 'top-nav__cart-icon top-nav__top-cart-actions';
    gap: 0 10px;
}
.top-nav__top-cart-icon {
    grid-area: top-nav__cart-icon;
    position: relative;
}
.top-nav__top-cart-counter {
    width: 17px;
    height: 17px;
    background-color: var(--accent-dark-color);
    color: #fff;
    font-size: 10px;
    padding: 3px;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: -10px;
    display: none;
    align-items: center;
    justify-content: center;
}
@media (max-width: 450px) {
    .top-nav__top-cart-counter {
        display: flex;
    }
}
.top-nav__top-cart-title {
    grid-area: top-nav__top-cart-title;
    color: #222222;
    font-size: clamp(14px, 1.2vw, 16px);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
}
.top-nav__top-cart-actions {
    grid-area: top-nav__top-cart-actions;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.top-nav__top-cart-actions a {
    display: block;
    white-space: nowrap;
    font-size: 12px;
    color: var(--accent-color);
    padding: 0 0 0 10px;
}
.top-nav__bottom {
    grid-area: top-nav__bottom;
    max-height: 74px;
    height: 100%;
    align-self: flex-end;
}
.top-nav__menu-list {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    align-items: stretch;
    height: 100%;
}
.top-nav__menu-link {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: clamp(16px, 1.2vw, 18px);
    text-transform: uppercase;
    color: #222222;
    padding: 12px 10px;
    white-space: nowrap;
    transition: 0.3s ease;
}
.top-nav__menu-link:hover {
    color: var(--accent-color);
    background-color: var(--accent-dark-color);
}
.top-nav__menu-link.top-nav__link--active {
    color: #fff;
    background-color: var(--accent-color);
}
.top-nav__action {
    grid-area: top-nav__action;
}
.top-nav__action a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    background-color: var(--accent-color);
    font-weight: bold;
    font-size: clamp(16px, 1.2vw, 25px);
    line-height: 110%;
    letter-spacing: 0.095em;
    text-transform: uppercase;
    color: #ffffff;
    vertical-align: middle;
    padding: 0 25px;
    transition: 0.3s ease;
}
.top-nav__action a:hover {
    background-color: var(--accent-dark-color);
}
.top-nav__action span {
    display: flex;
}
.top-nav__action img {
    max-width: 22px;
}
@media (max-width: 1400px) {
    .top-nav {
        grid-template-columns: minmax(100px, 1fr) 1fr 200px;
    }
}
@media (max-width: 1200px) {
    .top-nav {
        gap: 10px 25px;
    }
}
@media (max-width: 780px) {
    .top-nav {
        padding: 0 5%;
        grid-template-columns: -webkit-max-content 1fr;
        grid-template-columns: max-content 1fr;
        grid-template-rows: 70px;
        grid-template-areas: 'top-nav__logo top-nav__top';
    }
    .top-nav__logo {
        padding: 10px 0;
    }
    .top-nav__top {
        height: 80%;
    }
    .top-nav__top-item--mobile-trigger {
        display: flex;
        align-items: center;
    }
    .top-nav__top-item--mobile-trigger .m-menu-toggle__button {
        border: none;
        background-color: none;
        color: var(--accent-color);
    }
    .top-nav__top-item--mobile-trigger .hc-nav-trigger {
        position: relative;
    }
    .top-nav__bottom {
        display: none;
    }
    .top-nav__action {
        display: none;
    }
}

/* || HEADER end || */
/* || HOME SLIDER start || */
.home-slider {
    width: 100%;
    height: 690px;
    overflow: hidden;
    position: relative;
}
.home-slider .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #666666;
    background-blend-mode: soft-light;
}
.home-slider .swiper-slide .slide-content {
    margin-left: 5%;
    margin-right: 5%;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr minmax(0px, 1fr);
    max-width: calc(var(--page-max-width) - 20%);
}
.home-slider .swiper-slide .slide-content__text-side {
    display: flex;
    flex-direction: column;
    padding: 15px;
}
.home-slider .swiper-slide .slide-content__title {
    color: #fff;
    font-weight: 300;
    font-size: clamp(35px, 4vw, 41.4835px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 8px 10px;
    border-radius: 4px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.home-slider .swiper-slide .slide-content__sub-title {
    color: #fff;
    font-weight: 600;
    font-size: clamp(45px, 6vw, 79.5572px);
    line-height: 105%;
    margin-bottom: 15px;
    max-width: 90%;
}
.home-slider .swiper-slide .slide-content__accent-title {
    color: #fff;
    font-size: clamp(35px, 3vw, 55px);
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 15px;
    background-color: var(--accent-color);
    padding: 10px;
}
.home-slider .swiper-slide .slide-content__image-side {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1200px) {
    .home-slider .swiper-slide .slide-content__image-side {
        display: none;
    }
}
.home-slider .swiper-slide .slide-content__image-side img {
    width: 150%;
    max-width: 720px;
}
@media (max-width: 1400px) {
    .home-slider .swiper-slide .slide-content__image-side img {
        width: 100%;
    }
}
@media (max-width: 1600px) {
    .home-slider .swiper-slide .slide-content {
        grid-template-columns: 1.2fr minmax(0px, 1fr);
        margin-top: 0;
    }
}
@media (max-width: 1200px) {
    .home-slider .swiper-slide .slide-content {
        grid-template-columns: 1fr;
    }
}
.home-slider .swiper-slide .slide-content__link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23.4px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 20px;
    padding: 40px 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease-in-out;
}
.home-slider .swiper-slide .slide-content__link:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.5);
}
@media (max-width: 500px) {
    .home-slider .swiper-slide .slide-content__link {
        font-size: 18px;
        margin: 20px auto;
        padding: 20px 15px;
    }
}
.home-slider .swiper-slide .slide-content img {
    margin-left: 10px;
}
.home-slider .swiper-button-next {
    width: 42px;
    height: 66px;
    right: 10vw;
    color: #fff;
    background-color: #4f4f4f;
}
@media (max-width: 2000px) {
    .home-slider .swiper-button-next {
        right: 3%;
    }
}
.home-slider .swiper-button-prev {
    width: 42px;
    height: 66px;
    left: 10vw;
    color: #fff;
    background-color: #4f4f4f;
}
@media (max-width: 2000px) {
    .home-slider .swiper-button-prev {
        left: 3%;
    }
}
.home-slider .swiper-pagination-bullets {
    bottom: 100px;
}
.home-slider .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
}
.home-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #828282;
}
@media (max-width: 1200px) {
    .home-slider {
        height: -webkit-max-content;
        height: -moz-max-content;
        height: max-content;
    }
}

/* || HOME SLIDER end || */
/* || FOOTER start|| */
.footer {
    background-color: #f2f2f2;
    padding-top: 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 0.7fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-auto-columns: 1fr;
    gap: 0px 20px;
    grid-auto-flow: row;
    grid-template-areas: 'footer-grid__logo footer-grid__info footer-grid__categories footer-grid__contacts';
    padding: 0 30px 25px 30px;
}
@media (max-width: 1500px) {
    .footer-grid {
        grid-template-columns: 0.8fr 1fr 1fr;
        grid-template-areas: 'footer-grid__logo footer-grid__logo footer-grid__logo' 'footer-grid__info footer-grid__categories footer-grid__contacts';
        gap: 20px 50px;
    }
}
@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 'footer-grid__logo ' 'footer-grid__info' 'footer-grid__categories' 'footer-grid__contacts';
        gap: 20px 50px;
    }
}
.footer-grid__logo {
    grid-area: footer-grid__logo;
}
.footer-grid__logo-link {
    display: block;
    margin-bottom: 40px;
}
.footer-grid__logo-socials {
    display: flex;
    align-items: center;
}
.footer-grid__logo-socials a {
    margin-right: 15px;
}
.footer-grid__info {
    grid-area: footer-grid__info;
}
.footer-grid__categories {
    grid-area: footer-grid__categories;
}
.footer-grid__contacts {
    grid-area: footer-grid__contacts;
}
.footer-grid__ttl {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.footer-grid__list,
.footer-grid__list--2col {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-grid__list--2col {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    gap: 0 20px;
}
@media (max-width: 600px) {
    .footer-grid__list--2col {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}
.footer-grid__list-item > {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    text-transform: uppercase;
}
.footer-grid__list-item > a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: block;
    font-size: 16px;
    line-height: 150%;
    color: #333333;
    transition: 0.3s ease;
}
.footer-grid__list-item > a.footer-contact {
    padding-left: 25px;
    position: relative;
}
.footer-grid__list-item > a.footer-contact.footer-contact--pin::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/cab_pin.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-grid__list-item > a.footer-contact.footer-contact--phone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url(/img/icons/cab_phone.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-grid__list-item > a:hover {
    color: var(--accent-color);
}
.footer-grid__list-item > p {
    font-size: 16px;
    line-height: 150%;
    color: #333333;
}

.footer-bottom {
    border-top: 1px solid #bdbdbd;
    padding: 30px;
    position: relative;
    font-size: 14px;
    color: #828282;
}
.footer-bottom a {
    color: #828282;
}
.footer-bottom > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* || FOOTER end|| */
/* [_single-text-block start] */
.single-text-block {
    text-align: center;
    max-width: 1309px;
    margin: 0 auto;
    padding: 50px 5%;
}
.single-text-block__ttl {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.single-text-block__ttl--hidden {
    display: none;
}
.single-text-block__subttl {
    font-weight: 500;
    font-size: clamp(25px, 3vw, 36px);
    text-align: center;
    letter-spacing: -0.04em;
    margin-bottom: 25px;
}
.single-text-block__txt {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 25px;
}

/* [_single-text-block end] */
/* [index_our_products start] */
.iop {
    padding: 60px 0;
}
.iop__ttl {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    color: var(--accent-color);
}
.iop__subttl {
    font-weight: 500;
    font-size: clamp(25px, 3vw, 36px);
    text-align: center;
    letter-spacing: -0.04em;
    margin-bottom: 25px;
}
.iop__items {
    --iop-space: 120px;
    max-width: calc(1108px + var(--iop-space));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--iop-space);
}
@media (max-width: 1330px) {
    .iop__items {
        --iop-space: 30px;
    }
}
@media (max-width: 650px) {
    .iop__items {
        flex-direction: column;
    }
}
.iop__item {
    width: 100%;
    height: 50vw;
    min-height: 320px;
    max-height: 486px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
    overflow: hidden;
    position: relative;
}
.iop__item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border: 1px solid #fff;
    transition: 0.3s ease;
}
.iop__item:first-child:hover::after {
    border: 1px solid transparent;
    width: 100%;
    height: 100%;
}
.iop__item:last-child:hover::after {
    border: 1px solid transparent;
    width: 100%;
    height: 100%;
}
.iop__item:hover .iop__item-img img {
    transform: scale(1.1);
}
.iop__item-img {
    transition: 0.3s ease;
    width: 100%;
    height: 70%;
    overflow: hidden;
}
.iop__item-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.3s ease;
}
.iop__item-txt {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 30%;
    background-color: var(--accent-color);
    text-align: center;
    padding: 20px 25px 20px 25px;
    transition: 0.3s ease;
}
.iop__item.iop__item--other .iop__item-txt {
    background-color: #ff842c;
}
.iop__item-ttl {
    font-weight: 500;
    font-size: clamp(18px, 3vw, 24px);
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
}
.iop__item-subttl {
    font-weight: bold;
    font-size: clamp(20px, 3vw, 36px);
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.iop__item-subttl img {
    display: inline-block;
    margin-left: 10px;
    max-width: 100%;
    max-height: clamp(18px, 3vw, 34px);
}

/* [index_our_products end] */
/* [index-gallery start] */
.index-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 100px;
    padding: 40px 5% 40px 0;
}
.index-gallery__swiper-wrapper {
    width: 100%;
    display: inherit;
    position: relative;
}
.index-gallery__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.index-gallery__content-ttl {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.index-gallery__content-subttl {
    font-weight: 500;
    font-size: clamp(25px, 3vw, 36px);
    letter-spacing: -0.04em;
    margin-bottom: 25px;
}
.index-gallery__content-txt {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 25px;
}
.index-gallery__content-link {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 15px;
    border: 2px solid #000;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.index-gallery__content-link:hover {
    background: var(--accent-dark-color);
    color: var(--color-white);
}
@media (max-width: 900px) {
    .index-gallery {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0;
    }
    .index-gallery .index-gallery__content {
        padding: 0 5% 40px 5%;
    }
}

.index-gallery__swiper.swiper {
    width: 100%;
    height: 100%;
}
.index-gallery__swiper.swiper .swiper-slide {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.index-gallery__swiper.swiper .swiper-slide .index-gallery__item {
    display: block;
    height: 360px;
    width: 360px;
    cursor: pointer;
}
.index-gallery__swiper.swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* [index-gallery end] */
/* [_register-login-popups start] */
#register-dialog,
#login-dialog {
    position: relative;
    background-color: var(--accent-color);
    color: #fff;
    padding: clamp(40px, 5%, 60px) 5%;
    width: 80%;
}

#login-dialog {
    max-width: 660px;
}

#login-dialog .requestInfo--content {
    overflow: hidden;
    padding: 0 30px;
    padding: 30px;
}

.requestInfo--content {
    width: 100%;
    height: 100%;
    position: relative;
}

#login-dialog .carousel__button,
#register-dialog .carousel__button {
    border: 2px solid #fff;
    top: 15px;
    right: 15px;
}

.login-form__block {
    margin-bottom: 15px;
}

#register-dialog h1 {
    font-weight: 500;
    font-size: 36px;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
}

#login-dialog h1 {
    font-weight: 500;
    font-size: 36px;
    letter-spacing: -0.04em;
}

#register-dialog .requestInfo--content > p {
    font-size: 16px;
    margin-bottom: 15px;
}

#register-dialog form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

#register-dialog input,
#login-dialog input {
    height: auto;
    width: 100%;
    border: none;
    padding: 15px;
}

#register-dialog input:not(:first-of-type) {
    margin-left: 15px;
}

#register-dialog form .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 15px;
    margin-top: 25px;
}

#login-dialog form .btn {
    /* padding: 23px 30px; */
    /* height: max-content; */
    margin-top: 35px;
}

.login-form-row {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

#login-dialog input,
#login-dialog .btn {
    display: flex;
    align-items: center;
    height: 50px;
    margin-bottom: 10px;
}

.login-form-row > *:not(.btn) {
    flex: 1;
}

.login-form-row > div input {
    height: 100%;
}

#register-dialog a,
#login-dialog a {
    color: #fff;
    text-decoration: underline;
}

/* REGISTER DIALOG */
#register-dialog form > div {
    display: flex;
}

@media only screen and (max-width: 1100px) {
    #login-dialog {
        width: 100%;
    }
}
@media only screen and (max-width: 780px) {
    #register-dialog,
    #login-dialog {
        width: 100%;
    }

    .login-form-row {
        flex-direction: column;
    }
}
@media only screen and (max-width: 550px) {
    .contact-form form,
    #register-dialog form,
    #register-dialog .grid-2col {
        display: flex;
        flex-direction: column;
    }

    #register-dialog form {
        gap: 0;
    }

    #register-dialog form > div {
        flex-direction: column;
    }

    #register-dialog input:not(:first-of-type) {
        margin-left: 0;
    }

    #register-dialog input {
        margin-bottom: 15px;
    }
}
/* [_register-login-popups end] */
/* [CHECKOUT-SELECTION-POPUP START] */
#checkout-selection .carousel__button {
    border: 2px solid var(--accent-dark-color);
    top: 15px;
    right: 15px;
    color: var(--accent-dark-color);
}

.checkout-selection {
    display: flex;
    padding: 32px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 20px;
    max-width: 1100px;
}
.checkout-selection__inner {
    flex: 1;
    background-color: var(--accent-color);
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.checkout-selection__inner form {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 50px;
}
.checkout-selection__inner form a {
    color: #fff;
    text-decoration: underline;
}
.checkout-selection__inner form input {
    width: 100%;
}
.checkout-selection__ttl {
    font-weight: 500;
    font-size: clamp(25px, 3vw, 36px);
    text-align: center;
    letter-spacing: -0.04em;
    color: #ffffff;
}
.checkout-selection__guest {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

/* [CHECKOUT-SELECTION-POPUP END] */
/* [floating-inquire start] */
.floating-inquire {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 1;
    background-color: var(--accent-dark-color);
    border-radius: 5px 0 0 5px;
    width: 100%;
    max-width: 360px;
}
.floating-inquire__ttl {
    padding: 20px 40px;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: -0.04em;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.floating-inquire__ttl > img {
    display: block;
    margin-left: 15px;
    max-height: 20px;
}
.floating-inquire__ttl:hover {
    background-color: var(--accent-color);
}
@media (max-width: 1260px) {
    .floating-inquire {
        display: none;
    }
}

.inq-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    background-color: var(--accent-color);
    max-height: 0;
    padding: 0 40px;
    overflow: hidden;
    transition: 0.3s ease;
    border-radius: 5px 0 0 5px;
}
.inq-form__ttl {
    font-weight: bold;
    font-size: 22px;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 30px;
}
.inq-form__input {
    padding: 12px 10px;
    border: none;
    margin-bottom: 15px;
}
.inq-form__checkbox {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.02em;
    color: #222222;
    margin-bottom: 15px;
}
.inq-form .btn.btn--transparent {
    color: #fff;
    border-color: #ffffff;
}
.inq-form .btn.btn--transparent:hover {
    background-color: var(--accent-dark-color);
    color: #fff;
}

.inq-form.inq-form--active {
    max-height: 100vh;
    padding: 20px 40px 40px 40px;
}

/* [floating-inquire end] */
/* [_page-head start] */
.page-head {
    min-height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #a1a1a1;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-head__txt {
    color: #fff;
    position: relative;
    font-weight: bold;
    font-size: clamp(30px, 6vw, 48px);
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.02em;
    max-width: 1200px;
    padding: 20px 5%;
}
.page-head__txt:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 265px;
    height: 1px;
    background-color: #fff;
}
.page-head__txt:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 265px;
    height: 1px;
    background-color: #fff;
}

/* [_page-head end] */
/* [PAGE-SUBHEAD START] */
.page-subhead {
    padding: 45px 0;
}
.page-subhead__title {
    font-weight: 300;
    font-size: clamp(28px, 6vw, 42px);
    text-align: center;
    letter-spacing: -0.02em;
    color: #222222;
    margin-bottom: 35px;
}
.page-subhead__text {
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #000000;
    max-width: 890px;
    margin: 0 auto;
}

/* [PAGE-SUBHEAD END] */
/* [have-a-question start] */
.have-question {
    height: 480px;
    background-image: url(/img/backgrounds/cab_haq_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.have-question__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.have-question__ttl {
    font-weight: 600;
    font-size: clamp(40px, 6vw, 60px);
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.04em;
    color: #222222;
    margin-bottom: 30px;
}
.have-question .have-question__btn {
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.have-question .have-question__btn img {
    margin-left: 15px;
}

/* [have-a-question end] */
/* [_paragraph start] */
.par {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__img par__txt';
    max-width: var(--page-max-width);
    margin: auto;
}
.par__txt {
    grid-area: par__txt;
    display: flex;
    flex-direction: column;
    padding: 5%;
}
.par__txt p {
    line-height: 150%;
}
.par__txt ul {
    list-style: none;
}
.par__txt ul li {
    position: relative;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    padding-left: 20px;
    margin-bottom: 15px;
}
.par__txt ul li::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: var(--accent-color);
}
.par__img {
    grid-area: par__img;
    max-width: calc(var(--page-max-width) / 2);
    position: relative;
}
.par__img img {
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
}
.par__ttl {
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--accent-color);
}
.par__subttl {
    font-weight: 500;
    font-size: clamp(25px, 3vw, 36px);
    letter-spacing: -0.04em;
    color: #000000;
    margin-bottom: 25px;
}
@media (max-width: 768px) {
    .par {
        grid-template-columns: 1fr !important;
        grid-template-areas: 'par__img' 'par__txt' !important;
    }
}

.par.par--left {
    grid-template-areas: 'par__img par__txt';
}

.par.par--right {
    grid-template-areas: 'par__txt par__img';
}

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

/* [_paragraph end] */
/* [configurator-shortcut start] */
.conf-shortcut-block {
    background-image: url(/img//backgrounds/cab_conf_shortcut_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 50px 5%;
}
.conf-shortcut-block__content {
    max-width: 1138px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 38px 7vw;
}
.conf-shortcut-block__ttl {
    font-weight: 600;
    font-size: clamp(35px, 3vw, 60px);
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.04em;
    color: #222222;
    margin-bottom: 37px;
}
.conf-shortcut-block__actions {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.conf-shortcut-block__link {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    padding: 26.6px;
    color: #fff;
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background-color: var(--accent-color);
    transition: 0.3s ease;
}
.conf-shortcut-block__link:hover {
    background-color: var(--accent-dark-color);
}
.conf-shortcut-block__link img {
    margin-left: 15px;
}
.conf-shortcut-block__link.conf-shortcut-block__link--other {
    background-color: #ff842c;
}
.conf-shortcut-block__link.conf-shortcut-block__link--other:hover {
    background-color: var(--accent-dark-color);
}

/* [configurator-shortcut end] */
/* [_projects-gallery start] */
.grid-sizer,
.grid-item {
    width: calc(33.33% - 40px);
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .grid-sizer,
    .grid-item {
        width: 48%;
        margin-bottom: 2%;
    }
}

.gutter-sizer {
    width: 40px;
}
@media (max-width: 767px) {
    .gutter-sizer {
        width: 2%;
    }
}

.grid-item:hover {
    cursor: pointer;
}

.grid-item img {
    display: block;
    max-width: 100%;
    border: 10px solid white;
}
@media screen and (max-width: 414px) {
    .grid-item img {
        border: 5px solid white;
    }
}

.projects-filter {
    padding: 90px 5% 40px 5%;
    background-color: #fff;
}
.projects-filter__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 17px;
}
.projects-filter__link {
    display: block;
    padding: 15px;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000;
    background-color: #fff;
    transition: 0.3s ease;
    border: 1px solid #000;
    cursor: pointer;
}
.projects-filter__link.projects-filter__link--active {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
}

.projects-filter__link:hover {
    color: #ffffff;
    background-color: var(--accent-dark-color);
}

.projects-grid {
    padding: 0;
    margin: 0;
}

.masonry {
    display: grid;
}
.masonry__ttl {
    text-transform: capitalize;
    font-weight: 500;
    font-size: clamp(25px, 3vw, 36px);
    text-align: center;
    letter-spacing: -0.04em;
    color: #000000;
    display: block;
    margin-top: 35px;
    margin-bottom: 35px;
}

/* [_projects-gallery end] */
/* [contacts start] */
.contacts-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: 'contacts-main-grid__info-cell contacts-main-grid__form-cell';
}
.contacts-main-grid__info-cell {
    grid-area: contacts-main-grid__info-cell;
    padding: 100px 113px 100px 113px;
}
.contacts-main-grid__form-cell {
    grid-area: contacts-main-grid__form-cell;
    background-color: var(--accent-background-color);
    padding: 100px 113px 100px 113px;
}
@media (max-width: 1360px) {
    .contacts-main-grid__info-cell {
        padding: 50px 5%;
    }
    .contacts-main-grid__form-cell {
        padding: 50px 5%;
    }
}
@media (max-width: 1000px) {
    .contacts-main-grid {
        grid-template-columns: 100%;
        grid-template-areas: 'contacts-main-grid__info-cell' 'contacts-main-grid__form-cell';
    }
}

.contact-map {
    display: block;
    width: 100%;
    height: 700px;
    background-image: url(/img/misc/cab_map.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: -webkit-max-content;
    grid-template-rows: max-content;
    gap: 70px 20px;
    grid-auto-flow: row;
    grid-template-areas: 'contact-info-grid__phone-cell contact-info-grid__address-cell' 'contact-info-grid__schedule-cell contact-info-grid__schedule-cell' 'contact-info-grid__social-cell contact-info-grid__social-cell';
}
.contact-info-grid a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-left: 25px;
    display: block;
    font-size: 16px;
    line-height: 150%;
    color: #333333;
    transition: 0.3s ease;
    position: relative;
}
.contact-info-grid a:hover {
    color: var(--accent-color);
}
.contact-info-grid__phone-cell {
    grid-area: contact-info-grid__phone-cell;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.contact-info-grid__phone-cell a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url(/img/icons/cab_phone.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.contact-info-grid__address-cell {
    grid-area: contact-info-grid__address-cell;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.contact-info-grid__address-cell a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url(/img/icons/cab_pin.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.contact-info-grid__schedule-cell {
    grid-area: contact-info-grid__schedule-cell;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.contact-info-grid__schedule-cell .footer-grid__list,
.contact-info-grid__schedule-cell .footer-grid__list--2col {
    padding-left: 30px;
    position: relative;
}
.contact-info-grid__schedule-cell .footer-grid__list::before,
.contact-info-grid__schedule-cell .footer-grid__list--2col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/cab_clock.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 600px) {
    .contact-info-grid__schedule-cell .footer-grid__list.footer-grid__list--2col,
    .contact-info-grid__schedule-cell .footer-grid__list--2col {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }
}
@media (max-width: 450px) {
    .contact-info-grid__schedule-cell .footer-grid__list.footer-grid__list--2col,
    .contact-info-grid__schedule-cell .footer-grid__list--2col {
        grid-template-columns: 100%;
        gap: 5px;
    }
    .contact-info-grid__schedule-cell .footer-grid__list.footer-grid__list--2col > li:nth-child(odd),
    .contact-info-grid__schedule-cell .footer-grid__list--2col > li:nth-child(odd) {
        font-weight: 600;
    }
}
.contact-info-grid__social-cell {
    grid-area: contact-info-grid__social-cell;
}
.contact-info-grid__social-cell a {
    padding: 0;
    width: 36px;
    height: 36px;
}
.contact-info-grid__social-cell a img {
    width: 100%;
    height: 100%;
}
@media (max-width: 610px) {
    .contact-info-grid {
        grid-template-columns: 100%;
        grid-template-areas: 'contact-info-grid__phone-cell' 'contact-info-grid__address-cell' 'contact-info-grid__schedule-cell' 'contact-info-grid__social-cell';
        gap: 40px;
    }
}

.contacts__ttl {
    font-weight: 500;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.2;
    text-transform: uppercase;
    color: #222222;
    margin-bottom: 25px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 35px;
}
.contact-form-grid input,
.contact-form-grid textarea {
    padding: 15px 20px;
    border: none;
    resize: vertical;
}
.contact-form-grid__head,
.contact-form-grid textarea,
.contact-form-grid .jfilestyle {
    grid-column: span 2;
}
.contact-form-grid .jfilestyle {
    width: auto;
}
.contact-form-grid .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
@media (max-width: 550px) {
    .contact-form-grid {
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
        gap: 20px;
    }
    .contact-form-grid__head,
    .contact-form-grid textarea,
    .contact-form-grid .jfilestyle {
        grid-column: span 1;
    }
}

/* [contacts end] */
/* [account-switch-section start] */
.page-switch {
    padding: 90px 5% 40px 5%;
    background-color: #fff;
}
.page-switch__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 17px;
}
.page-switch__link {
    display: block;
    padding: 15px;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000;
    background-color: #fff;
    transition: 0.3s ease;
    border: 1px solid #000;
    cursor: pointer;
}
.page-switch__link.page-switch__link--active {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
}

.page-switch__link:hover {
    color: #ffffff;
    background-color: var(--accent-dark-color);
}

/* [account-switch-section end] */
/* [RESPONSIVE TABLE START] */
:root {
    --bg-table-stripe: var(--accent-background-color);
    --b-table: #e3e3e2;
    --caption: #242423;
}

th {
    text-align: left;
}

.dcf-txt-center {
    text-align: center !important;
}

.dcf-txt-left {
    text-align: left !important;
}

.dcf-txt-right {
    text-align: right !important;
}

.dcf-table-wrapper {
    padding-bottom: 22px;
}

.dcf-table {
    width: 100%;
    background-color: #fff;
    border-collapse: collapse;
}
.dcf-table caption {
    color: var(--caption);
    font-size: 1.13em;
    font-weight: 700;
    padding-bottom: 0.56rem;
}
.dcf-table thead {
    font-size: clamp(14px, 1.2vw, 16px);
    text-transform: capitalize;
}
.dcf-table.dcf-table--bordered,
.dcf-table.dcf-table--bordered td,
.dcf-table.dcf-table--bordered th {
    border: 1px solid var(--b-table);
}
.dcf-table.dcf-table--bordered td,
.dcf-table.dcf-table--bordered th,
.dcf-table.dcf-table--striped td,
.dcf-table.dcf-table--striped th {
    padding: 10px 20px;
}
.dcf-table tbody td,
.dcf-table tbody th {
    padding-top: 0.75em;
    vertical-align: top;
    padding: 10px 20px;
    color: #000;
    font-size: clamp(14px, 1.2vw, 14px);
}
@media (max-width: 1450px) {
    .dcf-table tbody td,
    .dcf-table tbody th {
        font-size: 14px !important;
    }
}
.dcf-table tbody td.status--pending > span,
.dcf-table tbody th.status--pending > span {
    color: var(--accent-color);
}
.dcf-table tbody td.status--done > span,
.dcf-table tbody th.status--done > span {
    color: #2a9c20;
}
.dcf-table tfoot {
    padding-top: 0.75em;
    vertical-align: top;
    padding: 10px 20px;
    color: #000;
}
.dcf-table thead td,
.dcf-table thead th {
    padding-bottom: 0.75em;
    vertical-align: bottom;
    background-color: #828282;
    color: #fff;
}
.dcf-table__details {
    text-transform: uppercase;
}
.dcf-table__details > a {
    display: flex;
    align-items: center;
    color: #000;
    transition: 0.3s ease;
}
.dcf-table__details > a > svg {
    transition: 0.3s ease;
}
.dcf-table__details > a:hover {
    color: var(--accent-color);
}
.dcf-table__details > a:hover svg {
    color: var(--accent-color);
}
.dcf-table__details svg,
.dcf-table__details img {
    margin-left: 10px;
}
.dcf-table.dcf-table .dcf-table__details-tr,
.dcf-table.dcf-table.dcf-table--striped .dcf-table__details-tr {
    border: none;
}
.dcf-table .dcf-table__details-tr .dcf-table__details-td {
    padding: 0 20px;
}
.dcf-table__details-wrapper {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}
.dcf-table__details-wrapper.dcf-table__details-wrapper--open {
    max-height: 500px;
    overflow: auto;
    padding: 20px 0;
    /* Works on Firefox */
    /* Works on Chrome, Edge, and Safari */
}
.dcf-table__details-wrapper.dcf-table__details-wrapper--open {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-dark-color) transparent;
}
.dcf-table__details-wrapper.dcf-table__details-wrapper--open::-webkit-scrollbar {
    width: 10px;
    margin-right: 5px;
}
.dcf-table__details-wrapper.dcf-table__details-wrapper--open::-webkit-scrollbar-track {
    background: #e2e2e2;
}
.dcf-table__details-wrapper.dcf-table__details-wrapper--open::-webkit-scrollbar-thumb {
    background-color: var(--accent-dark-color);
    border-radius: 20px;
    border: 3px solid #e2e2e2;
}
.dcf-table--even {
    background-color: var(--bg-table-stripe);
}
.dcf-table--odd {
    background-color: #fff;
}
.dcf-table__details > .dcf-table__details-trigger {
    font-weight: 500;
    color: var(--accent-color);
}
@media (max-width: 1450px) {
    .dcf-table.dcf-table--bordered td,
    .dcf-table.dcf-table--bordered th,
    .dcf-table.dcf-table--striped td,
    .dcf-table.dcf-table--striped th {
        padding: 5px 10px;
    }
}

.my-order {
    width: 90%;
    margin: auto;
}
.my-order__row:not(:last-child) {
    border-bottom: 1px solid #e3e3e2;
}
@media (max-width: 1700px) {
    .my-order {
        width: 95%;
    }
}
.my-order__details-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.my-order__details-inner-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.my-order__dimmensions-cell {
    display: flex;
    flex: 1;
    -moz-column-gap: 5px;
    column-gap: 5px;
    align-items: center;
    justify-content: space-between;
}
.my-order__dimmensions-cell.my-order__dimmensions-cell--qty {
    max-width: 100px;
}
.my-order__dimmensions-cell input::-webkit-outer-spin-button,
.my-order__dimmensions-cell input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.my-order__dimmensions-cell input[type='number'] {
    -moz-appearance: textfield;
}
.my-order__dimmensions-cell input,
.my-order__dimmensions-cell select {
    padding: 10px;
    border: 1px solid #bdbdbd;
    font-size: 14px;
    line-height: 1;
    outline: none;
}
.my-order__dimmensions-cell-txt {
    flex: 1;
    padding: 0 10px;
}
.my-order__price-group-cell {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-evenly;
}
.my-order__price-group-cell.my-order__dimmensions-cell--price-group {
    max-width: 400px;
}
.my-order__price-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.my-order__price-cell-price {
    font-weight: 600;
    color: #000000;
}
.my-order__price-cell-descr {
    color: #bdbdbd;
}
@media (max-width: 1280px) {
    .my-order__details-inner-row {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .my-order__dimmensions-cell--price-group {
        padding: 10px 0;
        flex: 1 0 100%;
        justify-content: flex-end;
        gap: 30px;
        max-width: unset !important;
    }
}
@media (max-width: 730px) {
    .my-order__details-inner-row {
        flex-direction: column;
        padding-right: 5px;
    }
    .my-order__dimmensions-cell {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .my-order__dimmensions-cell > b {
        display: flex;
        flex: 1 1 100%;
    }
    .my-order__dimmensions-cell.my-order__dimmensions-cell--qty {
        max-width: 100%;
    }
    .my-order__dimmensions-cell--price-group {
        padding: 10px 0;
        flex: 1 0 100%;
        justify-content: flex-end;
        gap: 30px;
        max-width: unset !important;
    }
}
.my-order__additions {
    padding: 20px 0;
}
.my-order__additions-text-grid {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 10px;
}
@media (max-width: 730px) {
    .my-order__additions-text-grid {
        grid-template-columns: 100%;
    }
}
.my-order__additions-buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 10px;
}
.my-order__price-summary {
    display: flex;
    flex-direction: column;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 5%;
    margin-left: auto;
    padding-bottom: 50px;
}
.my-order__price-summary-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    margin-bottom: 15px;
}
.my-order__action-btn {
    background: none;
    border: none;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.3s ease;
    color: #bdbdbd;
}
.my-order__action-btn.my-order__action-btn--red {
    color: #cc4b34;
}
.my-order__action-btn:hover {
    color: var(--accent-color);
}

.dcf-wrapper-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-bottom: 1em;
    position: relative;
    right: 50%;
    width: 100vw;
}

@media only screen and (max-width: 850px) {
    .dcf-table-responsive td.dcf-table__details-td {
        grid-template-columns: 100%;
    }

    .dcf-table-responsive tbody td.dcf-table__details-td:before {
        content: none;
    }

    .dcf-table .dcf-table__details-tr .dcf-table__details-td {
        padding: 0 5px 0 10px;
    }

    .dcf-table-responsive thead {
        clip: rect(0 0 0 0);
        -webkit-clip-path: inset(50%);
        clip-path: inset(50%);
        height: 1px;
        overflow: hidden;
        position: absolute;
        width: 1px;
        white-space: nowrap;
    }

    .dcf-table-responsive tr {
        display: block;
    }

    .dcf-table-responsive td {
        -moz-column-gap: 3.16vw;
        column-gap: 3.16vw;
        display: grid;
        grid-template-columns: 1fr 2fr;
        text-align: left !important;
    }

    .dcf-table-responsive.dcf-table--bordered,
    .dcf-table-responsive.dcf-table--bordered thead th {
        border-width: 0;
    }

    .dcf-table-responsive.dcf-table--bordered tbody td {
        border-top-width: 0;
    }

    .dcf-table-responsive:not(.dcf-table--bordered) tbody tr {
        padding-bottom: 0.75em;
    }

    .dcf-table-responsive:not(.dcf-table--bordered) tbody td {
        padding-bottom: 0;
    }

    .dcf-table-responsive:not(.dcf-table--bordered):not(.dcf-table--striped) tbody td {
        padding-right: 0;
    }

    .dcf-table-responsive.dcf-table--bordered tbody tr:last-child td:last-child {
        border-bottom-width: 0;
    }

    .dcf-table-responsive tbody td:before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        padding-right: 1.78em;
    }
}
.dcf-overflow-x-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

/* [RESPONSIVE TABLE END] */
/* [ configurator_alluminum start ] */
.configurator__grid {
    display: grid;
    grid-template-columns: 500px 1fr;
}
.configurator__grid-menu {
    background-color: var(--accent-color);
    padding: 35px 0;
}
.configurator__grid-body {
    background-color: var(--accent-background-color);
    padding: 45px 35px;
}

@media (max-width: 1500px) {
    .configurator__grid {
        grid-template-columns: 220px 1fr;
    }
}

.configurator__form {
    max-width: 1500px;
}
.configurator__menu {
    list-style: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
}
.configurator__menu-item {
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 30px;
}
.configurator__menu-item--active {
    background-color: var(--accent-background-color);
}
.configurator__menu-item--active > button {
    color: #222222;
}
.configurator__menu-item--confirmed > button {
    padding-left: 25px;
    background-image: url(/img/icons/cab_conf-menu-checkmark.svg);
    background-position: center left;
    background-repeat: no-repeat;
}
.configurator__menu-item--disabled > button {
    color: #747474;
    cursor: auto;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.configurator__menu-button {
    border: none;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    transition: 0.3s ease;
}

@media (max-width: 1500px) {
    .configurator__menu-button {
        font-size: 18px;
        line-height: 22px;
    }
}

.configurator__step {
    display: none;
    border: none;
}
.configurator__step-ttl {
    font-weight: 500;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.3;
    text-transform: uppercase;
    text-align: left;
    color: #222222;
    margin-bottom: 30px;
}
.configurator__step-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 300px));
    grid-gap: 30px;
    margin-bottom: 30px;
}
.configurator__step-tile {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.configurator__step-tile.configurator__step-tile--selected {
    box-shadow: 0 0 0 3px var(--accent-color);
}
.configurator__step-tile-titles {
    margin-bottom: 15px;
}
.configurator__step-tile-ttl {
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
}
.configurator__step-tile-subttl {
    text-transform: uppercase;
    line-height: 100%;
}
.configurator__step-tile-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}
.configurator__step-tile-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.configurator__step.configurator__step--visible {
    display: block;
}

.door-parameters {
    display: none;
}
.door-parameters__selectors {
    display: flex;
    padding: 20px 0;
}

.dimention {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
}
.dimention input,
.dimention select,
.dimention textarea {
    padding: 10px;
    border: 1px solid #bdbdbd;
    font-size: 14px;
    line-height: 1;
    outline: none;
    height: 100%;
}
.dimention input::-webkit-outer-spin-button,
.dimention input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.dimention input[type='number'] {
    -moz-appearance: textfield;
}
.dimention__general {
    padding-bottom: 35px;
    display: flex;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.dimention__dimensions-cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.dimention__dimensions-cell.dimention__dimensions-cell--qty {
    max-width: 100px;
}
.dimention__dimensions-cell.dimention__dimensions-cell--delete {
    max-width: 50px;
}
.dimention__action-options {
    display: flex;
    align-items: center;
    -moz-column-gap: 25px;
    column-gap: 25px;
    margin-bottom: 20px;
}
.dimention__action-options-cell {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.dimention__action-options-cell > .btn {
    background-color: #e0e0e0;
    color: #333333;
}
.dimention__action-options-cell > .btn:hover {
    color: #fff;
}
.dimention__action-options-cell > .btn.btn--active {
    background-color: var(--accent-dark-color);
    color: #fff;
}
.dimention__action-options-cell > .btn.btn--confirmed {
    background-color: #8acc8c;
}

.hinge-block-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    margin-bottom: 25px;
}
.hinge-block__options-row {
    display: flex;
    -moz-column-gap: 10px;
    column-gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.hinge-block__options-row > select {
    max-width: 100px;
}
.hinge-block__options-measure {
    display: flex;
    flex-direction: column;
}
.hinge-block__options-measure-ttl {
    margin-bottom: 25px;
}
.hinge-block__options-measure-cell {
    display: flex;
    -moz-column-gap: 15px;
    column-gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}
.hinge-block__options-measure-cell > input {
    max-width: 180px;
}
.hinge-block__image {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}
.hinge-block__image-ttl {
    margin-bottom: 20px;
}

.handles-block {
    padding: 40px 0;
}
.handles-block__handle-types {
    margin-bottom: 40px;
}
.handles-block__handle-orientation {
    margin-bottom: 40px;
}
.handles-block__handle-orientation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 300px));
    grid-gap: 30px;
}
.handles-block__tile {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.handles-block__tile-titles {
    margin-bottom: 15px;
}
.handles-block__tile-ttl {
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
}
.handles-block__tile-subttl {
    text-transform: uppercase;
    line-height: 100%;
}
.handles-block__tile-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}
.handles-block__tile-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.handles-block__tile.handles-block__tile--selected {
    box-shadow: 0 0 0 3px var(--accent-color);
}
.handles-block__handle-center-drilling {
    margin-bottom: 40px;
}
.handles-block__handle-center-drilling select {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
.handles-block-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    margin-bottom: 25px;
}
.handles-block__options-row {
    display: flex;
    -moz-column-gap: 10px;
    column-gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.handles-block__options-row > select {
    max-width: 100px;
}
.handles-block__options-measure {
    display: flex;
    flex-direction: column;
}
.handles-block__options-measure-ttl {
    margin-bottom: 25px;
}
.handles-block__options-measure-cell {
    display: flex;
    -moz-column-gap: 15px;
    column-gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}
.handles-block__options-measure-cell > input {
    max-width: 180px;
}
.handles-block__image {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}
.handles-block__image-ttl {
    margin-bottom: 20px;
}

/* [ configurator_alluminum end ] */
.edge-banding-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: -webkit-max-content;
    grid-template-rows: max-content;
    gap: 30px 10px;
    grid-auto-flow: row;
    grid-template-areas: 'edge-banding-grid__ttl edge-banding-grid__text' 'edge-banding-grid__actions edge-banding-grid__text' 'edge-banding-grid__samples edge-banding-grid__samples';
}

@media (max-width: 1200px) {
    .edge-banding-grid {
        grid-template-columns: 100%;
        grid-template-rows: auto;
        grid-template-areas:
            'edge-banding-grid__ttl'
            'edge-banding-grid__text'
            'edge-banding-grid__actions'
            'edge-banding-grid__samples';
    }
}

.edge-banding-grid__ttl {
    grid-area: edge-banding-grid__ttl;
}
.edge-banding-grid__actions {
    grid-area: edge-banding-grid__actions;
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 15px;
}
.edge-banding-grid__text {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    grid-area: edge-banding-grid__text;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.edge-banding-grid__samples {
    grid-area: edge-banding-grid__samples;
}

.color-filter {
    margin-bottom: 50px;
}
.color-filter__head {
    display: flex;
    -moz-column-gap: 25px;
    column-gap: 25px;
    justify-content: space-between;
    margin-bottom: 20px;
}
.color-filter__head > .btn {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 9px 10px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 12px;
}
.color-filter__expandable {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 25px;
    background-color: #e0e0e0;
    padding: 40px;
}
.color-filter__expandable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
    grid-auto-flow: row;
    grid-auto-columns: minmax(200px, 1fr);
    grid-auto-rows: minmax(50px, 1fr);
    align-items: center;
    align-content: center;
    height: 100%;
    width: 100%;
}
.color-filter__expandable-actions {
    flex: 1 0 100%;
}

/* [ACCOUNT START] */
.acc-form-wrapper.acc-form-wrapper--top-border {
    border-top: 2px solid #e8ab08;
}

.account-order-head {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding: 30px var(--container-padding);
    position: relative;
}
.account-order-head__back-btn {
    font-size: 14px;
    line-height: 150%;
    text-transform: uppercase;
    color: #4f4f4f;
    padding: 7px 10px;
    border: 1px solid #bdbdbd;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s ease;
}
.account-order-head__back-btn:hover {
    background-color: var(--accent-dark-color);
    border-color: var(--accent-dark-color);
    color: #fff;
}
.account-order-head__back-btn > h2 {
    font-weight: 500;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 28px;
    text-align: center;
    color: #1e1e1e;
}
@media only screen and (max-width: 1700px) {
    .account-order-head {
        width: 95%;
    }
}
@media (max-width: 850px) {
    .account-order-head {
        flex-direction: column;
    }
    .account-order-head__back-btn {
        position: initial;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }
    .account-order-head > h2 {
        text-align: center;
    }
}

.acc-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    gap: 34px 85px;
    padding-top: 33px;
    padding-bottom: 33px;
    max-width: 1000px;
    margin: 0 auto;
}
.acc-form__ttl {
    font-weight: 500;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.2;
    text-align: center;
    color: #1e1e1e;
    grid-column: span 2;
}
.acc-form__subttl {
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
    text-transform: uppercase;
    color: #1e1e1e;
}
.acc-form__billing-info {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    gap: 20px;
}
.acc-form__input-cell {
    display: flex;
    gap: 0 25px;
}
.acc-form__input-cell-content {
    flex: 1;
    display: flex;
    align-items: center;
}
.acc-form__input-cell-content label {
    width: 100px;
    margin-right: 10px;
    flex: 0 0 auto;
}
.acc-form__input-cell-content input {
    width: 100%;
    min-width: 90px;
    transition: 0.3s ease;
}
.acc-form__input-cell-content input:disabled,
.acc-form__input-cell-content select:disabled {
    background-color: #f0f0f0;
    color: #000;
}
.acc-form__actions {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 15px;
}
.acc-form .btn.acc-form__btn--hidden {
    display: none;
}
.acc-form .btn,
.acc-form .btn.btn--dark {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 15px;
}
@media (max-width: 1260px) {
    .acc-form {
        gap: 15px 30px;
    }
}
@media (max-width: 1000px) {
    .acc-form {
        grid-template-columns: 100%;
    }
    .acc-form__ttl,
    .acc-form__actions {
        grid-column: 1;
    }
    .acc-form__billing-info {
        margin-bottom: 30px;
    }
}
@media (max-width: 480px) {
    .acc-form__billing-info {
        gap: 15px;
    }
    .acc-form__input-cell {
        flex-direction: column;
        gap: 15px;
    }
}

/* [ACCOUNT END] */
/* [MAIN CSS START] */
.text-center {
    text-align: center;
}

.container {
    margin: 0 auto;
    max-width: var(--page-max-width);
}
.container.container--block {
    display: block;
    margin: 0;
}
.container--mar-b-80 {
    margin-bottom: var(--container-margin-bottom);
}

.pa-inline {
    padding-inline: var(--container-padding);
}

.pa-before-footer {
    padding-bottom: 200px;
}

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

input.error {
    border-color: var(--input-error-border-color);
    background-color: var(--input-error-background-color);
}

input,
select,
textarea {
    border: none;
    padding: 15px;
    width: 100%;
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #eee;
    border: 1px solid #bdbdbd;
    opacity: 0.8;
}

.btn {
    display: inline-block;
    border: 1px solid transparent;
    color: #fff;
    background: var(--accent-color);
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn:hover {
    background: var(--accent-dark-color);
}

.btn.btn--flex {
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

.btn.btn--transparent {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--transparent:hover {
    background: var(--accent-color);
    color: var(--color-white);
}

.btn.btn--color-black,
.btn.btn--transparent.btn--color-black {
    color: #000;
    border-color: #000;
}
.btn.btn--color-black:hover,
.btn.btn--transparent.btn--color-black:hover {
    background: var(--accent-dark-color);
    color: #fff;
}

.btn.btn--dark {
    border: 1px solid var(--accent-dark-color);
    color: #fff;
    background: var(--accent-dark-color);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--dark:hover {
    background: var(--accent-color-2);
    color: var(--color-white);
    border: 1px solid var(--accent-color);
}

.btn.btn--disabled {
    background: #ccc;
    color: #fff;
    border: 1px solid #ccc;
    pointer-events: none;
    cursor: not-allowed;
}

.btn.btn--loading {
    position: relative;
}
.btn.btn--loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1em;
    height: 1em;
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
.btn.btn--loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-dark-color);
}

@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@-webkit-keyframes round {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes round {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.line-clamp {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    position: relative;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
    height: 1.2em;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
    height: 2.4em;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
    height: 3.6em;
}

.line-clamp-4 {
    -webkit-line-clamp: 4;
    height: 4.8em;
}

.line-clamp-5 {
    -webkit-line-clamp: 5;
    height: 6em;
}

/* End required CSS. */
.fancybox__main-panel {
    flex: 0 0 auto;
    min-height: 0;
    max-width: 1100px;
    margin: auto;
    position: relative;
    display: block;
    background-color: #f5f6f7;
}
.fancybox__main-panel .fancybox__slide {
    padding: 0;
    background-color: #f5f6f7;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 150px;
}
.fancybox__main-panel .fancybox__slide::before,
.fancybox__main-panel .fancybox__slide::after {
    content: none;
}
.fancybox__main-panel .fancybox__carousel .fancybox__slide .fancybox__content {
    background-color: #f5f6f7;
    height: 70vh;
}
.fancybox__main-panel .fancybox__carousel .fancybox__image {
    display: block;
    margin: 30px auto;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: auto;
    height: 100%;
    max-width: 100%;
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
}
.fancybox__main-panel .fancybox__caption {
    color: #000;
    padding: 20px;
    background-color: #f5f6f7;
    overflow: auto;
}
.fancybox__main-panel .carousel__button svg {
    width: 50px;
    height: 70px;
}
.fancybox__main-panel .carousel__button.is-close {
    border: 2px solid #828282;
}
.fancybox__main-panel .carousel__button.is-close svg {
    width: 20px;
    height: 20px;
    color: #828282;
}
.fancybox__main-panel .fancybox__caption-panel {
    color: #222;
    background: #f5f6f7;
    overflow: auto;
    padding: 3rem;
}
.fancybox__main-panel .fancybox__spinner {
    color: #222;
}
.fancybox__main-panel .fancybox__carousel {
    overflow: hidden;
    margin: 0;
    background: #f9fafb;
}
.fancybox__main-panel .carousel__button.is-close {
    top: 8px;
    right: 8px;
}
.fancybox__main-panel .fancybox__carousel .carousel__dots {
    top: calc(100% - 22px);
    color: #fff;
    z-index: 20;
}

/* [Pretty checkbox adjustments] */
.pretty {
    white-space: normal;
}
.pretty .state label {
    text-indent: 0;
    padding-left: 31px;
}
.pretty .state label:after,
.pretty .state label:before {
    top: 0;
    background-color: #fff;
    border: none;
}
.pretty input:checked ~ .state.p-primary label:after {
    background-color: var(--accent-dark-color) !important;
}

.divider {
    border: none;
    border-bottom: 1px solid #bdbdbd;
}

.select2.select2-container .select2-choice {
    padding: 5px 10px;
}

.select2-container--default .select2-selection--single {
    border: none;
    height: 100%;
    padding: 15px;
}

.select2-container--default .select2-selection--single.select2--small {
    padding: 11px 15px;
}

.select2-container--default .select2-selection--single.select2--bordered {
    border: 1px solid #bdbdbd;
    border-radius: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    font-size: 14px;
    line-height: 1;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: linear-gradient(#e0e0e0, #e0e0e0);
    width: 28px;
    height: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #222222 #222222 #222222 #222222;
    border: 1px solid #222222;
    border-width: 0px 2px 2px 0px;
    width: 8px;
    height: 8px;
    margin: 0;
    position: relative;
    top: unset;
    left: unset;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #222222 #222222 #222222 #222222;
    border: 1px solid #222222;
    border-width: 0px 2px 2px 0px;
    width: 8px;
    height: 8px;
    margin: 0;
    position: relative;
    top: unset;
    left: unset;
    transform: rotate(-135deg);
    transition: 0.3s ease;
}

/* [MAIN CSS END] */
/* SHOPING CART START */
.order-head {
    max-width: var(--page-max-width);
}
.order-head > h2 {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    padding: 25px 0 18px 0;
    display: block;
    margin: 0 auto;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}
.cart-actions > .btn.btn--transparent {
    padding: 15px 20px;
    color: #000;
    border-color: #000;
}
.cart-actions > .btn.btn--transparent:hover {
    color: #fff;
    border-color: #fff;
}

/* SHOPING CART END */
/* [CHECKOUT STEP 1 START] */
.checkout-1 {
    padding: 50px 0 100px 0;
}
.checkout-1__ttl {
    font-weight: 500;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.2;
    text-align: center;
    color: #1e1e1e;
    margin-bottom: 35px;
}
.checkout-1__fieldset {
    border: none;
    margin-bottom: 80px;
}
.checkout-1__fieldset-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 25px;
}
.checkout-1__fieldset-cell {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0 25px;
}
.checkout-1__fieldset-cell > label {
    flex: 1 0 130px;
    margin-right: 20px;
}
.checkout-1__fieldset-cell.checkout-1__fieldset-cell--span2 {
    grid-column: span 2;
}
.checkout-1__same-as-billing-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 25px;
}

/* [CHECKOUT STEP 1 END] */
/* [CHECKOUT STEP 2 START] */
.checkout-2 {
    padding-top: 50px;
    padding-bottom: 100px;
}
.checkout-2__summary-wrapper {
    margin-bottom: 40px;
}
.checkout-2__ttl {
    font-weight: 500;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.2;
    text-align: center;
    color: #1e1e1e;
    margin-bottom: 25px;
}
.checkout-2 .order-head {
    max-width: 1535px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-bottom: 15px;
}
.checkout-2 .order-head .order-head-ttl {
    margin: 0;
    margin-right: 15px;
    padding: 0;
}
.checkout-2 .order-head__link {
    text-transform: uppercase;
    text-decoration: underline;
    color: gray;
}
.checkout-2 .dcf-table-wrapper {
    max-width: 1535px;
    margin: 0 auto;
    padding: 0;
}
.checkout-2__promo-wrapper {
    margin-bottom: 40px;
}
.checkout-2__promo-block {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
.checkout-2__shipping-wrapper {
    margin-bottom: 40px;
}
.checkout-2__shipping-selects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 40px;
    margin-bottom: 25px;
}
.checkout-2__shipping-selects > * {
    margin-bottom: 15px;
}
.checkout-2__payment-wrapper {
    margin-bottom: 40px;
}
.checkout-2__payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 2px;
    margin-bottom: 50px;
}
.checkout-2__payment-fields {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 35px;
}
@media (max-width: 650px) {
    .checkout-2__payment-fields {
        row-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}
@media (max-width: 450px) {
    .checkout-2__payment-fields {
        grid-template-columns: 100%;
    }
}
.checkout-2__payment-field {
    display: flex;
    -moz-column-gap: 60px;
    column-gap: 60px;
}
@media (max-width: 650px) {
    .checkout-2__payment-field {
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}
.checkout-2__payment-field--span2 {
    grid-column: span 2;
}
@media (max-width: 450px) {
    .checkout-2__payment-field--span2 {
        grid-column: 1/-1;
    }
}
.checkout-2__prices-and-terms-wrapper {
    padding: 40px 0;
    border-top: 1px solid #bdbdbd;
    margin-bottom: 40px;
}
.checkout-2__prices-grid {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 15px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-bottom: 25px;
}
.checkout-2__terms {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
}
.checkout-2__terms a {
    text-decoration: underline;
    color: #000;
}

/* [CHECKOUT STEP 2 END] */
/* [TOOLTIPS START] */
.tippy-box {
    background-color: #fff;
    color: #000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.tippy-box__inner {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
}
.tippy-box__image {
    margin-bottom: 15px;
}
.tippy-box__text {
    text-align: center;
}

.tippy-arrow {
    color: #fff;
}

.tippy-box[data-placement^='left'] > .tippy-arrow:before {
    border-width: 14px 0 14px 14px;
    right: -13px;
    filter: drop-shadow(4px 0px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='right'] > .tippy-arrow:before {
    left: -13px;
    border-width: 14px 14px 14px 0;
    filter: drop-shadow(-4px 0px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='top'] > .tippy-arrow:before {
    border-width: 14px 14px 0;
    bottom: -13px;
    filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow:before {
    border-width: 0 14px 14px;
    top: -13px;
    filter: drop-shadow(0px -4px 5px rgba(0, 0, 0, 0.1));
}

/* [TOOLTIPS END] */

/* [LOADING SCREEN START] */
.loading-screen {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #282828;
    z-index: 1;
}
.loading-screen svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) ;
    transform: translate(-50%, -50%);
    animation: rotate-svg 4.8s linear infinite;
}

.stroke-still {
    stroke: #232323;
}

.stroke-animation {
    animation: stroke-spacing 1.2s ease-in, stroke-color 4.8s linear;
    animation-iteration-count: infinite;
    animation-delay: 0;
    animation-direction: normal;
    animation-fill-mode: both;
    animation-play-state: running;
    transform-origin: center center;
    stroke-linecap: round;
    paint-order: stroke;
}

.fill-animation{
      
    animation: fill-color 4.8s linear infinite;

}

@-webkit-keyframes stroke-spacing {
    0% {
        stroke-dasharray: 0 200;
    }
    45% {
        stroke-dashoffset: 0;
        stroke-dasharray: 200 200;
    }
    90% {
        stroke-dashoffset: -200;
        stroke-dasharray: 200 200;
    }
    100% {
        stroke-dashoffset: -200;
        stroke-dasharray: 200 200;
    }
}

@keyframes stroke-spacing {
    0% {
        stroke-dasharray: 0 200;
        stroke-width: 3px;
    }
    45% {
        stroke-dashoffset: 0;
        stroke-dasharray: 200 200;
    }
    90% {
        stroke-dashoffset: -200;
        stroke-dasharray: 200 200;
    }
    100% {
        stroke-dashoffset: -200;
        stroke-dasharray: 200 200;
        stroke-width: 3px;
    }
}

@-webkit-keyframes stroke-color {
    0% {
        stroke: var(--accent-color);
    }
    24% {
        stroke: var(--accent-color-2);
    }
    25% {
        stroke: var(--accent-dark-color);
    }
    49% {
        stroke: var(--accent-color);
    }
    50% {
        stroke: var(--accent-color-2);
    }
    74% {
        stroke: var(--accent-dark-color);
    }
    75% {
        stroke: var(--accent-color);
    }
    99% {
        stroke: var(--accent-color-2);
    }
}

@keyframes stroke-color {
    0% {
        stroke: var(--accent-color);
    }
    24% {
        stroke: var(--accent-color-2);
    }
    25% {
        stroke: var(--accent-dark-color);
    }
    49% {
        stroke: var(--accent-color);
    }
    50% {
        stroke: var(--accent-color-2);
    }
    74% {
        stroke: var(--accent-dark-color);
    }
    75% {
        stroke: var(--accent-color);
    }
    99% {
        stroke: var(--accent-color-2);
    }
}
@keyframes rotate-svg {
    0% {
        transform: translate(-50%, 50%) ;
    }
    
    50%{
        transform: translate(-50%, -50%) ;
    }
    
    100% {
        transform: translate(-50%, 50%) ;
    }
}

/* [LOADING SCREEN END] */

/*# sourceMappingURL=main.css.map */
