:root {
    --font-OP: "Overpass";
    --font-DS: "DM Serif Display";
}
/* 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;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-OP);
}

/***************************** Overlay (start) ****************************************/

.overlay {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 15;
    background-color: rgba(0, 0, 0, 0.58);
}

/***************************** Overlay (end) ******************************************/

/***************************** Main Header Styles (start) *****************************/

.main-header__top {
    background-color: #293355;
    font-family: "Overpass", sans-serif;
    padding: 0.14rem;
    font-size: 0.875rem;
    color: white;
    height: 2.54rem;
}

.main-header__top .container {
    position: relative;
}

.main-header__top__icon,
.main-header__top__contact,
.main-header__top__message {
    display: inline-block;
}

.main-header__top__icon {
    position: absolute;
    top: 25%;
    left: 19%;
}

.main-header__top__contact {
    position: absolute;
    top: 21.5%;
    /* left: 22%; */
}

.main-header__top__message {
    position: absolute;
    top: 23%;
    right: 20.5%;
}

.main-header__top__icon > svg {
    height: 18px;
    width: 18px;
    fill: white;
}

.main-header__top__contact > span > a {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
}

.main-header__top__message {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.040625rem;
}

.main-header__top__message--small {
    font-size: 0.75rem;
    font-weight: 400;
    color: #cad3f1;
}
@media (max-width: 2560px) {
    .main-header__top__icon {
        position: absolute;
        top: 10px;
        left: 0%;
    }

    .main-header__top__contact {
        position: absolute;
        top: 10px;
        /* left: 3%; */
    }

    .main-header__top__message {
        position: absolute;
        top: 10px;
        right: 0%;
    }
}
@media (max-width: 1440px) {
    .main-header__top__icon {
        position: absolute;
        top: 10px;
        left: 0%;
    }

    .main-header__top__contact {
        position: absolute;
        top: 10px;
        /* left: 3%; */
    }

    .main-header__top__message {
        position: absolute;
        top: 10px;
        right: 0%;
    }
}

@media (max-width: 1024px) {
    .main-header__top__icon {
        display: none;
    }

    .main-header__top__contact {
        display: none;
    }

    .main-header__top__message {
        position: static;
        display: block;
        width: 80vw;
        margin: 0 auto;
        margin-top: 7.5px;
        margin-bottom: 5px;
        text-align: center;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .main-header__top__message {
        font-size: 0.725rem;
    }
}

@media (max-width: 425px) {
    .main-header__top {
        height: 3.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 375px) {
    .main-header__top {
        height: 3.5rem;
        padding-right: 1.5rem;
    }

    .main-header__top__message {
        font-size: 0.8rem;
    }
}

.main-header-mid {
    height: 82.77px;
}

.main-header-mid__lg {
    padding: 20px 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.main-header-mid__logo {
    width: 85px;
    height: auto;
    display: inline-block;
}

.main-header-mid__logo > a > svg {
    color: #323232;
    fill: #323232;
}

.main-header-mid__right {
    display: inline-block;
}

.main-header-mid__right--badge {
    display: inline-block;
    border: 1px solid #ba7a2d;
    text-align: center;
    width: 165px;
    height: 54px;
}

.main-header-mid__right--login {
    display: inline-block;
    margin-left: 20px;
    position: relative;
    bottom: 0px;
    right: 0px;
}

.main-header-mid__right--badge > p {
    margin: 0;
    color: #ba7a2d;
}

.main-header-mid__right--badge > p:first-of-type {
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 22px;
    text-transform: uppercase;
    margin-top: 5px;
}

.main-header-mid__right--badge > p:last-of-type {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 22px;
    text-transform: uppercase;
}

.main-header-mid__right--login > span {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: normal;
    position: relative;
    top: 8px;
    color: #323232;
}

.main-header-mid__right--login > span:hover {
    cursor: pointer;
    border-bottom: 1px solid black;
    text-underline-offset: 1px;
}

.main-header-mid__right--login--svg {
    width: 24px;
    height: 24px;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    top: 8px;
    margin-left: 5px;
    color: #323232;
    fill: #323232;
    cursor: pointer;
}

.main-header-mid__mobile {
    display: none;
}

.main-header-mid__mobile__left {
    float: left;
}

.main-header-mid__mobile__right {
    float: right;
}

.main-header-mid__mobile::after {
    content: "";
    display: block;
    clear: both;
}

.main-header-mid__mobile__left {
    position: relative;
    top: 7.5rem;
    left: 10.2%;
}
.main-header-mid__mobile__left--hamburger-icon {
    margin-top: 25px;
}
.main-header-mid__mobile__left--hamburger-icon,
.main-header-mid__mobile__left--logo {
    display: inline-block;
}

.main-header-mid__mobile__left--logo {
    position: relative;
    top: 5px;
    left: 1.875rem;
}

.icon-nav {
    height: 2px;
    width: 24px;
    display: block;
    background-color: #232323;
}

.icon-nav::before {
    content: "";
    height: 2px;
    width: 24px;
    display: block;
    background-color: #232323;
    position: relative;
    top: -8px;
}

.icon-nav::after {
    content: "";
    height: 2px;
    width: 24px;
    display: block;
    background-color: #232323;
    position: relative;
    top: 6px;
}

.main-header-mid__mobile__left--logo > a > svg {
    width: 50px;
    height: auto;
}

.main-header-mid__mobile__right {
    position: relative;
    top: 0.35rem;
    right: 7.8rem;
}

.main-header-mid__mobile__right > span {
    display: inline-block;
    margin-left: 1.65rem;
    vertical-align: middle;
}

.main-header-mid__mobile__right > span:hover {
    cursor: pointer;
}

.main-header-mid__mobile__right > span:last-of-type {
    position: relative;
    top: 0.49rem;
}

.main-header-mid__mobile__right > span:first-of-type > svg {
    width: 20px;
    height: 20px;
}

.main-header-mid__mobile__right > span:nth-child(2) > svg {
    width: 26px;
    height: 26px;
}

.main-header-mid__mobile__right > span:last-of-type > svg {
    width: 21px;
    height: 21px;
}

.cart-count-badge__style {
    display: block;
    background-color: #ba7a2d;
    color: white;
    width: 12px;
    height: 17px;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
}

.cart-count-badge__pos-mobile {
    position: relative;
    top: -11px;
    left: 1.75px;
}


@media (max-width: 1024px) {
    .main-header-mid__lg {
        display: none !important;
    }

    .main-header-mid__mobile {
        display: initial;
        position: relative;
        right: 0px;
        top: 0px;
    }

    .main-header-mid__mobile__left {
        position: relative;
        top: 0px;
        left: 30px;
        /* display: block; */
    }

    .main-header-mid {
        height: 3.125rem;
    }

    .cart-count-badge__pos-mobile {
        position: relative;
        top: -11px;
        left: 8px;
    }
    .main-header-mid__mobile__right {
        position: relative;
        top: 0px;
        right: 30px;
    }
    .main-header-mid__mobile__right > span:last-of-type > svg {
        width: 28px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .main-header-mid__mobile__left {
        left: 20px;
        /* display: block; */
    }

    .main-header-mid__mobile__right {
        right: 30px;
    }
}

@media (max-width: 425px) {
    .main-header-mid__mobile__left {
        left: 10px;
        /* display: block; */
    }

    .main-header-mid__mobile__right {
        right: 10px;
    }
}

.main-header-bottom {
    padding: 19px 0px 17px;
    margin: 0px;
    border-top: 1px solid #e6e6e6;
}
.main-header-bottom > .main-header-bottom__navbar {
    width: 80%;
}
.main-header-bottom__navbar,
.main-header-bottom__right {
    display: inline-flex;
}

.main-header-bottom > .main-header-bottom__navbar {
    font-family: var(--font-OP);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4375rem;
    letter-spacing: 0.04375rem;
}
.main-header-bottom__navbar--ul {
    padding: 0px;
    margin: 0px;
    display: inline-flex;
}
.main-header-bottom__navbar--item {
    list-style: none;
    margin: 0px 20px;
}

.main-header-bottom__navbar--item:first-child {
    margin: 0px;
}

.main-header-bottom__navbar--item:last-child {
    margin: 0px;
}

.main-header-bottom__navbar--item button {
    background-color: white;
    border: none;
    border-radius: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0px;
}
.dropdown:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform-origin: right;
    transition: transform 0.25s ease-out;
}
.dropdown:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}
.dropdownMenuButton span {
    font-weight: bolder;
    color: rgb(0, 0, 0);
}
.main-header-bottom__navbar--item .dropdown-menu {
    padding-top: 9px;
    border-radius: 0;
    padding-bottom: 0.5rem;
    padding-left: 0;
    border: 0 solid #e4e4e4;
    box-shadow: 1px 1px 1px lightgrey;
}

.main-header-bottom__navbar--item span {
    color: #505050;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.421875rem;
}

.main-header-bottom__navbar--item .main-header-bottom__navbar--item-main-span {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4375rem;
    letter-spacing: 0.04375rem;
}

.main-header-bottom__navbar--item .dropdown-menu .dropdown-item {
    padding: 0.25rem 1rem;
    padding-bottom: 0;
}

.main-header-bottom__right {
    position: absolute;
    top: 0px;
    right: 0px;
    margin-top: 0%;
    font-family: var(--font-OP);
}
.main-header-bottom__right--like,
.main-header-bottom__right--cart {
    width: 50px;
}
.main-header-bottom__right--search,
.main-header-bottom__right--like,
.main-header-bottom__right--cart {
    display: inline-block;
    height: 28px;
}

.main-header-bottom__right--search {
    width: 80px;
    cursor: pointer;
}

.main-header-bottom__right--search .Search {
    width: 80px;
    display: block;
}
.main-header-bottom__right--search .Close {
    display: none;
    width: 80px;
    height: 28px;
}

.main-header-bottom__right--search .Search > span,
.Close > span {
    font-weight: 400;
    font-size: 0.875rem;
    color: #505050;
}

.main-header-bottom__right--search .Search > svg,
.Close > svg {
    width: 20px;
    height: auto;
    margin-left: 0.23rem;
    color: #202020;
    fill: #202020;
}
.main-header-bottom__right--like {
    border-left: 1px solid #e6e6e6;
    text-align: center;
}

.main-header-bottom__right--like > svg {
    width: 24px;
    height: auto;
    color: #202020;
    fill: #202020;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
}
.main-header-bottom__right--cart {
    text-align: end;
}
.main-header-bottom__right--cart > svg,
.main-header-bottom__right--cart > span {
    cursor: pointer;
}
.main-header-bottom__right--cart > span {
    top: -20px;
    left: 30px;
    position: relative;
}

.main-header-bottom__right--cart > svg {
    width: 28px;
    height: auto;
    color: #202020;
    fill: #202020;
}


@media only screen and (max-width: 769px) {
    .main-header__search-bar{
        height: 50px;
        padding-top: 0rem;
    }

    .main-header__search-bar > form > div > input[type="text"] {
        width: calc(100vw - 42%);
        text-align: left;
        font-size: 20px;
        left: 0;
        width: 250px;
    }

    .main-header__search-bar > form > div > button {
        right: 0;
    }

    .main-header__search-bar > form > div > input[type="text"]::placeholder {
        font-size: 20px;
    }
} 

@media only screen and (min-width: 769px) {
    .main-header__search-bar{
        height: 120px;
        padding-top: 2.03125rem;
    }

    .main-header__search-bar > form > div > input[type="text"] {
        width: calc(100vw - 50%);
        text-align: center;
        font-size: 30px;
        left: -10%;
    }

    .main-header__search-bar > form > div > button {
        right: 10%;
    }

    .main-header__search-bar > form > div > input[type="text"]::placeholder {
        font-size: 30px;
    }
}

.main-header__search-bar {
    display: none;
    position: fixed;
    left: 0;
    width: 100vw;
    /* height: 120px; */
    z-index: 5;
    background-color: #eaeaea;
    /* padding-top: 2.03125rem; */
}

.main-header__search-bar svg {
    width: 22px;
    height: 32px;
    fill: #ba7a2d;
    color: #ba7a2d;
}

.main-header__search-bar > form {
    margin-block-end: 0;
}

.main-header__search-bar > form > div {
    width: 100%;
    text-align: center;
}

.main-header__search-bar > form > div > input,
.main-header__search-bar > form > div > button {
    display: inline-block;
}

.main-header__search-bar > form > div > input[type="text"] {
    /* width: calc(100vw - 50%); */
    /* text-align: center; */
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    padding-left: 10px 12px 8px 12px;
    background-color: inherit;
    position: relative;
    /* left: -10%; */
    color: #adadad;
    /* font-size: 30px; */
}

.main-header__search-bar > form > div > input[type="text"]:hover,
.main-header__search-bar > form > div > input[type="text"]:active,
.main-header__search-bar > form > div > input[type="text"]:focus {
    outline: none;
    border: none;
}

.main-header__search-bar > form > div > input[type="text"]::placeholder {
    /* font-size: 30px; */
    position: relative;
    top: 5px;
    color: #adadad;
}

.main-header__search-bar > form > div > button {
    background-color: inherit;
    position: relative;
    /* right: 10%; */
}

@media (max-width: 1024px) {
    .main-header-bottom {
        display: none;
    }
}

.sticky-nav {
    display: none;
    position: sticky;
    top: 0px;
    background-color: white;
    z-index: 20;
}

.sticky-nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 0;
}

.sticky-nav-bar:first-child {
    margin-left: 10px;
}

.sticky-nav-bar:last-child {
    margin-right: 10px;
}

.sticky-nav-bar-left,
.sticky-nav-bar-center,
.sticky-nav-bar-right {
    display: inline-flex;
}

.sticky-nav-bar-right > .main-header-bottom__right {
    position: relative;
    top: 0px;
    right: 0px;
    margin-top: 0%;
    font-family: var(--font-OP);
}

.sticky-nav-bar-right
    > .main-header-bottom__right
    > .main-header-bottom__right--search,
.sticky-nav-bar-right
    > .main-header-bottom__right
    > .main-header-bottom__right--cart {
    width: 35px;
}

.sticky-nav-bar-right
    > .main-header-bottom__right
    > .main-header-bottom__right--cart
    > span {
    top: -20px;
    left: 15px;
    position: relative;
}

.brand-name-sticky-nav {
    font-size: 14px;
    margin-left: 20px;
    text-transform: uppercase;
    padding: 5px 0px;
}

.moblie-sticky-bar-second {
    display: none;
}

@media (max-width: 1024px) {
    .sticky-nav {
        display: none !important;
    }
    .moblie-sticky-bar-second {
        position: sticky;
        top: 0px;
        background-color: white;
        z-index: 20;
    }
}
/************************************ Main Header Styles (end) *******************************************/

/************************************ SpotLight Section (start) ******************************************/
.spotlght-sctn {
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.spotlght-sctn__left,
.spotlght-sctn__right {
    width: 100%;
}
.spotlght-sctn .spotlght-sctn__wrpr {
    display: flex;
    flex-direction: row;
}
.spotlght-sctn__left {
    background-color: #e0e2ea;
    color: #505050;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.spotlght-sctn__left > h3 {
    font-family: var(--font-DS);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.875rem;
    color: #202020;
    margin-bottom: 1.875rem;
}

.spotlght-sctn__left > p,
.spotlght-sctn__right > p {
    color: #505050;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    margin-bottom: 2.8125rem;
}

.spotlght-sctn__left > p > span > span,
.spotlght-sctn__right > p > span > span {
    display: block;
}

.spotlght-sctn__left > a,
.spotlght-sctn__right > a {
    color: #ba7a2d;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5rem;
    letter-spacing: 0.04375rem;
    text-decoration: none;
}

.spotlght-sctn__left > a:hover,
.spotlght-sctn__right > a:hover {
    transition: 1s ease-in;
    border-bottom: 1px solid #ba7a2d;
}

.spotlght-sctn__right {
    background-color: #efe8e0;
    color: #505050;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.spotlght-sctn__right > h3 {
    font-family: var(--font-DS);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.875rem;
    color: #202020;
    margin-bottom: 1.875rem;
}

@media (max-width: 768px) {
    .spotlght-sctn__left,
    .spotlght-sctn__right {
        padding: 50px 20px 50px 20px;
    }
}

@media (max-width: 425px) {
    .spotlght-sctn .spotlght-sctn__wrpr {
        flex-direction: column;
    }
}

/************************************ SpotLight Section (end) ********************************************/

/************************************ Main Footer (start) ************************************************/

.main-ftr {
    margin-top: 4rem;
}

.main-ftr__top {
    text-align: center;
    background-color: #eaeaea;
    padding: 3.125rem 0 2.1875rem 0;
}

.main-ftr__top__hdr > div > h3 {
    margin-bottom: 1.875rem;
    color: #202020;
    font-family: var(--font-DS);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.875rem;
}

.main-ftr__top__hdr > div:last-of-type {
    color: #505050;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.375rem;
    margin-bottom: 1.875rem;
}

.main-ftr__top__hdr > div:last-of-type a {
    color: #202020;
    text-decoration-color: #202020;
    text-decoration-line: underline;
    text-underline-offset: 0.12rem;
}

.main-ftr__top__bdy {
    margin: 0 auto;
    padding-bottom: 2.2%;
}

.main-ftr__top__bdy > form > input {
    border: 1px solid white;
    padding: 7px 15px 5px 15px;
    color: #505050;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    min-width: 400px;
    min-height: 60px;
}

.main-ftr__top__bdy > form > input:active {
    outline: none;
}

.main-ftr__top__bdy > form > button[type="submit"] {
    background-color: #293355;
    border: 1px solid #293355;
    padding: 1px 6px;
    color: white;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04375rem;
    line-height: 1.5rem;
    min-width: 140px;
    max-width: 100%;
    min-height: 60px;
    margin-left: 0.5rem;
    position: relative;
    top: -1px;
    cursor: pointer;
}

.main-ftr__top__bdy > form > button[type="submit"]:hover,
.main-ftr__top__bdy > form > button[type="submit"]:active {
    transition: 0.35s ease-in;
    background: #1b223a;
    border-color: #1b223a;
    outline: none;
}

.main-ftr__mid {
    margin-top: 4.8rem;
}

.main-ftr__mid--hding {
    color: #141414;
    font-size: 0.9375rem;
    font-weight: 800;
    line-height: 1.171875rem;
    letter-spacing: 0.046875rem;
    margin-bottom: 1.5rem;
}

.main-ftr__mid--lnk-contnr {
    margin-bottom: 0.6rem;
}

.main-ftr__mid--lnk-contnr a {
    color: #202020;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    padding: 0.3125rem 0;
    text-underline-offset: 2.5px;
}

.main-ftr__mid--kpintch {
    position: relative;
    left: -6.5%;
}

.main-ftr__mid--kpintch-icns {
    position: relative;
    left: -6.25%;
    top: 2%;
}

.main-ftr__mid--pymnts {
    margin-top: 4rem;
    margin-bottom: 0.25rem;
    position: relative;
    left: -2px;
}

.main-ftr__btm {
    margin-top: 2rem;
    text-align: center;
    padding: 20px 0 50px 0;
    color: #505050;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.main-ftr__btm a {
    text-decoration: none;
    color: #202020;
    border-bottom: 1px solid black;
}
.main-ftr__mid--pymnts--method img {
    width: 95%;
}
@media (max-width: 425px) {
    .main-ftr__top__bdy {
        margin: 0;
        padding: 0;
    }
    .main-ftr__top__bdy > form > input {
        min-width: 50px;
        min-height: 50px;
        margin: 0;
    }
    .main-ftr__top__bdy > form > button[type="submit"] {
        margin-top: 2rem;
        margin: 0;
        min-width: 70px;
        min-height: 50px;
    }
    #main-ftr--1 {
        padding: 0 2px;
    }
}

@media (max-width: 375px) {
    .main-ftr__top__bdy {
        width: 100vw;
    }
}

/************************************ Main Footer (end) **************************************************/

/************************************ Fixed Social-Media Sidebar (start) *********************************/

.icon-bar {
    visibility: hidden;
    position: fixed;
    top: 50%;
    z-index: 1000;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 14px 15px;
    transition: all 0.3s ease;
    color: #a7a7a7;
}

.icon-bar a:hover {
    color: #777676;
}

.icon-bar span {
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    line-height: 22px;
}

/************************************ Fixed Social-Media Sidebar (end) ***********************************/

/************************************ Login Section (start) **********************************************/

@media only screen and (max-width: 769px) {
    .login{
        width: 310px;
    }
} 

@media only screen and (min-width: 769px) {
    .login{
        width: 400px;
    }
}

.login {
    display: none;
    height: 100vh;
    /* width: 400px; */
    padding: 15px 30px 100px 30px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 25;
    color: #505050;
    background-color: white;
}

.login-title {
    margin-bottom: 18px;
}

.login-title a {
    text-decoration: none;
    position: relative;
    left: 80%;
}

.login-title svg {
    font-size: 28px;
    line-height: 28px;
    height: 17px;
    width: 17px;
    fill: #5a5a5a;
    stroke: #5a5a5a;
    color: #5a5a5a;
    position: relative;
    top: 0px;
}

.login-title span {
    color: #505050;
    font-size: 0.875rem;
    line-height: 0.875rem;
    margin-left: 5px;
    padding-top: 1px;
    text-transform: uppercase;
}

.login-title h5 {
    color: #202020;
    font-family: var(--font-DS);
    font-size: 34px;
    font-weight: 400;
    line-height: 42.5px;
    letter-spacing: 1.7px;
    margin-bottom: 8px;
}

.login-content__form {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 25px;
}

.action-btn {
    margin-bottom: 22px;
}

.form-group label,
.form-group input {
    display: block;
}

.form-group label {
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: rgb(32, 32, 32);
}

.form-group label em {
    color: #f1152f;
    font-weight: 500;
    font-style: normal;
    margin-left: 3px;
}

.form-group input {
    border: 1px solid #cbcbcb;
    padding: 13px 12px 11px 12px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
}

.form-group input::placeholder {
    color: #505050;
    font-size: 14px;
}

.form-group input:active,
.form-group input:hover,
.form-group input:focus {
    outline: none;
}

.action-btn {
    margin-bottom: 22px;
}

.action-btn input[type="submit"] {
    display: block;
    width: 100%;
    padding: 20px 15px 18px 15px;
    background-color: #293355;
    color: white;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
    margin-bottom: 16px;
}

.action-btn input[type="submit"]:hover {
    background-color: white;
    color: #293355;
    box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
    border: none;
    transition: 0.3s;
}

.action-btn a[href] {
    color: #505050;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
}

.login-content__form--create-an-account > a {
    display: block;
    padding: 20px 15px 18px 15px;
    text-decoration: none;
    color: #232323;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    border-radius: 0%;
    text-transform: uppercase;
    width: 100%;
    box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
}

.login-content__form--create-an-account > a:hover {
    background-color: #293355;
    color: white;
    transition: 0.3s;
}

/************************************ Login Section (end) ************************************************/

/* *********************************** Cart Dropdown (start) **********************************************/

/* .cart-dropdown {
  display: none;
  padding: 16px 30px 100px 30px;
  position: fixed;
  top: 0;
  right: 0;
  background-color: white;
  height: 100vh;
  width: 400px;
  z-index: 24;
}

.cart-dropdown__cart-title {
  margin-bottom: 5px;
}

.cart-dropdown__cart-title a {
  width: 100%;
  display: block;
}

.cart-dropdown__cart-title a svg,
.cart-dropdown__cart-title a span {
  display: inline-block;
  position: relative;
  left: 82%;
}

.cart-dropdown__cart-title svg {
  width: 17px;
  height: 17px;
  fill: #5a5a5a;
  color: #5a5a5a;
}

.cart-dropdown__cart-title a span {
  color: #505050;
  margin-left: 5px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 14px;
  top: 0px;
}

.cart-dropdown__cart-title > h5 {
  font-family: var(--font-DS);
  color: #202020;
  font-size: 34px;
  font-weight: 400px;
  letter-spacing: 1.7px;
  line-height: 42.5px;
  padding-bottom: 5px;
}

.cart-dropdown__no-items > p {
  text-align: center;
  color: #505050;
  font-size: 14px;
  line-height: 22px;
  margin: 15px 0;
}

.cart-dropdown__no-items > div {
  text-align: center;
}

.cart-dropdown__no-items a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  margin-bottom: 10px;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  padding: 20px 15px 18px 15px;
  border: 1px solid rgb(60, 60, 60);
  text-transform: uppercase;
}

.cart-dropdown__no-items a:hover {
  transition: 0.25s ease-in-out;
  background-color: #293355;
  color: white;
} */

/************************************ Cart Dropdown (end) *********************************************** */

/************************************ Cart Dropdown with product (start) **********************************************/

@media only screen and (max-width: 769px) {
    .cart-dropdown{
        width: 310px;
        padding: 16px 10px 100px 10px;
    }

    .cart-dropdown__no-items .Cart-Product img{
        width: 90px;
    }
} 

@media only screen and (min-width: 769px) {
    .cart-dropdown{
        width: 400px;
        padding: 16px 30px 100px 30px;
    }

    .cart-dropdown__no-items .Cart-Product img{
        width: 100px;
    }
}

.cart-dropdown {
    display: none;
    /* padding: 16px 30px 100px 30px; */
    position: fixed;
    top: 0;
    right: 0;
    background-color: white;
    height: 100vh;
    /* width: 400px; */
    z-index: 24;
    overflow-y: auto;
}

.cart-dropdown__cart-title {
    margin-bottom: 5px;
}

.cart-dropdown__cart-title a {
    text-decoration: none;
    width: 100%;
    display: block;
}

.cart-dropdown__cart-title a svg,
.cart-dropdown__cart-title a span {
    display: inline-block;
    position: relative;
    left: 82%;
}

.cart-dropdown__cart-title svg {
    width: 17px;
    height: 17px;
    fill: #5a5a5a;
    color: #5a5a5a;
}

.cart-dropdown__cart-title a span {
    color: #505050;
    margin-left: 5px;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 14px;
    top: 0px;
}

.cart-dropdown__cart-title > h5 {
    font-family: var(--font-DS);
    color: #202020;
    font-size: 34px;
    font-weight: 400px;
    letter-spacing: 1.7px;
    line-height: 42.5px;
    padding-bottom: 5px;
}

.cart-dropdown__no-items > p,
.cart-dropdown__no-items > span {
    color: #505050;
    font-size: 14px;
    line-height: 22px;
    margin: 15px 0;
    display: inline-block;
}

.cart-dropdown__no-items .progress {
    border-radius: 0%;
}

.cart-dropdown__no-items #progressinfo {
    color: #757373;
    display: block;
    font-family: Arial, sans-serif;
}

.cart-dropdown__no-items .Cart-Product img {
    /* width: 100px; */
    height: auto;
    cursor: pointer;
}
.cart-dropdown__no-items .Cart-Product h3 {
    font-size: 14px;
    text-align: left;
    line-height: 22px;
    margin: 15px 0;
    display: block;
    cursor: pointer;
}

.cart-dropdown__no-items .Cart-Product span {
    display: block;
    font-size: 14px;
    text-align: left;
    line-height: 22px;
}

.cart-dropdown__no-items .Cart-Product input {
    max-width: 95px;
    border: 1px solid #cbcbcb;
    text-align: center;
    padding: 8px 12px 6px;
}

.cart-dropdown__no-items .Cart-Product i {
    position: absolute;
    top: 40%;
    font-size: 18px;
    right: 7px;
    cursor: pointer;
}
.cart-dropdown__no-items .cart-prodcut-total {
    padding: 34px 0px 15px;
}
.cart-dropdown__no-items .cart-prodcut-total > p,
.cart-dropdown__no-items .cart-prodcut-total > span {
    line-height: 22px;
    margin: 0px;
    display: inline-block;
}

.cart-dropdown__no-items .cart-prodcut-total > p {
    font-size: 14px;
    margin-right: 65%;
}

.cart-dropdown__no-items .cart-prodcut-total > span {
    font-size: 16px;
}
.cart-dropdown__no-items .shiping-info p,
.cart-dropdown__no-items .shiping-info span {
    font-size: 14px;
    line-height: 22px;
    margin: 0px;
}

.cart-dropdown__no-items .shiping-info span {
    color: grey;
    font-size: 13px;
    font: italic;
    font-family: Arial, sans-serif;
}

.cart-dropdown__no-items .checkbox-group {
    position: relative;
    margin-top: 30px;
}
.cart-dropdown__no-items .checkbox-group {
    margin-bottom: 16px;
    text-align: left;
    clear: both;
}
.cart-dropdown__no-items .checkbox-group input[type="checkbox"] + label {
    cursor: pointer;
    padding-left: 15px;
    position: relative;
}
.cart-dropdown__no-items .checkbox-group label {
    cursor: pointer;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.cart-dropdown__no-items .checkbox-group > a {
    text-decoration: underline;
    color: black;
    text-underline-offset: 3px;
}

.cart-dropdown__no-items .checkbox-group > a:hover {
    background-color: transparent;
    color: black;
}

.cart-dropdown__no-items > .bottun {
    text-align: center;
}

.cart-dropdown__no-items .bottun > a {
    display: inline-block;
    width: 45%;
    text-decoration: none;
    margin-bottom: 10px;
    color: #232323;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    padding: 20px 15px 18px 15px;
    border: 1px solid rgb(60, 60, 60);
    text-transform: uppercase;
}

.cart-dropdown__no-items .bottun .disabled {
    background: #747a90;
    border: 1px solid #747a90;
    color: white;
}

.cart-dropdown__no-items a:hover {
    transition: 0.25s ease-in-out;
    background-color: #293355;
    color: white;
}

.cart-dropdown__no-items button:hover {
    transition: 0.25s ease-in-out;
    background-color: #293355;
    color: white;
}

.cart-dropdown .cart-dropdown__no-items .slider-product-in-cart img {
    width: 100px;
    height: auto;
    cursor: pointer;
}
.cart-dropdown .cart-dropdown__no-items .slider-product-in-cart h3 {
    font-size: 16px;
    text-align: left;
    line-height: 22px;
    margin: 15px 0;
    display: block;
    cursor: pointer;
}
.cart-dropdown .cart-dropdown__no-items .slider-product-in-cart span {
    display: block;
    font-size: 14px;
    text-align: left;
    line-height: 22px;
}

.cart-dropdown .cart-dropdown__no-items .slider-product-in-cart .star-rating {
    display: block;
    padding-top: 10px;
}

.cart-dropdown .cart-dropdown__no-items .slider-product-in-cart .star-rating i {
    color: #ba7a2d;
    font: 12px;
}

.cart-dropdown
    .cart-dropdown__no-items
    .slider-product-in-cart
    #cart-in-heart-icon {
    position: absolute;
    top: 2px;
    right: 15px;
}

.home-side-bar-2,
.home-side-bar {
  display: none;
  width: 340px;
  padding: 20px 0px;
  height: 100vh;
  position: fixed;
  left: 0px;
  top: 0px;
  background-color: #FFFFFF;
  z-index: 20;
}
.home-side-bar-header {
  display: flex;
  justify-content: space-between;
  padding: 5px 20px;
  vertical-align: middle;
  margin-bottom: 10px;
}
.home-side-bar-header > .home-side-bar-clear-btn {
  font-size: 16px;
  padding-top: 3px;
  line-height: 22px;
}
.home-side-bar-header > .home-side-bar-phone-info {
  font-size: 14px;
}
.home-side-bar-header > .home-side-bar-phone-info > p {
  margin: 0px;
  line-height: 22px;
  font-weight: lighter;
  font-family: Arial, Helvetica, sans-serif;
}
.home-side-bar-header > .home-side-bar-phone-info > p > span {
  line-height: 22px;
  margin: 0px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}
.home-side-bar-nav {
  width: 100%;
  height: auto;
}
.home-side-bar-nav > ul {
  padding: 0px;
  display: flex;
  flex-direction: column;
}
.home-side-bar-nav > ul > li {
  list-style: none;
  width: 100%;
  padding: 10px;
  position: relative;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  border-bottom: 1px solid #EBEBEB;
}
.home-side-bar-nav > ul > li > a {
  text-decoration: none;
  color: black;
  margin: 0px 10px;
}
.home-side-bar-nav > ul > li > a:hover {
  color: black;
}
.more-nav-item::before {
  content: "\f105";
  color: #C4BDBD;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 10px;
  right: 20px;
}
@media (max-width: 425px) {
  .home-side-bar-2,
  .home-side-bar {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100vh;
    width: 300px;
  }
}
@media (max-width: 320px) {
  .home-side-bar-2,
  .home-side-bar {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100vh;
    width: 280px;
    position: fixed;
    left: 0px;
    top: 0px;
  }
}

.top {
    top: 51px;
}
/************************************ Cart Dropdown (end) ************************************************/
