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

:root {
    --heading: #101828;
    --text: #939393;
    --white: #ffffff;
    --gray-3: #E0E0E0;
    --gray-5: #9E9E9E;
    --gray-6: #424242;
    --gray-9: #212121;
    --font-xsm: 12px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-md: 18px;
    --font-lg: 20px;
    --font-xl: 24px;
    --font-xxl: 28px;
    --font-3xl: 32px;
    --font-4xl: 40px;
}


.large
/* Base CSS */

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: var(--heading);
}

body {
    color: var(--text);
    font-weight: 400;
    font-family: 'League Spartan', sans-serif;
    font-size: var(--font-base);
    padding-top: 107px;
}

.fixed-header-body {
    padding-top: 0;
}

.selector-for-some-widget {
    box-sizing: content-box;
}

a:hover {
    text-decoration: none
}

a,
button,
input,
textarea {
    outline: none !important;
}

.section-padding {
    padding: 80px 0;
}

.container {
    max-width: 1760px;
}

.container__md {
    max-width: 1400px;
}


.heading-one {
    color: var(--heading);
    font-size: var(--font-xl);
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}

.heading-two {
    color: var(--heading);
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
    display: block;
}

.description__text p {
    color: var(--heading);
    font-size: var(--font-base);
    font-weight: 300;
    line-height: 150%;
    letter-spacing: 0.09px;
}

.description__text p:last-child {
    margin-bottom: 0;
}



/*-------- Hamburger Menu Satrt ------*/
.overlay-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.75);
    transition: .3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.overlay-bg.active {
    opacity: 1;
    visibility: visible;
    ;
}

.hamburger-menu {
    height: 100%;
    width: 540px;
    padding: 50px 50px;
    padding-bottom: 25px;
    z-index: 99999;
    position: fixed;
    top: 0;
    background: #fff;
    transition: .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    left: -100%;
    overflow-y: scroll;
}

.hamburger-menu.active {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.menu__title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.menu-logo img {
    width: auto;
    position: relative;
    top: -4px;
    height: 22px;
}

.menu_close {
    margin-right: 25px;
    border: none;
    background: transparent;
    font-size: var(--font-xxl);
    line-height: 1;
    cursor: pointer;
    color: var(--gray-6);

}

.menu_close i {
    line-height: 1;
}

.menu__title h2 {
    color: var(--heading);
    font-size: var(--font-xxl);
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.2px;
    margin-bottom: 5px;
    margin: 0;
}

.menu-nav ul li a {
    color: var(--heading);
    text-decoration: none;
    transition: .3s;
    width: calc(100% - 40px);
    font-size: var(--font-base);
}

.menu-nav ul li {
    margin-bottom: 5px;
    padding: 3px 0;
    width: 100%;
}

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

.menu-nav li a:hover {
    color: var(--text);
}

.submenu_trigger {
    color: var(--heading, #101828);
    cursor: pointer;
    display: inline-block;
    font-size: var(--font-md);
    transition: .3s;
    text-align: right;
    width: 150px;
    line-height: 1;
}

.submenu_trigger:hover {
    color: var(--text);

}

.menu-wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    min-height: 600px;
}

.menu_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.submenu_wrap {
    position: fixed;
    top: 0;
    background: #fff;
    width: 540px;
    left: -100%;
    height: 100%;
    z-index: 9999;
    transition: .3s ease-in-out;
    padding: 50px 50px;
    visibility: hidden;
    opacity: 1;
}

.submenu_close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding-bottom: 15px;
}

.submenu_close button {
    border: none;
    background: transparent;
    font-size: var(--font-xl);
    color: #fff;
    line-height: 1;
}

.menu-nav li.active .submenu_wrap {
    opacity: 1;
    visibility: visible;
    left: 0;
}
.submenu_lists { scrollbar-width: none; }
.submenu_lists ul li {
    margin-bottom: 5px;
}

.submenu-content-title span {
    display: block;
    font-size: var(--font-xxl);
    font-weight: bold;
    text-transform: capitalize;
    color: #101828;
}

.submenu-content-title {
    margin-bottom: 45px;
}

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

.useful-links ul li {
    margin-bottom: 12px;
    display: block;
}

.useful-links ul li a {
    color: var(--heading);
    text-decoration: none;
    transition: .3s;
    display: block;
    font-size: var(--font-sm);
}

.useful-links ul li a:hover {
    color: var(--text);
}

/*-------- Hamburger Menu End ------*/







/*------------------ Header Area Start  ---------------*/

.header-top-area {
    padding: 10px 0;
    background: var(--gray-9);
    text-align: center;
    padding-bottom: 9px;

}

.header-top-area p {
    color: var(--white);
    margin: 0;
    font-size: var(--font-sm);
}

.header-bottom-area {
    padding: 20px 15px;
    background-color: var(--white);
    border-bottom: 1px solid #E0E0E0;
    position: relative;
    z-index: 999;
}

.header__left {
    display: flex;
    align-items: center;
}

.header__left {
    display: flex;
    align-items: center;
}

.header__logo a {
    display: inline-block;
}

.header__logo a img {
    height: 22px;
    position: relative;
    top: -3px;
}

.header__logo a {
    display: inline-block;
    text-decoration: none;
}

.header__logo h2 {
    color: #000;
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: var(--font-xl);
    line-height: 24px;
    padding-top: 5px;
}

.menu__bar {
    margin-right: 30px;
    cursor: pointer;
}

.menu__bar img {
    width: 22px;
}

.header__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header__options {
    display: flex;
    align-items: center;
    gap: 0 15px;
}

.header__options {
    display: flex;
    align-items: center;
    gap: 0 15px;
}

.header__options button {
    border: none;
    background: transparent;
    line-height: normal;
    font-size: var(--font-lg);
    position: relative;
    cursor: pointer;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.08px;
    color: #101828 !important;
}

.header__nav {
    margin-right: 25px;
}

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

.header__nav ul li a {
    display: inline-block;
    color: var(--heading);
    text-decoration: none;
    transition: .3s;
    letter-spacing: 0.08px;
}

.header__nav nav ul li {
    display: inline-block;
    margin-right: 25px;
    transition: .3s;
}

.header__options button span {
    font-size: var(--font-sm);
    position: absolute;
    right: -3px;
    bottom: -3px;
    line-height: 1;
    color: #101828 !important;
}

.header__options button img {
    max-height: 20px;
    max-width: 22px;
}

/*sticky START CSS*/
.header-bottom-area.sticky {
    position: fixed;
    z-index: 999;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    width: 100%;
    top: 0;
    background-color: #ffff;
    margin-top: 0;
}

header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
}

.header__nav {
    margin-right: 25px;
    padding-top: 2px;
}

/*------------------ Header Area End  ---------------*/






/*------------------ Header Area Start  ---------------*/
.category-lists-area {
    padding: 16px 0;
    padding-bottom: 6px;
}

.category-container {
    overflow-x: scroll;
    overflow-y: hidden;
    position: relative;
    z-index: 1;
    -webkit-overflow-scrolling: auto;
    -webkit-overflow-scrolling: touch;
}

.category-lists {
    width: auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;

}

.category-lists li a {
    display: inline-block;
    color: var(--gray-9);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.08px;
    text-decoration: none;
    border: 1px solid #E0E0E0;
    padding: 4px 10px;
    transition: .3s;
    padding-top: 7px;
}

.category-lists a:hover {
    border-color: #212121;
    color: #212121;
}

.category-lists a:last-child {
    margin: 0;
}

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

.category-lists ul li {
    display: inline-block;
    margin-right: 7px;
}




/*
 *  STYLE 3
 */


.hamburger-menu::-webkit-scrollbar-track {
    background-color: #F1F1F1;
}

.hamburger-menu::-webkit-scrollbar {
    width: 5px;
    background-color: #F1F1F1;
}

.hamburger-menu::-webkit-scrollbar-thumb {
    background-color: #F1F1F1 !important;
}

/*------------------ Header Area End  ---------------*/












/*------------------ thumbnail Area Start  ---------------*/
.product-area {
    padding-top: 0px;
    padding-bottom: 100px;
}

.product-filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid #E0E0E0;
}

.products__wrap {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 11px));
    gap: 0 15px;
}

.layout-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.product-counts p {
    color: var(--gray-8, #424242);
    font-family: League Spartan;
    font-size: var(--font-base);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.product-counts span {
    display: inline-block;
    margin-right: 10px;
}

.layout-gird {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 20px;
    margin-left: 25px;
}

.layout-gird button {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
}

.layout-gird button img {
    width: 24px;
    opacity: .4;
}

.filter-select .form-select {
    border: none;
    color: var(--gray-8, #424242);
    font-size: var(--font-xl);
    font-weight: 500;
    outline: none;
    line-height: 36px;
    box-shadow: none;
    padding-right: 40px;
}

.form-select {
    background-size: 16px 16px;
}

.layout-gird button.active img {
    opacity: 1;
}

.grid-on-phone {
    display: none;
}

.products__wrap.item_10 {
    grid-template-columns: repeat(10, calc(10% - 7px));
    gap: 0 8px;
}

.item_10 .product-thumbnail span {
    display: none;
}

.item_10 .product-description {
    display: none;
}

.item_10 .single-product {
    margin-bottom: 8px;
}

.product-thumbnail img {
    width: 100%;
}


.single-product {
    margin-bottom: 35px;
}

.product-thumbnail {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.product-thumbnail img {
    transition: .3s;
    cursor: pointer;
}

.product-thumbnail span {
    position: absolute;
    top: 20px;
    color: #000;
    left: 50%;
    transform: translateX(-50%);
}

.single-product .product-thumbnail span {
    position: absolute;
    top: unset;
    bottom: 12px;
    left: 8px;
    border: 1px solid var(--gray-9, #212121);
    background: var(--white, #FFF);
    color: var(--heading, #101828);
    font-size: var(--font-sm);
    font-weight: 600;
    line-height: 16px;
    padding: 2px 8px;
    padding-top: 6px;
    transform: unset;
}

.product-description {
    margin-top: 15px;
    padding: 0 8px;
    display: flex;
    justify-content: space-between;
}

.product-inf-right {
    text-align: right;
    width: 50px;
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
}

.product-inf-lft {
    width: calc(100% - 50px);
    padding-right: 15px;
}

.product-top-info span {
    color: #101828;
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 18px;
    margin: 0;
    display: block;
    margin-bottom: 5px;
}

.product-inf-right button {
    border: none;
    background: none;
    color: #101828;
    font-size: var(--font-base);
    line-height: 100%;
    transition: .3s;
    padding: 0;
    height: 18px;
    margin-bottom: 7px;
}

.heart_icon i {
    transition: .3s;
    color: #101828;
}

button.heart_icon i {
    font-weight: 300;
}

.heart_icon.active i {
    color: var(--gray-8);
    font-weight: 600;

}

.product-top-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.product-price strong {
    color: #101828;
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

.product-inf-right span {
    color: #101828;
    font-size: var(--font-base);
    font-weight: 400;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    line-height: 1px;
}

.product-price {
    display: flex;
    justify-content: space-between;
}

.container-rd.active p {
    font-weight: 500;
}

.product-cat p {
    color: #101828;
    font-size: var(--font-sm);
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    text-transform: capitalize;
    margin: 0;
    letter-spacing: .3px;
}

.product-cat {
    margin-bottom: 8px;
}


/*------ Pagination Lists -----*/

.pagination-list {
    text-align: center;
    margin-top: 60px;
}

.pagination-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-list ul li {
    display: inline-block;
}

.pagination-list ul li a {
    text-decoration: none;
    height: 35px;
    border: 1px solid var(--gray-3);
    color: var(--text, #939393);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    padding-top: 4px;
}

.pagination-list ul li a span {
    color: var(--gray-8, #424242);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.08px;
}

.pagination-list ul li a.active {
    background: var(--gray-8, #424242);
    color: var(--white, #FFF);
    border: 1px solid var(--gray-8);
}

.pagination-list ul li a:hover {
    background: var(--gray-2, rgba(238, 238, 238, 0.93));
    color: var(--text, #939393);
}

/*------ Pagination Lists -----*/



/*------------------ Product Area End  ---------------*/





/*------------------ subscreva Area Start  ---------------*/
.subscreva-area {
    padding: 70px 0;
    border-top: 1px solid #E0E0E0;
    margin-top: 50px;
}

.subscreva-wrap {
    text-align: center;
    margin: 0 auto;
}

.form-check .form-check-input {
    float: initial;
    margin-left: 0;
}

.subscreva-title span {
    color: var(--heading, #101828);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.12px;
    margin-bottom: 18px;
}

.subscreva-input input {
    border: none;
    color: var(--gray-5, #9E9E9E);
    font-size: var(--font-sm);
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    border-bottom: 1px solid var(--gray-8, #424242);
    padding: 12px;
    text-align: center;
    width: 315px;
}

.form-check {
    padding-left: 0;
}

.subscreva-check-box {
    margin-top: 20px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
    background-color: var(--white);
    border: 1px solid var(--gray-9, #212121);
}

.form-check-input[type=checkbox] {
    border-radius: 0;
    cursor: pointer;
}

.subscreva-check-box label {
    color: var(--gray-9, #212121);
    text-align: center;
    font-size: var(--font-sm);
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.07px;
    margin-left: 10px;
    cursor: pointer;
}

.subscreva-check-box label a {
    font-weight: 500;
    text-decoration-line: underline;
    color: var(--gray-9, #212121);
}

.form-check-input:checked {
    background-color: var(--gray-9, #212121);
    border-color: var(--white);
}

.form-check-input:focus {
    border-color: var(--gray-9, #212121);
    outline: 0;
    box-shadow: none;
}

.subscreva-btn {
    margin-top: 30px;
}

.subscreva-btn button {
    border: 1px solid var(--gray-8, #424242);
    color: var(--gray-8, #424242);
    font-family: League Spartan;
    font-size: var(--font-base);
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-decoration: none;
    padding: 10px 55px;
    transition: .3s;
    background-color: var(--white);
}

.subscreva-btn button:hover {
    background-color: var(--gray-8, #424242);
    color: var(--white);

}

/*------------------ subscreva Area End  ---------------*/





/*------------------ brand Area Start  ---------------*/
.brand-area {
    padding: 70px 0;
    background: #F9F9F9;
}

.brand__wrap {
    text-align: center;
}

.brand__item a {
    text-decoration: none;
}

.brand__item a p {
    color: var(--gray-9, #212121);
    font-size: var(--font-sm);
    font-weight: 400;
    line-height: 22px;
    text-decoration: none;
    margin-top: 16px;
}

.brand__item a img {
    max-width: 50px;
}

/*------------------ brand Area End  ---------------*/







/*------------------ footer Area Start  ---------------*/
.footer-area {
    padding: 50px 0;
}

.footer-list {
    margin-bottom: 24px;
}

.footer-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-list ul li {
    display: inline-block;
}

.footer-list ul li:last-child {
    margin-right: 0;
}

.footer-list ul li a {
    color: var(--gray-9, #212121);
    font-size: var(--font-sm);
    font-weight: 500;
    line-height: 171.429%;
    letter-spacing: 0.07px;
    text-decoration: none;
    transition: .3s;
}

.footer-list ul li a:hover {
    color: var(--gray-5, #9E9E9E);
}

.social-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 25px;
}

.social-links ul li {
    display: inline-block;
}

.social-links {
    text-align: center;
}

.social-links ul li a {
    color: #212121;
    font-size: var(--font-xl);
    transition: .3s;
}

.social-links ul li a:hover {
    color: #9E9E9E;
}

.social-links ul li a {
    display: inline-block;
    line-height: 1;
}

.copyright-text p {
    color: var(--gray-9, #212121);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.205px;
    margin: 0;
}

.footer-icon img {
    margin-left: 20px;
}

.footer-icon {
    text-align: right;
}

.footer-icon li a {
    display: inline-block;
}

/*------------------ footer Area End  ---------------*/





/*------------------ Breadcrumb Area Start  ---------------*/

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
/*    padding-right: 15px;*/
    color: var(--heading);
    content: "\f105" !important;
    font-family: "Font Awesome 5 Pro"
}

.breadcrumb-item a {
    color: var(--heading);
    text-decoration: none;
    font-size: var(--font-sm);
    transition: .3s;
    font-weight: 500;
}

.breadcrumb-item {
/*    padding-right: 10px;*/
}

.breadcrumb-item a:hover {
    color: var(--gray-9);
}

.breadcrumb {
    margin-bottom: 10px;
}

.breadcrumb-wrapper {
    margin-bottom: 30px;
}

/*------------------ Breadcrumb Area End  ---------------*/









/*------------------ Categoria Area Start  ---------------*/

.popular-taglists a {
    display: inline-block;
    color: var(--gray-9);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.08px;
    text-decoration: none;
    border: 1px solid #E0E0E0;
    padding: 5px 10px;
    transition: .3s;
    margin-top: 24px;
}

.popular-taglists a:hover {
    border-color: #212121;
    color: #212121;
}

.popular-taglists {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px 15px;
}

.categoria-note .heading-two {
    margin-bottom: 15px;

}

.wrapper-col {
    padding-top: 45px;
}

.wrapper-top {
    border-top: 1px solid #E0E0E0;
}

.wrapper-col.wrapper-bottom {
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 50px;
    margin-bottom: 25px;
}



/*------------------ Categoria Area End  ---------------*/







/*-------- Custom  radio button Style Start --------*/



.select_dropdown_item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    transition: .3s;
}

.single_select_dropdown button {
    border: none;
    box-shadow: none;
    outline: none;
    background: transparent;
    color: #000;
    font-size: var(--font-base);
    display: flex;
    align-items: center;
    padding-left: 0;
}

.dropdown-toggle::after {
    content: "\f107";
    border: none;
    font-family: "Font Awesome 5 Pro";
    margin-left: 12px;
    font-weight: 300;
    font-size: var(--font-xl);
}

.single_select_dropdown .dropdown-menu {
    width: 200px;
}

.select_dropdown_item:hover {
    background-color: #f7f6f4;
}

/* Customize the label (the container) */
/* The container */
.codeplay-rd .container-rd {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: var(--font-xl);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 16px;

}

/* Hide the browser's default radio button */
.codeplay-rd .container-rd input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.codeplay-rd .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #000;
}

/* On mouse-over, add a grey background color */
.codeplay-rd .container-rd:hover input~.checkmark {
    background-color: transparent;
}

/* When the radio button is checked, add a blue background */
.codeplay-rd .container-rd input:checked~.checkmark {
    background-color: transparent;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.codeplay-rd .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.codeplay-rd .container-rd input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.codeplay-rd .container-rd .checkmark::after {
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
    transform: translate(-50%, -50%);
}

.container-rd p {
    margin: 0;
    font-size: var(--font-base);
    letter-spacing: .5px;
    font-weight: 400;
    position: relative;
    top: 2px;
    color: #000;
}

.container-rd p {
    font-weight: normal;
    /* Set the default font weight */
}

.container-rd.checked p {
    font-weight: bold;
    /* Set the font weight when the checkbox is checked */
}

/* Create the indicator (the dot/circle - hidden when not checked) */


/*-------- Custom  radio button Style End --------*/







.category-lists a:last-child {
    margin: 0;
}

/*
 *  STYLE 3
 */

#style-3::-webkit-scrollbar-track {
    background-color: transparent;
}

#style-3::-webkit-scrollbar {
    height: 0px;
    background-color: transparent;
}

#style-3::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.category-container {
    overflow-x: scroll;
    overflow-y: hidden;
    position: relative;
    z-index: 1;
    -webkit-overflow-scrolling: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.category-lists {
    width: auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    position: relative;
    z-index: 1;
}

.arrow-button {
    font-size: var(--font-lg);
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    margin-top: -6px;
    z-index: 9;
    width: 50px;
    text-align: right;
    height: 40px;
    line-height: 36px;
}

.category-container {
    scroll-behavior: smooth;
    /* ... other existing styles ... */
}

.arrow-button.left {
    left: 0px;
    text-align: left;
}

.arrow-button.right {
    right: 0px;
}

.main_scroller {
    position: relative;
}

.arrow-button.right svg {
    width: 20px;
    height: 36px;
}

.arrow-button::after {
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(270deg, #fff 60.09%, hsla(0, 0%, 100%, 0) 106.88%);
    z-index: -1;
}

.arrow-button.left::after {
    background: linear-gradient(90deg, #fff 60.09%, hsla(0, 0%, 100%, 0) 106.88%);
}

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

.category-navigation ul li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 20px;
}

.category-navigation li a {
    display: inline-block;
    color: var(--gray-9);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.08px;
    text-decoration: none;
    border: 1px solid #E0E0E0;
    padding: 4px 10px;
    transition: .3s;
    padding-top: 7px;
}

.category-navigation li a:hover {
    border-color: #212121;
    color: #212121;
}









/*-------- Searchbar area  Style Start --------*/


.search-popup-area {
    position: absolute;
    width: 100%;
    padding: 15px 0;
    background: #FAFAFA !important;
    top: 100%;
    z-index: 999;
    transition: .3s;
    left: 0;
    opacity: 0;
    visibility: hidden;
    margin-top: 1px;
}

.search-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-wrap button {
    border: none;
    font-size: var(--font-xl);
    margin-right: 10px;
    background: transparent;
}

.search-wrap button i {
    line-height: 1;
    position: relative;
    top: 2px;
}

.search-field {
    width: 100%;
    padding: 0 15px;
}

.search_x {
    width: 35px;
    text-align: right;
    padding-left: 10px;
}

.search-field input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 5px 5px;
    line-height: 1;
    font-size: var(--font-lg);
    height: 60px;
    color: #101828;
    transition: .3s;
}

.search-field {
    width: 100%;
    padding: 0 15px;
    padding-left: 0;
}

.search_x i {
    font-size: var(--font-xxl);
    font-weight: 400;
    line-height: 1;
    color: #101828;
    position: relative;
    top: 2px;
}

.search-popup-area.active {
    visibility: visible;
    opacity: 1;
}

.search-wrap button img {
    width: 27px;
}

.search_x img {
    transition: .3s;
    opacity: 1;
    width: 18px;
}

.search_x:hover img {
    opacity: .6;
}


input::-webkit-input-placeholder {
    color: #101828;
    transition: .3s;
}

input:focus::-webkit-input-placeholder {
    color: transparent
}

/* Firefox < 19 */
input:-moz-placeholder {
    color: #101828;
}

input:focus:-moz-placeholder {
    color: transparent
}

/* Firefox > 19 */
input::-moz-placeholder {
    color: #101828;
}

input:focus::-moz-placeholder {
    color: transparent
}

/* Internet Explorer 10 */
input:-ms-input-placeholder {
    color: #999;
}

input:focus:-ms-input-placeholder {
    color: transparent
}

.search-field .active {
    cursor: text;
}

/*-------- Searchbar area  Style End --------*/









.header-fixed .header-bottom-area {
    background: transparent;
    border-color: transparent;
}

header.header-fixed {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: .2s;
}




/*-------- Vertical Item Area Style Start --------*/



.single_hero_item {
    background-position: center;
    background-size: cover;
    background-color: #101828;
    height: 100vh;
}

.single_hero_item .vertical-item-content {
    padding-top: 180px !important;
}









.vertical-item {
    position: relative;
    z-index: 1;
    margin-bottom: 2px;
}

.vertical-item img {
    width: 100%;
}

.vertical-item-content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    padding: 100px 40px;
}

.hero-item {
    padding-top: 200px;
}

.hero-main .slick-dots {
    bottom: 15px;
    z-index: 99;
}

.vertical-content {
    text-align: center;
}

.header-fixed .header-bottom-area.sticky {
    background: #fff;
    border-color: #E0E0E0 !important;
}

.vertical-content h1 {
	color: white;
    /*color: var(--gray-8, #424242);*/
    font-size: var(--font-4xl);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.24px;
}

.vertical-content h1 strong {
    font-weight: 600;
}

.vertical-content span {
	color: white;
    /*color: var(--gray-8, #424242);*/
    font-size: var(--font-4xl);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.24px;
    display: block;
    margin-bottom: 15px;
}

.vertical-content span strong {
	font-size:80px;
    font-weight: 600;
}




.vertical-content b {
	color: white;
    /*color: var(--heading, #101828);*/
    font-size: var(--font-base);
    font-weight: 600;
    line-height: 150%;
    display: block;
    margin-bottom: 10px;
}

.explore-btn a {
	color: #ffffff;
    /*color: var(--heading, #101828);*/
    font-size: var(--font-md);
    font-weight: 400;
    line-height: 130%;
    display: inline-flex;
    transition: .3s;
    align-items: center;
    text-decoration: none;
}

.explore-btn a i {
    font-size: var(--font-xl);
    transition: .4s;
    position: relative;
    margin-left: 10px;
    left: 0;
}

.explore-btn a:hover i {
    left: 6px;
}

/*-------- Vertical Item Area Style Start --------*/





/*-------- Categories Card Area Style Start --------*/
.categories-wrapper {
    display: grid;
    grid-template-columns: repeat(3, calc(33.33% - 2px));
    gap: 0 2px;
}

.category-card {
    position: relative;
    z-index: 1;
    margin-bottom: 2px;
}

.category-card a {
    display: inline-block;
    position: relative;
}

.category-card-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 15px 25px;
}

.category-card-content span {
	top: 90%;
    color: var(--gray-8, #ffffff);
    /*color: var(--gray-8, #424242);*/
    font-size: var(--font-xl);
    font-weight: 600;
    line-height: 31.2px;
    letter-spacing: 0.2px;
    position: relative;
    /*top: 0;*/
    transition: .4s;
}

/*-------- Categories Card Area Style End --------*/





/*-------- Gallery Area Style Start --------*/
.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 2px));
    gap: 0px 2px;
}

.gallery-item {
    margin-bottom: 2px;
}

/*--------  Gallery Area Style End --------*/




/*--------  Father Category Area Style Start --------*/
.father-product-thumbnail {
    position: relative;
}

.father-product-thumbnail img {
    width: 100%;
}

.father-product-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
}

.father-product-text::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    /*background-color: #000;*/
    z-index: -1;
    opacity: .3;
}


.father-content span {
    color: var(--white, #FFF);
    text-align: center;
    font-size: var(--font-xl);
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0.16px;
    display: inline-block
}

.father-content a {
    color: #fff;
    font-size: var(--font-base);
    text-decoration: underline;
}

.father-product-description {
    /*padding: 10px 10px;*/
}

.father-product-description p {
    font-size: var(--font-base);
    margin-bottom: 0;
}

.father-product-item {
    margin-bottom: 20px;
}

.father-product-area {
    padding-bottom: 15px;
}

.father-content {
    position: relative;
    top: 0;
    transition: .3s;
}

/*--------  Father Category Area Style End --------*/






/*--------  Wishlists Area Style Start --------*/
.wishlist-area {
    padding: 70px 0;
}

.wishlist-title-wrap {
    background: var(--gray-1, #F2F3F4);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.wisht-title span {
    color: var(--heading, #101828);
    font-size: var(--font-xl);
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    top: 3px;
}

.wish-left {
    display: flex;
    align-items: center;
}

.favorite-item {
    padding-left: 30px;
    position: relative;
    top: 2px;
}

.wish-right button {
    border: none;
    padding: 0;
    margin: 0;
    margin-left: 25px;

}

.wish-right img {
    width: 22px;
}

.wish-thumb {
    width: 120px;
}

.wish-item {
    padding: 25px 0;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
}

.wish-content {
    padding-left: 16px;
}

.wish-content {
    padding-left: 16px;
    width: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wish-content-top span {
    color: #101828;
    font-size: var(--font-md);
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.09px;
    display: block;
    margin-bottom: 8px;
}

.product-color {
    display: flex;
    align-items: center;
}

.product-color button {
    background: #B6AB90;
    width: 24px;
    height: 24px;
    border: none;
    margin-right: 16px;
    display: inline-block;
}

.product-color p {
    color: var(--text, #101828);
    font-size: var(--font-xsm);
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 0.06px;
    margin: 0;
    line-height: 1;
    position: relative;
    top: 2px;
}

.wishlist-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.taglist ul li {
    display: inline-block;
    margin-right: 14px;
    text-decoration: none;
}

.taglist ul li a {
    color: #101828;
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 150%;
    /*  */
    text-decoration-line: underline;
}

.quentity-wrpa {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.quantity-count input {
    border: 1px solid var(--gray-6, #757575);
    width: 22px !important;
    height: 21px !important;
    text-align: center;
    color: #101828;
    font-size: var(--font-xsm);
    display: inline-flex;
    border-radius: 0 !important;
    align-items: center;
    vertical-align: middle;
    padding: 2px !important;
    padding-top: 3px !important;
}

.quantity-count button {
    background: #EFEFEF;
    border: none;
    width: 22px !important;
    height: 22px !important;
    border: none;
    font-size: var(--font-lg);
    font-weight: 400;
    margin: 0 10px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #101828;
}

.quantity-count {
    display: flex;
    align-items: center;
}

.price-txt span {
    color: #101828;
    text-align: center;
    font-size: var(--font-base);
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 0.09px;
    position: relative;
    top: 2px;
}

.nice-number {
    display: inline-flex;
    align-items: center;
}

.total-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 24px;
}

.total-box ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #101828;
    font-size: var(--font-md);
    font-weight: 500 !important;
    line-height: 150%;
    letter-spacing: 0.09px;
}

.total-box {
    background: #F9F9F9;
    padding: 32px 24px;
}

span.txt-large {
    color: #939393;
    font-size: var(--font-lg);
    text-align: right;
}

.txt-large i {
    font-style: normal;
    color: #101828;
}

.txt-black {
    color: #101828 !important;
    font-weight: 500;
}

select#entrega-select {
    margin-left: 40px;
}

select#entrega-select {
    height: 26px;
    color: var(--heading, #101828);
    font-size: var(--font-sm);
    font-style: normal;
    font-weight: 500 !important;
    width: 196px;
    padding: 4px 10px;
    border: 1px solid #E0E0E0;
    outline: none;
    box-shadow: none;
    line-height: 21px;
    /* 150% */
}

select#entrega-select option {
    font-weight: 500;
    padding: 4px 1px;
}

.invoice-txt {
    color: #101828;
    font-size: var(--font-sm);
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.07px;
}

.total-box li:last-child {
    align-items: flex-start;
}

.order_btn {
    padding: 15px 24px;
    text-align: center;
    background: #101828;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #101828;
    transition: .3s;
    line-height: 1;
    padding-top: 18px;
    display: block;
    text-transform: uppercase;

}

.order_btn:hover {
    background-color: transparent;
    color: #101828;
}

.order-btns {
    margin-bottom: 30px;
}

.payment-options span {
    color: var(--heading, #101828);
    font-size: var(--font-md);
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

.payment-options ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.payment-options ul li {
    display: inline-block;
    margin: 0 5px;
}

.payment-options ul li img {
    max-height: 20px;
    width: 40px;
}

.wishlist-view-tabs ul {
    border: none;
}

.wishlist-view-tabs .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    background-color: transparent;
    border: none;
}

.wishlist-view-tabs .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: unset;
    background-color: transparent;
    border-color: none;
}

.wishlist-view-tabs .nav-link img {
    opacity: .4;
    transition: .3s;
}

.wishlist-view-tabs .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active img {
    opacity: 1;
}

.favorite-taglist a {
    color: #101828;
    font-size: var(--font-base);
    font-weight: 500;
    line-height: 18px;
    text-decoration-line: underline;
}

.fv-text {
    padding: 15px 8px;
}

.favorite-taglist {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.price-text {
    margin-top: 5px;
}

.price-text span {
    color: #101828;
    font-size: var(--font-base);
    font-weight: 300;
    line-height: 24px;
}

.favorite-product {
    margin-bottom: 10px;
}

.favorite-products {
    margin-bottom: 50px;
}



/*--------  Wishlists Area Style End --------*/




/*--------  Product Details Page Style Start --------*/

.product-details-left {
    padding-bottom: 25px;
}

.slick-dots {
    bottom: 12px;
}

.slick-dots li button {
    width: 25px !important;
    height: 4px !important;
    background: #cdcdcd;
    border-radius: 0;
    transition: .3s;
    padding: 0;
}

.slick-dots li button:before {
    display: none;
}

li.slick-active button {
    background: #212121;
}

.product-details-left .social-links ul li a {
    display: inline-block;
    line-height: 1;
    color: #212121;
}

.product-details-left .social-links ul li a:hover {
    color: #757575;
}

.size-selector-wrap p {
    color: #101828;
    font-size: var(--font-base);
    font-weight: 500;
    line-height: 27px;
    /* 168.75% */
    letter-spacing: 0.08px;
}

.selector-one .nice-select {
    color: var(--gray-9, #212121);
    text-align: center;
    font-size: var(--font-base);
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: 0.08px;
    height: 56px;
    width: 100%;
    border-radius: 0;
}

ul.list {
    width: 100%;
    border-radius: 0 !important;
}

.nice-select:after {
    border-bottom: 1px solid #101828;
    border-right: 1px solid #101828;
    height: 11px;
    margin-top: -7px;
    right: 17px;
    width: 11px;
}


.fabric-bage button {
    border: 0.7px solid #101828;
    display: inline-block;
    width: 64px;
    /*height: 64px;*/
    margin-right: 25px;
    opacity: 1;
    position: relative;
    color: #757575;
    font-size: var(--font-lg);
    font-weight: 300;
    margin-bottom: 15px;
    padding: 0;
    background-color: transparent;
    transition: .1s;
}

.fabric-bage img {
    height: 100%;
    width: 100%;
}

.fabric-bage button:after {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100%);
    background: transparent;
    border: 3px solid #fff;
    content: '';
    height: 100%;
    opacity: 0;
    transition: .1s;
}

.fabric-bage button.active:after {
    opacity: 1;
    visibility: visible;
}

.fabric-bage button.active {
    border-color: #424242;
    border-width: 3px;
}



.fabric-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.add_febtic button {
    border: 0.7px solid #101828;
    display: inline-block;
    transition: .3s;
    opacity: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: var(--font-lg);
    font-weight: 300;
    background-color: #fff;
    width: 64px;
    height: 64px;
}

.add_febtic button::after {
    display: none;
}

.add_febtic button.active {
    border: 0.7px solid #101828 !important;
    background-color: #fff !important;

}

.fabric-bage {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}



.febric-type-wrap {
    margin-top: 20px;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
}

.febric-type-wrap p {
    color: #101828;
}


.cart-btn button {
    background: #212121;
    width: 100%;
    border: none;
    color: #fff;
    height: 56px;
    font-size: var(--font-lg);
    transition: .3s;
    line-height: 56px;
    padding: 0;
}

.cart-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-main-btn {
    width: calc(100% - 64px);
    padding-right: 4px;
}

.cart-favorite-btn {
    width: 64px;
}

.cart-favorite-btn button i {
    line-height: 1;
    position: relative;
    top: 3px;
}

.product-info-lists ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-info-lists ul li {
    padding: 12px 0;
    color: #101828;
    font-size: var(--font-base);
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.08px;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-info-lists {
    margin-top: 10px;
}

.product-info-lists ul li button {
    border: none;
    padding: 0;
    background: transparent;
    margin: 0;
    line-height: 1;
    color: #757575;
    font-size: var(--font-md);
}

.details-tabs-content {
    margin-top: 40px;
}

.product-details-tabs {
    margin-top: 25px;
}

.details-tab-lists {
    border-bottom: 1px solid #E0E0E0;
}

.details-tab-lists .nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid transparent;
    color: #101828;
    font-size: var(--font-base);
    padding: 5px 16px;
}

.details-tab-lists ul li button.active {
    border-color: #000 !important;
}

.details-tab-lists ul {
    position: relative;
    bottom: -1px;
}

.tab-content-body {
    padding-top: 40px;
    padding-bottom: 40px;
}

.recommended-area {
    padding: 60px 0;
}

.wish-fvrt a {
    color: #101828;
    font-size: var(--font-base);
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0.12px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.wish-fvrt a i {
    margin-right: 12px;
}

.back_btn {
    border: 1px solid #101828;
    display: inline-flex;
    text-decoration: none;
    text-transform: uppercase;
    color: #101828;
    font-weight: 500;
    padding: 15px 24px;
    align-items: center;
    line-height: 1;
    padding-top: 19px;
    transition: .3s;
}

.back-btn-wrap {
    margin-top: 125px;
}

.back_btn i {
    font-size: var(--font-xl);
    line-height: 1;
    position: relative;
    top: -2px;
    margin-right: 10px;
}

.back_btn:hover {
    color: #fff;
    background-color: #101828;
}

.title-md span {
    font-size: var(--font-lg);
}

/*--------  Product Details Page Style End --------*/









/*--------  CheckOut Page Style Start --------*/
.modifire span {
    color: var(--heading, #101828);
    text-align: center;
    font-size: var(--font-md);
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.modifire span i {
    margin-right: 10px;
}

.single-field input {
    border: 1px solid #E0E0E0;
    height: 40px;
    padding: 6px 12px;
    color: #101828;
    font-size: var(--font-base);
    width: 100%;
}

.single-field {
    margin-bottom: 15px;
}

.single-field .selector-one .nice-select {
    height: 40px;
    line-height: 42px;
}

.single-field {
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.form-ck-wrap p {
    color: #000;
    padding-left: 12px;
    cursor: pointer;
}

.form-ck-wrap p img {
    max-height: 18px;
    margin-right: 10px;
}

.form-ck-wrap p {
    display: flex;
    align-items: center;
    margin: 0;
}

.payment-method-select .form-check {
    display: flex;
    align-items: center;
}

.payment-method-select .form-ck-wrap {
    padding: 14px 0;
    border-bottom: 1px solid #E0E0E0;
}

.payment-method-select .form-ck-wrap:first-child {
    border-top: 1px solid #E0E0E0;
}

.tooltip_txt {
    display: block;
    margin-top: 12px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.form-ck-wrap p b {
    margin-left: 12px;
}

.back-btn-wrap.back-wrap-2 {
    margin-top: 65px;
}

.wishlist-area.checkout-wishlist-area {
    padding-top: 10px;
}

.form-ck-wrap.active .tooltip_txt {
    opacity: 1;
    visibility: visible;
    display: block;
}

/*--------  CheckOut Page Style End --------*/







/*--------  Login Page Style Start --------*/
.login-area {
    padding: 70px 0;
}

.login-form-wrapper {
    max-width: 420px;
    margin: 0 auto;
}

.form-btn button {
    width: 100%;
}

.option-line {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 15px 0;
    position: relative;
}

.option-line span {
    color: var(--heading, #101828);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: normal;
    display: inline-block;
    padding: 2px 15px;
    background-color: #fff;
}

.login-form p a {
    color: #101828;
    font-size: var(--font-sm);
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    text-decoration: none;
}

.option-line:after {
    background: #E0E0E0;
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.single-field label {
    color: var(--heading, #101828);
    font-size: var(--font-base);
    font-weight: 500;
    line-height: 24px;
    display: block;
    margin-bottom: 5px;
}

.login-options a {
    display: inline-flex;
    width: 100%;
    border: 1px solid #101828;
    text-align: center;
    text-decoration: none;
    color: #424242;
    font-size: var(--font-base);
    font-weight: 400;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 52px;
    line-height: 51px;
}

.login-options a img {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
}

.form-title {
    margin-bottom: 15px;
}

.with-icon {
    position: relative;
}

.with-icon i {
    color: #1A1A14;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: inline-block;
}

.login-options a {
    text-transform: uppercase;
}

.login-form .selector-one .nice-select {
    height: 40px;
    line-height: 40px;
    padding-left: 12px;
    padding-right: 12px;
}

.login-form .selector-one {
    margin-bottom: 12px;
    display: inline-block;
    width: 100%;
}

.form-check p a {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    margin-left: 10px;
}

/*--------  Login Page Style End --------*/








/*--------  Contact Style End --------*/
.contact-area {
    padding: 70px 0;
    position: relative;
}

.contact-title p {
    font-size: var(--font-md);
    color: #101828;
}

.single-field textarea {
    width: 100%;
    height: 100px;
    padding: 12px;
    border: 1px solid #E0E0E0;
    color: #101828;
}

.single-field textarea::placeholder {
    opacity: 1;
    color: #101828;
}

.main-infos p {
    color: #101828;
    font-size: var(--font-base);
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.09px;
}

.main-infos p a {
    color: #101828;
    font-weight: 500;
    text-decoration: none;
}

.main-infos {
    margin: 25px 0;
}

.contact-info-wrap span {
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: var(--font-md);
}

.contact-info-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-info-wrap ul li {
    color: #101828;
    font-size: var(--font-base);
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 150% */
    letter-spacing: 0.12px;
    margin-bottom: 6px;
}

.contact-info-wrap ul li b {
    font-weight: 500;
}

.contact-info-wrap {
    margin-bottom: 35px;
}

.contact-method p {
    color: #101828;
    font-size: var(--font-base);
    font-style: normal;
    font-weight: 300;
    line-height: 27px;
    letter-spacing: 0.09px;
    margin-bottom: 8px;
}

.contact-method p a {
    color: #101828;
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.09px;
    text-decoration: none;
}

.contact-form {
    margin-top: 25px;
}

.contact-wrapper-main {
    width: 50%;
    padding-left: 0;
    padding-right: 100px;
}

.contact-presentation-bg {
    width: 50%;
}

.contact-area {
    padding: 70px 0;
    position: relative;
    display: flex;
}

.contact-presentation-bg img {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: auto;
    /* Set the height as needed */
}



/*--------  My Account Page Style Start --------*/
.page-banner {
    background-image: url('/assets/img/area-de-cliente.jpg');
    position: relative;
    z-index: 1;
    background-position: center;
    background-size: cover;
    height: 350px;
    padding: 20px 65px;
    display: flex;
    align-items: center;
}

.page-banner::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    background-color: #000;
    z-index: -1;
    opacity: .4;
}

.banner-content {
    display: flex;
    justify-content: flex-end;
}

.banner-text span {
    color: #FFF;
    font-size: var(--font-xl);
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.12px;
    text-transform: uppercase;
}

.banner-text {
    text-align: center;
}

.banner-btn a {
    display: inline-block;
    padding: 15px 24px;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: .3px;
    transition: .3s;
}

.banner-btn {
    margin-top: 15px;
}

.banner-btn a:hover {
    background-color: #fff;
    color: #000;
}



.my-account-area {
    padding: 70px 0;
}

.account-tabs-wrapper .details-tab-lists li {
    width: 33.33%;
    text-align: center;
}

.account-tabs-wrapper .details-tab-lists li button {
    width: 100%;
    text-align: center;
}

.product-details-tabs .total-box ul {
    margin: 0;
}

.product-details-tabs .total-box ul li:last-child {
    margin: 0;
}

.order-history-box {
    padding: 20px 20px;
    background: var(--gray-1, #F2F3F4);
    margin-bottom: 40px;
}

.order-history-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-history-box ul li {
    display: inline-block;
    margin-right: 30px;
    color: #101828;
    font-size: var(--font-base);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.order-history-box ul li b {
    display: inline-block;
    margin-right: 5px;
    font-weight: 600;
}

.order-history-box ul li span {
    display: inline-block;
    background: #BF2928;
    height: 12px;
    width: 12px;
    border-radius: 100%;
    margin-right: 5px;
    position: relative;
    top: 1px;
}

.product-details-tabs .wishlist-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-details-tabs .tab-content-body {
    padding: 0;
}

.order-history-wrapper {
    margin-top: 45px;
}

.save-and-edit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 15px
}

/*--------  My Account Page Style End --------*/




/*--------  Thank-You Page Style Start --------*/
.btn-bg-black {
    background: #212121;
    color: #fff;
}

.thankyou-box {
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid #E0E0E0;
}

.thankyou-box img {
    width: 30px;
    margin-bottom: 15px;
}

.thankyou-box h4 {
    font-size: var(--font-md);
}

.thankyou-box p {
    color: #101828;
    text-align: center;
    font-size: var(--font-md);
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.09px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.thankyou-box span {
    color: #101828;
    text-align: center;
    font-size: var(--font-md);
    font-weight: 300;
    line-height: 27px;
    letter-spacing: 0.09px;
    display: block;
}

.payed-message {
    background: #F2F3F4;
    max-width: 314px;
    margin: 0 auto;
    margin-top: 15px;
    padding: 15px 35px;
    text-align: center;
}

.payed-message p {
    text-transform: capitalize;
}

.history-card {
    margin-top: 50px;
}

.card__title {
    background: #F2F3F4;
    padding: 12px 16px;
    padding-top: 16px;
}

.card__title span {
    margin: 0;
    text-transform: uppercase;
    font-size: var(--font-lg);
}

.hostory-lists {
    padding: 16px;
    border: 1px solid #E0E0E0;
    border-top: none;
    height: 100%;

}

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

.hostory-lists ul li {
    color: #101828;
    font-size: var(--font-md);
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.09px;
    margin-bottom: 8px;
}

/*--------  Thank-You Page Style End --------*/











/*--------  FAQ Page Style End --------*/
.faq-area {
    padding: 70px 0;
    position: relative;
}

.faq-wrapper {
    max-width: 940px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.faq-title span {
    /*text-transform: uppercase;*/
}

.accordion-button:not(.collapsed) {
    color: #101828;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.accordion-body {
    padding-top: 0;
}

.accordion-body p:last-child {
    margin: 0;
}

.accordion-body p {
    color: #101828;
}

.accordion-button {
    border-radius: 0 !important;
}

.accordion-item {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-color: #BDBDBD !important;
    border-left: 0;
    border-right: 0;
}

.accordion-button {
    width: 100%;
    padding: 15px 0;
    font-size: var(--font-base);
    border: 0;
    border-radius: 0;
    /*text-transform: uppercase;*/
    color: #101828;
    font-weight: 500;
    padding-left: 30px;
}

.accordion-body {
    padding: 0;
    padding-top: 5px;
    padding-bottom: 20px;
    padding-left: 30px;
}

.accordion-button::after {
    width: 18px;
    height: 20px;
    background-size: 18px;
    position: absolute;
    left: 0;
    margin-top: -2px;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0.5);
}

.faq-title {
    margin-bottom: 15px;
}

.for-sure-area {
    text-align: center;
    padding: 70px 0;
}

.for-sure span {
    /*text-transform: uppercase;*/
}

.for-sure p {
    color: #101828;
    margin-bottom: 7px;
    font-weight: 300;
}

/*--------  FAQ Page Style End --------*/






/*--------  Page Hero Area Style Start --------*/
.page-hero-area {
    background-image: url(../img/page-hero-bg-1.jpg);
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    background-position: center;
    background-size: cover;

}

.page-hero-area::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    background-color: #000;
    z-index: -1;
    opacity: .4;
}

.page-hero-content h1 {
    color: var(--white, #FFF);
    font-size: var(--font-4xl);
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0.36px;
}

.page-hero-content p {
    color: var(--white, #FFF);
    font-size: var(--font-md);
    font-weight: 300;
    line-height: 27px;
}

.page-hero-content p:last-child {
    margin-bottom: 0;
}

/*--------  Page Hero Area Style End --------*/





/*--------  About Page Style Start --------*/
.about-wrapper-single {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
}

.about-content-block {
    height: 100%;
    width: 50%;
    padding: 00px 80px;
}

.about-history-block {
    height: 100%;
    width: 50%;
    padding: 80px;
    padding-left: 0;
    padding-top: 50px;
}

.about-thumbnail-block {
    width: 50%;
    height: 100%;
}

.about-content strong {
    color: var(--text, #939393);
    font-size: var(--font-base);
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 5px;
    display: block;
}

.about-content p {
    color: #939393;
    letter-spacing: 0.09px;
    font-weight: 400;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content blockquote {
    margin-top: 15px;
    display: block;
    margin-bottom: 10px;
    color: #101828;
    font-size: var(--font-base);
    font-weight: 600;
    line-height: 19.2px;
}

.about-history .about-content {
    margin-top: 30px;
}

.team-area {
    padding: 70px 0;
}

.history-content-area .categoria-note {
    max-width: 650px;
}

.history-content-area .categoria-note p {
    color: #939393;
    font-weight: 400;
}

.history-content-area {
    padding: 70px 0;
}

/*--------  About Page Style End --------*/





/*--------  Hero Slider Section Style Start --------*/
.hero-slide-item {
    position: relative;
    z-index: 1;
    height: 645px;
    display: flex !important;
    align-items: center;
    background-position: center;
    background-size: cover;
    padding: 50px 70px;
}

.hero-slide-item::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    background-color: #000;
    z-index: -1;
    opacity: .4;
}

.slide-item-1 {
    background-image: url(../img/hero-slide-1.jpg);
}

.slide-item-2 {
    background-image: url(../img/hero-slide-2.jpg);
}

.hero-slide-content h1 {
    color: var(--white, #FFF);
    font-size: var(--font-4xl);
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0.36px;
    margin-bottom: 10px;
    display: block;
}

.hero-slide-content p {
    color: var(--white, #FFF);
    font-size: var(--font-md);
    font-weight: 300;
    line-height: 27px;
}


/*--------  Hero Slider Section Style End --------*/



/*--------  Hero Slider Section Style End --------*/

.article-single {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-content {
    padding: 80px;
    width: 33.33%;
}

.article-slider {
    width: 66.66%;
}

.article-single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
}

.contact-area-two {
    padding: 70px 0;
}

.contact-wrapepr-two {
    max-width: 615px;
    margin: 0 auto;
}

.entrega .nice-select {
    height: 24px;
    line-height: 24px;
    border-radius: 0;
    border-color: #E0E0E0;
    padding: 0 10px;
    padding-right: 25px;
    width: 190px;
    font-weight: 500;
}

.nice-select:after {
    border-bottom: 1px solid #101828;
    border-right: 1px solid #101828;
    height: 8px;
    margin-top: -5px;
    right: 12px;
    width: 8px;
}

.entrega {
    display: flex;
    align-items: center;
}

.entrega b {
    font-weight: 500;
    margin-right: 30px;
}

.entrega .nice-select .option {
    line-height: 26px;
    min-height: 24px;
    padding-left: 10px;
    padding-right: 30px;
    font-size: 14px;
    margin-bottom: 0;
}


.hero-slider-area {
    position: relative;
}

.slide_itm_bg {
    height: 650px;
    background-position: center;
    background-size: cover;
}


.hero-slide--wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero__sliders .slick-dots {
    z-index: 99;
}

.hero-slide--wrapper::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    background-color: #000;
    z-index: -1;
    opacity: .4;
}

.article-area {
    margin-bottom: 2px;
}


.menu_link_3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu_step_3 {
    position: fixed;
    width: 540px;
    height: 100%;
    left: -100%;
    padding: 50px;
    background: #fff;
    top: 0;
    z-index: 99;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.active.active_3 .menu_step_3 {
    opacity: 1;
    visibility: visible;
    left: 0;
}

.product-inf-right span {
    color: #101828;
    font-size: var(--font-base);
    font-weight: 400;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    line-height: 1px;
}

.hero_slider_main {
    margin-bottom: 2px !important;
}

.hero_slider_main .slick-dots li button {
    width: 25px !important;
    height: 4px !important;
    border-radius: 0;
    padding: 0;
}

.hero_slider_main .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 6px !important;
}

.slick-dots li {
    width: auto;
    height: auto;
    margin: 0 6px !important;
}

.product-inf-right span {
    align-items: flex-end;
    padding-bottom: 5px;
}

.tab-content-body p {
    color: #101828 !important;
}

.info_collapse {
    margin-top: 15px;
}

.info_collapse ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 10px;
}

.info_collapse ul li {
    font-size: var(--font-sm);
    color: #101828;
    FONT-WEIGHT: 400;
    display: block;
    margin-bottom: 5px;
    letter-spacing: .3px;
}

.info_collapse img {
    width: 180px;
    margin-top: 5px;
}

.info_collapse.active i:before {
    content: "\f068";
}

.show-in-mobile {
    display: none;
}

.selected-quantity {
    margin: 0 12px;
}

.history-card .heading-two {
    line-height: 120%;
}

.history-card .card__title {
    padding-top: 14px;
}


.hostory-lists input {
    width: 100%;
    height: 50px;
    border: none;
    padding: 10px 20px;
}

.custom_filend {
    padding: 0;
}






.payment-checkout .wishlist-title-wrap {
    height: 40px;
    padding: 0 15px;
    margin-bottom: 15px;
}

.payment-checkout .form-ck-wrap {
    height: auto;
    padding: 6px 15px;
    border: 1px solid #E0E0E0;
    margin-bottom: 15px;
}

.checkout-top-check .form-ck-wrap {
    border: 1px solid #E0E0E0;
    padding: 6px 15px;
    margin-bottom: 15px;
}

.checkout-top-check .form-ck-wrap .form-check {
    display: flex;
    align-items: center;
}

.ck-collapse .ck-form {
    display: none;
}

.ck-collapse.active .ck-form {
    display: block;
}

.payment-trams {
    margin-bottom: 12px;
}

.payment-trams label {
    color: var(--gray-9, #212121);
    padding-left: 10px;
}

.payment-trams a {
    color: var(--gray-9, #212121);
    text-decoration: underline;
}

.detail-thumb-item {
    text-align: center;
}

.detail-thumb-item img {
    width: auto;
    margin: 0 auto;
    height: 520px;
    object-fit: contain;
    /*object-position: top;*/
}

.mfp-counter {
    display: none !important;
}

.details-sliders .slick-dots li button {
    width: 25px !important;
    height: 4px !important;
    border-radius: 0;
    padding: 0;
}

.details-sliders .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 6px;
}

.vbox-close {
    top: 5px;
    right: 10px;
}

.nice-number button {
    padding-top: 1px;
}

.nice-number input~button {
    padding-top: 3px;
}

.wish-thumb img {
    width: 100%;
}

img.paypal-img {
    max-height: 23px !important;
    max-width: 35px !important;
    width: 36px;
}

.form-ck-wrap p i {
    position: relative;
    font-style: normal;
    top: 2px;
    line-height: 1;
}

.slider-details-2 .detail-thumb-item img {
    height: 1000px;
}

.details-sliders .slick-arrow {
    position: absolute;
    height: 100%;
    width: 20%;
    z-index: 9;
}

.details-sliders .slick-arrow:before {
    display: none
}

.details-sliders .slick-prev {
    left: 0;
}

.details-sliders .slick-next {
    right: 0;
}

.per_4 {
    display: none;
}

.social_block_mobile {
    display: none;
}

.product-color img {
    width: 24px;
    margin-right: 12px;
}

.father-product-description p {
    color: #101828;
}

.father-product-description {
    text-align: center;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.product-details-left .social-links {
    margin-top: 20px;
}

.social-links.social_block_mobile {
    margin-top: 30px;
}

.menu-control-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 210px;
    width: 100%;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.submenu-content {
    margin-top: 130px;
}

.menu-control-bg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #000;
    z-index: -2;
    opacity: .3;
}

.menu-wrapper img {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    border-radius: 100%;
    object-fit: cover;
}

.selected-quantity input {
    width: 28px !important;
    height: 28px !important;
    padding: 2px !important;
    padding-top: 4px !important;
}





.color-sidebar {
    position: fixed;
    top: 0;
    width: 700px;
    background: #fff;
    z-index: 9999;
    right: -100%;
    height: 100%;
    padding: 60px 100px;
    padding-right: 0px;
    border-left: 1px solid #E0E0E0;
    transition: .3s ease;
    padding-top: 100px;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.color-sidebar.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.sidebar__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    padding: 0 100px;
    padding-right: 112px;
}

.sidebar__title button {
    background: transparent;
    border: none;
    font-size: var(--font-xl);
    line-height: 1;
    padding: 0;
}

.fabric-view img {
    transition: .1s;
    width: 100%;
    height: 100%;
}

.fabric-view {
    margin-bottom: 8px;
    position: relative;
    border: 1px solid #101828;
    height: 104px;
}

.fabric-item span {
    font-size: var(--font-sm);
    color: #212121;
    display: block;
    margin-bottom: 10px;
    line-height: 16px;
}

.fabric-item {
    margin-bottom: 20px;
}

.fabric-view:after {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100%);
    background: transparent;
    border: 4px solid #fff;
    content: '';
    height: 100%;
    transition: .3s;
    opacity: 0;
}

.fabric-item.active .fabric-view:after {
    opacity: 1;
    visibility: visible;
}

.sidebar__title span {
    margin-bottom: 0;
}

.fabric-item.active .fabric-view {
    border-width: 4px;
}

.fabric-item {
    margin-bottom: 20px;

}

#style-4::-webkit-scrollbar-track {
    background-color: #F1F1F1;
}

#style-4::-webkit-scrollbar {
    width: 15px;
    background-color: #E0E0E0;
}

#style-4::-webkit-scrollbar-thumb {
    background-color: #E0E0E0;
}

.febric-note {
    background-color: #f0efeb;
    padding: 10px 12px;
    margin-bottom: 25px;
    margin-top: 35px;
    margin-right: 112px;
}

.febric-note span {
    margin-bottom: 2px;
}

.febric-note p {
    color: #101828;
}

.febric-note p:last-child {
    margin: 0;
    letter-spacing: .2px;
}

.useful-content {
    padding: 25px 0;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}

.useful-links li:last-child {
    margin: 0;
}

.info_collapse {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E0E0E0;
    display: none;
}

.info_collapse.active {
    display: block;
}

.info_collapsBtn.active {
    border-color: transparent;
}

.info_collapsBtn.active button i:before {
    content: "\f068" !important;
}

.fabric-items-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fabric-item {
    margin-bottom: 20px;
    width: 104px
}

.fabric-item .product-price strong {
    font-size: var(--font-sm);
}

.febric-color-box {
    height: calc(100% - 90px);
    overflow-y: scroll;
    padding-right: 99px;
}

.febric-color-wrap {
    width: 100%;
    display: inline-grid;
}








.product_wrap_2 {
    display: grid;
    grid-template-columns: repeat(3, calc(33.33% - 11px));
    gap: 0 15px;
}


.product_wrap_2.item_10 {
    grid-template-columns: repeat(8, calc(12.5% - 7px));
    gap: 0 8px;
}

.overflow-hidden .overlay-bg.active {
    z-index: 9999;
}

.product_wrap_2.item_10 .product-thumbnail img {
    width: 100%;
 
    object-fit: cover;
}

.febric-box {
    display: flex;
    align-items: flex-start;
}

.mfp-arrow {
    opacity: 0 !important;
}










.product-thumbnail {
    width: 100%;
    /* Ensures the container spans the width of its parent */
    max-width: 400px;
    /* Adjust max-width as needed */
    position: relative;
    /* Needed for absolutely positioning child elements */
    overflow: hidden;
    /* Hides any overflowing content */
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 125%;
    /* Sets the aspect ratio to 4:5 (5 / 4 * 100%) */
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the container */
}

.products__wrap.product_wrap_2 .product-thumbnail {
    width: 100%;
    max-width: 100%;
}

.febric-color-box .febric-note {
    margin-right: 0 !important;
}
.submenu_lists {
    /*height: calc(100vh - 240px) !important;*/
	height: calc(100vh - 40px) !important;
    overflow-y: scroll;
}

.submenu_lists::-webkit-scrollbar-track
{
	background-color: #F5F5F5;
}

.submenu_lists::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.submenu_lists::-webkit-scrollbar-thumb
{
	background-color: #000000;
}