@font-face {
    font-family: "fire-regular";
    src: url("../fonts/FiraGO-Regular.ttf");
}
@font-face {
    font-family: "fire-heavy";
    src: url("../fonts/FiraGO-Heavy.ttf");
}
@font-face {
    font-family: "fire-bold";
    src: url("../fonts/FiraGO-Bold.ttf");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "neue-geo-caps";
    src: url("../fonts/helvetica-neue-lt-geo-55-roman-caps.ttf");
}

/*  reset  */

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 12px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "fire-regular", sans-serif;
    font-weight: 400;
    line-height: 1.3;
    color: #111;
    background: var(--body-bg);
}
main {
    display: block;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input,
textarea {
    outline: none;
    font-family: inherit;
}
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
textarea {
    resize: vertical;
}

/* -----  Text Selection  -------- */
::-moz-selection {
    background: #3b3b3b;
    color: var(--yellow);
    text-shadow: none;
}
::selection {
    background: #3b3b3b;
    color: var(--yellow);
    text-shadow: none;
}

/* ------ Scroll Bar   ----*/

/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
/* Track */
::-webkit-scrollbar-track {
    background-color: #fff;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #3b3b3b;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    opacity: 0.9;
}
/* -----  End scroll bar   ----*/

/* input type number - arrs : Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* util */
:root {
    --body-bg: #fbfbfb;
    --yellow: #ffec00;
    --clr-d: #ff7300;

    /* font weights*/
    --light-300: 300;
    --regular-400: 400;
    --medium-500: 500;
    --semi-bold-600: 600;
    --bold-700: 700;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}
.hidden {
    display: none;
}
.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.img-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

/* start */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #fff;
}
.header.shadowed {
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar {
    width: 100%;
    border-top: 3px solid var(--yellow);
}
.navbar .container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 67px;
    padding-bottom: 3px;
}

.navigation-wrapper {
    position: absolute;
    top: 100%;
    left: 15px;
    width: 280px;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    height: auto;
    -webkit-box-shadow: 4px 2px 11px rgba(0, 0, 0, 0.05);
    box-shadow: 4px 2px 11px rgba(0, 0, 0, 0.05);
    z-index: 110;
    -webkit-transition: box-shadow 0.4s, border-radius 0.4s;
    -o-transition: box-shadow 0.4s, border-radius 0.4s;
    transition: box-shadow 0.4s, border-radius 0.4s;
}
.mrginauto {
    margin-left: auto;
}
.navbar-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}
.navbar-phone p {
    font-size: 13px;
    font-size: 12px;
    font-weight: 600;
    font-family: "neue-geo-caps", "fire-regular", sans-serif;
    margin-left: 5px;
}

.big-menu-btn {
    background-color: var(--yellow);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 40px;
    padding: 0 10px;
    font-size: 12px;
    font-family: "fire-bold";
}
.big-menu-btn img {
    margin-right: 10px;
}
/* closed big menu */
.navigation-wrapper.closed {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.navigation-wrapper.closed .navigation {
   /* max-height: 0;*/

}
.navigation {
    display: none;
    -webkit-transition: box-shadow 0.3s linear, border-radius  0.3s linear;
    -o-transition: box-shadow 0.3s linear, border-radius 0.3s linear;
    transition: box-shadow 0.3s linear, border-radius 0.3s linear;
    overflow: hidden;
}
.navigation__item {
}
.navigation__link {
    height: 42px;
    line-height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px 0 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-size: 12px;
    color: #0a3251;
}
.navigation__item:last-of-type .navigation__link {
    border-radius: 0 0 10px 10px;
}
.navigation__link:hover,
.navigation__link.active {
    background-color: #ffee003a;
}
.navigation__link:hover .link-logo,
.navigation__link.active .link-logo {
    background-color: var(--yellow);
}
.link-logo {
    margin-right: 7px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f1f1f1;
}
/* sub menus */
.sub-menu {
    position: absolute;
    top: 67px;
    left: 275px;
    min-height: 300px;
    min-width: 840px;
    background-color: #fff;
    padding: 20px 25px 20px 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 0 0 20px 0;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    -webkit-box-shadow: 4px 4px 11px rgba(0, 0, 0, 0.05);
    box-shadow: 4px 4px 11px rgba(0, 0, 0, 0.05);
    /*max-height: 300px;*/
}
.sub-menu.closed {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}
.sub-menu > * + * {
    margin-left: 20px;
}

.sub-menu__title {
    font-size: 12px;
    font-family: "fire-bold";
    position: relative;
    padding-bottom: 6px;
}
.sub-menu__title::after,
.sub-menu__list a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 44px;
    background-color: var(--yellow);
}

.sub-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sub-menu__list a {
    margin-top: 10px;
    color: #505b74;
    font-size: 11px;
    position: relative;
}
.sub-menu__list a::after {
    bottom: 5px;
    left: -7px;
    opacity: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.sub-menu__list a:hover::after {
    opacity: 1;
}

.sub-menu__list.columns {
    display: inline-block;

    -moz-column-gap: 22px;
    -webkit-column-gap: 22px;
    column-count: 3;
    column-gap: 22px;
}
.sub-1 .sub-menu__list.columns {
    column-count: 3;
}
.sub-menu__list.columns a {
    display: block;
}

/* end of big menu ------- */

.navbar-brand img {
    height: 36px;
    width: auto;
}

.navbar-search {
    max-width: 880px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 58px;
    background-color: #f8f8f8;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 12px;
    margin-left: 45px;
    margin-right: 15px;
    position: relative;
}
.navbar-search::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #f8f8f8;
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
/* nav search results */
.navbar-search__results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    z-index: 110;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    padding-bottom: 15px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.13);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.13);
}
.navbar-search__results.shown {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.navbar-search__empty {
    font-size: 13px;
    padding: 15px 15px 5px 60px;
}

.navbar-search__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 14px 12px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.navbar-search__item:not(:last-of-type) {
    border-bottom: 1px solid #dcdcdc;
}
.navbar-search__item:hover {
    background-color: #ffee001a;
}

.navbar-search__item-img {
    width: 54px;
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 5px;
    margin-right: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-search__item-img img {
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 45px;
    max-width: 40px;
}
.navbar-search__item-info h2 {
    font-size: 14px;
    color: #1f1f1f;
    margin-bottom: 5px;
}
@media only screen and (max-width: 800px) {
    .navbar-search__item-info h2 {
        font-size: 13px;
    }
    .navbar-phone p {
        display: none;
    }
}

.navbar-search__item-info p {
    color: #1f1f1f67;
    font-size: 12px;
}

.navbar-search__item-price {
    margin-left: auto;
    color: #505b74;
    font-size: 14px;
}

/* end of nav search results */
.navbar-search.active {
    border-radius: 12px 12px 0 0;
}
.navbar-search.active::after {
    opacity: 1;
}

.navbar-search input {
    width: calc(100% - 46px);
    line-height: 40px;
    border: none;
    padding: 0 10px;
    color: #111;
    background-color: transparent;
}
.navbar-search__subbmit {
    height: 42px;
    width: 42px;
    border-radius: 7px;
    background-color: #ebebec;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.navbar-search__subbmit:hover {
    background-color: var(--yellow);
}
.toggle-search-form {
    background-color: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    width: calc(100% - 280px);
    border-top: 1px solid var(--yellow);
    border-bottom: 1px solid var(--yellow);
}

.nav-open-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #1f1f1f;
    font-family: "neue-geo-caps", "fire-regular", sans-serif;
    font-size: 12px;
    font-weight: bold;
}
.nav-open-cart:hover #cart-count {
    background-color: #535353;
    color: var(--yellow);
}
.nav-cart-img {
    position: relative;
    width: 39px;
    height: 39px;
    background-color: #1f1f1f;
    border-radius: 50%;
    margin-right: 5px;
}
.nav-cart-img.shake {
    -webkit-animation: shake 0.4s ease-in-out forwards;
    animation: shake 0.4s ease-in-out forwards;
}
.messenger-navbar {
    width: 39px;
    height: 39px;
    background: #ffc300;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    margin-left: auto;

    display: none;
}
.messenger-navbar svg {
    width: 25px;
}
@-webkit-keyframes shake {
    25% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
    50% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
    }
    75% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes shake {
    25% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
    50% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
    }
    75% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--yellow);
    color: #535353;
    font-size: 8px;
    line-height: 15px;
    width: 15px;
    border-radius: 50%;
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
    text-align: center;
}

/* language bar  */
.language-box {
    height: 38px;
    width: 38px;
    position: relative;
    z-index: 110;
    margin-left: 20px;
}

.language-menu {
    position: absolute;
    top: 0;
    left: 0;
    height: 38px;
    width: 38px;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: var(--yellow);
    border-radius: 18px;
}
.language-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}
.language-menu:hover {
    height: 82px;
}
.language-menu:hover::after {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
.language-menu::-webkit-scrollbar {
    width: 2px;
}
.language-menu a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 38px;
    width: 38px;
    border: 3px solid var(--yellow);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 5px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-size: 12px;
    color: #fff;
}
.language-menu a img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.language-menu a:hover,
.language-menu a.active {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}
.selected-language-text {
    margin-left: 9px;
    font-size: 12px;
    color: #1f1f1f;
    font-family: "neue-geo-caps", "fire-regular", sans-serif;
    font-weight: bold;
}
@media only screen and (max-width: 800px) {
    .navbar .container {
        justify-content: space-between;
    }
    .navbar-search.active {
        border-radius: 0;
    }
    .selected-language-text,
    .nav-open-cart .cart-text {
        display: none;
    }
    .language-box {
        margin-left: 9px;
    }
    .messenger-navbar {
        display: flex;
        margin: 0 0 0 0;
    }
    .navbar-phone {
        margin: 0 0 0 0;
    }
    .mrginauto {
        margin-left: 0;
    }
    .the_messanger_chat {
        display: none;
    }
}

/* section 1 - hero */
#hero {
    margin-top: 70px;
}
.hero-slider {
    width: 100%;
    position: relative;
}
.hero-slide {
    height: auto !important;
    cursor: pointer;
    position: relative;
}

/* section 2 -  category-links */
#category-links {
    margin-top: 26px;
    color: #2b2731;
}

.category-links__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(6, 1fr);
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
}

.category-links__grid a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "neue-geo-caps";
    font-size: 11px;
    font-weight: bold;
    height: 75px;
    border-radius: 11px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    padding: 0 5px;
}
.category-links__grid a i {
    height: 41px;
    width: 41px;
    margin: 0 9px 0 15px;
}

.category-links__grid a:nth-of-type(1) {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#ebddfc),
        color-stop(70%),
        to(#f9f9f9)
    );
    background: -o-linear-gradient(left, #ebddfc, 70%, #f9f9f9);
    background: linear-gradient(to right, #ebddfc, 70%, #f9f9f9);
}
.category-links__grid a:nth-of-type(1):hover {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#ebddfc),
        color-stop(70%),
        to(#ebddfc)
    );
    background: -o-linear-gradient(left, #ebddfc, 70%, #ebddfc);
    background: linear-gradient(to right, #ebddfc, 70%, #ebddfc);
}

.category-links__grid a:nth-of-type(2) {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e2e4fb),
        color-stop(70%),
        to(#f9f9ff)
    );
    background: -o-linear-gradient(left, #e2e4fb, 70%, #f9f9ff);
    background: linear-gradient(to right, #e2e4fb, 70%, #f9f9ff);
}
.category-links__grid a:nth-of-type(2):hover {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e2e4fb),
        color-stop(70%),
        to(#e2e4fb)
    );
    background: -o-linear-gradient(left, #e2e4fb, 70%, #e2e4fb);
    background: linear-gradient(to right, #e2e4fb, 70%, #e2e4fb);
}

.category-links__grid a:nth-of-type(3) {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#dbf3ff),
        color-stop(70%),
        to(#f9f9f9)
    );
    background: -o-linear-gradient(left, #dbf3ff, 70%, #f9f9f9);
    background: linear-gradient(to right, #dbf3ff, 70%, #f9f9f9);
}
.category-links__grid a:nth-of-type(3):hover {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#dbf3ff),
        color-stop(70%),
        to(#dbf3ff)
    );
    background: -o-linear-gradient(left, #dbf3ff, 70%, #dbf3ff);
    background: linear-gradient(to right, #dbf3ff, 70%, #dbf3ff);
}

.category-links__grid a:nth-of-type(4) {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#ffe7da),
        color-stop(70%),
        to(#f9f9f9)
    );
    background: -o-linear-gradient(left, #ffe7da, 70%, #f9f9f9);
    background: linear-gradient(to right, #ffe7da, 70%, #f9f9f9);
}
.category-links__grid a:nth-of-type(4):hover {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#ffe7da),
        color-stop(70%),
        to(#ffe7da)
    );
    background: -o-linear-gradient(left, #ffe7da, 70%, #ffe7da);
    background: linear-gradient(to right, #ffe7da, 70%, #ffe7da);
}

.category-links__grid a:nth-of-type(5) {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e5fbf9),
        color-stop(80%),
        to(#f9f9f9)
    );
    background: -o-linear-gradient(left, #e5fbf9, 80%, #f9f9f9);
    background: linear-gradient(to right, #e5fbf9, 80%, #f9f9f9);
}
.category-links__grid a:nth-of-type(5):hover {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e5fbf9),
        color-stop(70%),
        to(#e5fbf9)
    );
    background: -o-linear-gradient(left, #e5fbf9, 70%, #e5fbf9);
    background: linear-gradient(to right, #e5fbf9, 70%, #e5fbf9);
}

.category-links__grid a:nth-of-type(6) {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f1fcde),
        color-stop(70%),
        to(#f9f9f9)
    );
    background: -o-linear-gradient(left, #f1fcde, 70%, #f9f9f9);
    background: linear-gradient(to right, #f1fcde, 70%, #f9f9f9);
}
.category-links__grid a:nth-of-type(6):hover {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f1fcde),
        color-stop(70%),
        to(#f1fcde)
    );
    background: -o-linear-gradient(left, #f1fcde, 70%, #f1fcde);
    background: linear-gradient(to right, #f1fcde, 70%, #f1fcde);
}

/* section 3 -  */
#newly-added {
    margin-top: 26px;
}

/* reusable block for cards*/
.cards-block {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    background-color: #fff;
}

.cards-block__header {
    height: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 35px;
    font-family: "neue-geo-caps";
    border-bottom: 1px solid #e5e5e5;
}
.cards-block__header h2 {
    color: #2b2731;
    font-size: 16px;
    font-weight: bold;
}

.cards-block__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cards-block__tabs button {
    margin-left: 13px;
    line-height: 30px;
    padding: 0 16px;
    border: 1px solid #000;
    color: #101010;
    font-size: 12px;
    font-weight: bold;
    border-radius: 6px;
    opacity: 0.3;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.cards-block__tabs button:hover {
    opacity: 0.7;
}
.cards-block__tabs button.active {
    opacity: 1;
}

/* cards slider */
.product-card-slider {
    position: relative;
    width: 100%;
}

/* card reusable */
.card {
    border-right: 1px solid #e5e5e5;
    text-align: center;
    font-family: "neue-geo-caps";
}
.card__wrapper {
    min-height: 444px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 26px;
}
.card:hover {
    -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.07);
}
.card__banner {
    position: absolute;
    top: 15px;
    left: 0px;
    padding: 10px 12px;
    background-color: var(--yellow);
    font-size: 12px;
    font-weight: bold;
    color: #616161;
    border-radius: 0 10px 10px 0;
}
.card-link {
    padding: 5px;
    display: block;
    outline: none;
}
.card-img {
    height: 195px;
    max-width: 195px;
    margin: 12px auto 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.card-img .img-cover {
    -o-object-fit: unset;
    object-fit: unset;
    width: unset;
    height: unset;
}
.card__info {
    max-width: 190px;
    margin: 0 auto 15px;
}
.card__title {
    font-size: 14px;
    color: #1f1f1f;
    font-weight: normal;
    line-height: 19px;

    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.card__pricing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 13px auto 6px;
}
.card__pricing .cur-p {
    color: #1f1f1f;
    font-size: 24px;
    font-weight: bold;
    margin-right: 15px;
}
.card__pricing .old-p {
    color: rgb(219, 71, 71);
    text-decoration: line-through;
    font-size: 18px;
}
.installment {
    font-size: 12px;
    max-width: 140px;
    margin: 0 auto;
    color: #6e6e6e;
    padding-bottom: 12px;
}
.installment span {
    color: var(--yellow);
    position: relative;
    top: -1px;
}
.card__brand {
    border-top: 1px solid #e5e5e5;
    padding-top: 7px;
    margin: 5px auto 0;
    font-size: 12px;
    color: #6e6e6e;
    display: inline-block;
    min-width: 136px;
}

.card__bottom {
    margin: 0;
}
.card-add-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    background-color: #ffee0033;
    color: #4d4e4e;
    line-height: 30px;
    padding: 0 18px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 8px;
    border: 2px solid #ffee0033;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.card-add-btn svg {
    fill: #4d4e4e;
    margin-right: 10px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.card-add-btn:hover {
    border: 2px solid var(--yellow);
    background-color: #fff;
    color: var(--yellow);
}
.card-add-btn:hover svg {
    fill: var(--yellow);
}

/* end of card reusable  */

/* section 4 - main-banner  */
#main-banner {
    margin-top: 40px;
}
.main-banner__wrapper {
    border-radius: 22px;
    overflow: hidden;
    max-height: 340px;
    display: block;
}

/* section 5 - products-onsale */
#products-onsale {
    margin-top: 40px;
}

/* section 6 - fav-products */
#fav-products {
    margin-top: 40px;
}

/* section 7 - product-brands */
#product-brands {
    margin-top: 40px;
}
.product-brands__wrapper {
    padding: 0 20px;
    border-radius: 17px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.product-brands__wrapper a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 105px;
    padding: 0 25px;
}
.product-brands__wrapper a:hover img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: 1.5;
    -o-transition: 1.5;
    transition: 1.5;
}

/* section 8 -  secondary-banner */
#secondary-banner {
    margin-top: 42px;
}
.secondary-banner__wrapper {
    border-radius: 19px;
    overflow: hidden;
    max-height: 340px;
    display: block;
}

/* section 9 -  */
#more-products {
    margin: 42px 0 50px;
}
#more-products .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.more-products__offer {
    width: 49%;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid#CFCFCF;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.more-products__offer-main {
    background-color: #fff;
}
.more-products__offer-img {
    padding: 35px 30px 25px;
    max-height: 375px;
    height: 375px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.more-products__offer-title {
    display: block;
    border-top: 1px solid #ccbe0a;
    line-height: 66px;
    padding: 0 26px;
    font-size: 14px;
    color: #101010;
    font-family: "neue-geo-caps";
    font-weight: bold;
}
.more-products__offers-small {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 15px 16px;
}
.more-products__offers-small a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #101010;
    font-family: "neue-geo-caps";
    width: 25%;
}
.more-products__offers-small a:hover i {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.more-products__offers-small a i {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    height: 46px;
    width: 46px;
    padding: 1px;
    margin-right: 10px;
}
.small-offer-info h2 {
    font-size: 12px;
    font-weight: normal;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.small-offer-info h3 {
    font-size: 13px;
    font-weight: bold;
    margin-top: 5px;
}

.more-products__category {
    width: 49%;
}
.additational-category {
    border-radius: 19px;
    overflow: hidden;
    border: 1px solid #cfcfcf;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 250px;
    background-color: #f9f9f9;
}
.additational-category:first-of-type {
    margin-bottom: 26px;
}
.additational-category__img {
    max-height: 250px;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.additational-category__img img {
    max-height: 205px;
    max-width: 90%;
}
.additational-category__list {
    background-color: #fff;
    width: 50%;
    border-left: 1px solid #cfcfcf;
    padding: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.additational-category__list > * + * {
    margin-top: 10px;
}
.additational-category__list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    font-family: "neue-geo-caps";
    font-weight: bold;
    padding-bottom: 8px;
    border-bottom: 1px solid #cfcfcf;
}
.additational-category__list a:hover {
    border-bottom: 1px solid #b6b4b4;
}
.category-count {
    font-weight: normal;
}

/* footer  */
#footer {
    padding: 49px 0;
    position: relative;
    background-color: #2b2731;
    color: #918d91;
    font-family: "neue-geo-caps", sans-serif;
}
.footer__top {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer__color {
    height: 4px;
    width: 19%;
}
.footer__color:nth-of-type(1) {
    background-color: #ffec00;
    width: 12%;
}
.footer__color:nth-of-type(2) {
    background-color: #ff5600;
}
.footer__color:nth-of-type(3) {
    background-color: #7a1dff;
}
.footer__color:nth-of-type(4) {
    background-color: #21ba45;
}
.footer__color:nth-of-type(5) {
    background-color: #ffec00;
}
.footer__color:nth-of-type(6) {
    background-color: #7a1dff;
    width: 12%;
}

#footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer__col:first-of-type {
    width: 305px;
}

.footer__col .footer__brand {
    display: inline-block;
}
.footer__brand img {
    height: 36px;
    width: auto;
}

.footer__about-site {
    margin: 25px 0;
    font-size: 12px;
    font-weight: bold;
}

.footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer__col .footer__social a {
    width: 48.5%;
    padding: 8px 11px;
    border-radius: 9px;
    background-color: #413d46;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.footer__col .footer__social a svg {
    fill: #fff;
    margin-right: 10px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.footer__col .footer__social a:hover {
    background-color: var(--yellow);
    color: #413d46;
}
.footer__col .footer__social a:hover svg {
    fill: #413d46;
}

.footer__heading {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 25px;
}
.footer__col a {
    margin-top: 20px;
    display: block;
    font-size: 12px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.footer__col a:hover {
    color: var(--yellow);
}

.info-flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px !important;
    font-size: 14px;
}
.info-flexbox i {
    margin-right: 14px;
    background-color: #55525a;
    border-radius: 7px;
    width: 42px;
    height: 42px;
}
.info-flexbox svg {
    fill: #fff;
    max-height: 22px;
    max-width: 20px;
}

/* ------ catalogue.html   ----  */

/* section 1 - site-path-nav */
#site-path-nav {
    margin-top: 126px;
    margin-bottom: 15px;
}

.site-path-nav__links {
    color: #8a8a8a;
    font-size: 12px;
    font-family: "neue-geo-caps";
}
.site-path-nav__links a {
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.site-path-nav__links a:hover {
    color: var(--yellow);
}

/* section 2 - catalogue */
#catalogue {
    font-family: "neue-geo-caps";
    margin-bottom: 28px;
}
#catalogue .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.catalogue__filters {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    border-radius: 17px 0 0 17px;
    border: 1px solid #f8f8f8;
    background-color: #fff;
    width: 360px;
    padding: 20px 0 35px;
    color: #111;
}
.catalogue__filters-top {
    padding: 0 25px 0 20px;
}
.catalogue__filters-title {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: normal;
}
.catalogue__filters-selected {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* price range */
.range__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 25px;
}
.range-filter-btn {
    height: 44px;
    width: 46px;
    background-color: var(--yellow);
    color: #1a1a1a;
    border-radius: 8px;
    margin-top: 25px;
    font-size: 12px;
    font-weight: bold;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.range-filter-btn:hover {
    color: var(--yellow);
    background-color: #1a1a1a;
}

.range-block {
    width: 82%;
}
.price-range-meta {
    margin-bottom: 20px;
}
.price-range__title {
    font-size: 12px;
    margin-bottom: 10px;
}

.price-range-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.price-range-txt input {
    width: 48%;
    line-height: 44px;
    border: 1px solid #f2f2f2;
    border-radius: 8px;
    padding: 0 10px;
    color: #333;
}
/* end price range */

.catalogue__accordion {
    border-top: 1px solid #f8f8f8;
    padding: 20px 25px 15px 15px;
}
.catalogue__accordion-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}
.catalogue__accordion-tab.closed i img {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.catalogue__accordion-tab h2 {
    font-size: 12px;
    font-weight: normal;
}
.catalogue__accordion-tab i {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background-color: #f8f8f8;
}
.catalogue__accordion-tab i img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.catalogue__accordion-content {
    padding: 10px 0;
    max-height: 400px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    overflow: auto;
}
.catalogue__accordion-content.closed {
    max-height: 0;
    padding: 0;
}
.catalogue__accordion-content > * + * {
    margin-top: 9px;
}

/* custom checkbox*/
.checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 12px;
}
.checkbox input[type="checkbox"] {
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    outline: none;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background-color: #fff;
    cursor: pointer;
    margin-right: 5px;
}
.checkbox input:checked {
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
}
.checkbox > span {
    color: #34495e;
    padding: 0.5rem 3px;
}
.checkbox > input:checked + span::before {
    content: "\2713";
    display: block;
    text-align: center;
    color: #000;
    position: absolute;
    left: 5px;
    top: 2px;
    font-size: 12px;
    font-weight: bold;
}
/* end of custom checkbox*/

.clear-filters {
    background-color: #ffee002a;
    line-height: 46px;
    width: 146px;
    border-radius: 8px;
    color: #4d4e4e;
    font-size: 12px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px auto 0;
}
.clear-filters svg {
    fill: #4d4e4e;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    margin-right: 5px;
}
.clear-filters:hover {
    background-color: #4d4e4e;
    color: var(--yellow);
}
.clear-filters:hover svg {
    fill: var(--yellow);
}

/* catalogue - products grid  (modify card) */

.catalogue-right {
    width: calc(100% - 360px);
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.catalogue-search {
    width: 100%;
}
.catalogue__grid {
    background-color: #fff;
    border-radius: 0 17px 17px 17px;
    border: 1px solid #f8f8f8;
    overflow: hidden;
    width: 100%;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* modify card */
.catalogue__grid .card {
    border-right: 1px solid #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
}
.catalogue__grid .card .card__wrapper {
    min-height: 422px;
}
.catalogue__grid .card .installment {
    display: none;
}

.catalogue__pagination {
    margin: 26px auto 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.catalogue__pagination a {
    height: 43px;
    width: 43px;
    border: 1px solid #f1f1f1;
    border-radius: 9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    color: #4d4e4e;
    background-color: #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    margin: 0 3px;
}
.catalogue__pagination a.active,
.catalogue__pagination a:hover {
    background-color: var(--yellow);
    color: #0f0f0f;
}
.catalogue__pagination a:hover svg {
    fill: #0f0f0f;
}
.pagination-edge svg {
    height: 13px;
    fill: #a4a4a4;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

/* ------ product-details.html   ----  */

/* section 1   details*/
#details {
    margin-top: 15px;
    margin-bottom: 20px;
    font-family: "neue-geo-caps";
}

.details__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #fff;
    border: 1px solid #f8f8f8;
    border-radius: 17px;
    padding: 40px 35px 35px;
}

.details__preview {
    width: 340px;
}
.big-img-box {
    display: none;
    position: relative;
    height: 300px;
    border-radius: 7px;
    overflow: hidden;
    padding: 3px 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.big-img-box img {
    -o-object-fit: contain;
    object-fit: contain;
}
.big-img-box.shown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.big-img-box:hover .big-img-overlay {
    opacity: 1;
}
.big-img-overlay {
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 65, 53, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.big-img-overlay svg {
    fill: #fff;
    height: 30px;
    width: 30px;
}

.big-img-thumbs {
    margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.img-thumb {
    width: 22%;
    border: 1px solid #eeeeee;
    border-radius: 11px;
    overflow: hidden;
    height: 74px;
    padding: 4px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.img-thumb:hover,
.img-thumb.active {
    border: 1px solid var(--yellow);
}

.details__complete-info {
    width: calc(100% - 420px);
}

.complete-info__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.product-id {
    border: 1px solid #d9d9d9;
    color: #a19e9e;
    padding: 10px 15px;
    border-radius: 7px;
    margin-right: 12px;
    font-size: 11px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.product-sale-percent {
    margin-top: 5px;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 7px;
    background-color: #d72526;
    color: #fff;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

.share-product {
    margin-left: auto;
}
.share-product p {
    font-size: 11px;
    font-weight: bold;
    color: #111;
    margin-left: 10px;
    margin-bottom: 10px;
}
.share-social {
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #f5f5f5;
    border-radius: 14px;
    width: 140px;
}
.share-social a {
    width: 29%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    height: 34px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.share-social a:nth-of-type(1) {
    background-color: #3552b2;
    height: 29px;
}
.share-social a:nth-of-type(2) {
    background-color: #298cff;
}
.share-social a:nth-of-type(3) {
    background-color: #fff;
}
.share-social a:hover {
    -webkit-box-shadow: 0px 5px 8px rgba(17, 17, 17, 0.3);
    box-shadow: 0px 5px 8px rgba(17, 17, 17, 0.3);
}

.details__title {
    font-size: 22px;
    font-weight: bold;
    color: #404040;
    margin-top: 5px;
}
.prices-actions {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.price-col {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 2px dashed #e6e6e6;
}
.current-price {
    font-size: 22px;
    font-weight: bold;
    color: #404040;
}
.price-col .old-price {
    color: #d72526;
    font-size: 15px;
    text-decoration: line-through;
    margin-top: 5px;
}
.details__add-to-cart,
.buy-item {
    color: #4d4e4e;
    border: 1px solid transparent;
    border-radius: 20px;
    line-height: 38px;
    padding: 0 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
    font-size: 11px;
    background-color: var(--yellow);
    margin-bottom: 7px;
}
.details__add-to-cart {
    margin-right: 12px;
    justify-content: center;
}
.details__add-to-cart svg {
    margin-right: 10px;
    fill: #4d4e4e;
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
}
.details__add-to-cart:hover,
.buy-item:hover {
    background-color: #fff;
    border: 1px solid var(--yellow);
    color: var(--yellow);
}
.details__add-to-cart:hover svg {
    fill: var(--yellow);
}

.details-divider {
    background-color: #e3e3e3;
    height: 1px;
    max-width: 630px;
    margin: 28px 0;
}

.description-title {
    font-size: 15px;
    font-weight: bold;
    color: #1f1f1f;
}

.details-description {
    font-size: 12px;
    color: #404040;
    margin-top: 16px;
    line-height: 16px;
}

.details__addidational-info {
    width: 100%;
    margin-top: 35px;
}
.addidational-info__title {
    color: #2b2731;
    font-size: 15px;
    font-weight: bold;
    border-bottom: 2px solid var(--yellow);
    display: inline-block;
    padding-bottom: 7px;
}
.addidational-info__list {
    margin-top: 25px;
}
.addidational-info__list li {
    width: 100%;
    padding: 0 22px;
    height: 32px;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #2b2731;
    font-size: 12px;
}
.addidational-info__list li:nth-of-type(even) {
    background-color: #f6f6f6;
}
.addidational-info__list li span:first-of-type {
    min-width: 300px;
}

/*  section 2  - similar item cards   - */
#similar-products {
    margin-bottom: 35px;
}
#similar-products .cards-block {
    overflow: hidden;
}
.similar-products-cards {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

/* modify card  */
.similar-products-cards .card .card-img {
    height: 180px;
}
.similar-products-cards .card .card__wrapper {
    min-height: 425px;
}
.similar-products-cards .card .card__info {
    margin-bottom: 10px;
}

/* img preview  modal*/
.picture-modal.visible {
    visibility: visible;
    opacity: 1;
}
.picture-modal {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 24, 24, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 200;
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
}
.picture-modal .s-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 4px;

    font-weight: bold;
    cursor: pointer;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--yellow);
    background-color: #fff;
}
.picture-modal .s-btn svg {
    margin: auto;
    width: 10px;
}
.picture-modal .s-btn.btn-left {
    left: -15px;
}
.picture-modal .s-btn.btn-right {
    right: -15px;
}
.background_modal {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.modal-img-content {
    max-width: 90%;
    max-height: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    background: #fff;

    z-index: 1000;
}

.close-img-modal {
    position: absolute;
    top: -15px;
    right: -15px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--yellow);
    background-color: #333;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.close-img-modal img {
    display: block;
    border-radius: 10px;
}
.close-img-modal:hover {
    background-color: var(--yellow);
}
#modal-img {
    background-color: #fff;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    min-width: 300px;
    border-radius: 8px;
    border: 1px solid var(--yellow);
}
/* end of img modal*/

/* -------     cart.html   ----  */

/* section 1 -  purchase  progres */
#purchase-progress {
    margin-top: 130px;
    font-family: "neue-geo-caps";
}
.purchase-progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    /* max-width: 1200px;
    margin: 0 auto; */
    font-size: 14px;
    padding-bottom: 14px;
}
.purchase-progress-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #99a8b4;
}
.purchase-progress__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.purchase-progress__step.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 1440px;
    height: 3px;
    background-color: #505b74;
    z-index: 5;
}
.purchase-progress__step button {
    width: 32px;
    height: 32px;
    background-color: #99a8b4;
    border-radius: 50%;
    color: #fff;
    font-family: "fire-regular";
    font-size: 13px;
}
.purchase-progress__step.active button {
    background-color: #505b74;
}
.purchase-progress__step p {
    font-size: 13px;
    color: #99a8b4;
    margin: 8px 0 0 10px;
}
.purchase-progress__step.active p {
    color: #505b74;
}

/* section 2 -  cart */
#cart {
    margin: 20px 0 40px;
    font-family: "neue-geo-caps";
    color: #413f3f;
}
#cart .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cart__list {
    border-radius: 17px;
    border: 1px solid #f8f8f8;
    background-color: #fff;
    padding: 15px 15px 35px;
    width: calc(100% - 365px);
}
.cart-scrollable {
    overflow-y: auto;
}
.cart-scrollable::-webkit-scrollbar-track {
    background-color: yellow;
}
.cart-empty {
    margin: 15px 0;
}
.cart__list-header {
    background-color: #f5f5f5;
    border-radius: 17px 17px 0 0;
    padding: 16px 75px 16px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    min-width: 600px;
}
.cart__list-col {
    font-size: 12px;
}
.cart__list-col:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 280px;
    padding-right: 5px;
}

/* cart card */
.cart__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #f5f5f5;
    padding-right: 70px;

    min-width: 600px;
}
.cart__card:hover {
    border-bottom: 1px solid var(--yellow);
}
.cart__card-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cart__card-check {
    width: 56px;
    height: 84px;
    border-right: 1px solid #f5f5f5;
    margin-right: 12px;
    padding-left: 14px;
}
.cart__card-img-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cart__card-img-name:hover .cart__card-img {
    border: 1px solid var(--yellow);
}
.cart__card-img {
    padding: 12px;
    width: 65px;
    height: 65px;
    border-radius: 10px;
    border: 1px solid #f5f5f5;
    margin-right: 16px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.cart__card-name {
    width: 154px;

    font-size: 12px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* + QTY -*/
.plus-minus-box {
    padding: 0 5px;
    height: 30px;
    width: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 16px;
    border: 1px solid #f5f5f5;
    font-size: 12px;
    color: #413f3f;
}
.plus-minus-box input {
    color: #413f3f;
    text-align: center;
    border: none;
}
.plus-minus-box button {
    width: 20px;
    font-weight: bold;
    font-size: 17px;
}

.cart__card-col span {
    font-size: 12px;
    font-weight: bold;
}

/* end of cart card */

.clear-cart-btn {
    display: block;
    width: 190px;
    line-height: 44px;
    border-radius: 8px;
    margin-top: 18px;
    background-color: #6880932f;
    color: #4d4e4e;
    font-size: 12px;
    font-weight: bold;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.clear-cart-btn:hover {
    background-color: var(--yellow);
}

.cart__aside {
    width: 345px;
    background-color: #fff;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 18px;
    border-radius: 17px;
}
.cart__aside-title {
    font-size: 12px;
    font-weight: bold;
    color: #0a3251;
    margin-bottom: 10px;
}
.cart__aside-li {
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #688093;
    font-size: 12px;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 10px;
}

.cart__continue-link {
    margin-top: 15px;
    display: block;
    width: 100%;
    line-height: 44px;
    font-size: 12px;
    font-weight: bold;
    background-color: #0a3251;
    text-align: center;
    color: #fff;
    border-radius: 9px;
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
}
.cart__continue-link:hover {
    background-color: var(--yellow);
    color: #0a3251;
}

/* ------ cart-step-2.html   ----  */

/* section 1 - cart steps  progress */

/* section 2 - cart-steps-section ( same for step 2 3 4) */
#cart-steps-section {
    margin: 32px 0 42px;
    font-family: "neue-geo-caps";
}
#cart-steps-section .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#cart-steps-section .check_box {
    margin: 40px 0;
}
#cart-steps-section .check_box input {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 0;
}
#cart-steps-section .methodBtn {
    background: #093150;
    border-radius: 8px;
    margin-right: 13px;
    margin-bottom: 13px;
    color: white;
    display: inline-block;
    height: 45px;
    width: auto;
    padding: 0 40px;
}
#cart-steps-section .methodBtn img {
    display: inline-block;
    width: 16px;
    vertical-align: middle;
    margin-right: 10px;
}
@media screen and (max-width: 500px) {
    #cart-steps-section .methodBtn {
        margin-right: 7px;
        margin-bottom: 7px;
        padding: 0px 24px;
        font-size: 12px;
    }
}

.cart-step-two__form {
    padding: 32px 35px;
    background-color: #fff;
    border-radius: 17px;
    width: calc(100% - 365px);
    border: 1px solid #f8f8f8;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

.cart-step-two__form-inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.cart-step-two__form .cart-step-two__form-inputs input {
    width: 100%;
}
.cart-step-two__form .inp_area {
    margin-bottom: 7px;
}
.cart-step-two__form .inp_area span {
    color: rgb(209, 15, 15);
}
.cart-step-two__form input,
.cart-step-two__form textarea {
    display: block;
    width: 100%;
    margin-bottom: 3px;
    border-radius: 8px;
    border: 1px solid;
    font-size: 13px;
    color: #0a3251;
    font-family: inherit;
    border: 1px solid #eeeeee;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.cart-step-two__form input::-webkit-input-placeholder,
.cart-step-two__form textarea::-webkit-input-placeholder {
    color: #a2a2a2;
}
.cart-step-two__form input::-moz-placeholder,
.cart-step-two__form textarea::-moz-placeholder {
    color: #a2a2a2;
}
.cart-step-two__form input:-ms-input-placeholder,
.cart-step-two__form textarea:-ms-input-placeholder {
    color: #a2a2a2;
}
.cart-step-two__form input::-ms-input-placeholder,
.cart-step-two__form textarea::-ms-input-placeholder {
    color: #a2a2a2;
}
.cart-step-two__form input::placeholder,
.cart-step-two__form textarea::placeholder {
    color: #a2a2a2;
}
.cart-step-two__form input:focus,
.cart-step-two__form textarea:focus {
    border: 1px solid #0a3251;
}
.cart-step-two__form input {
    line-height: 58px;
    padding: 0 13px;
}
.cart-step-two__form input:focus:valid,
.cart-step-two__form textarea:focus:valid {
    border: 1px solid green;
}
.cart-step-two__form textarea {
    padding: 22px 13px;
    height: 150px;
}

.step-two-continue {
    display: block;
    margin: 25px 0 0 auto;
    line-height: 56px;
    width: 190px;
    border-radius: 9px;
    color: #fff;
    background-color: #0a3251;
    font-size: 13px;
    font-weight: bold;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    text-align: center;
}
.step-two-continue:hover {
    background-color: var(--yellow);
    color: #0a3251;
}

/*  steps - cart-item-aside  (for step 2 3 4) */
.cart-item-aside {
    width: 345px;
    background-color: #fff;
    padding: 20px;
    border-radius: 17px;
    border: 1px solid #f8f8f8;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.cart-item-aside__title {
    color: #0a3251;
    font-size: 12px;
    font-weight: bold;
}
.aside-card {
    color: #505b74;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.aside-card:hover {
    border-bottom: 1px solid var(--yellow);
}
.aside-card__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.aside-card__link:hover .aside-card__img {
    border: 1px solid var(--yellow);
}
.aside-card__img {
    width: 63px;
    height: 63px;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    padding: 8px;
}
.aside-card__name {
    margin-left: 10px;
    width: 105px;
    font-size: 13px;
    font-weight: normal;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.aside-card__right {
    height: 57px;
    border-left: 1px solid #f5f5f5;
    padding-left: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.aside-card__price {
    font-size: 13px;
}

.cart-item-aside__costs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.cart-item-aside__costs.my {
    margin: 18px 0 12px;
}
.cart-item-aside__costs p {
    font-size: 12px;
    color: #688093;
}
.cart-item-aside__costs span {
    font-size: 12px;
    font-weight: bold;
    color: #505b74;
    width: 75px;
    text-align: right;
}
.cart-item-aside__costs .total-cost {
    font-size: 14px;
}

/* ------ cart-step-3.html   ----  */

/* section 1 - cart steps  progress */

/* section 2 -  cart steps section  */
.delivery-payment-methods {
    width: calc(100% - 365px);
    background-color: #fff;
    border-radius: 17px;
    border: 1px solid #f8f8f8;
    padding: 22px 35px 50px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

.last-steps__title {
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
    color: #505b74;
    font-size: 15px;
    margin-bottom: 18px;
}
.last-steps__sub-title {
    margin-bottom: 12px;
    color: #505b74;
    font-size: 12px;
    font-weight: 500;
}

.delivery-warning {
    background-color: #f8f8f8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 62px;
    border-radius: 11px;
    padding: 5px 16px;
    margin-bottom: 24px;
}
.delivery-warning span {
    margin-right: 16px;
}
.delivery-warning p {
    color: #688093;
    font-size: 11px;
}
.delivery-warning p:first-of-type {
    margin-bottom: 10px;
}

/* radios */
.purchase-radio-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.purchase-radio-wrap > * + * {
    margin-left: 15px;
}
.purchase-radio {
    position: relative;
    width: 115px;
    height: 105px;
    border-radius: 9px;
    background-color: #f8f8f8;
    overflow: hidden;
}
.purchase-radio input {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.purchase-radio__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px;
    color: #505b74;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.purchase-radio__overlay svg {
    fill: #505b74;
    margin-bottom: 14px;
}
.purchase-radio__overlay span {
    max-width: 85px;
    text-align: center;
    font-size: 12px;
}
.purchase-radio input:checked + .purchase-radio__overlay {
    background-color: #505b74;
    color: #fff;
}
.purchase-radio input:checked + .purchase-radio__overlay svg {
    fill: #fff;
}

.delivery-location {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    width: 314px;
    padding: 5px;
}
.delivery-location input {
    width: 86%;
    font-size: 12px;
    color: #505b74;
    border: none;
    padding: 0 5px;
}
.delivery-location span {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background-color: #f8f8f8;
}
.delivery-location span svg {
    fill: #505b74;
    height: 15px;
}

.last-steps-continue {
    margin-top: 20px;
    background-color: #505b74;
    display: block;
    line-height: 42px;
    width: 135px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.last-steps-continue:hover {
    background-color: var(--yellow);
    color: #505b74;
}

/* ------ cart-step-4.html   ----  */

/* section 1 - cart step progress */

/* section 2 - cart steps section */
.card-payment {
    margin-top: 25px;
    color: #505b74;
}
.bank-payment__title {
    font-size: 12px;
    margin-bottom: 20px;
}

.bank-payment-radios {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.bank-payment-radios > * + * {
    margin-left: 10px;
}
/*  bank radios */
.bank-payment-radio {
    border-radius: 8px;
    border: 1px solid #505b74;
    line-height: 48px;
    padding: 0 20px 0 14px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bank-payment-radio__content {
    font-size: 12px;
    font-weight: bold;
    color: #505b74;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bank-payment-radio__content img {
    margin-right: 10px;
    min-width: 30px;
}
.bank-payment-radio input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.bank-payment-radio__sign {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #505b74;
    color: #fff;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 7px;
    padding-bottom: 1px;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.bank-payment-radio input:checked + .bank-payment-radio__sign {
    opacity: 1;
}
/* end of  bank radios*/

/* installment-payment bank choose*/
.installment-payment {
    margin-top: 0;
    color: #505b74;
}

#payment-form .last-steps-continue {
    background-color: #093150;
    width: 184px;
    border-radius: 8px;
}

.installment__warning {
    font-size: 12px;
    color: red;
    margin-bottom: 15px;
}
.bank-payment__full-img {
    width: 130px;
}
.bank-payment-radio__content svg {
    margin-right: 5px;
    width: 60px;
}

/* installment form */
.volta-installment-form {
    border-radius: 10px;
    border: 1px solid;
    border: 1px solid #ebeaea;
    padding: 15px;
    margin-top: 0;
}
.volta-installment-form input::placeholder {
    font-style: italic;
}
.volta-installment__title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 20px;
}
.volta-installment__sub-title {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: bold;
}

.volta-installment__flex-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.volta-installment__flex-3 > * {
    width: 32%;
}
.volta-installment__input {
    padding-left: 10px;
}
.volta-installment__input label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
}
.volta-installment__input input,
.volta-installment__input select {
    display: block;
    width: 100%;
    padding: 0 8px;
    line-height: 36px;
    border-radius: 8px;
    border: 1px solid #bebebe;
    font-size: 12px;
}
.volta-installment__input select {
    outline: none;
    height: 36px;
    font-family: inherit;
}
.volta-installment__input input:focus {
    border: 1px solid #0a3251;
}

.volta-installment__flex-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.volta-installment__flex-2 > * {
    width: 49%;
}
.volta-installment__flex-2 .volta-installment__input {
    margin-bottom: 20px;
}

.pls-fill-all {
    color: red;
    font-size: 12px;
    padding-left: 10px;
}

/* end of installment form */

/* ------ payment-infos.html   ----  */

/* section 1 - payment-info */
#payment-info {
    margin-top: 120px;
    margin-bottom: 60px;
    font-family: "neue-geo-caps";
    text-align: center;
    color: #111;
}

.volta-multypage-heading {
    font-size: 22px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}
.volta-multypage-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 135px;
    height: 2px;
    background-color: var(--yellow);
}

.payment-info__subheading {
    margin-top: 15px;
}

.payment-info__methods {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 65px 0 45px;
}
.payment-info__method {
    max-width: 285px;
    width: 16%;
}
.payment-info__method:last-of-type {
    width: 285px;
}
.payment-info__m-i img {
    margin: 0 auto;
    max-height: 142px;
}
.payment-info__m-name {
    font-size: 14px;
    font-weight: bold;
    margin: 12px 0 10px;
}
.payment-info__m-p {
    font-size: 12px;
}

.partner-banks-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 50px 0 55px;
}
.partner-banks__col {
    color: #313131;
}
.partner-banks__img.tbc {
    background-color: #00a5e1;
}
.partner-banks__img.credo {
    background-color: #fc671a;
}
.partner-banks__img.bog {
    background-color: #ff3d26;
}

.partner-banks__img {
    height: 185px;
    width: 185px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.partner-banks__name {
    margin-top: 22px;
    font-size: 16px;
    font-weight: bold;
}

.bank-acc-accordion {
    border: 1px solid #cecece;
    background-color: #ececec;
    border-radius: 14px;
    padding: 20px 30px;
    margin: 20px 0;
}
.bank-acc-accordion__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    color: #636363;
}
.bank-acc-accordion__btn svg {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.bank-acc-accordion__btn.open {
    color: #111;
}
.bank-acc-accordion__btn.open svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.bank-acc-accordion__content {
    text-align: left;
    color: #5a5a5a;
    font-size: 12px;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.bank-acc-accordion__content.open {
    max-height: 100px;
    padding: 20px 0;
}

/* ------ about-us.html   ----  */

/* section 1 -  */
#about-us {
    margin-top: 130px;
    margin-bottom: 100px;
    text-align: center;
    font-family: "neue-geo-caps";
}
.about-us__text {
    text-align: left;
    margin-top: 38px;
}

.about-us__text p {
    font-size: 13px;
    line-height: 26px;
    font-weight: bold;
    color: #2b2731;
    max-width: 1200px;
}

/* --------- privacy-policy.html   ---------  */

/* section 1 -    */
#privacy-policy {
    margin: 130px 0 80px;
    text-align: center;
    font-family: "neue-geo-caps";
}

.privacy-policy__wrapper {
    margin-top: 35px;
    text-align: left;
}
.privacy-policy__wrapper p {
    font-size: 14px;
    margin-bottom: 25px;
    color: #2b2731;
    line-height: 22px;
}
.privacy-policy__wrapper p.bold {
    font-weight: bold;
}
.privacy-policy__wrapper p.darker {
    color: #18151d;
}
.privacy-policy__wrapper p.center {
    text-align: center;
    margin: 35px 0;
    color: #18151d;
}
.privacy-policy__wrapper ul {
    list-style: disc;
    padding-left: 15px;
    margin-bottom: 15px;
}
.privacy-policy__wrapper ul li {
    font-size: 12px;
    color: #2b2731;
    margin: 3px 0;
}
.privacy-policy__wrapper .bold-li {
    color: #09070a;
    font-weight: bold;
}
.privacy-policy__wrapper .pl {
    margin-left: 20px;
}
.privacy-policy__wrapper .pll {
    margin-left: 40px;
}

/* ------ warranty.html   ----  */

/* section 1 -  */
#warranty {
    margin: 130px 0 80px;
    text-align: center;
    font-family: "neue-geo-caps";
}
.warranty__wrapper {
    margin-top: 30px;
    text-align: left;
}

.warranty__wrapper p {
    font-size: 14px;
    color: #2b2731;
    margin-bottom: 20px;
}
.warranty__wrapper p.bold {
    font-weight: bold;
}

.warranty__wrapper ul {
    margin-bottom: 20px;
    list-style: disc;
    font-size: 13px;
    padding-left: 15px;
}
.warranty__wrapper ul li {
    margin-left: 20px;
    padding: 2px 0;
}

/* ------ delivery-info.html   ----  */

/* section 1 -  */
#delivery-info {
    margin: 130px 0 180px;
    text-align: center;
    font-family: "neue-geo-caps";
}

.delivery-info__text {
    text-align: left;
    margin-top: 35px;
}
.delivery-info__text p {
    font-size: 14px;
    color: #2b2731;
    line-height: 30px;
    margin-bottom: 15px;
}

/* ------ contact-us.html   ----  */

/* section 1 -  */
#contact-us {
    margin: 130px 0 60px;
    text-align: center;
    font-family: "neue-geo-caps";
}

.contact-us__wrapper {
    margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: left;
}

.contact-us__left {
    width: 46%;
}
.contact-us__left h2 {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 10px;
    position: relative;
}
.contact-us__left h2::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 150px;
    height: 2px;
    background-color: var(--yellow);
}
.contact-us__left-p {
    margin-bottom: 30px;
    font-size: 12px;
    line-height: 21px;
}
.contact-info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 22px;
    font-size: 12px;
    max-width: 310px;
}

.contact-info-box i {
    width: 47px;
    height: 47px;
    border-radius: 11px;
    background-color: var(--yellow);
    margin-right: 10px;
}
.contact-info-box i svg {
    fill: #111;
    max-height: 25px;
    max-width: 20px;
}

.contact-us__form {
    width: 50%;
    padding-top: 35px;
}
.contact-us__form input,
.contact-us__form textarea {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    border: none;
    border-bottom: 1px solid #a6adbc;
    font-size: 12px;
    font-family: inherit;
    color: #060606;
    background-color: transparent;
}
.contact-us__form input::-webkit-input-placeholder,
.contact-us__form textarea::-webkit-input-placeholder {
    color: #a6adbc;
}
.contact-us__form input::-moz-placeholder,
.contact-us__form textarea::-moz-placeholder {
    color: #a6adbc;
}
.contact-us__form input:-ms-input-placeholder,
.contact-us__form textarea:-ms-input-placeholder {
    color: #a6adbc;
}
.contact-us__form input::-ms-input-placeholder,
.contact-us__form textarea::-ms-input-placeholder {
    color: #a6adbc;
}
.contact-us__form input::placeholder,
.contact-us__form textarea::placeholder {
    color: #a6adbc;
}
.contact-us__form input:focus,
.contact-us__form textarea:focus {
    border-bottom: 1px solid #060606;
}
.contact-us__form input:focus:valid,
.contact-us__form textarea:focus:valid {
    border-bottom: 1px solid green;
}
.contact-us__form input {
    line-height: 30px;
    padding: 0 6px;
}
.contact-us__form textarea {
    padding: 6px;
    height: 170px;
}

.contact-form-submit {
    display: block;
    width: 158px;
    margin: 30px 0 0 auto;
    line-height: 46px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
    background-color: var(--yellow);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.contact-form-submit:hover {
    -webkit-box-shadow: 0 3px 9px #a6adbc94;
    box-shadow: 0 3px 9px #a6adbc94;
}

/* ------ .html   ----  */

/* section 1 -  */

/* section 2 -  */

/* section 3 -  */

/*  ||||||||||||||||||||||| Responsive |||||||||||||||||||||||  */

/* Header */
@media only screen and (max-width: 1140px) {
    .sub-menu {
        min-width: unset;
        width: calc(100% - 290px);
    }
}
@media only screen and (max-width: 1025px) {
    .sub-menu {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    .navbar .container {
        height: 62px;
        padding-bottom: 0;
    }
    .navbar-brand img {
        height: 32px;
    }
    .navigation-wrapper {
        left: 0;
    }
    .toggle-search-form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .navbar-search {
        position: absolute;
        top: 102px;
        left: 0;
        margin: 0;
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid var(--yellow);
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
    }
    .navbar-search.shown {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }
}

/* Footer  */
@media only screen and (max-width: 1020px) {
    .footer__heading {
        margin-top: 0;
    }
    .footer__col,
    .footer__col:first-of-type {
        width: 45%;
        margin-bottom: 40px;
    }
}
@media only screen and (max-width: 750px) {
    #footer {
        padding: 30px 0 10px;
    }
    .footer__col,
    .footer__col:first-of-type {
        width: 360px;
        margin: 0 auto 40px;
    }
}

/* ------ index.html   ----  */

/* section 1 -  */
@media only screen and (max-width: 1400px) {
    .hero-slide {
        height: 320px;
    }
}
@media only screen and (max-width: 670px) {
    #hero {
        margin-top: 105px;
    }
    .hero-slide {
        height: 220px;
    }
}

/* section 2 -  */
@media only screen and (max-width: 1200px) {
    .category-links__grid {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media only screen and (max-width: 670px) {
    .category-links__grid {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 470px) {
    .category-links__grid {
        display: block;
    }
    .category-links__grid > * + * {
        margin-top: 12px;
    }
    .category-links__grid a {
        height: 54px;
    }
}

/* section 3  - new product slider (for section 5 6 sliders too */

@media only screen and (max-width: 750px) {
    .cards-block__header {
        height: auto;
        padding: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cards-block__header h2 {
        width: 100%;
        margin-bottom: 15px;
    }
    .cards-block__tabs {
        width: 100%;
    }
    .cards-block__tabs > * + * {
        margin-top: 10px;
    }
    .cards-block__tabs button {
        width: 100%;
        margin-left: 0;
    }
    .card-add-btn {
        width: 90%;
    }
}

/* section 4 -  */
@media only screen and (max-width: 400px) {
    .main-banner__wrapper,
    .secondary-banner__wrapper {
        /* height: 88px; */
    }
}

/* section 7 -  */
@media only screen and (max-width: 900px) {
    .product-brands__wrapper {
        padding: 0 10px;
    }
    .product-brands__wrapper a {
        padding: 0 10px;
        height: 90px;
    }
}
@media only screen and (max-width: 600px) {
    .product-brands__wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 5px;
    }
    .product-brands__wrapper a {
        width: 33%;
        height: 60px;
    }
}

/* section 9 -  */
@media only screen and (max-width: 1200px) {
    .more-products__offers-small a {
        width: 45%;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 1000px) {
    .more-products__offer,
    .more-products__category {
        width: 100%;
    }
    .more-products__category {
        margin-top: 20px;
    }
    .more-products__offers-small a {
        width: 25%;
    }
}
@media only screen and (max-width: 700px) {
    .more-products__offers-small a {
        width: 50%;
    }
}
@media only screen and (max-width: 470px) {
    .more-products__offers-small a {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .more-products__offers-small a i {
        margin-right: 80px;
    }
    .small-offer-info {
        width: 50%;
    }

    .additational-category__img {
        border-bottom: 1px solid #cfcfcf;
        padding: 10px 0;
    }
    .additational-category__img,
    .additational-category__list {
        width: 100%;
        border-left: none;
    }
}

/* ------ catalogue.html   ----  */

/* section 1 -  */
@media only screen and (max-width: 700px) {
    .site-path-nav__links a {
        line-height: 22px;
    }
}

/* section 2 -  */
@media only screen and (max-width: 1300px) {
    .catalogue__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 1100px) {
    .catalogue__grid {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 900px) {
    .catalogue__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}
@media only screen and (max-width: 750px) {
    .catalogue__filters,
    .catalogue-right {
        width: 100%;
    }
    .catalogue__filters {
        margin-bottom: 25px;
        border-radius: 17px;
    }
    .catalogue__grid {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        border-radius: 17px;
    }
}

@media only screen and (max-width: 550px) {
    .catalogue__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

/* ------ product-details.html   ----  */

/* section 1 -  */
@media only screen and (max-width: 950px) {
    .details__complete-info {
        width: 100%;
        margin-top: 30px;
    }
    .details__preview {
        width: 500px;
    }
}
@media only screen and (max-width: 700px) {
    .details__preview {
        width: 100%;
    }
    .big-img-box {
        height: 260px;
    }
    .big-img-box img {
        max-height: 100%;
    }
    .big-img-thumbs {
        margin-top: 25px;
    }
    .details__wrapper {
        padding: 15px 10px;
    }
}
@media only screen and (max-width: 650px) {
    .details__title {
        margin-top: 20px;
        font-size: 20px;
    }
    .price-col {
        width: 100%;
        margin: 0 0 15px;
        border: none;
    }

    .addidational-info__list li {
        padding: 10px;
        height: auto;
    }
    .addidational-info__list li span:first-of-type {
        min-width: 180px;
        padding-right: 5px;
    }
}

/* section 2 -  */
@media only screen and (max-width: 1250px) {
    .similar-products-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    #similar-products .card {
        border-bottom: 1px solid #e5e5e5;
    }
}
@media only screen and (max-width: 1000px) {
    .similar-products-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 750px) {
    .similar-products-cards {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 550px) {
    .similar-products-cards {
        display: block;
    }
}

/* ------ cart.html   ----  */

/* section 1 - cart progress ( for cart steps 1 2 3 4) */
@media only screen and (max-width: 900px) {
    .purchase-progress__step p {
        font-size: 12px;
        margin: 8px 0 0 6px;
    }
}
@media only screen and (max-width: 720px) {
    .purchase-progress-bar {
        height: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .purchase-progress-bar::after {
        display: none;
    }
    .purchase-progress__step {
        margin-bottom: 10px;
    }
    .purchase-progress__step.active::after {
        right: 0;
        width: 6px;
        height: 100%;
        background-color: #505b74;
    }
}

/* section 2 -  */
@media only screen and (max-width: 1100px) {
    .cart__list-header {
        padding: 16px 30px 16px 20px;
    }
    .cart__card {
        padding-right: 25px;
    }
}
@media only screen and (max-width: 1100px) {
    .cart__list,
    .cart__aside {
        width: 100%;
    }
    .cart__list {
        margin-bottom: 20px;
    }
}

/* ------ cart-step-2.html   ----  */

/* section 1 -  */

/* section 2 -  */
@media only screen and (max-width: 1000px) {
    .cart-step-two__form,
    .cart-item-aside {
        width: 100%;
        border: 1px solid #f5f5f5;
    }
    .cart-step-two__form {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding: 20px;
    }
    .cart-item-aside {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 20px;
    }
    .aside-card__name {
        width: 200px;
    }
}
@media only screen and (max-width: 550px) {
    .cart-step-two__form .cart-step-two__form-inputs {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .cart-step-two__form .cart-step-two__form-inputs input {
        width: 100%;
    }
    .cart-step-two__form input {
        line-height: 40px;
    }
    .step-two-continue {
        width: 100%;
        line-height: 48px;
    }

    .aside-card__name {
        width: 105px;
    }
    .aside-card__right {
        padding-left: 10px;
    }
}

/* ------ cart-step-3.html   ----  */

/* section 1 -  */

/* section 2 -  */
@media only screen and (max-width: 1000px) {
    .delivery-payment-methods {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
        border: 1px solid #f5f5f5;
    }
}

@media only screen and (max-width: 750px) {
    .delivery-payment-methods {
        padding: 20px;
    }
}
@media only screen and (max-width: 600px) {
    .delivery-warning {
        height: auto;
        padding: 15px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .delivery-warning span {
        min-width: 23px;
        width: 100%;
        margin-bottom: 10px;
    }
    .delivery-warning p {
        line-height: 20px;
    }
    .delivery-location {
        width: 100%;
    }

    .purchase-radio-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .purchase-radio-wrap > * + * {
        margin: 0;
    }
    .purchase-radio {
        width: 48%;
        margin-bottom: 10px;
    }

    .last-steps-continue {
        width: 100%;
    }
}

/* ------ cart-step-4.html   ----  */

/* section 1 -  */

/* section 2 -  */
@media only screen and (max-width: 1100px) {
    .bank-payment-radios > * + * {
        margin: 0;
    }
    .bank-payment-radio {
        min-height: 50px;
        margin-bottom: 10px;
        margin-right: 10px;
    }
}
@media only screen and (max-width: 800px) {
    .volta-installment__flex-3 > * {
        width: 49%;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 600px) {
    .volta-installment__flex-3 > *,
    .volta-installment__flex-2 > * {
        width: 100%;
        padding-left: 0;
    }
}
@media only screen and (max-width: 500px) {
    .bank-payment-radio {
        width: 100%;
        margin-right: 0px;
    }
}

/* ------ payment-infos.html   ----  */

/* section 1 -  */
@media only screen and (max-width: 1200px) {
    #payment-info {
        margin-top: 130px;
    }
    .payment-info__methods {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .payment-info__method:last-of-type,
    .payment-info__method {
        width: 28%;
        max-width: unset;
        margin: 0 20px 30px;
    }
}
@media only screen and (max-width: 850px) {
    .payment-info__methods {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .payment-info__method:last-of-type,
    .payment-info__method {
        width: 40%;
        margin: 0 30px 30px;
    }
}
@media only screen and (max-width: 650px) {
    .payment-info__method:last-of-type,
    .payment-info__method {
        width: 100%;
        margin: 0 30px 30px;
    }

    .partner-banks-wrap {
        margin-top: 30px;
    }
    .partner-banks__col {
        width: 100%;
        margin-bottom: 20px;
    }
    .partner-banks__img {
        height: 145px;
        width: 145px;
        margin: 0 auto;
    }

    .bank-acc-accordion__content.open {
        max-height: 200px;
    }
}

/* ------ delivery-infos.html   ----  */

/* section 1 -  */
@media only screen and (max-width: 800px) {
    #delivery-info {
        margin: 130px 0 60px;
    }
}

/* ------ contact-us.html   ----  */

/* section 1 -  */
@media only screen and (max-width: 980px) {
    .contact-us__left,
    .contact-us__form {
        width: 100%;
    }
    .contact-us__form {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        padding-top: 0;
    }
    .contact-us__left {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 550px) {
    .contact-form-submit {
        width: 100%;
    }
}

.error-message {
    color: #ff000096;
}

.cataloguesort {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.cataloguesort-by {
    border: 1px solid #f8f8f8;
    border-radius: 10px;
    height: 38px;
    color: #6e6e6e;
    padding: 5px 25px 5px 15px;
    min-width: 170px;
    font-family: inherit;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.01);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    background-image: url(../img/icons/chevron-down.svg);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 13px);
    background-position-y: 50%;
    background-size: 10px;
    cursor: pointer;
}
@media (max-width: 420px) {
    .cataloguesort-by {
        width: 100%;
    }
}
.cataloguesort-by:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.03);
}
.catalogue__sort-by option:checked {
    background-color: var(--yellow);
    color: #333;
}

.error-message,
.error-message:focus {
    border: 1px solid red !important;
}

/* ------.html   ----  */

/* section 1 -  */

/* section 2 -  */

css------------------
* ------ sucess.html   ----  */

/* section 1 -  */
#success-fail {
    margin: 200px 0 100px;
}

.success-fail__wrapper {
    max-width: 445px;
    margin: 0 auto;
    text-align: center;
    font-family: "neue-geo-caps";
}

.success-fail__img {
    display: block;
    margin: 0 auto 40px;
    width: 246px;
}
.success-fail__heading {
    color: #2fb507;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}
.success-fail__p {
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 18px;
}
.success-fail__link {
    display: block;
    margin: 0 auto;
    width: 146px;
    line-height: 38px;
    border-radius: 8px;
    font-size: 12px;
    color: #4a4a4a;
    background-color: var(--yellow);
    transition: 0.6s;
}
.success-fail__link:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

@media (max-width: 700px) {
    .success-fail__img {
        width: 226px;
    }
}
#success-fail {
    margin: 150px 0 100px;
}

/* ------ failure.html   ----  */

/* section 1 -  */
.fail .success-fail__heading {
    color: #b71010;
}

.fail .success-fail__link {
    background-color: #b71010;
    color: #fff;
}
.fail .success-fail__link:hover {
    box-shadow: 0 2px 10px rgba(175, 17, 17, 0.55);
}

/* new volta styles */

.floating_installment {
    position: fixed;
    right: 98px;
    bottom: 12px;
    background: #ffc300;
    width: fit-content;
    border-radius: 10px;
    color: #fff;
    padding: 15px 24px;
    font-size: 18px;
    box-shadow: 0 3px 15px #00000027;
    z-index: 100000;
}
.floating_installment img {
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px;
}
@media screen and (max-width: 800px) {
    .floating_installment {
        right: 16px;
    }
}
@media screen and (max-width: 500px) {
    .floating_installment {
        font-size: 12px;
        padding: 15px 12px;
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        text-align: center;
    }
    .floating_installment img {
        margin-right: 0px;
    }
}

#purchase-form .cart-step-two__form .buttons {
    width: fit-content;
}
#purchase-form .cart-step-two__form .buttons button {
    font-size: 12px;
}
#purchase-form .cart-step-two__form .buttons .flex {
    display: flex;
    gap: 35px;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
}
#purchase-form .cart-step-two__form .buttons img {
    margin: auto;
}
#purchase-form .cart-step-two__form .buttons .upper {
    margin: 30px 0;
}
#purchase-form .cart-step-two__form .buttons .upper .box {
    background: #f6f6f6;
    width: 224px;
    height: 45px;
    margin-bottom: 14px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#purchase-form .cart-step-two__form .buttons .lower img {
    margin-bottom: 10px;
}

#resultPopup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #2b2731c2;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: 0.4s;
    opacity: 1;
    visibility: visible;
}
#resultPopup.hidden {
    opacity: 0;
    visibility: hidden;
}
#resultPopup .container {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 520px;
    padding: 37px;
}
#resultPopup .container button,
#resultPopup .container img {
    margin: auto;
}
#resultPopup .container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 11px;
}
#resultPopup .container p {
    margin-bottom: 20px;
    font-size: 12px;
}

/* November 2023 Styles */

.login_btn {
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    padding: 0 30px;
    margin-left: 10px;
    gap: 5px;
}
.login_btn svg {
    fill: #1f1f1f;
}

@media screen and (max-width: 1024px) {
    .login_btn {
        padding: 0;
        width: 39px;
        background: #1f1f1f;
    }
    .login_btn div {
        display: none;
    }
    .login_btn svg {
        fill: var(--yellow);
    }
}

.auth_pages button:disabled {
    opacity: 0.5 !important;
}
.auth_pages input[type="radio"] {
    display: none;
}
.auth_pages input[type="radio"] + label {
    opacity: 0.3;
}
.auth_pages input[type="radio"]:checked + label {
    opacity: 1;
}
.auth_pages input,
.auth_pages select {
    border: #d8d8d8 2px solid;
    border-radius: 8px;
    display: block;
    width: 100%;
    height: 40px;
    padding-left: 15px;
}
.id_passport_btn,
.addmore {
    border: #818181 2px solid;
    border-radius: 8px;
    height: 40px;
    padding: 0 22px;
    opacity: 0.4;
}
.addmore {
    padding: 0 14px;
}
.id_passport_btn.active,
.addmore {
    opacity: 1;
}
.id_passport_tab {
    display: none;
    grid-template-columns: repeat(2, 1fr);
}
.id_passport_tab.active {
    display: grid;
}
.id_passport_tab .img_placeholder {
    width: 100%;
    border: 2px dashed #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 87px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.id_passport_tab .img_placeholder p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    color: #d8d8d8;
}
.id_passport_tab .img_placeholder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
    cursor: pointer;
}
.id_passport_tab .img_placeholder .preview {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s;
    padding: 4px;
    border-radius: 5px;
    transform: scale(0);
    visibility: hidden;
    opacity: 0;
}
.id_passport_tab .img_placeholder .preview.show {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}
.id_passport_tab .img_placeholder .remove_img {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #fff;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    z-index: 20;
    display: none;
}
.id_passport_tab .img_placeholder .remove_img.show {
    display: block;
}
.auth_pages select {
    padding-left: 5px;
}
.auth_pages .main_btn {
    background: #677078;
    color: white;
    border-radius: 8px;
    height: 45px;
    width: 100%;
    transition: 0.3s;
}
.auth_pages .main_btn.reverse {
    background: none;
    border: 1px solid #677078;
    color: #677078;
}
.auth_pages .main_btn.yellow {
    background: var(--yellow);
    color: #000;
}
.auth_pages .main_btn:hover {
    opacity: 0.7;
}
.smscode_container input {
    border: none;
    border-radius: 0;
}
.smscode_container .input_sms_con::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background: #fbfbfb;
    width: 36px;
    height: 100%;
}
.smscode_container .register_onetc::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background: #fbfbfb;
    width: 36px;
    height: 100%;
}
.smscode_container .phone_change_codeone::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background: #fbfbfb;
    width: 25px;
    height: 100%;
}
.one_time_code  {
    gap: 10px;
}
.one_time_code .code-input, .one_time_code .code2-input {
    background:  #dbdbdb;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 18px;
    border-radius: 4px;
    opacity: 1 !important;
}
:where([autocomplete="one-time-code"]) {
    --otp-digits: 6;
    --otp-ls: 2ch;
    --otp-gap: 1.25;

    /* private consts */
    --_otp-bgsz: calc(var(--otp-ls) + 1ch);
    --_otp-digit: 0 !important;

    all: unset;
    background: linear-gradient(
            90deg,
            var(--otp-bg, #bbb) calc(var(--otp-gap) * var(--otp-ls)),
            transparent 0
        ),
        linear-gradient(
            90deg,
            var(--otp-bg, #bbb) calc(var(--otp-gap) * var(--otp-ls)),
            transparent 0
        ) !important;
    background-position: calc(var(--_otp-digit) * var(--_otp-bgsz)) 0, 0 0 !important;
    background-repeat: no-repeat, repeat-x !important;
    background-size: var(--_otp-bgsz) 100% !important;
    caret-color: var(--otp-cc, #222);
    caret-shape: block;
    clip-path: inset(0% cal c(var(--otp-ls) / 2) 0% 0%);
    font-family: ui-monospace, monospace !important;
    font-size: var(--otp-fz, 2.3em) !important;
    inline-size: calc(var(--otp-digits) * var(--_otp-bgsz));
    letter-spacing: var(--otp-ls);
    padding-block: var(--otp-pb, 1ch);
    padding-inline-start: calc(((var(--otp-ls) - 1ch) / 2) * var(--otp-gap));
    padding-left: 11px !important;
}

/* For this demo */
label span {
    display: block;
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-weight: 500;
    margin-block-end: 1ch;
}

.register_pagination button {
    background: #f0f0f0;
}
.register_pagination button.active {
    background: #677078;
    color: #fff;
}

.accountFlex {
    min-height: calc(100vh - 300px);
}
.accountFlex .content {
    width: 80%;
}
.accountFlex .accountBtn {
    background: #f5f5f5;
    border-radius: 8px;
    transition: 0.4s;
}
.accountFlex .accountBtn.active {
    background: #677078;
    color: #fff;
}
.accountFlex .accountBtn svg {
    fill: #677078;
}
.accountFlex .accountBtn.active svg {
    fill: #fdec29;
}
.accountFlex .btn_bar {
    min-height: 50vh;
    flex-shrink: 0;
}
.accountFlex table {
    text-align: center;
    margin-top: 35px;
    width: 100%;
}
.accountFlex table tr:first-child td {
    padding-top: 0;
    padding-bottom: 18px;
    color: #677078;
}
.accountFlex table td {
    padding: 10px 30px;
    border-right: 1px solid #efefef;
    color: #677078a8;
}
.accountFlex table td:last-child {
    border: none;
}
.accountFlex table img {
    margin: auto;
}
.accountFlex .btn_bar {
    position: sticky;
    top: 120px;
}

@media screen and (max-width: 1024px) {
    .accountFlex .btn_bar {
        background: #f5f5f5;
        border-radius: 15px;
        position: sticky;
        top: 120px;
        width: auto !important;
        padding: 10px 5px;
    }
    .accountFlex .accountBtn div {
        display: none;
    }
    .accountFlex .accountBtn {
        background: #fff;
        justify-content: center;
    }
    .accountFlex .accountBtn svg,
    .accountFlex .accountBtn img {
        margin: 0;
    }
    .accountFlex table td {
        padding: 10px 10px;
    }
}

.infoRows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    background: #f5f5f5;
    text-align: center;
    height: 102px;
    position: relative;
}
.infoRows_mobile {
    display: block;
    background: #f5f5f5;
    border-radius: 12px;
    margin-bottom: 15px;
}
.auth_pages .pending {
    background-color: #fdeb2921;
}
.auth_pages .failed {
    background-color: #fa5d5d1e;
}
.auth_pages .complete {
    background-color: #6ec5b51e;
}
.auth_pages input,
.auth_pages select {
    border-width: 1px;
    background: none;
}
.infoRows .item {
    width: 12%;
}
.infoRows .item:nth-child(3) {
    width: 22%;
}
.infoRows.head {
    background: none;
    color: #677078;
    font-weight: bold;
    padding: 0 20px;
    height: auto;
}
.infoRows .info {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
}
.infoRows .info .message {
    position: absolute;
    background: #fff;
    border-radius: 3px;
    width: 130px;
    left: 0;
    top: -50px;
    padding: 6px;
    box-shadow: 0 3px 10px rgba(0, 42, 94, 0.103);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.infoRows .info:hover .message {
    opacity: 1;
    visibility: visible;
}

.accountFlex .content.disabled input,
.accountFlex .content.disabled select,
.accountFlex .content.disabled label {
    opacity: 0.5;
}
.accountFlex .inputEdit {
    position: relative;
}
.accountFlex .content.disabled .bg-gray-100 {
    display: none;
}
.accountFlex .content .inputEdit {
    padding-right: 43px;
}
.accountFlex .content.disabled .inputEdit {
    padding-right: 0;
}
.accountFlex .content.disabled .saveChanges {
    display: none;
}
.accountFlex .content button.edit {
    display: none;
}
.accountFlex .content.disabled button.edit {
    display: block;
}
.smscode_container input.number {
    border: 2px solid #d8d8d8;
    border-radius: 8px;
}
.accPopup {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.accPopup.show {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 640px) {
    .smscode_container .input_sms_con::after {
        width: 17px;
    }
}
@media screen and (max-width: 500px) {
    html {
        font-size: 65%;
    }
    .smscode_container input {
        margin-top: 16px;
        font-size: 15px;
        width: 100%;
    }

    .smscode_container .register_onetc::after {
        width: 29px;
    }
    .smscode_container .phone_change_codeone::after {
        width: 13px;
    }
}

.history_table td {
    white-space: nowrap;
}
