:root {
    --color-black: #000;
    --color-black-25: rgba(0, 0, 0, 0.25);
    --color-black-30: rgba(0, 0, 0, 30%);
    --color-black-50: rgba(0, 0, 0, 50%);
    --color-black-60: rgba(0, 0, 0, 60%);
    --color-white: #fff;
    --color-orange: #FD622A;
    --color-orange-liear: linear-gradient(0deg, #FD5526 0%, #FD5526 100%), #D9D9D9;
    --color-blue: #2B99FF;
    --color-red: #FF2F2F;
    --color-green: #2DDB4B;
    --color-white-40: rgba(255, 255, 255, 0.40);
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    height: 3px;
    width: 4px;
    background: var(--color-orange);
}

*::-webkit-scrollbar-button {
    background: #000;
}

*::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #000;
}

*::-webkit-scrollbar-track-piece {
    background-color: var(--color-orange);
    border: 1px solid var(--color-orange);
}

*::-webkit-scrollbar-thumb {
    border-radius: 2px;
    width: 100%;
    background: var(--color-orange);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-orange) transparent;
}

body {
    width: 100%;
    font-family: Inter, Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    font-style: normal;
    color: var(--color-black);
    overflow-x: hidden;
}

body._lock, body.modal-open {
    overflow-y: hidden;
}

body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
    pointer-events: none;
}

body._lock:before, body.modal-open:before {
    opacity: 1;
    visibility: visible;
}

h1, h2, h3, h4 {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
}

p {
    margin: 0;
}

button {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1920px;
}

.row {
    padding: 0 12px;
    width: 100%;
}

.page__container {
    width: 100%;
}

._scroll .page__container {
    padding-top: 71px;
}

.content {
    width: 100%;
}

.hidden {
    display: none !important;
}

.button-orange {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 42px;
    color: var(--color-white);
    font-family: Montserrat, Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    background: var(--color-orange);
    border: 2px solid var(--color-orange);
    border-radius: 20px;
    transition: background 0.2s ease-in, color 0.2s ease-in;
    cursor: pointer;
}

.button-orange:hover, .button-orange:focus, .button-orange:active {
    color: var(--color-black);
    background: var(--color-white);
}

.button-white {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 25px 53px;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    background: var(--color-white);
    border: 1px solid var(--color-black);
    transition: border 0.2s ease-in, color 0.2s ease-in;
    cursor: pointer;
}

.button-white:hover, .button-white:focus, .button-white:active {
    color: var(--color-orange);
    border-color: var(--color-orange);
}

.text-link {
    color: var(--color-black-60);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    transition: color 0.2s ease-in;
}

.text-link:hover, .text-link:focus, .text-link:active {
    color: var(--color-orange);
}

#top {
    position: fixed;
    top: 0;
    left: -110%;
    z-index: 50;
    padding: 26px 6px 46px 12px;
    height: 100%;
    width: 100vw;
    max-width: 400px;
    background: var(--color-white);
    transition: left 0.4s ease-in;
    overflow-y: auto;
}

#top._open {
    left: 0;
}

#top-links {
    width: 100%;
}

.nav__close {
    position: relative;
    display: flex;
    align-items: center;
    gap: 21px;
    margin-bottom: 5px;
    cursor: pointer;
}

.nav__close-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    transform: rotate(-45deg);
}

.nav__close-icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--color-black);
    transform: translate(-50%, -50%);
    transition: background 0.2s ease-in;
}

.nav__close-icon:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--color-black);
    transform: translate(-50%, -50%);
    transition: background 0.2s ease-in;
}

.nav__close:hover .nav__close-icon:after, .nav__close:focus .nav__close-icon:after, .nav__close:active .nav__close-icon:after,
.nav__close:hover .nav__close-icon:before, .nav__close:focus .nav__close-icon:before, .nav__close:active .nav__close-icon:before {
    background: var(--color-orange);
}

.nav__close-text {
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    transition: color 0.2s ease-in;
}

.nav__close:hover .nav__close-text, .nav__close:focus .nav__close-text, .nav__close:active .nav__close-text {
    color: var(--color-orange);
}

.catalog {
    width: 100%;
}

.catalog__categories {
    display: flex;
    flex-direction: column;
    gap: 45px;
    padding: 46px 0;
    border-bottom: 1px solid var(--color-black-25);
}

.catalog__category {
    width: 100%;
}

.catalog__category-link {
    position: relative;
    color: var(--color-black);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color 0.2s ease-in, border 0.2s ease-in;
}

.catalog__category-link:before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: transparent;
    transition: background 0.2s ease-in;
}

.catalog__categories:hover .catalog__category-link {
    color: var(--color-black-50);
}

.catalog__categories .catalog__category-link:hover, .catalog__categories .catalog__category-link:focus, .catalog__categories .catalog__category-link:active {
    color: var(--color-black);
}

.catalog__category-link:hover:before, .catalog__category-link:focus:before, .catalog__category-link:active:before {
    background: var(--color-orange);
}

.nav__contacts {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 50px 0;
    border-bottom: 1px solid var(--color-black-25);
}

.nav__contacts-text {
    color: var(--color-black-50);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.nav__contects-link {
    position: relative;
    display: block;
    width: max-content;
}

.nav__contects-link:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: var(--color-black-50);
    transition: background 0.2s ease-in;
}

.nav__contects-link:hover:before, .nav__contects-link:focus:before, .nav__contects-link:active:before {
    background: var(--color-orange);
}

.nav__controll {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-right: 10px;
    margin-left: auto;
}

.nav__account {
    margin-left: 10px;
    margin-right: auto;
    width: max-content;
    height: max-content;
}

.nav__account-loged svg {
    display: block;
    width: 21px;
    height: 20px;
}

.nav__account-loged-text {
    display: none;
}

.nav__account-login {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
}

.nav__account-login-icon {
    display: block;
    width: 24px;
    height: 24px;
}

.nav__account-login-icon svg {
    display: block;
    width: 24px;
    height: 24px;
    stroke: var(--color-black);
}

.nav__account-login-text {
    display: none;
    color: var(--color-black);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.nav__cart-block {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    width: 24px;
    height: 24px;
}

.nav__cart-block svg {
    display: block;
    width: 24px;
    height: 24px;
}

.cart-total {
    position: absolute;
    top: -5px;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    min-width: 14px;
    min-height: 15px;
    color: var(--color-white);
    text-align: center;
    font-size: 9.444px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: var(--color-black);
    border-radius: 50%;
}

@keyframes cart-add {
    from {
        box-shadow: 0 0 0 var(--color-orange);
    }
    to {
        box-shadow: 0 0 6px var(--color-orange);
    }
}

._animate-cart-total {
    animation-name: cart-add;
    animation-duration: 0.5s;
}

.nav__cart-block-text {
    display: none;
    color: var(--color-black);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.nav__controll-phone {
    display: none;
    color: var(--color-black);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.nav__loyalty-system-block {
    padding: 50px 0 0 0;
}

.nav__loyalty-system {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-orange);
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: color 0.2s ease-in;
}

.nav__loyalty-system:hover, .nav__loyalty-system:focus, .nav__loyalty-system:active {
    color: var(--color-black-60);
}

.header {
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 0 5px transparent;
    transition: box-shadow 0.2s ease-in;
}

._scroll .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 25;
    box-shadow: 0 0 5px var(--color-black-30);
    border: none;
}

.header__row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 13px;
    padding-bottom: 13px;
}

.header__burger-block {
    display: flex;
    align-items: center;
    width: max-content;
}

.header__burger {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
}

.header__burger-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 3px;
    width: 21px;
    height: 23px;
}

.header__burger small {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-black);
}

.header__burger-text {
    display: none;
    color: var(--color-black);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.header__logo {
    width: max-content;
    height: max-content;
}

.header__logo a {
    display: block;
    width: 54px;
    height: 45px;
}

.header__logo img {
    display: block;
    width: 100%;
    height: 100%;
}

.header__search-block {
    position: relative;
    width: 20px;
    height: 32px;
}

.search-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: width 0.2s ease-in;
}

.header__search-block._active .search-wrapper {
    width: max-content;
}

.search {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 32px;
}

.search__input {
    padding: 10px 0;
    width: 32px;
    height: 41px;
    color: var(--color-black);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    border: none;
    box-shadow: 0 0 5px transparent;
    opacity: 0;
    visibility: hidden;
    transition: width 0.2s ease-in, opacity 0.2s ease-in, visibility 0.2s ease-in, box-shadow 0.2s ease-in;
    pointer-events: none;
}

.search__input::placeholder {
    color: var(--color-black-30);
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
}

.search__input:focus {
    outline: none;
    box-shadow: 0 0 5px var(--color-black-30);
}

.search__input:focus::placeholder {
    color: transparent;
    outline: none;
}

.header__search-block._active .search__input {
    padding: 10px 46px;
    opacity: 1;
    visibility: visible;
    width: 326px;
    max-width: 92vw;
    pointer-events: all;
}

.search__button-active {
    position: absolute;
    top: 62%;
    left: 6px;
    z-index: 10;
    display: none;
    transform: translateY(-50%);
    pointer-events: none;
    cursor: pointer;
}

.header__search-block._active .search__button-active {
    display: block;
    pointer-events: all;
}

.search__button-empty {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateY(-50%);
    cursor: pointer;
}

.header__search-block._active .search__button-empty {
    display: none;
    pointer-events: none;
}

.search button svg, .search__button-empty svg {
    display: block;
    width: 18px;
    height: 18px;
    stroke: var(--color-black);
    fill: transparent;
}

.search__button-empty-text {
    display: none;
    color: var(--color-black);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/*footer*/
.footer {
    width: 100%;
    color: var(--color-white);
    background: var(--color-black);
}

.footer__row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 44px;
    row-gap: 39px;
    padding-top: 23px;
    padding-bottom: 23px;
}

.footer__logo {
    margin-top: 42px;
    width: max-content;
}

.footer__catalog {
    width: max-content;
}

.footer__title {
    margin-bottom: 19px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase;
}

.footer__catalog-list {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.footer__catalog-item {
    width: max-content;
}

.footer__catalog-link {
    color: var(--color-white);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    transition: color 0.2s ease-in;
}

.footer__catalog-link:hover, .footer__catalog-link:focus, .footer__catalog-link:active {
    color: var(--color-orange);
}

.footer__help, .footer__follow {
    display: none;
}

.footer__help {
    max-width: 412px;
}

.footer__powered {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    color: var(--color-white);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase;
}

.footer__powered a {
    color: var(--color-white);
    white-space: nowrap;
    transition: color 0.2s ease-in;
}

.footer__powered a:hover, .footer__powered a:focus, .footer__powered a:active {
    color: var(--color-orange);
}

/*breadcrumb*/
.breadcrumb {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 57px;
    padding: 12px 26px 28px 26px;
}

.breadcrumb li {
    position: relative;
}

.breadcrumb li:before {
    content: '';
    position: absolute;
    top: 0;
    right: -12px;
    display: block;
    width: 1px;
    height: 100%;
    background: var(--color-black-50);
    transform: rotate(20deg);
}

.breadcrumb li:last-child:before {
    display: none;
}

.breadcrumb a {
    color: var(--color-black-50);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    transition: color 0.2s ease-in;
}

.breadcrumb a:hover, .breadcrumb a:focus, .breadcrumb a:active {
    color: var(--color-orange);
}

.breadcrumb li:last-child a {
    color: var(--color-black);
    pointer-events: none;
}

/*filter*/
.box {
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
}

.box-heading {
    margin-bottom: 25px;
    padding: 0;
    color: var(--color-black);
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-shadow: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.bf-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: max-content;
    max-height: 0;
    overflow: hidden;
    transition: max-height 2s ease-in;
}

.bf-form._open {
    max-height: 20000px;
}

.bf-float-submit {
    position: static !important;
    padding: 0;
    border: none;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.bf-float-submit .bf-tick {
    display: none;
}

.bf-close-btn {
    display: none;
}

.bf-buttonclear {
    background: none !important;
}

.bf-attr-group-header {
    display: none;
}

.bf-attr-header {
    position: relative;
    padding: 0;
    color: var(--color-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 0;
    border: 0;
    background: none;
}

.bf-layout-id-32 .bf-attr-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: transparent !important;
}

.bf-arrow {
    position: relative;
    background: none;
    transform: rotate(45deg);
}

.bf-arrow:before {
    content: '';
    position: absolute;
    top: 38%;
    right: 8px;
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
    transform: translateY(-50%);
    transition: transform 0.2s ease-in;
}

.bf-arrow._transform:before {
    transform: rotate(180deg) translate(-8px, -50%);
}

.bf-sliding-cont {
    padding-top: 15px;
}

.bf-input-custom {
    position: relative;
    display: block;
    margin-right: 15px;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid var(--color-black-50);
}

.bf-input-custom:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-orange);
    opacity: 0;
    transition: opacity 0.2s ease-in;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

input:checked + .bf-input-custom:before, .bf-attr-filter:hover .bf-input-custom:before {
    opacity: 1;
}

.bf-attr-block-cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
}

.bf-attr-block-cont .bf-attr-filter {
    width: 100%;
}

.bf-attr-filter input[type="checkbox"], .bf-attr-filter input[type="radio"] {
    display: none;
}

.bf-cell {
    border-bottom: none;
}

.bf-attr-block .bf-count {
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    min-width: 20px;
    border-radius: 50%;
    background: var(--color-orange);
}

.bf-cur-symb {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bf-price-slider-container, .ndash {
    display: none;
}

.bf-price-block-input {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    color: var(--color-black-30);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    width: max-content;
    border: 1px solid var(--color-black-30);
    border-radius: 19px;
}

input[type=text].bf-range-max, input[type=text].bf-range-min {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--color-black);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    border: none;
    outline: none;
}

.bf-buttonclear-box {
    border: 0;
    padding: 0;
}

.bf-buttonclear {
    margin: 0;
    padding: 0;
    min-height: 16px;
    background: none;
    color: var(--color-black-60);
    text-decoration: underline;
    line-height: 16px;
    border: 0;
    transition: color 0.2s ease-in;
    cursor: pointer;
}

.bf-buttonclear:hover, .bf-buttonclear:focus, .bf-buttonclear:active {
    color: var(--color-orange);
}

/*product preview*/
.product-grid-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
    width: 100%;
}

.product-layout {
    width: 100%;
}

.product-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17.5px;
}

.product-thumb:hover .caption a {
    color: var(--color-orange);
}

.product-thumb .image {
    width: 100%;
}

.product-thumb .image a {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
}

.product-thumb .image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 238px;
}

.product-thumb .image + div {
    width: 100%;
}

.product-thumb .caption {
    margin-bottom: 17.5px;
    width: 100%;
}

.product-thumb .caption h4 {
    margin-bottom: 17.5px;
    width: 100%;
}

.product-thumb .caption a {
    display: block;
    color: var(--color-black);
    font-family: Montserrat, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 130.099%;
    transition: color 0.2s ease-in;
}

.product-thumb .caption a:hover, .product-thumb .caption a:focus, .product-thumb .caption a:active {
    color: var(--color-orange);
}

.product-thumb .caption p {
    display: none;
}

.product-thumb .caption .price, .product-thumb .caption .price-new {
    display: flex;
    gap: 10px;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product-thumb .caption .price-old {
    color: var(--color-black-50);
    font-size: 11px;
    text-decoration: line-through;
}

.product-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    width: 100%;
    color: var(--color-white);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    background: var(--color-orange);
    border: 2px solid var(--color-orange);
    border-radius: 14px;
    transition: background 0.2s ease-in, color 0.2s ease-in;
    cursor: pointer;
}

.product-add-cart:hover, .product-add-cart:focus, .product-add-cart:active {
    color: var(--color-black-50);
    background: var(--color-white);
}

.product-quantity-cart {
    width: 100%;
}

.product-quantity-cart .number-spinner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    width: 100%;
    color: var(--color-black);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    border-radius: 14px;
    border: 2px solid var(--color-orange);
}

.product-quantity-cart .input-group-btn {
    display: block;
    width: max-content;
    height: max-content;
}

.product-quantity-cart input[name="quantity"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    color: var(--color-black);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-align: center;
    outline: none;
    border: none;
}

.product-quantity-cart .input-group-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    cursor: pointer;
}

.product-thumb .button-group i {
    display: none;
}

/*alert*/
.alert {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 90vw;
    max-width: 400px;
    display: inline;
    padding: 40px 20px 20px 20px;
    color: var(--color-black);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 17px;
    background: var(--color-white);
    transform: translate(-50%, -50%);
    text-align: center;
    box-shadow: 0 0 5px var(--color-black-50);
    border-radius: 5px;
}

.alert a {
    color: var(--color-black);
    transition: color 0.2s ease-in;
}

.alert a:hover, .alert a:focus, .alert a:active {
    color: var(--color-orange);
}

.alert .close {
    position: absolute;
    top: 10px;
    right: 10px;
}

/*pagination*/
.pagination__row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.pagination li {
    width: max-content;
    height: max-content;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--color-black);
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    border: 2px solid var(--color-orange);
    background: var(--color-white);
    border-radius: 50%;
    transition: olor 0.2s ease-in, background 0.2s ease-in;
}

.pagination a:hover, .pagination a:focus, .pagination a:active {
    color: var(--color-white);
    background: var(--color-orange);
}

.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--color-white);
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    border: 2px solid var(--color-orange);
    background: var(--color-orange);
    border-radius: 50%;
}

/*empty*/
.block__empty {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.block__empty .button-orange {
    max-width: 300px;
}

/*modal*/
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 40;
    display: flex;
    padding: 50px 10px 20px 10px !important;
    width: 98vw;
    max-height: 90vh;
    max-width: 400px;
    background: var(--color-white);
    border: 2px solid var(--color-black-30);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
    pointer-events: none;
}
/* modal for apiship (rewright) */
.modal.apiship_modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    width: unset;
    max-height: unset;
    max-width: unset;
    transform: none;
}
@media (min-width: 1024px) {
    .modal.apiship_modal {
        padding: 0 !important;
         max-width: unset; 
    }
}

.apiship_modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.apiship_modal-header .close {
    position: relative !important;
    left: -30px !important;
    top: 0px !important;
}
@media (min-width: 1024px) {
    .apiship_modal-header .close {
    position: relative !important;
    left: -30px !important;
    top: 0px !important;
    }
}
/**/

.modal.in {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}

.modal-title {
    margin-bottom: 20px;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    white-space: nowrap;
    text-align: center;
}

.modal-dialog {
    width: 100%;
}

.modal-content {
    width: 100%;
}

.modal .control-label {
    display: none;
}

.modal-body {
    width: 100%;
    text-align: center;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.modal .form-group {
    height: max-content;
}

.modal .form-control {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    border: 1px solid var(--color-orange);
    border-radius: 5px;
    transition: border 0.2s ease-in;
    resize: none;
}

.modal .form-control:hover, .modal .form-control:focus {
    border-color: var(--color-black-50);
    outline: none;
}

.modal .form-control::placeholder {
    color: var(--color-black-50);
}

.modal .form-control:focus::placeholder {
    color: transparent;
}

.modal button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 42px;
    width: 100%;
    color: var(--color-white);
    font-family: Montserrat, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    background: var(--color-orange);
    border: 2px solid var(--color-orange);
    border-radius: 10px;
    transition: background 0.2s ease-in, color 0.2s ease-in;
    cursor: pointer;
}

.modal button[type="submit"]:hover, .modal button[type="submit"]:focus, .modal button[type="submit"]:active {
    color: var(--color-black);
    background: var(--color-white);
}

/*error*/
.error__container {
    flex-direction: column;
}

.error__content {
    margin: 0 auto;
    padding-bottom: 35px;
    width: 100%;
    max-width: 1176px;
}

.error__content h1 {
    margin-bottom: 19px;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.error__content p {
    margin-bottom: 30px;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.966%;
}

.error__content .button-orange {
    max-width: 375px;
}

@media (min-width: 480px) {
    .nav__controll {
        margin-right: 20px;
        margin-left: auto;
    }

    .nav__account {
        margin-left: 20px;
        margin-right: auto;
    }

    .footer__catalog {
        width: calc(100% - 100px);
    }

    .footer__catalog-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer__catalog-item {
        width: 47%;
    }

    /*filter*/
    .bf-attr-block-cont .bf-attr-filter {
        width: 48%;
    }

    /*product preview*/
    .product-layout {
        width: 46.9%;
    }

    .product-thumb .image img {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 768px) {
    .footer__row {
        column-gap: 43px;
    }

    .footer__catalog {
        width: 25%;
    }

    .footer__catalog-item {
        width: 100%;
    }

    .footer__help, .footer__follow {
        display: block;
        width: 25%;
    }

    .footer__text {
        display: inline-flex;
        gap: 4px;
        flex-direction: column;
        margin-bottom: 27px;
        width: 100%;
        color: var(--color-white);
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 30px;
    }

    .footer__text-link {
        position: relative;
        display: inline-block;
        width: max-content;
        max-width: 100%;
        color: var(--color-white);
        text-decoration: underline;
        transition: color 0.2s ease-in;
    }

    .footer__text-link:hover, .footer__text-link:focus, .footer__text-link:active {
        color: var(--color-orange);
    }

    .footer__text.footer__text-link {
        text-decoration: none;
    }

    /*filter*/
    .bf-attr-block-cont .bf-attr-filter {
        width: 31%;
    }

    /*product preview*/
    .product-layout {
        width: 30.8%;
    }
}

@media (min-width: 992px) {
    .search-wrapper {
        right: auto;
    }

    .nav__account-login-text {
        display: block;
    }

    .search__button-empty-text {
        display: block;
    }

    .header__search-block {
        width: 92px;
    }

    .nav__account-login-icon {
        display: none;
    }

    .nav__account-login-text {
        color: var(--color-white);
        transition: color 0.2s ease-in;
    }

    .nav__account-login:hover .nav__account-login-text, .nav__account-login:focus .nav__account-login-text, .nav__account-login:active .nav__account-login-text {
        color: var(--color-black)
    }

    .nav__cart-block {
        width: max-content;
    }

    .nav__cart-block-text {
        display: block;
    }

    .header__burger-block {
        order: 1;
    }

    .header__search-block {
        order: 2;
        margin-left: 20px;
        margin-right: auto;
    }

    .header__logo {
        order: 3;
    }

    .nav__account-logged {
        order: 4;
        margin-left: auto;
        margin-right: 20px;
    }

    .nav__account-loged {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .nav__account-loged-text {
        display: block;
        color: var(--color-black);
        font-size: 17px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

    .nav__controll {
        order: 5;
    }

    .nav__controll-logged {
        margin-right: 0;
        margin-left: 20px;
    }

    .nav__account-not-logged {
        order: 6;
        margin: 0;
    }

    .cart-total {
        right: auto;
        left: 22px;
    }
}

@media (min-width: 1024px) {
    .row {
        padding-left: 50px;
        padding-right: 50px;
    }

    ._scroll .page__container {
        padding-top: 130px;
    }

    .header__row {
        padding-top: 28px;
        padding-bottom: 67px;
    }

    .header__row:after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        display: block;
        width: calc(100% - 100px);
        height: 1px;
        background: rgba(0, 0, 0, 0.35);
        transform: translateX(-50%);
    }

    ._scroll .header__row:after {
        display: none;
    }

    #top {
        position: fixed;
        padding: 51px 56px;
        max-width: 468px;
    }

    .header__burger-text {
        display: block;
        margin-left: -1px;
    }

    .nav__account-not-logged {
        margin-top: 7px;
    }

    .nav__controll {
        gap: 48px;
        margin-right: 48px;
    }

    .nav__controll-logged {
        margin-right: 0;
    }

    .nav__controll-phone {
        display: block;
    }

    .header__search-block {
        margin-left: 37px;
    }

    .header__search-block._active .search__input {
        transform: translateY(-3px);
    }

    .search__button-active {
        top: 53%;
        left: 10px;
    }

    /*breadcrumb*/
    .breadcrumb {
        margin-bottom: 0;
        padding: 72px 50px 45px 50px;
    }

    /*paginnation*/
    .pagination__row {
        padding: 40px 0;
    }

    .pagination {
        gap: 10px;
    }

    .pagination span, .pagination a {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    /*product preview*/
    .product-grid-row {
        gap: 40px;
    }

    .product-layout {
        width: 46.7%;
    }

    .product-thumb {
        gap: 20px;
    }

    .product-thumb .caption h4 {
        margin-bottom: 20px;
    }

    .product-thumb .caption a {
        font-size: 20px;
    }

    .product-thumb .caption {
        margin-bottom: 20px;
    }

    .product-thumb .caption .price, .product-thumb .caption .price-new {
        font-size: 17px;
    }

    .product-thumb .caption .price-old {
        font-size: 14px;
    }

    .product-add-cart {
        padding: 18px;
        font-size: 18px;
        border-radius: 20px;
    }

    .product-quantity-cart input[name="quantity"] {
        width: 80px;
        font-size: 18px;
    }

    .product-quantity-cart .input-group-btn button {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .product-quantity-cart .number-spinner {
        padding: 0;
    }

    /*filter*/
    .box-heading {
        margin-bottom: 35px;
        font-size: 36px;
    }

    .bf-form {
        max-height: unset;
    }

    .bf-attr-header {
        font-size: 20px;
        margin-bottom: 29px;
    }

    .bf-arrow {
        /*display: none;*/
        margin-top: 7px;
    }

    .bf-attr-block-cont {
        gap: 20px;
    }

    .bf-attr-block-cont .bf-attr-filter {
        width: 100%;
    }

    .bf-sliding {
        min-height: max-content;
    }

    .bf-collapse {
        /*pointer-events: none;*/
    }

    .bf-form {
        gap: 30px;
    }

    .bf-sliding-cont {
        padding-top: 0;
    }

    .bf-float-submit {
        margin-bottom: 40px;
    }

    /*empty*/
    .block__empty {
        gap: 60px;
    }

    .text__empty {
        font-size: 20px;
    }

    /*error*/
    .error__content {
        padding-bottom: 100px;
    }

    .error__content h1 {
        margin-bottom: 35px;
        font-size: 40px;
        font-family: Montserrat, Arial, Helvetica, sans-serif;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .error__content p {
        margin-bottom: 60px;
    }

    /*modal*/
    .modal {
        padding: 50px 30px 40px 30px !important;
        max-width: 600px;
    }

    .modal-title {
        margin-bottom: 35px;
        font-size: 24px;
    }

    .modal button[type="submit"] {
        padding: 20px 42px;
        font-size: 18px;
    }

    .modal .form-control {
        padding: 20px 25px;
        font-size: 17px;
    }

    .modal .close {
        top: 20px;
        right: 30px;
    }
}

@media (min-width: 1200px) {
    .header__logo {
        position: absolute;
        top: 43%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*product preview*/
    .product-layout {
        width: 29.9%;
    }
}

@media (min-width: 1400px) {
    .row {
        padding-left: 58px;
        padding-right: 58px;
    }

    .header__logo a {
        display: block;
        width: 116px;
        height: 96px;
    }

    /*product preview*/
    .product-layout {
        width: 30.4%;
    }
}

@media (min-width: 1600px) {
    .footer__container {
        max-width: 1920px;
    }

    .footer__row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        column-gap: 44px;
        row-gap: 39px;
        justify-content: space-between;
        padding: 48px 64px 48px 54px;
        align-items: center;
    }

    .footer__catalog {
        margin-bottom: auto;
        width: 15%;
    }

    .footer__catalog-list {
        gap: 7px;
    }

    .footer__logo {
        margin-top: 40px;
        margin-right: 93px;
        width: 177px;
        height: 177px;
    }

    .footer__logo a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer__logo img {
        width: 80px;
        height: auto;
    }

    .footer__help, .footer__follow {
        margin-bottom: auto;
    }

    .footer__text {
        display: inherit;
        line-height: 26px;
    }

    .footer__follow {
        margin-left: auto;
        width: 20%;
    }

    .footer__follow .footer__text {
        margin-bottom: 10px;
        max-width: 65%;
    }

    .footer__powered {
        width: 10%;
    }

    /*product preview*/
    .product-grid-row {
        column-gap: 70px;
    }

    .product-layout {
        width: 20.3%;
    }

    /*pagination*/
    .pagination__row {
        padding: 60px 0;
    }
}

@media (min-width: 1920px) {
    /*product preview*/
    .product-grid-row {
        column-gap: 85px;
    }

    .product-layout {
        width: 20.5%;
    }
}