@charset "UTF-8";
/* ============ INCLUDE STYLES AND COMPONENTS ======= */
/* ================== BASE =================== */
:root {
    --ColorOne: 43, 207, 151;
    --ColorTwo: 222, 226, 230;
    --ColorThree: 222, 226, 230;
    --ColorFour: 167, 157, 157;
    --ColorFive: 0, 207, 232;
    --ColorWhite: 255, 255, 255;
    --font-body-family: 'Montserrat', sans-serif;
    --font-body-style: normal;
    --font-body-weight: 400;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font-body-family) !important;
    font-style: var(--font-body-style) !important;
    font-weight: var(--font-body-weight) !important;
}


a.title, .title a, a .title {
    text-decoration: none;
}

a {
    color: rgb(var(--ColorOne))
}

    a.title:hover, .title a:hover, a .title:hover {
        color: #0a58ca;
        cursor: pointer;
        /*text-decoration: underline;*/
    }

.content-body {
    flex: 1 1 auto;
    padding: 1.88rem;
}

.img-wrap {
    position: relative;
    text-align: center;
    overflow: hidden;
    display: block;
    height: 150px;
}

    .img-wrap img {
        object-fit: contain;
    }

a:hover > .img-thumbnail {
    border-color: #9DA1A7;
}

.table-lg th, .table-lg td {
    padding: 1rem;
}

.bg-center {
    background-position: center center;
}

.bg-cover {
    background-size: cover;
}

.bg-dark-50 {
    background-color: rgba(33, 37, 41, 0.5);
}

.opacity {
    opacity: 0.5;
}

.mix-blend-multiply {
    mix-blend-mode: multiply;
}

.overlay-gradient {
    position: relative;
}

    .overlay-gradient:before {
        position: absolute;
        content: "";
        display: block;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.7;
        transition: 0.5s;
        background: linear-gradient(to bottom right, #0143a3, aqua);
    }

    .overlay-gradient:hover:before {
        opacity: 0.9;
    }

.breadcrumb.ondark .breadcrumb-item {
    color: #fff;
}

    .breadcrumb.ondark .breadcrumb-item::before {
        color: #fff;
        opacity: 0.6;
    }

.breadcrumb.ondark a {
    color: inherit;
    opacity: 0.75;
}

    .breadcrumb.ondark a:hover {
        opacity: 1;
    }

/* ============== BS5 accordion restyle ============== */
.accordion-flush .accordion-button {
    padding-left: 5px;
    padding-right: 5px;
}

.accordion-flush .accordion-body {
    padding-left: 0;
    padding-right: 0;
}

.accordion-header:hover .accordion-button {
    background-color: #e7f1ff;
}

/* ============== spacing ============== */
.padding-y {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-top {
    padding-top: 40px;
}

.padding-bottom {
    padding-bottom: 40px;
}

.padding-y-lg {
    padding-top: 80px;
    padding-bottom: 80px;
}

.padding-top-lg {
    padding-top: 80px;
}

.padding-bottom-lg {
    padding-bottom: 80px;
}

.padding-y-sm {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-top-sm {
    padding-top: 20px;
}

.padding-bottom-sm {
    padding-bottom: 20px;
}

/* ==============  DEFINED VARIABLES ============= */
.icon-xs, .icon-sm, .icon-md, .icon-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    flex-grow: 0;
}

    .icon-xs img, .icon-sm img, .icon-md img, .icon-lg img {
        max-width: 100%;
    }

.icon-xs {
    width: 36px;
    height: 36px;
}

.icon-sm {
    width: 42px;
    height: 42px;
    font-size: 20px;
}

.icon-md {
    width: 56px;
    height: 56px;
    font-size: 24px;
}

.icon-lg {
    width: 72px;
    height: 72px;
    font-size: 32px;
}

.img-xs, .img-sm, .img-md, .img-lg {
    display: inline-block;
    object-fit: cover;
    flex-shrink: 0;
    flex-grow: 0;
}

.img-xs {
    width: 40px;
    height: 40px;
}

.img-sm {
    width: 72px;
    height: 72px;
}

.img-md {
    width: 96px;
    height: 96px;
}

.img-lg {
    width: 128px;
    height: 128px;
}

.img-xl {
    width: 196px;
    height: 196px;
}

.obj-contain {
    object-fit: contain;
}

.obj-cover {
    object-fit: cover;
}

.center-xy {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.center-y {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}

.center-x {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.menu-aside {
    list-style: none;
    margin: 0.5rem;
    padding: 0;
}

    .menu-aside a {
        display: block;
        text-decoration: none;
    }

    .menu-aside .menu-item {
        margin-bottom: 5px;
    }

        .menu-aside .menu-item .icon {
            color: #9DA1A7;
            margin-right: 10px;
            font-size: 24px;
        }

        .menu-aside .menu-item.active .icon {
            color: rgb(var(--ColorOne));
        }

        .menu-aside .menu-item.active .menu-link {
            background-color: #d7e7ff;
        }

    .menu-aside .menu-link {
        padding: 10px;
        color: #51585e;
        font-weight: bold;
        border-radius: 0.6rem;
        position: relative;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

        .menu-aside .menu-link .text {
            vertical-align: middle;
        }

        .menu-aside .menu-link:hover {
            transition: 0.2s linear;
            background-color: #e9ecef;
        }

    .menu-aside .submenu {
        margin-left: 44px;
        display: none;
    }

        .menu-aside .submenu a {
            color: #6c757d;
            padding: 5px;
        }

            .menu-aside .submenu a:hover {
                color: #000;
            }

    .menu-aside .menu-item.active .submenu {
        display: block;
    }

    .menu-aside .menu-item.has-submenu > .menu-link:after {
        display: inline-block;
        float: right;
        position: absolute;
        right: 10px;
        top: 10px;
        margin-top: 0.6em;
        vertical-align: middle;
        content: "";
        border-top: 5px solid #9DA1A7;
        border-right: 5px solid transparent;
        border-bottom: 0;
        border-left: 5px solid transparent;
    }

.nav-pills .nav-link:not(.active):hover {
    background-color: rgba(157, 161, 167, 0.15);
}

.nav-icontop a.nav-link {
    text-align: center;
    padding-top: 0.6rem;
    padding-bottom: 0.2rem;
}

    .nav-icontop a.nav-link i {
        font-size: 20px;
        color: #9DA1A7;
    }

    .nav-icontop a.nav-link .text {
        display: block;
        font-weight: normal;
    }

    .nav-icontop a.nav-link:hover i {
        color: #212529;
    }

    .nav-icontop a.nav-link.active i, .nav-icontop a.nav-link.active .text {
        color: rgb(var(--ColorOne));
    }

.nav-ondark .active {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.nav-ondark a.nav-link {
    color: #fff !important;
}

    .nav-ondark a.nav-link:not(.active):hover {
        background-color: rgba(0, 0, 0, 0.2) !important;
    }

.item-link {
    width: 100%;
    display: block;
    text-decoration: none;
}

    .item-link .icon {
        border: 1px solid #dee2e6;
    }

    .item-link .text {
        display: block;
        color: #51585e;
    }

    .item-link:hover {
        text-decoration: none;
    }

        .item-link:hover .icon {
            border-color: #9DA1A7;
            opacity: 0.7;
        }

        .item-link:hover .text {
            color: #212529;
        }

.boxed-link {
    width: 100%;
    display: block;
    text-decoration: none;
}

    .boxed-link .icon {
        background-color: #e7f1ff;
    }

    .boxed-link .text {
        display: block;
        color: #51585e;
    }

    .boxed-link:hover {
        text-decoration: none;
    }

        .boxed-link:hover .icon {
            background-color: #e9ecef;
        }

        .boxed-link:hover .text {
            color: #212529;
        }

.box.boxed-link:hover, .card.boxed-link:hover {
    border-color: #ccd1d6;
    box-shadow: 0 0.05rem 0.2rem rgba(0, 0, 0, 0.03);
}

    .box.boxed-link:hover .icon, .card.boxed-link:hover .icon {
        background-color: #c3dbff;
    }

.menu-category {
    margin: 0;
    padding: 0;
}

    .menu-category li {
        position: relative;
        display: block;
        border-bottom: 1px solid #dee2e6;
    }

        .menu-category li:last-child {
            border-bottom: 0;
        }

    .menu-category a {
        color: #212529;
    }

    .menu-category > li > a {
        display: block;
        padding: 10px 18px;
    }

    .menu-category .submenu {
        display: none;
        margin: 0;
        padding: 0;
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 20;
        position: absolute;
        left: 100%;
        top: 0;
        width: 250px;
        background: #fff;
    }

        .menu-category .submenu li {
            list-style: none;
        }

            .menu-category .submenu li a {
                padding: 10px 16px;
                display: block;
            }

    .menu-category li:hover {
        background: #f8f9fa;
        transition: all 0.3s;
    }

        .menu-category li:hover .submenu {
            display: block;
            margin-left: 0px;
        }

    .menu-category .has-submenu > a:after {
        content: "›";
        font-size: 24px;
        color: #999;
        line-height: 18px;
        font-weight: bold;
        float: right;
    }

/* --------------------- titles ---------------------- */
.section-heading {
    margin-bottom: 1.5rem;
    margin-left: .5rem !important;
    margin-right: .5rem !important;
}

.title-text {
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}

.b {
    font-weight: 600;
}

.text-lg {
    font-size: 1.1rem;
}

/* ==================  title helpers ================ */
.rtl {
    direction: rtl;
}

.ltr {
    direction: ltr;
}

/* ================== SECTIONS =================== */
/* ================== header main ==================  */
.header-top-light .nav-link {
    font-weight: normal;
}

    .header-top-light .nav-link:hover {
        color: #212529;
    }

.header-top-dark {
    color: rgba(255, 255, 255, 0.75);
}

    .header-top-dark .nav-link {
        color: inherit;
        font-weight: normal;
    }

        .header-top-dark .nav-link:hover {
            color: #fff;
        }

.header-main {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.brand-wrap, .navbar-brand {
    opacity: 0.75;
}

    .brand-wrap .logo, .navbar-brand .logo {
        margin-right: 7px;
        max-height: 42px;
        display: inline-block;
    }

    .brand-wrap:hover, .navbar-brand:hover {
        opacity: 1;
    }

.widget-header {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

    .widget-header a {
        text-decoration: none;
        color: inherit;
    }

    .widget-header i {
        color: #6c757d;
    }

    .widget-header form {
        min-width: 280px;
    }

    .widget-header .notify {
        position: absolute;
        top: -3px;
        right: -7px;
    }

    .widget-header:hover i {
        color: #212529;
    }

    .widget-header .widget-icontop {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        text-align: center;
    }

        .widget-header .widget-icontop .icon-area {
            font-size: 22px;
            position: relative;
            display: inline-block;
            width: 30px;
            height: 30px;
        }

        .widget-header .widget-icontop .text {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: block;
            line-height: 1.2;
        }

/* desktop only */
/* desktop only .end */
/* ================ SECTION-FOOTER ==================  */
.section-footer .logo-footer {
    /*   max-height: 40px;
    width: 100%;*/
}

.section-footer .title {
    margin-bottom: 10px;
}

.footer-dark {
    color: #fff;
}

    .footer-dark .icon {
        color: #fff !important;
        opacity: 0.7;
    }

    .footer-dark .title {
        color: #fff;
    }

    .footer-dark .list-menu a {
        color: rgba(255, 255, 255, 0.7);
    }

        .footer-dark .list-menu a:hover {
            color: #fff;
        }

.footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* ================== COMPONENTS =================== */
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--ColorOne),.2);
}

.form-check-input:focus {
    border-color: rgb(var(--ColorOne));
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(var(--ColorOne),.2);
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: rgb(var(--ColorOne));
    border-color: rgb(var(--ColorOne));
    box-shadow: 0 0 0 0.2rem rgba(var(--ColorOne),.2);
}

.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: rgb(var(--ColorOne));
    border-color: rgb(var(--ColorOne));
}

.form-control:focus {
    color: #51585e;
    background-color: #fff;
    border-color: rgb(var(--ColorOne));
    box-shadow: 0 0 0 0.2rem rgba(var(--ColorOne),.2);
}

.form-select:focus {
    border-color: rgb(var(--ColorOne));
}

.btn-icon {
    /*padding: 4px;*/
}

    .btn-icon.btn-sm {
        width: 2rem;
    }

    .btn-icon.btn-lg {
        width: 2.8rem;
    }

.btn-margin {
    margin-right: 4px !important;
}

.btn-light {
    background-color: #fff;
    border-color: #dee2e6;
    color: #212529;
}

    .btn-light i {
        color: #9DA1A7;
    }

    .btn-light:hover {
        border-color: #c1c9d0;
        color: rgb(var(--ColorOne));
    }

        .btn-light:hover i {
            color: rgb(var(--ColorOne));
        }

    .btn-light.active {
        border-color: #c1c9d0;
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
    }

.btn-primary-light {
    color: #c45153;
}

.btn i {
    min-width: 16px;
}

.btn .text + i {
    margin-left: 10px;
}

.btn i + .text {
    margin-left: 10px;
}

button .bi-cart {
    margin-right: 5px;
}

body.default .btn-primary {
    background-color: transparent;
    color: rgb(var(--ColorOne));
    border: 1px solid rgb(var(--ColorOne));
}

    body.default .btn-primary:hover {
        background-color: rgb(var(--ColorOne));
        color: white;
    }

.btn-primary {
    background-color: rgb(var(--ColorOne));
    border-color: rgb(var(--ColorOne));
}

    .btn-primary:hover {
        background-color: rgb(var(--ColorTwo));
        border-color: rgb(var(--SecondaryTextColor));
    }
        .btn-primary:hover #confirmOrderLoader .lds-ring div {
            border-color: rgb(var(--SecondaryTextColor)) transparent transparent transparent;
            
        }

.input-group-append {
    background-color: transparent;
}

body.default .bi-bell-fill {
    color: white !important;
}

.bi-bell-fill {
    background-color: transparent !important;
    color: white !important;
}

.btn-light:hover {
    border-color: rgb(var(--ColorOne));
    color: rgb(var(--ColorOne));
}

    .btn-light:hover i {
        color: rgb(var(--ColorOne));
    }

.page-item.active .page-link {
    background-color: rgb(var(--ColorOne));
    border-color: rgb(var(--ColorOne));
}
/* if card is linked */
a[class*=card] {
    text-decoration: none;
    color: #51585e;
}

    a[class*=card]:hover .title {
        color: rgb(var(--ColorOne));
    }

/* if product as card element */
.card.card-product-grid {
    box-shadow: 0 1px 2px rgba(51, 51, 51, 0.07);
    min-height: 445px;
    max-height: 445px;
}

    .card.card-product-grid:hover, .card.card-product-list:hover {
        box-shadow: 0 3px 10px rgba(51, 51, 51, 0.1);
        transition: 0.2s;
    }

    .card.card-product-grid .img-wrap {
        border-radius: 0.25rem 0.25rem 0 0;
    }

/* base style for product */
[class*=card-product] p {
    margin-bottom: 0;
}

[class*=card-product] a.title {
    display: block;
    text-decoration: none;
}

    [class*=card-product] a.title:hover {
        color: rgb(var(--ColorOne));
    }

[class*=card-product] .price {
    color: #212529;
}


[class*=card-product] .fromPriceSpan {
    font-size: 16px;
    font-weight: normal;
}

[class*=card-product] .price-old {
    color: #9DA1A7;
    margin-left: 3px;
    font-size: 90%;
}

[class*=card-product] .img-wrap {
    position: relative;
}

    [class*=card-product] .img-wrap img {
        max-width: 100%;
        height: 100%;
        width: auto;
    }

/* product-grid style */
.card {
    border: none;
    box-shadow: 0 5px 20px rgb(0,0,0,0.1) !important;
    transition: all .3s
}

    .card:hover {
        box-shadow: 0 0px 5px rgb(0,0,0,0.2) !important;
    }

.card-product-grid {
    margin-bottom: 20px;
}

    .card-product-grid .img-wrap {
        height: 240px;
    }

    .card-product-grid .title {
        color: #51585e;
    }

    .card-product-grid .info-wrap {
        padding: 1rem 1.2rem;
        overflow: hidden;
    }

    .card-product-grid .bottom-wrap {
        padding: 1rem 1.2rem;
        border-top: 1px solid #dee2e6;
    }

    .card-product-grid .topbar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        text-align: left;
        padding: 10px 15px;
    }

    .card-product-grid .hover-action {
        opacity: 0;
        width: 100%;
        left: 0;
        bottom: 0;
        position: absolute;
    }

    .card-product-grid:hover .hover-action {
        opacity: 1;
    }

/* card list view style */
.card-product-list {
    margin-bottom: 20px;
}

    .card-product-list .title {
        color: #212529;
    }

    .card-product-list .img-wrap {
        height: 220px;
        padding: 0.5rem;
    }

    .card-product-list .info-aside {
        padding: 1.25rem 1.25rem;
        border-left: 1px solid #dee2e6;
        height: 100%;
    }

/* product image sizes */
.product-sm .img-wrap {
    height: 160px;
}

.product-lg .img-wrap {
    height: 250px;
}

.img-hover-effect:hover {
    opacity: 0.3;
}
/* Banners */
.card-banner {
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    background-size: cover;
    background-position: center center;
    border-radius: 0.35rem;
}

    .card-banner .card-body {
        background-size: cover;
        position: relative;
        z-index: 10;
    }

    .card-banner .caption {
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 10;
        color: #fff;
    }

        .card-banner .caption.bottom {
            bottom: 0;
            left: 0;
            position: absolute;
            width: 100%;
        }

        .card-banner .caption.top {
            top: 0;
            left: 0;
            position: absolute;
            width: 100%;
        }

        .card-banner .caption.left {
            top: 0;
            left: 0;
            bottom: 0;
            position: absolute;
        }

    .card-banner .text-bottom {
        position: absolute;
        left: 0;
        bottom: 0;
        left: 0;
        z-index: 10;
        width: 100%;
        padding: 1rem;
        padding-top: 2rem;
        border-radius: 0 0 0.35rem 0.35rem;
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
        color: #fff;
    }

    .card-banner .img-bg {
        position: absolute;
        right: 0;
        bottom: 0;
        mix-blend-mode: multiply;
        max-width: 100%;
    }

.icontext {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

    .icontext p {
        margin-bottom: 0;
    }

    .icontext .text {
        width: 100%;
        line-height: 1.25;
    }

    .icontext .icon {
        position: relative;
        margin-right: 10px;
        flex-shrink: 0;
        flex-grow: 0;
    }

    .icontext .title {
        display: block;
        margin-bottom: 3px;
    }

.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 1rem;
    margin-bottom: 5px;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    margin-top: 4px;
    margin-right: 2px;
    font-size: 90%;
}

    .tag .btn-close {
        width: 0.5rem;
        height: 0.5rem;
        margin-left: 10px;
    }

strong.price, b.price, .b.price, .fw-bold.price {
    color: #212529;
}

.notify {
    position: absolute;
    top: -4px;
    right: -10px;
    display: inline-block;
    padding: 0.25em 0.6em;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    border-radius: 3rem;
    color: #fff;
    background-color: #ff2748;
}

.img-avatar {
    border-radius: 100%;
    border: 1px solid rgba(33, 37, 41, 0.2);
}

.card-header .title {
    margin-bottom: 0;
    color: initial;
    display: block;
}

.icon-control {
    margin-top: 6px;
    float: right;
    font-size: 84%;
    color: #9DA1A7;
}

.filter-group {
    border-bottom: 1px solid #dee2e6;
}

    .filter-group:last-child {
        border-bottom: 0;
    }

    .filter-group .card-header {
        border-bottom: 0;
        border-radius: 0;
    }

    .filter-group .title:hover {
        text-decoration: none;
    }

/* ======== text with line divider ======= */
.text-divider {
    text-align: center;
    display: flex;
    font-size: 0.875rem;
    color: #9DA1A7;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

    .text-divider:after, .text-divider:before {
        content: "";
        height: 1px;
        background: #dee2e6;
        flex: 1;
        margin: 0 7px;
    }

/* ======== box ======= */
.box {
    padding: 0.8rem;
    border-radius: 0.35rem;
    border: 1px solid #dee2e6;
}

    .box img {
        max-width: 100%;
    }

/* ======== Rating ======== */
.label-rating {
    margin-left: 5px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
}

/* ======== rating-list ======== */
.rating-stars {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    white-space: nowrap;
    clear: both;
}

    .rating-stars i {
        font-size: 14px;
        color: #ccc;
        display: inline;
    }

    .rating-stars img {
        height: 16px;
        max-width: none;
    }

    .rating-stars li {
        display: block;
        text-overflow: clip;
        white-space: nowrap;
        z-index: 1;
    }

        .rating-stars li.stars-active {
            z-index: 2;
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
        }

            .rating-stars li.stars-active i {
                color: orange;
            }

    .rating-stars.stars-lg img {
        height: 20px;
        max-width: none;
    }

.form-check .rating-stars {
    transform: translateY(-2px);
}

.dot {
    font-style: normal;
    opacity: 0.5;
}

    .dot:after {
        content: "•";
        display: inline-block;
    }

.bg-loading {
    position: static;
    margin-right: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 5px;
    animation: placeholderSkeleton 2s linear;
    animation-iteration-count: infinite;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.08) 0, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.08) 30%);
    background-size: 800px 100%;
    max-width: 30rem;
}

@keyframes placeholderSkeleton {
    0% {
        background-position: -800px 0;
    }

    100% {
        background-position: 800px 0;
    }
}
/* =====  TIMELINE  ===== */
.steps-vertical {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 2px solid rgb(var(--ColorOne));
    margin-left: 12px;
    position: relative;
}

    .steps-vertical li {
        padding-left: 30px;
        position: relative;
        transform: translateY(-4px);
    }

    .steps-vertical .icon {
        position: absolute;
        top: 3px;
        left: -8px;
        content: "";
        background: rgb(var(--ColorOne));
        width: 14px;
        height: 14px;
        border-radius: 100%;
        display: inline-block;
    }

/* =====  BREADCRUMB STEP   ===== */
.breadcrumb.steps {
    margin-bottom: 0;
    color: rgb(var(--ColorOne));
}

    .breadcrumb.steps a {
        color: inherit;
    }

    .breadcrumb.steps .breadcrumb-item.active {
        font-weight: 600;
        color: #212529;
    }

        .breadcrumb.steps .breadcrumb-item.active ~ .breadcrumb-item {
            color: #9DA1A7;
            opacity: 0.8;
        }

    .breadcrumb.steps.ondark .breadcrumb-item.active {
        color: #fff;
    }

        .breadcrumb.steps.ondark .breadcrumb-item.active ~ .breadcrumb-item {
            color: #fff;
            opacity: 0.5;
        }

/* =====  STEPS  ===== */
.steps-wrap {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
    position: relative;
    display: flex;
    border-radius: 30px;
}

    .steps-wrap .step {
        width: 100%;
        text-align: center;
        position: relative;
        flex-grow: 1;
        font-size: 14px;
        line-height: 24px;
    }

        .steps-wrap .step:before {
            background-color: #ccd1d6;
            height: 4px;
            position: absolute;
            content: " ";
            width: 100%;
            right: 50%;
            top: 10px;
        }

        .steps-wrap .step:first-child:before {
            display: none;
        }

    .steps-wrap .icon {
        color: #fff;
        display: inline-block;
        position: relative;
        z-index: 10;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        text-align: center;
        background: #ccd1d6;
    }

    .steps-wrap .text {
        display: block;
        padding-top: 5px;
        text-align: center;
        color: #ccd1d6;
    }

    .steps-wrap .step.active .icon {
        background: rgb(var(--ColorOne));
        color: #fff;
    }

    .steps-wrap .step.active .text {
        color: #ccd1d6;
    }

    .steps-wrap .step.active:before {
        background: rgb(var(--ColorOne));
    }

    .steps-wrap .step.active:after {
        background: rgb(var(--ColorOne));
        height: 4px;
        position: absolute;
        content: " ";
        z-index: 5;
        width: 50%;
        right: 0%;
        top: 10px;
    }

    .steps-wrap .step.active:last-child:after {
        display: none;
    }

.form-control:not(:focus):hover, .form-select:not(:focus):hover {
    border-color: rgb(var(--ColorOne));
}

.input-spinner {
    max-width: 140px;
    flex-wrap: nowrap;
    display: inline-flex;
}

    .input-spinner input.form-control {
        text-align: center;
        border-color: #dee2e6;
        padding-left: 3px;
        padding-right: 3px;
    }

    .input-spinner .btn {
        width: 42px;
        text-align: center;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

.checkbox-btn {
    position: relative;
}

    .checkbox-btn input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

        .checkbox-btn input:checked ~ .btn {
            border-color: rgb(var(--ColorOne));
            background-color: #e9ecef;
        }

.box-check {
    position: relative;
    margin-right: 5px;
}

    .box-check:hover:not(.active) {
        border-color: #6ea8fe;
    }

    .box-check .border-oncheck {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border: 1px solid transparent;
        border-radius: 0.35rem;
        z-index: 1;
        mix-blend-mode: darken;
    }

    .box-check input:checked ~ .border-oncheck {
        border-color: rgb(var(--ColorOne));
        background-color: rgba(231, 241, 255, 0.5);
    }

.gallery-uploader-wrap .uploader-img {
    position: relative;
    display: inline-flex;
    width: 110px;
    height: 110px;
    margin-right: 5px;
    margin-bottom: 5px;
    vertical-align: middle;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 0.35rem;
    border: 1px dashed #ccd1d6;
    overflow: hidden;
    background-color: #f8f9fa;
}

    .gallery-uploader-wrap .uploader-img:hover {
        border-color: rgb(var(--ColorOne));
        background-color: rgba(231, 241, 255, 0.5);
    }

.gallery-uploader-wrap input {
    width: 0;
    height: 0;
    visibility: hidden;
}

.gallery-uploader-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.done-wrap {
    text-align: center;
    margin-bottom: 30px;
}

    .done-wrap img {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
    }

a.itemside {
    color: #51585e;
    text-decoration: none;
}

    a.itemside:hover .title {
        color: rgb(var(--ColorOne));
    }

    a.itemside:hover .img-thumbnail {
        border-color: #9DA1A7;
    }

.itemside {
    position: relative;
    display: flex;
    width: 100%;
}

    .itemside .aside {
        position: relative;
        flex-shrink: 0;
    }

        .itemside .aside .badge {
            position: absolute;
            top: -5px;
            right: -8px;
        }

    .itemside .info {
        padding-left: 0.75rem;
        flex-grow: 1;
    }

    .itemside .title {
        display: block;
        margin-bottom: 0rem;
    }

    .itemside a.title {
        color: inherit;
    }

        .itemside a.title:hover {
            color: rgb(var(--ColorOne));
            text-decoration: none;
        }

    .itemside p {
        margin-bottom: 0;
    }

.items-bordered-wrap .itemside:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.itemlist {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.list-inline {
    margin-bottom: 0;
}

.list-inline-item {
    vertical-align: middle;
}

/* --------- description list --------*/
dl[class=row] {
    margin-bottom: 0;
}

    dl[class=row] dt {
        color: #212529;
    }

[class*=dlist-] {
    margin-bottom: 5px;
}

    [class*=dlist-] dd {
        margin-bottom: 0;
    }

.dlist-inline dt, .dlist-inline dd {
    display: inline-block;
}

.dlist-align {
    display: flex;
}

    .dlist-align dt {
        width: 250px;
        word-wrap: break-word;
        font-weight: normal;
    }

    .dlist-align dd {
        flex-grow: 0.5;
    }

/* ================= lists ================= */
ul.row {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.list-icon, .list-bullet, .list-dots, .list-check, .list-menu {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

    .list-icon li, .list-bullet li, .list-dots li, .list-check li, .list-menu li {
        position: relative;
        margin-bottom: 4px;
    }

    .list-icon li {
        padding-left: 30px;
    }

    .list-icon .icon {
        position: absolute;
        top: 3px;
        left: 0;
        width: 22px;
        text-align: center;
        color: #9DA1A7;
    }

    .list-bullet li, .list-dots li {
        padding-left: 20px;
    }

        .list-bullet li::before, .list-dots li::before {
            content: " ";
            position: absolute;
            top: 8px;
            left: 0;
            width: 7px;
            border-radius: 100%;
            height: 7px;
            background: #ccd1d6;
        }

    .list-check > li {
        padding-left: 24px;
    }

        .list-check > li::before {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 13px;
            color: #33b750;
            position: absolute;
            top: 3px;
            left: 0;
            content: "";
        }

    .list-menu li > a {
        display: block;
        color: #51585e;
        text-decoration: none;
        transition: all .2s
    }

        .list-menu li > a:hover {
            color: rgb(var(--ColorOne));
        }

.cols-two {
    column-count: 2;
}

    .cols-two > li {
        break-inside: avoid;
    }

.cols-three {
    column-count: 3;
}

    .cols-three > li {
        break-inside: avoid;
    }

.cols-four {
    column-count: 4;
}

    .cols-four > li {
        break-inside: avoid;
    }

@media (max-width: 768px) {
    /* @media */
    .cols-two {
        column-count: 1;
    }

    .cols-three {
        column-count: 2;
    }

    .cols-four {
        column-count: 2;
    }

    /* @media end */
}
/* ================ OWL SLIDER BANNER ================ */
.slider-banner-owl .owl-nav .owl-prev, .slider-banner-owl .owl-nav .owl-next {
    padding: 16px 7px;
    color: #FFF;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 9;
    position: absolute;
}

.slider-banner-owl .owl-nav .owl-prev {
    left: 0;
}

.slider-banner-owl .owl-nav .owl-next {
    right: 0;
}

.slider-banner-owl .item-slide img {
    width: 100%;
    object-fit: cover;
}

.slider-banner-slick .slick-prev, .slider-banner-slick .slick-next {
    padding: 18px 7px;
    color: #FFF;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 9;
    position: absolute;
}

    .slider-banner-slick .slick-prev:before, .slider-banner-slick .slick-next:before {
        display: none;
    }

.slider-banner-slick .slick-prev {
    left: 0;
}

.slider-banner-slick .slick-next {
    right: 0;
}

.slider-banner-slick .item-slide img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

/* ================== PAGES =================== */
/* ================ PAGES HEADER ================== */
.gallery-wrap .img-big-wrap {
    display: block;
    text-align: center;
    width: 100%;
    height: 560px;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: #fff;
}

    .gallery-wrap .img-big-wrap a {
        text-align: center;
        display: block;
        height: 100%;
    }

    .gallery-wrap .img-big-wrap img {
        max-width: 100%;
        max-height: 100%;
        height: auto;
        cursor: zoom-in;
    }

.gallery-wrap .thumbs-wrap {
    text-align: center;
}

    .gallery-wrap .thumbs-wrap .item-thumb {
        width: 90px;
        height: 90px;
        border: 1px solid #dee2e6;
        border-radius: 0.35rem;
        margin: 3px;
        display: inline-block;
        overflow: hidden;
    }

    .gallery-wrap .thumbs-wrap a.item-thumb:hover {
        border-color: #9DA1A7;
    }

/*.gallery-wrap .thumbs-wrap img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        cursor: zoom-in;
    }*/

@media (min-width: 993px) {
    .gallery-vertical {
        display: flex;
    }

        .gallery-vertical .thumbs-wrap {
            order: 1;
            width: 60px;
            margin-right: 1rem;
        }

        .gallery-vertical .img-big-wrap {
            order: 2;
        }
}

.item-option-select {
    margin-bottom: 1rem;
    display: inline-block;
    margin-right: 15px;
}

    .item-option-select .btn {
        min-width: 80px;
    }

/* ====================== shopping-cart ==================== */
.table-shopping-cart.table td, .table-shopping-cart.table th {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.table-shopping-cart .price-wrap {
    line-height: 1.2;
}

.table-shopping-cart .price {
    font-weight: bold;
    margin-right: 5px;
    display: block;
}

.bg-color {
    background-color: #e9ecef !important;
}


.navbar-nav > li > .dropdown-menu {
    margin-top: 0px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.navbar-default .navbar-nav > li > a {
    width: 200px;
    font-weight: bold;
}

.mega-dropdown {
    position: static !important;
    width: 50%;
}

.mega-dropdown-menu {
    padding: 20px 0px;
    width: 100%;
    box-shadow: none;
    -webkit-box-shadow: none;
}

    .mega-dropdown-menu > li > ul {
        padding: 0;
        margin: 0;
    }

        .mega-dropdown-menu > li > ul > li {
            list-style: none;
        }

            .mega-dropdown-menu > li > ul > li > a {
                display: block;
                padding: 3px 20px;
                clear: both;
                font-weight: normal;
                line-height: 1.428571429;
                color: #999;
                white-space: normal;
            }

    .mega-dropdown-menu > li ul > li > a:hover, .mega-dropdown-menu > li ul > li > a:focus {
        text-decoration: none;
        color: #444;
        background-color: #f5f5f5;
    }

    .mega-dropdown-menu .dropdown-header {
        color: #428bca;
        font-size: 18px;
        font-weight: bold;
    }

    .mega-dropdown-menu form {
        margin: 3px 20px;
    }

    .mega-dropdown-menu .form-group {
        margin-bottom: 3px;
    }

.nav > li:hover .dropdown-menu.mega-dropdown-menu {
    display: block;
}

.mega-dropdown {
    width: auto;
}

.navbar .li_dib:hover .dropdown-toggle {
    background-color: #e7e7e7;
    color: #555;
}

.form-check-label {
    color: #51585e;
    text-decoration: none;
}

/*-----General Styles - START-----*/
.bg-color-one {
    background-color: rgb(var(--ColorOne));
    color: rgb(var(--ColorWhite))
}


/*body {
    background-color:rgba(var(--ColorTwo),.1)
}*/

header section.bg-color-two :not(.bg-color-one) :not(span, i,.dropdown-item,.bg-color-one,#others-categories,input,select,textarea, button.navbar-toggler,.title-product-card,a.nav-link) {
    color: rgba(var(--TextColor));
}

header section.bg-color-two li.nav-item a.nav-link {
    color: rgb(var(--TextColor),0.9)
}


footer.bg-color-two p a:hover {
    color: rgb(var(--ColorOne)) !important
}

.bg-color-two :not(.bg-color-one) svg *, .bg-color-two a:not(.bg-color-one) i {
    color: rgba(var(--ColorOne)) !important
}

.bg-color-two .bi.bi-search {
    color: rgb(var(--ColorTwo));
}


.bg-color-two {
    background-color: rgb(var(--ColorTwo));
    color: rgba(var(--TextColor));
}

    .bg-color-two nav li.nav-item a.nav-link:hover {
        color: rgba(var(--TextColor),0.8);
    }

footer.bg-color-two *:not(.text-muted,form,.subscribe-news-letter-container,input,button,h2,.col-lg-6,.subscribe-news-letter-content,.bi-check,.input-group,.copyrightTenant, .newsletter-text,.input-group-append, .bi-bell-fill) {
    background-color: rgb(var(--ColorTwo));
    color: rgb(var(--TextColor),0.9) !important;
}

.copyrightTenant:hover {
    color: rgb(var(--ColorOne))
}

.subscribe-news-letter-container {
    background-color: rgb(var(--ColorOne)) !important;
}

    .subscribe-news-letter-container .newsletter-text {
        background-color: transparent !important;
        color: rgba(var(--SecondaryTextColor)) !important;
    }

.bg-btn-color-one {
    background-color: rgb(var(--ColorOne));
    color: rgb(var(--SecondaryTextColor))
}

.btn:not(.searchBtn,.categories-main-btn).bg-color-one:hover {
    background-color: rgba(var(--ColorTwo), .9);
    color: rgb(var(--TextColor))
}



.btn.btn-border-color-one {
    background-color: rgb(var(--ColorOne));
    color: rgb(var(--SecondaryTextColor));
    font-weight: 600
}

body.default .btn-border-color-one {
    background-color: transparent;
    color: rgb(var(--ColorOne));
    border: 1px solid rgb(var(--ColorOne));
    font-weight: 400;
}

    body.default .btn-border-color-one:hover {
        background-color: rgb(var(--ColorOne));
        color: white;
        border: 1px solid rgb(var(--ColorOne));
        font-weight: 400
    }

.btn.btn-border-color-one:hover {
    background-color: rgb(var(--ColorTwo));
    color: rgb(var(--TextColor));
    font-weight: 600
}

.btn.btn-border-color-two {
    border-color: rgb(var(--ColorTwo));
    color: rgb(var(--ColorTwo))
}

    .btn.btn-border-color-two:hover {
        border-color: rgb(var(--ColorTwo));
        color: rgb(var(--TextColor))
    }

.btn.btn-border-color-three {
    border-color: rgb(var(--ColorThree));
    color: rgb(var(--ColorThree))
}

    .btn.btn-border-color-three:hover {
        border-color: rgb(var(--ColorOne));
        color: rgb(var(--ColorOne))
    }

.btn.btn-border-color-four {
    border-color: rgb(var(--ColorFour));
    color: rgb(var(--ColorFour))
}

    .btn.btn-border-color-four:hover {
        border-color: rgb(var(--ColorOne));
        color: rgb(var(--ColorOne))
    }

.badge {
    font-weight: 600;
    font-size: 14px;
}

    .badge.badge-light-color-five {
        color: rgb(var(--ColorFive));
        background-color: rgba(var(--ColorFive), .15);
    }

    .badge.badge-color-five {
        color: rgb(var(--ColorWhite));
        background-color: rgb(var(--ColorFive));
    }


    .badge.badge-light-color-one {
        color: rgb(var(--ColorFive));
        background-color: rgba(var(--ColorOne), .15);
    }

    .badge.badge-color-one {
        color: rgb(var(--ColorWhite));
        background-color: rgb(var(--ColorOne));
    }

    .badge.badge-light-danger {
        color: #ea5455;
        background-color: rgba(234, 84, 85, 0.12);
    }

.text-color-one {
    color: rgb(var(--ColorOne));
}
.title-content-name{
    width: 50%;
}

.text-color-one:hover {
    color: rgb(var(--ColorOne));
}

.text-color-one-hover {
    transition: all .2s
}

    .text-color-one-hover:hover {
        color: rgb(var(--ColorOne)) !important;
    }
/*------General Styles - END------*/

/*-----Index - START-----*/
.cart-items-count,
.wishlist-items-count,
.wishlist-items-count-local {
    background-color: rgb(var(--ColorOne)) !important;
    border-radius: 10px;
    padding: 11px;
    color: white;
    position: absolute;
    height: 16px;
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -3px;
    right: -3px;
    font-size: 14px;
    font-weight: 500
}

.product-company-name {
    color: rgb(var(--ColorFour));
    font-weight: 600;
    font-size: 14px
}

.title-product-card {
    font-weight: 500;
    cursor: pointer;
}

.categories-main-btn {
    text-align: left;
    background-color: rgb(var(--ColorOne));
    color: #fff;
    transition: all .2s !important;
}

    .categories-main-btn:hover {
        color: white;
        box-shadow: 0 0 10px rgba(var(--ColorOne), .6) !important
    }

    .categories-main-btn:focus {
        box-shadow: none;
    }

    .categories-main-btn.show {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

.categories-main-body {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate(0px, 44px);
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}

    .index-hero-swiper {
        border-radius: 0.35rem;
        height: 450px
    }

    .index-hero-swiper:hover .swiper-button-next,
    .index-hero-swiper:hover .swiper-button-prev {
        opacity: 1;
    }

/*.index-hero-section-intro {
    background-image: url(/images/index-hero-swiper-bg.png);
    background-size: cover;
    background-repeat: no-repeat
}*/

.swiper-button-next,
.swiper-button-prev {
    opacity: 0;
    transition: all .3s;
    font-size: 40px;
}

    .swiper-button-next::after,
    .swiper-button-prev::after {
        display: none
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        color: rgb(var(--ColorOne)) !important;
    }

.swiper-pagination-bullet {
    transition: all .2s;
    background-color: rgb(var(--ColorOne));
}

.swiper-pagination-bullet-active {
    transition: all .2s;
    width: 18px;
    border-radius: 4px
}

.index-hero-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-left: 2rem;
    width: 100%;
    z-index: 999;
}

.index-hero-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; /* Fixed height for uniformity */
    overflow: hidden;
    position: absolute; /* Ensure positioning context for img */
    right: 0;
    bottom: 0;
    width: 50%;
}

.index-hero-img-box img {
    width: 100%; /* Make image take full width */
    height: 100%; /* Ensure image takes full height */
    object-fit: contain; /* Cover ensures the image covers the container while maintaining aspect ratio */
    position: absolute; /* Absolute positioning to ensure it covers the container */
    top: 0;
    left: 0;
}

.swiper-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 3rem;
    margin-left: 10rem;
    position: relative;
    top: 0;
    height: 85%;
}
.index-hero-content-title {
    font-size: 62px;
    font-weight: 300;
    line-height: 100%;
    animation: rollIn 1s;
    width: 62%;
}

.index-hero-content-price-currency {
    font-size: 34px;
    font-weight: bolder
}

.index-hero-content-price {
    font-size: 62px;
    font-weight: bolder;
    line-height: 100%;
}

.index-hero-content-title-price {
    font-size: 20px
}

.index-hero-content * {
    color: #4a4a4a !important;
}
.swiper-slide{
    overflow:hidden;

}
.index-hero-content-title{
    z-index: 9999;
}
.wrapper__thumb {
    height: 200px;
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%)
}
/* Media query for smaller screens */
@media screen and (max-width: 1024px){
    .swiper-row{
        margin-left: 3rem;
    }

}
@media screen and (max-width: 768px) {
        
    .index-hero-content-title {
        font-size: 40px;
    }

    .index-hero-content-title {
        font-size: 40px;
    }

    .index-hero-content-price-currency {
        font-size: 20px;
    }
    .index-hero-content-title-price {
        font-size: 20px;
    }
    .index-hero-content-price {
        font-size: 40px;
    }
}

@media screen and (max-width: 993px) {
    .swiper-row {
        margin-left: 0;
        margin: 0;
        align-items: center;
        position: relative;
        top: 0;
        height: 85%;
    }

    .index-hero-content-box {
        width: 100%
    }

    .index-hero-img-box {
        position: absolute;
        right: 0;
        width: 50%;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        align-self: flex-end;
        height: 100%;
    }

    .index-hero-img-box img {
        position: static;
        height: auto;
    }
    .index-hero-content-title {
        font-size: 40px;
    }

    .index-hero-content-title {
        width: 100%;
        font-size: 40px;
    }
    .title-content-name {
        width: 100%;
    }

    .index-hero-content-title-price {
        font-size: 20px;
    }
    .index-hero-content-price-currency {
        font-size: 20px;
    }
    .index-hero-content-price {
        font-size: 40px;
    }
}

@media screen and (max-width: 500px) {
    
    .index-hero-content-title {
        font-size: 26px;
        width:80vw;
    }
    .index-hero-swiper-row {
        height: 10rem;
    }
    .index-hero-content-title {
        font-size: 30px;
    }

    .index-hero-content-title-price {
        font-size: 15px;
    }

    .index-hero-content-price {
        font-size: 25px;
    }

    .index-hero-content-price-currency {
        font-size: 15px;
    }
}

    /*-----Index - END-----*/

    /*-----Checkout - START-----*/
    .shipping-address-error {
        display: none;
    }
    /*------Checkout - END------*/

    /*-----Footer - START-----*/
    .footer-main {
        margin-top: 100px
    }

    .subscribe-news-letter-container {
        background-color: rgb(var(--ColorOne));
        transform: translateY(-50%);
    }

    .btn-send-email {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        font-weight: 600;
    }
    /*------Footer - END------*/
    .btn-shop {
        border: 1px solid transparent;
        padding: 0.43rem 0.84rem;
        color: rgb(var(--ColorTwo));
        font-size: 1rem;
        border-radius: 0.35rem;
    }

    body.default .btn-shop {
        border: 1px solid transparent;
        padding: 0.43rem 0.84rem;
        color: white;
        background-color: rgb(var(--ColorOne));
        font-size: 1rem;
        border-radius: 0.35rem;
    }

        body.default .btn-shop:hover {
            text-decoration: none;
            color: white;
            background-color: rgb(var(--ColorOne),0.8);
        }

    .btn-shop:hover {
        text-decoration: none;
        color: rgb(var(--TextColor));
        background-color: rgb(var(--ColorTwo));
    }
    /*===================================*
  06.START ICON BOX STYLE
*===================================*/
    .icon {
        margin-bottom: 15px;
    }

    .icon_box_content h1,
    .icon_box_content h2,
    .icon_box_content h3,
    .icon_box_content h4,
    .icon_box_content h5,
    .icon_box_content h6 {
        text-transform: capitalize;
    }

    .icon i {
        font-size: 30px;
    }

    .icon_box p:last-child {
        margin: 0;
    }

    .icon_box_content .link i {
        vertical-align: middle;
        margin-left: 2px;
    }

    .box_img {
        margin-bottom: 15px;
    }

    .icon_box_style1 {
        text-align: center;
        padding: 0 40px;
        position: relative;
    }

        .icon_box_style1 .icon i {
            font-size: 46px;
            line-height: 1;
        }

        .icon_box_style1::before {
            content: "";
            position: absolute;
            right: 0;
            top: 15%;
            bottom: 15%;
            width: 1px;
            background-color: #ddd;
        }

    [class*="col-"]:last-child .icon_box_style1::before {
        content: normal;
    }

    .icon_box_style2 .icon {
        background-color: #fff;
        max-width: 78px;
        text-align: center;
        float: left;
        height: 78px;
        border-radius: 100%;
        line-height: 78px;
        position: relative;
        margin: 0px 20px 0px 0px;
        box-shadow: 0 2px 0 rgba(0,0,0,0.05);
        -ms-flex: 0 0 78px;
        flex: 0 0 78px;
    }

    .icon_box_style2:hover .icon {
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: swing;
        animation-name: swing;
    }

    .icon_box_style2 .icon i {
        font-size: 40px;
        color: rgb(var(--ColorOne));
        line-height: 78px;
    }

    .shopping_info {
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }

        .shopping_info .icon_box {
            margin-top: 0;
            padding-top: 30px;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center;
            align-items: center;
        }

    .icon_box.icon_box_style3 {
        border: 1px solid #ddd;
        padding: 30px;
        margin-left: -1px;
        margin-top: -1px;
        margin-bottom: 0;
    }

    .icon_box_style3 .icon {
        float: left;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .icon_box_style3 .icon_box_content {
        overflow: hidden;
    }

    .icon_box_style3 .icon i {
        font-size: 36px;
        color: rgb(var(--ColorOne));
        line-height: normal;
    }

    .icon_box_style3 .icon_box_content p {
        font-size: 14px;
        line-height: normal;
    }

    .icon_box_style4 {
        background-color: #fff;
        padding: 20px;
        text-align: center;
    }

        .icon_box_style4 .icon i {
            background-color: rgb(var(--ColorOne));
            color: #fff;
            width: 60px;
            height: 60px;
            display: inline-block;
            line-height: 60px;
            border-radius: 100%;
            font-size: 24px;
        }

    .font-size-25 {
        font-size: 1.56275rem;
        font-weight: 400;
    }

    .font-size-36 {
        font-size: 2.24962rem;
        color: #333e48;
    }
    /*===================================*
  06.END ICON BOX STYLE
*===================================*/

    .font-size-12 {
        font-size: 0.9rem;
    }

    .text-gray-5 {
        color: #878787 !important;
    }

    .border-bottom-img {
        border-bottom: 2px solid rgb(var(--ColorOne)) !important;
    }

    .navbar-collapse li:last-of-type {
        justify-content: flex-end;
    }


    .cover-img {
        pointer-events: none;
        position: absolute;
        z-index: -999;
        display: block;
        width: 100%;
        min-height: 450px;
        object-fit: cover;
        max-height: 450px;
    }

    @media screen and (max-width:575px) {
        .card.card-product-grid {
            min-height: unset;
            max-height: unset;
        }
    }

    .categories_link {
        border: none;
        font-size: 16px;
        font-weight: bold;
        border-radius: 0.428rem !important;
        background-color: transparent;
    }

    .categories_active,
    .categories_active:focus,
    .categories_active:active {
        background-color: rgba(var(--ColorOne), 0.15)
    }

    .list-group-item-action:focus, .list-group-item-action:hover {
        z-index: 1;
        text-decoration: none;
        background-color: rgba(var(--ColorOne),.3)
    }

.limit-one-line {
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
   
}

/*.btn-limit-one-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}*/


.btn-limit-one-line {
    position: relative;
    display: inline-block;
    /*width: 140px;*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* For small mobile screens */
@media (max-width: 480px) {
    .btn-limit-one-line {
        max-width: 180px;
    }
}

/* For medium mobile screens */
@media (min-width: 481px) and (max-width: 570px) {
    .btn-limit-one-line {
        max-width: 162px;
    }
}

@media (min-width: 571px) and (max-width: 767px) {
    .btn-limit-one-line {
        max-width: 140px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .btn-limit-one-line {
        max-width: 186px;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .btn-limit-one-line {
        max-width: 137px;
    }
}

@media (min-width: 1401px)  {
    .btn-limit-one-line {
        max-width: 175px;
    }
}


.faded-text {
    opacity: 0.6;
    font-size: 15px
}

@media (max-width:991px) {
    #submenuToggle {
        position: absolute;
        top: -36px;
        right: 0;
    }
}

.footer-images-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-image-box {
    width: 80px;
    height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-image-box {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 576px) {
    .footer-image-box {
        width: 60px;
        height: 60px;
    }
}

#chargeProfilesModal .modal-content {
    max-height: 90vh;
    overflow-x: auto
}

    #chargeProfilesModal .modal-content .modal-header {
        position: sticky;
        top: 0;
        z-index: 9;
        background-color: white
    }

#chargeProfilesModal .saveChargeProfileContainer {
    position: sticky;
    bottom: 10px;
    z-index: 9;
}