﻿@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: bold;
    src: url(/fonts/IRANSansX/IRANSansXFaNum-Bold.woff) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Bold.woff2) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Bold.ttf) format("truetype")
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: normal;
    src: url(/fonts/IRANSansX/IRANSansXFaNum-Regular.woff) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Regular.woff2) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Regular.ttf) format("truetype")
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 500;
    src: url(/fonts/IRANSansX/IRANSansXFaNum-Medium.woff) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Medium.woff2) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Medium.ttf) format("truetype")
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 200;
    src: url(/fonts/IRANSansX/IRANSansXFaNum-Light.woff) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Light.woff2) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Light.ttf) format("truetype")
}

* {
    font-family: 'IRANSansX';
    direction: rtl;
}

:root {
    --primary-color: #3cbdf9;
    --secondary-color: #71cec0;
    --primary-gradient-color: linear-gradient( 135deg, rgb(60, 189, 249) 0%, rgb(113, 206, 192) 100% );
}

a {
    text-decoration: none;
}

/*-- Hide scrollbar -- */
html::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    background-color: #f4f6fa;
}

.focus-none:focus {
    outline: 0;
    box-shadow: none !important;
}

.box-shadow-none {
    box-shadow: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-group-append, .input-group-prepend {
    display: -ms-flexbox;
    display: flex;
}

input[type=number] {
    -moz-appearance: textfield;
}

h1, h2 {
    font-size: 1.5rem;
}

.f10 {
    font-size: 10px;
}

.f11 {
    font-size: 11px;
}

.f12 {
    font-size: 12px;
}

.f13 {
    font-size: 13px;
}

.f14 {
    font-size: 14px;
}

.f15 {
    font-size: 15px;
}

.pointer {
    cursor: pointer
}

.form-label {
    position: relative;
    font-weight: bold
}

.required {
    color: red;
    position: absolute;
    top: -5px;
    left: -11px;
    font-size: 15px;
}

.ltr {
    direction: ltr
}
/*------------*/
#enterCode .code-input {
    width: 50px;
    height: 50px;
    font-size: 20px;
    padding: 0;
    direction: ltr;
}
/*------------*/
.categories-menu-bg {
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    z-index: 21;
    backdrop-filter: blur(3px);
    background-color: hsla(0, 0%, 5%, .4);
}

    .categories-menu-bg.active {
        display: block;
    }

/*------------*/

.aside-bg {
    content: ' ';
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 20;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out .2s;
    backdrop-filter: blur(3px);
    background-color: hsla(0, 0%, 5%, .4);
}

    .aside-bg.active {
        visibility: visible;
        opacity: 1;
    }

.sec-aside-cart {
    position: fixed;
    visibility: hidden;
    top: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 21;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 5px #00000057;
    transition: all ease-in-out .2s;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

    .sec-aside-cart.active {
        right: 0;
        visibility: visible;
    }

    .sec-aside-cart .header {
        display: flex;
        background-color: #eee;
        padding: 15px 20px;
        align-items: center;
        border-bottom: 1px solid #e8d5d5;
    }

        .sec-aside-cart .header .title {
            font-size: 20px;
        }

        .sec-aside-cart .header .close {
            color: #888;
            cursor: pointer;
            border: 1px solid #888;
            width: 30px;
            height: 30px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            transition: 0.2s;
        }

            .sec-aside-cart .header .close:hover {
                background-color: #888;
                color: #fff;
            }

    .sec-aside-cart .products {
        flex-grow: 1;
    }

        .sec-aside-cart .products .empty-cart {
            text-align: center;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

            .sec-aside-cart .products .empty-cart img {
                margin-bottom: 10px;
            }

        .sec-aside-cart .products .scrollbar {
            position: absolute;
            inset: 0;
            max-height: 100%;
            overscroll-behavior: none;
            overflow: hidden;
            overflow-y: auto;
        }

        .sec-aside-cart .products .item {
            display: flex;
            padding: 20px;
        }

            .sec-aside-cart .products .item:not(:last-child) {
                border-bottom: 1px solid #eee;
            }

            .sec-aside-cart .products .item .image-container {
                width: 20%;
                flex: 0 0 auto;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .sec-aside-cart .products .item .image-container img {
                    width: 75px;
                    height: 75px;
                    object-fit: cover;
                    border-radius: 5px
                }

            .sec-aside-cart .products .item .detail {
                width: 80%;
                flex: 0 0 auto;
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                padding-right: 12px
            }

                .sec-aside-cart .products .item .detail .title-container {
                    display: flex;
                    justify-content: space-between;
                    margin-bottom: 10px;
                    width: 100%;
                    flex: 0 0 auto;
                    align-items: center;
                }

                    .sec-aside-cart .products .item .detail .title-container a {
                        color: #888;
                    }

                    .sec-aside-cart .products .item .detail .title-container .title {
                        font-size: 16px;
                        width: 70%;
                    }

    .sec-aside-cart .bottom-content {
        padding: 20px;
        border-top: 1px solid #eee;
        background-color: #fff;
        margin-top: auto;
        flex-shrink: 0;
        flex-grow: 0;
    }

        .sec-aside-cart .bottom-content .totalPrice-container {
            margin-bottom: 30px;
        }

            .sec-aside-cart .bottom-content .totalPrice-container .item {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

        .sec-aside-cart .bottom-content .btns a {
            width: 100%;
            display: block;
            padding: 12px;
            text-align: center;
            border-radius: 8px;
        }

            .sec-aside-cart .bottom-content .btns a.cart {
                margin-bottom: 10px;
                background-color: #e4e4e4;
                color: #666;
            }

            .sec-aside-cart .bottom-content .btns a.checkout {
                background-color: var(--primary-color);
                color: #fff;
            }

/*------------*/
.top-alert .alert {
    border: 0;
    border-radius: 0;
    background-color: var(--secondary-color);
    margin: 0;
}

    .top-alert .alert span.text {
        color: #fff;
    }

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

    .alert-dismissible .close i {
        color: #fff;
        font-size: 20px;
        cursor: pointer;
    }

.alert-dismissible ._div_btn a {
    box-shadow: 0 5px 6px rgb(0 0 0 / 12%);
}

/*------------*/
header {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 5px;
    padding-top: 0.75rem;
    background: #fff
}

    header .header-top {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

        header .header-top .logo-container {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
        }

            header .header-top .logo-container img {
                width: 100%;
                height: 80px;
                object-fit: contain;
            }

        header .header-top .search-input-container {
            position: relative;
            flex: 0 0 auto;
            z-index: 20;
        }

            header .header-top .search-input-container .searchInput {
                background: #f5f5f5;
                border: none;
                border-radius: 35px;
                width: 100%;
                padding: 10px 15px;
                border: 1px solid #e5e7eb;
                font-size: 16px;
                color: #4d4d4d;
            }

                header .header-top .search-input-container .searchInput:focus {
                    box-shadow: none !important;
                }

            header .header-top .search-input-container i.searchIcon {
                position: absolute;
                top: 0;
                left: 15px;
                bottom: 0;
                margin: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                color: #4d4d4d;
            }

    header .suggestion-box-bg {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: '';
        z-index: 19;
        backdrop-filter: blur(3px);
        background-color: hsla(0, 0%, 5%, .4);
    }

    header .header-top .search-input-container .suggestion-box {
        display: none;
        position: absolute;
        top: 120%;
        width: 100%;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 20px;
        z-index: 20;
        overflow: hidden;
        max-height: 300px;
        overflow-y: scroll;
    }

    header .header-top .search-input-container .suggestion-box {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

        header .header-top .search-input-container .suggestion-box::-webkit-scrollbar {
            display: none;
        }

    header .header-top .search-input-container .suggestion-items {
        display: none;
        border-bottom: 1px solid #eee;
    }

        header .header-top .search-input-container .suggestion-items .item {
            padding: 5px 10px;
            cursor: pointer;
            text-align: right;
            color: #000;
            display: flex;
            align-items: center;
        }

            header .header-top .search-input-container .suggestion-items .item .image-container {
                margin-left: 10px;
            }

                header .header-top .search-input-container .suggestion-items .item .image-container img {
                    width: 50px;
                    height: 50px;
                    object-fit: cover;
                    border-radius: 5px;
                }

            header .header-top .search-input-container .suggestion-items .item .p-tilte {
                width: 80%;
            }

            header .header-top .search-input-container .suggestion-items .item:hover {
                background-color: #f5f5f5;
            }

        header .header-top .search-input-container .suggestion-items .more-btn {
            padding: 10px 15px 20px 15px;
            text-align: left;
        }

            header .header-top .search-input-container .suggestion-items .more-btn a {
                color: #8c8c8c;
                font-size: 14px;
            }

                header .header-top .search-input-container .suggestion-items .more-btn a i {
                    font-size: 10px;
                    vertical-align: middle;
                }

    header .header-top .search-input-container .recent-search {
        padding: 10px 15px 20px 15px;
    }

        header .header-top .search-input-container .recent-search .title {
            color: #8c8c8c;
            margin-bottom: 20px;
        }

        header .header-top .search-input-container .recent-search .item {
            color: rgb(9 9 11 / 80%);
            border: 1px solid #cbcbff;
            border-radius: 10px;
            padding: 2px 12px;
            margin-left: 8px;
            transition: .2s;
        }

            header .header-top .search-input-container .recent-search .item:hover {
                border: 1px solid #4949d7;
            }

    /* -- */
    header .header-top .left-btns-container .btn-shopping-cart .counter {
        position: absolute;
        top: -10px;
        right: -10px;
        padding: 0 7px;
        display: flex;
        border-radius: 50%;
        background-color: var(--primary-color);
        color: #fff;
        width: 24px;
        height: 24px;
        font-size: 12px;
        justify-content: center;
        align-items: center;
    }

    header .header-top .left-btns-container {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

        header .header-top .left-btns-container .btn-login {
            background-color: var(--primary-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            height: 45px;
            padding: 0 15px;
            border: 0;
            cursor: pointer;
        }

        header .header-top .left-btns-container .btn-account {
            background-color: var(--primary-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            height: 45px;
            cursor: pointer;
            border: 0;
        }

            header .header-top .left-btns-container .btn-account i {
                font-size: 10px;
                margin-right: 8px;
            }

            header .header-top .left-btns-container .btn-account::after {
                display: none;
            }

        header .header-top .left-btns-container .btn-account-d .dropdown-divider {
            margin: 2px 0;
            border-color: #eee;
        }

        header .header-top .left-btns-container .btn-account-d .dropdown-item {
            padding: 8px 15px;
        }

            header .header-top .left-btns-container .btn-account-d .dropdown-item:active {
                background-color: unset;
                color: #000;
            }

        header .header-top .left-btns-container .btn-login svg {
            width: 20px;
        }

        header .header-top .left-btns-container .btn-shopping-cart {
            height: 45px;
            border-radius: 10px;
            border: 1px solid var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 8px;
            position: relative;
            cursor: pointer;
        }

            header .header-top .left-btns-container .btn-shopping-cart svg {
                width: 30px;
            }

/*------------*/
.sec-slider {
    margin-bottom: 20px;
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.sec-slider #slider-owl .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0px 3px;
    background: #ddd;
    display: block;
    transition: opacity .2s ease;
    border-radius: 30px;
    transition: 0.2s;
}

.sec-slider #slider-owl .owl-dots .owl-dot.active span {
    background: var(--primary-color);
    width: 20px;
}

.sec-slider .top-banner {
    display: flex;
    gap: 20px;
}

    .sec-slider .top-banner img {
        width: 100%;
    }

/*-----------*/

.sec-main-category {
    position: relative;
    margin-top: 30px;
}

    .sec-main-category .item {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-radius: 15px;
        padding: 10px 8px;
        background-color: #fff
    }

        .sec-main-category .item img {
            width: 50%;
            margin-bottom: 10px;
            width: 65px;
            height: 65px;
            object-fit: contain;
        }

        .sec-main-category .item .title {
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
            display: inline-block;
            width: 100%;
            color: #000;
        }


    .sec-main-category .section-title {
        margin: 20px 0;
    }


    .sec-main-category #main-category-owl .owl-nav {
        position: absolute;
        top: -50px;
        left: 0;
    }

        .sec-main-category #main-category-owl .owl-nav .owl-prev {
            display: inline-block;
            height: 34px;
            width: 34px;
            line-height: 1;
            background: white;
            border: 1px solid #eeeeee;
            border-radius: 4px;
            margin-left: 5px;
        }

            .sec-main-category #main-category-owl .owl-nav .owl-prev.disabled i {
                color: #d1d1d1;
            }

        .sec-main-category #main-category-owl .owl-nav .owl-next {
            display: inline-block;
            height: 34px;
            width: 34px;
            line-height: 1;
            background: white;
            border: 1px solid #eeeeee;
            border-radius: 4px;
        }

            .sec-main-category #main-category-owl .owl-nav .owl-next.disabled i {
                color: #d1d1d1;
            }

        .sec-main-category #main-category-owl .owl-nav button i {
            color: var(--secondary-color)
        }

/*-----------*/

.sec-banners .bx {
    perspective: 1000px;
}

.sec-banners .item {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

    .sec-banners .item img {
        width: 100%;
        border-radius: 20px;
        height: 100%;
        object-fit: cover;
    }

    .sec-banners .item svg {
        position: absolute;
        left: 0;
        bottom: 0;
        transform: rotate(180deg);
        text-align: left;
    }

    .sec-banners .item i {
        position: absolute;
        background: var(--primary-color);
        text-align: center;
        bottom: 0;
        color: #fff;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
/*-----------*/
.scrollbar {
    overflow-y: scroll;
    overflow-x: hidden;
}

    .scrollbar:hover::-webkit-scrollbar,
    .scrollbar:hover::-webkit-scrollbar-thumb,
    .scrollbar:focus::-webkit-scrollbar,
    .scrollbar:focus::-webkit-scrollbar-thumb {
        visibility: visible;
    }

    .scrollbar::-webkit-scrollbar {
        visibility: visible;
        -webkit-appearance: none;
        width: 4px;
        background-color: transparent;
    }

    .scrollbar:hover::-webkit-scrollbar,
    .scrollbar:hover::-webkit-scrollbar-thumb,
    .scrollbar:focus::-webkit-scrollbar,
    .scrollbar:focus::-webkit-scrollbar-thumb {
        visibility: visible;
    }

    .scrollbar::-webkit-scrollbar-thumb {
        visibility: visible;
        border-radius: 3px;
        background-color: rgba(182, 193, 210, 0.55);
    }

/*-----------*/

footer {
    position: relative;
}

    footer .topSvg svg {
        fill: #f4f6fa;
        transform: rotate(-180deg);
    }

    footer .bg {
        background-color: var(--primary-color);
    }

    footer .about {
        text-align: center;
    }

        footer .about .text {
            line-height: 2;
            color: #4B419E
        }

        footer .about .col-title {
            font-weight: 600;
            font-size: 26px;
            color: #4B419E;
            position: relative;
            margin-bottom: 30px;
        }

    /* -- */
    footer .content {
        margin-bottom: 60px;
    }

        footer .content .contact ul {
            list-style-type: none;
            padding: 0;
        }

        /* -- */

        footer .content .links ul {
            list-style-type: none;
            padding: 0;
        }

            footer .content .links ul li {
                margin-bottom: 10px;
                display: flex;
                align-items: center;
            }

                footer .content .links ul li i {
                    margin-left: 15px;
                    color: #4B419E;
                    font-size: 14px;
                }

                footer .content .links ul li a {
                    color: #000;
                }

    /* -- */

    footer .social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 10px;
    }

        footer .social .item {
            background-color: #4B419E0D;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }

            footer .social .item i {
                color: #4B419E;
                font-size: 19px;
            }

            footer .social .item svg {
                fill: #4B419E;
                width: 19px;
            }

    /* -- */

    footer .license {
        display: flex;
    }

        footer .license .item img {
            object-fit: contain;
        }

    /* -- */

    footer .sign {
        text-align: center;
        font-weight: 300;
        color: #fff;
        font-size: 15px;
        background-color: #1e9cd7;
        padding: 15px 0
    }

        footer .sign a {
            color: #fff;
        }

/*-----------*/

#amazing-offer-owl {
    margin-top: -60px;
}

.sec-amazing-offer {
    margin: 120px 0 50px 0;
}

    .sec-amazing-offer .sec-content {
        background: var(--primary-gradient-color);
        border-radius: 30px;
        padding: 20px 0;
    }

    .sec-amazing-offer .fItem {
        margin-top: 30px;
        color: #fff;
        text-align: justify;
        padding: 20px;
        font-size: 15px;
        height: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-end;
        align-items: center;
        justify-content: center;
    }

        .sec-amazing-offer .fItem .all-link {
            background: #fff;
            border-radius: 10px;
            color: #000;
            font-size: 15px;
            padding: 2px 10px;
            border-radius: 28px;
        }

        .sec-amazing-offer .fItem img {
            width: 100%
        }

    .sec-amazing-offer .owl-carousel .owl-stage {
        display: flex;
    }

    /*-----------*/
    .sec-amazing-offer #amazing-offer-owl .product-cItem {
        height: 100%
    }

    .sec-amazing-offer #amazing-offer-owl .item:not(.fItem) {
        border: none;
        box-shadow: rgb(0 0 0 / 10%) 0px 1px 2px 0px;
        background: #fff;
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .sec-amazing-offer #amazing-offer-owl .item .card {
        box-shadow: 0px 5px 8px 0px rgb(0 0 0 / 3%);
        border: 1px solid #f2f4f7;
    }

    .sec-amazing-offer #amazing-offer-owl .item {
        transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

        .sec-amazing-offer #amazing-offer-owl .item .image-container {
            margin-bottom: 20px;
        }

            .sec-amazing-offer #amazing-offer-owl .item .image-container img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 10px;
            }

        .sec-amazing-offer #amazing-offer-owl .item .content .p-title {
            font-weight: 500;
            color: #000;
        }

        .sec-amazing-offer #amazing-offer-owl .item .content .price-container {
            margin-top: 15px;
        }

            .sec-amazing-offer #amazing-offer-owl .item .content .price-container .price {
                color: #000;
                text-align: end;
            }

            .sec-amazing-offer #amazing-offer-owl .item .content .price-container .discount {
                text-align: end;
            }

                .sec-amazing-offer #amazing-offer-owl .item .content .price-container .discount .discount-price {
                    color: hsla(0, 14%, 5%, 0.56);
                    text-align: end;
                    text-decoration: line-through;
                }

                .sec-amazing-offer #amazing-offer-owl .item .content .price-container .discount .percent {
                    border-radius: 5px;
                    padding: 0px 6px;
                    display: inline-block;
                    font-size: 14px;
                    margin-right: 3px;
                    background-color: #d32f2f;
                    color: #fff;
                }

/*-----------*/
.sec-product-slider {
    position: relative;
    margin-bottom: 40px
}

    .sec-product-slider .product-slider .owl-stage-outer {
        padding: 10px 0 1rem 0;
    }

    .sec-product-slider .sec-title h4 {
        font-weight: 700;
        position: relative;
        margin: 0;
        color: var(--secondary-color);
    }

    .sec-product-slider .bottom-link a {
        color: var(--secondary-color);
    }

    .sec-product-slider .sec-title a i {
        font-size: 12px;
        vertical-align: middle;
    }

    .sec-product-slider .owl-carousel .owl-stage {
        display: flex;
    }

    .sec-product-slider .product-slider-owl .product-cItem {
        height: 100%
    }

    .sec-product-slider .product-slider-owl .item {
        border: none;
        box-shadow: rgb(0 0 0 / 10%) 0px 1px 2px 0px;
        background: #fff;
        padding: 1rem;
        border-radius: 0.5rem;
    }

        /* .sec-product-slider .product-slider-owl .item::after {
            width: 1px;
            height: 98%;
            background: #e5e7eb;
            display: block;
            content: "";
            top: 0;
            bottom: 0;
            position: absolute;
            margin: auto;
            left: -10px;
        }*/

        .sec-product-slider .product-slider-owl .item .card {
            box-shadow: 0px 5px 8px 0px rgb(0 0 0 / 3%);
            border: 1px solid #f2f4f7;
        }

    .sec-product-slider .product-slider-owl .item {
        transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

        .sec-product-slider .product-slider-owl .item .image-container {
            margin-bottom: 20px;
        }

            .sec-product-slider .product-slider-owl .item .image-container img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 10px;
            }

        .sec-product-slider .product-slider-owl .item .content .p-title {
            font-weight: 500;
            color: #000;
        }

        .sec-product-slider .product-slider-owl .item .content .price-container {
            margin-top: 15px;
        }

            .sec-product-slider .product-slider-owl .item .content .price-container .price {
                color: #000;
                text-align: end;
            }

            .sec-product-slider .product-slider-owl .item .content .price-container .discount {
                text-align: end;
            }

                .sec-product-slider .product-slider-owl .item .content .price-container .discount .discount-price {
                    color: hsla(0, 14%, 5%, 0.56);
                    text-align: end;
                    text-decoration: line-through;
                }

                .sec-product-slider .product-slider-owl .item .content .price-container .discount .percent {
                    border-radius: 5px;
                    padding: 0px 6px;
                    display: inline-block;
                    font-size: 14px;
                    margin-right: 3px;
                    background-color: #d32f2f;
                    color: #fff;
                }

/*-----------*/
/*-----------*/
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
}

/*-----------*/
.breadcrumb {
    display: flex;
    align-items: center;
}

    .breadcrumb a {
        color: rgb(0 0 0 / 87%);
    }

    .breadcrumb i {
        color: rgb(0 0 0 / 56%);
        font-size: 11px;
        padding: 0 12px;
    }

    .breadcrumb span {
        color: rgb(0 0 0 / 32%);
    }

/*-----------*/

#product-fullScreen-Modal .modal-content {
    border: none;
    position: relative;
}

    #product-fullScreen-Modal .modal-content .back {
        position: absolute;
        background: rgb(0 0 0 / 10%);
        top: 20px;
        right: 10px;
        z-index: 2;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        cursor: pointer;
    }

        #product-fullScreen-Modal .modal-content .back i {
            color: #888;
        }

#product-fullScreen-Modal #fullScreen-Images-carousel .owl-stage-outer {
    border-radius: 10px;
}

#fullScreen-Images-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 4px 0px 4px;
    background: #cccccc;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

#fullScreen-Images-carousel .owl-dots .owl-dot.active span,
#fullScreen-Images-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color)
}

#fullScreen-Images-carousel .owl-dots {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 20px;
}

/*-----------*/
.product-thumbnail-images {
    margin-top: 10px;
}

    .product-thumbnail-images .item {
        position: relative;
        border-radius: 5px;
        overflow: hidden;
        cursor: pointer;
    }

        .product-thumbnail-images .item:not(.active):after {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
            content: '';
            background-color: rgb(0 0 0 / 30%);
        }

.product-card .product-thumbnail-images img {
    width: 100%;
    object-fit: cover;
}

/*-----------*/
.product-card {
    background: none;
}

    .product-card .product-images {
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .product-card #Images-carousel .owl-stage-outer {
        border-radius: 10px;
    }

    .product-card .product-images .item {
        cursor: pointer;
    }

        .product-card .product-images .item img {
            object-fit: cover;
        }

    .product-card .product-images .owl-nav {
        position: absolute;
        top: 45%;
        width: 100%;
    }

        .product-card .product-images .owl-nav button {
            position: absolute;
            cursor: pointer;
        }

            .product-card .product-images .owl-nav button i {
                vertical-align: middle;
                color: rgb(0 0 0 / 56%);
                font-size: 11px;
                padding: 0 12px;
            }

        .product-card .product-images .owl-nav .owl-prev {
            right: 0;
        }

        .product-card .product-images .owl-nav .owl-next {
            left: 0;
        }

    /* --- */

    .product-card .product-info .top-title {
        margin-bottom: 30px;
    }

        .product-card .product-info .top-title h1.p-title {
            font-size: 1.5rem;
            font-weight: 600;
        }

    .product-card .product-info {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-wrap: nowrap;
        height: 100%;
    }

        .product-card .product-info .top-title .en-title {
            color: rgb(9 9 11 / 60%);
            font-size: .85rem;
        }

        .product-card .product-info .labels .item {
            background: #f5f5f5;
            display: inline-block;
            padding: 2px 5px;
            border-radius: 5px;
            font-size: 12px;
            margin-left: 5px;
        }

        .product-card .product-info .product-Varietis {
            margin-bottom: 30px;
        }

            .product-card .product-info .product-Varietis .product-Variety-item {
                margin-bottom: 10px;
            }

            .product-card .product-info .product-Varietis .content {
                display: flex;
                gap: 10px;
                margin-top: 10px;
            }

            .product-card .product-info .product-Varietis .item input {
                display: none;
            }

            .product-card .product-info .product-Varietis .item label {
                padding: 0px 10px;
                border: 2px solid #e4e4e7;
                border-radius: 50px;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                min-width: 3rem;
                min-height: 3rem;
                display: flex;
                position: relative;
                box-shadow: 0px 1px 10px rgba(0, 0, 0, .05);
                user-select: none
            }

            .product-card .product-info .product-Varietis .item label {
                color: rgb(9 9 11 / 90%);
                font-weight: 600;
            }

            .product-card .product-info .product-Varietis .item .color-container {
                width: 1.5rem;
                height: 1.5rem;
                border-radius: 50px;
                margin-left: 5px;
            }

            .product-card .product-info .product-Varietis .item input[type="radio"]:checked + label {
                border: 2px solid var(--primary-color);
                background: var(--primary-color);
                color: #fff;
            }

        .product-card .product-info .features {
            border: 1px solid #eee;
            padding: 10px 15px;
            border-radius: 10px;
        }

            .product-card .product-info .features .item {
                margin-bottom: 4px;
                font-weight: 500;
            }

                .product-card .product-info .features .item .title {
                    color: rgb(0 0 0 / 50%);
                    font-size: 15px;
                }

                .product-card .product-info .features .item .value {
                    font-size: 15px;
                    color: rgb(0 0 0 / 87%);
                }

                .product-card .product-info .features .item a {
                    font-size: 14px;
                    color: rgba(102, 51, 206, 0.87);
                    cursor: pointer;
                }

    .product-card .left-box {
        padding: 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 45px;
        box-shadow: rgb(30 92 121 / 15%) 0px 1px 6px 0px;
    }

        .product-card .left-box .benefits .item {
            display: flex;
            align-items: center;
            padding: 15px 0;
        }

            .product-card .left-box .benefits .item .icon {
                width: 15%;
                text-align: center;
            }

                .product-card .left-box .benefits .item .icon i {
                    font-size: 16px;
                    color: #9f9f9f;
                }

            .product-card .left-box .benefits .item .text-container {
                font-size: 0.9rem;
                width: 85%
            }

        .product-card .left-box .price-container {
            text-align: end;
        }

            .product-card .left-box .price-container .price span {
                color: #000;
                font-size: 22px;
                font-weight: 600;
            }

            .product-card .left-box .price-container .price small {
                color: rgb(9 9 11 / 60%);
            }

            .product-card .left-box .price-container .discount span.discount_p {
                position: relative;
                color: rgb(9 9 11 / 50%);
                font-size: 18px;
            }

                .product-card .left-box .price-container .discount span.discount_p:after {
                    position: absolute;
                    content: '';
                    width: 95%;
                    height: 1px;
                    top: 55%;
                    background: #888;
                    left: 0;
                    right: 0;
                }

            .product-card .left-box .price-container .discount .discount-percent {
                background-color: #d32f2f;
                color: #fff;
                border-radius: 5px;
                padding: 0px 8px;
                display: inline-block;
                font-size: 0.8rem;
            }

                .product-card .left-box .price-container .discount .discount-percent i {
                    font-size: 10px;
                    margin-left: 2px;
                }

        .product-card .left-box .btns .add-to-cart {
            width: 100%;
            display: block;
            text-align: center;
            border-radius: 8px;
            background-color: var(--primary-color);
            color: #fff;
            font-size: 1.2rem;
        }

        .product-card .left-box .btns .quantity-input-container {
            background: #fff;
            border-radius: 10px;
        }

            .product-card .left-box .btns .quantity-input-container span {
                border: none;
            }

            .product-card .left-box .btns .quantity-input-container .input-group {
                border: 1px solid #e4e4e4;
                border-radius: 10px;
                padding: 12px;
            }

            .product-card .left-box .btns .quantity-input-container button:hover {
                background-color: unset;
                color: #000;
            }

            .product-card .left-box .btns .quantity-input-container button {
                padding: 0;
                transition: 0.2s;
            }

                .product-card .left-box .btns .quantity-input-container button i {
                    font-size: 20px;
                    vertical-align: middle;
                    transition: 0.2s;
                }

            .product-card .left-box .btns .quantity-input-container .plusBtn {
                border: 0;
            }

                .product-card .left-box .btns .quantity-input-container .plusBtn:hover i {
                    color: green;
                }

            .product-card .left-box .btns .quantity-input-container input.cartItemCount {
                border: 0;
                background: none;
                font-weight: 600;
            }

            .product-card .left-box .btns .quantity-input-container .minusBtn {
                border: 0;
            }

                .product-card .left-box .btns .quantity-input-container .minusBtn:hover i {
                    color: red;
                }

                .product-card .left-box .btns .quantity-input-container .minusBtn .remove-from-cart {
                    color: var(--primary-color);
                }

            .product-card .left-box .btns .quantity-input-container .quantity-input-div {
                flex: 1 1 auto;
                width: 1%;
                min-width: 0;
                position: relative;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .product-card .left-box .btns .quantity-input-container .quantity-input-loader span {
                width: 30px;
                height: 30px;
                display: block;
                border-radius: 50%;
                animation: rotate 1s linear infinite
            }

                .product-card .left-box .btns .quantity-input-container .quantity-input-loader span:before {
                    content: "";
                    box-sizing: border-box;
                    position: absolute;
                    inset: 0px;
                    border-radius: 50%;
                    border: 3px solid var(--primary-color);
                    animation: prixClipFix 2s linear infinite;
                }

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
    }
}

/*-----------*/

#product-page .product-tabs-card ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

    #product-page .product-tabs-card ul li a {
        padding-bottom: .5rem;
        font-weight: 500;
        font-size: 1.1rem;
        color: #000;
        cursor: pointer;
        user-select: none;
    }

#product-page .product-tabs-card a.active {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}


#product-page .product-tabs-container {
    margin-top: 40px;
}

    #product-page .product-tabs-container .tab-content-content {
        display: none;
    }

        #product-page .product-tabs-container .tab-content-content.active {
            display: block;
        }

        #product-page .product-tabs-container .tab-content-content .product-descripion {
            line-height: 30px;
            color: #474747;
            font-size: 15px;
            text-align: justify;
        }

        #product-page .product-tabs-container .tab-content-content .product-features .item {
            display: flex;
            align-items: stretch;
            gap: .75rem;
            margin-bottom: 10px;
        }

            #product-page .product-tabs-container .tab-content-content .product-features .item .title {
                background-color: rgb(248 249 251);
                padding: 1rem;
                padding: 1rem;
                color: #81858b;
                border-radius: 5px;
            }

            #product-page .product-tabs-container .tab-content-content .product-features .item .value {
                background-color: rgb(248 249 251);
                flex-grow: 1;
                padding: 1rem;
                color: #0c0c0c;
                border-radius: 5px;
            }

/*-----------*/
.price-container .notAvailable {
    position: relative;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
}

    .price-container .notAvailable:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background-color: #888;
        z-index: 0;
    }

    .price-container .notAvailable p {
        z-index: 1;
        font-size: 18px;
        margin: 0;
        font-weight: 500;
        padding: 0 20px;
        color: #888;
        background: #fff;
    }
/*-----------*/
#pageAlert {
    position: fixed;
    z-index: 9999;
}

    #pageAlert span {
        min-width: 300px;
        text-align: center;
        padding: 16px;
        color: #fff;
        border-radius: 10px;
        position: relative;
        display: block;
        margin-bottom: 5px;
    }

        #pageAlert span.danger {
            background-color: #dc3545;
        }

        #pageAlert span.success {
            background-color: #157347;
        }

            #pageAlert span.danger::after,
            #pageAlert span.success::after {
                background: #fff;
                bottom: 2px;
                position: absolute;
                right: 4px;
                left: 0px;
                content: '';
                height: 2px;
                z-index: 2;
                border-radius: 5px;
                animation: runProgress 2.5s linear forwards;
            }

@keyframes runProgress {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

/*-----------*/

#category-page .category-title-container {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

#category-page #main-category-owl .owl-nav {
    display: none
}

#category-page .category-title-container h1 {
    font-size: 25px;
    margin: 0
}

#category-page .sidebar-filters-container .search-input-container {
    flex: 0 0 auto;
    position: relative;
}

    #category-page .sidebar-filters-container .search-input-container .searchInput {
        background: #fff;
        border: none;
        border-radius: 10px;
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #e5e7eb;
    }

        #category-page .sidebar-filters-container .search-input-container .searchInput:focus {
            box-shadow: none !important;
        }

    #category-page .sidebar-filters-container .search-input-container i.searchIcon {
        position: absolute;
        top: 0;
        left: 15px;
        bottom: 0;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #b2b9c9;
    }

#category-page .filter-box {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background-color: #fff;
}

    #category-page .filter-box .divider {
        border-bottom: 1px solid #e5e7eb;
    }

    #category-page .filter-box .filter-accordion-container .accordion-item {
        border: none;
    }

        #category-page .filter-box .filter-accordion-container .accordion-item:not(:last-child) {
            margin-bottom: 15px;
        }

        #category-page .filter-box .filter-accordion-container .accordion-item .accordion-body {
            padding: 0 5px 0 10px;
            margin-top: 10px;
            max-height: 200px;
        }

            #category-page .filter-box .filter-accordion-container .accordion-item .accordion-body .form-check {
                margin-bottom: 5px;
            }

    #category-page .filter-box .filter-accordion-container .accordion-header button {
        font-weight: 500;
        font-size: 20px;
        padding: 0;
    }

    #category-page .filter-box .filter-accordion-container .accordion-button:not(.collapsed) {
        background-color: unset;
        box-shadow: none;
    }

    #category-page .filter-box .filter-accordion-container .accordion-button::after {
        background-size: 0.95rem;
    }

    #category-page .filter-box .filter-price-container {
        margin-bottom: 20px;
    }

        #category-page .filter-box .filter-price-container .title {
            font-weight: 500;
            font-size: 20px;
            margin-bottom: 20px;
        }

        #category-page .filter-box .filter-price-container .price-input {
            margin-top: 10px;
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

        #category-page .filter-box .filter-price-container .field input {
            width: 100%;
            height: 100%;
            outline: none;
            font-size: 19px;
            border-radius: 5px;
            text-align: center;
            border: 1px solid #999;
            -moz-appearance: textfield;
        }

        #category-page .filter-box .filter-price-container input[type="number"]::-webkit-outer-spin-button,
        #category-page .filter-box .filter-price-container input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
        }

        #category-page .filter-box .filter-price-container .slider {
            height: 5px;
            position: relative;
            background: #ddd;
            border-radius: 5px;
        }

            #category-page .filter-box .filter-price-container .slider .progress {
                height: 100%;
                right: 0;
                left: 0;
                position: absolute;
                border-radius: 5px;
                background: var(--primary-color);
            }

        #category-page .filter-box .filter-price-container .range-input {
            position: relative;
            direction: ltr;
        }

            #category-page .filter-box .filter-price-container .range-input input {
                position: absolute;
                width: 100%;
                height: 5px;
                top: -5px;
                background: none;
                pointer-events: none;
                -webkit-appearance: none;
                -moz-appearance: none;
            }

        #category-page .filter-box .filter-price-container input[type="range"]::-webkit-slider-thumb {
            height: 17px;
            width: 17px;
            border-radius: 50%;
            background: var(--primary-color);
            pointer-events: auto;
            -webkit-appearance: none;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
        }

        #category-page .filter-box .filter-price-container input[type="range"]::-moz-range-thumb {
            height: 17px;
            width: 17px;
            border: none;
            border-radius: 50%;
            background: #17a2b8;
            pointer-events: auto;
            -moz-appearance: none;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
        }

    #category-page .filter-box .filter-checks-container .form-switch {
        padding-right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }


        #category-page .filter-box .filter-checks-container .form-switch .form-check-input {
            width: 2.75rem;
            height: 1.5rem;
            cursor: pointer;
        }

            #category-page .filter-box .filter-checks-container .form-switch .form-check-input:checked {
                background-color: var(--primary-color) !important;
                border-color: var(--primary-color) !important;
                --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
            }

            #category-page .filter-box .filter-checks-container .form-switch .form-check-input:focus {
                border: var(--bs-border-width) solid var(--bs-border-color);
                --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
            }


/*---*/

#category-page .sorting-container {
    height: 50px;
    display: flex;
    align-items: center;
}

    #category-page .sorting-container .content {
        display: flex;
        gap: 10px;
    }

        #category-page .sorting-container .content .items {
            display: flex;
            gap: 18px;
        }

            #category-page .sorting-container .content .items a {
                color: #81858b;
                cursor: pointer
            }

        #category-page .sorting-container .content span i {
            font-size: 13px;
        }

#category-page .products-container .filtered-products {
    border-radius: 20px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0));
    overflow: hidden;
}

    #category-page .products-container .filtered-products .bx {
        margin: 0 !important;
        padding: 1.5px
    }

    #category-page .products-container .filtered-products .item {
        padding: 10px;
        height: 100%;
        background-color: #fff;
    }

        #category-page .products-container .filtered-products .item .image-container {
            margin-bottom: 20px;
        }

            #category-page .products-container .filtered-products .item .image-container img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 10px;
            }

        #category-page .products-container .filtered-products .item .content .p-title {
            font-weight: 500;
            color: #000;
        }

        #category-page .products-container .filtered-products .item .content .price-container {
            margin-top: 15px;
        }

            #category-page .products-container .filtered-products .item .content .price-container .price {
                color: #000;
                text-align: end;
            }

            #category-page .products-container .filtered-products .item .content .price-container .discount {
                text-align: end;
            }

                #category-page .products-container .filtered-products .item .content .price-container .discount .discount-price {
                    color: hsla(0, 14%, 5%, 0.56);
                    text-align: end;
                    text-decoration: line-through;
                }

                #category-page .products-container .filtered-products .item .content .price-container .discount .percent {
                    border-radius: 5px;
                    padding: 0px 6px;
                    display: inline-block;
                    font-size: 14px;
                    margin-right: 3px;
                    background-color: #d32f2f;
                    color: #fff;
                }

/*-----------*/
#cart-page .cart-totals,
#checkout-page .cart-totals {
    border: 1px solid #e5e7eb !important;
}

    #cart-page .cart-totals .item,
    #checkout-page .cart-totals .item {
        border-bottom: 1px solid #ddd;
        padding: 15px 0;
    }

        #cart-page .cart-totals .item:last-child,
        #checkout-page .cart-totals .item:last-child {
            border-bottom: none;
        }

        #cart-page .cart-totals .item span.it-title {
            color: #687687;
        }

        #cart-page .cart-totals .item span.cart-total {
            color: #00a651;
            font-weight: 600;
            font-size: 20px;
        }

        #cart-page .cart-totals .item span.cart-total-un {
            color: #00a651;
            font-size: 18px;
        }

#cart-page .card,
#checkout-page .card {
    border: 1px solid #e5e7eb !important;
}

#cart-page .cart-items .header {
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    background: #eee;
    padding: 1.2rem 0;
    border-bottom: 1px solid #ddd;
}

#cart-page .cart-items .item {
    padding: 20px;
    align-items: center;
    margin: 0;
}

    #cart-page .cart-items .item:not(:last-child) {
        border-bottom: 1px solid #eee;
    }

    #cart-page .cart-items .item .image-container img {
        width: 100%;
        object-fit: cover;
        border-radius: 5px
    }

    #cart-page .cart-items .item .detail .title-container {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        width: 100%;
        flex: 0 0 auto;
    }

    #cart-page .cart-items .item .title {
        color: #000;
        font-weight: 500;
    }

    #cart-page .cart-items .item .price-container {
        text-align: center;
    }

#cart-page .DiscountCode-accordion-container .accordion-button,
#checkout-page .DiscountCode-accordion-container .accordion-button {
    background-color: #E8ECF3;
}

    #cart-page .DiscountCode-accordion-container .accordion-button i,
    #checkout-page .DiscountCode-accordion-container .accordion-button i {
        color: var(--primary-color);
    }

/*-----------*/
#checkout-page .checkItems-container .item:not(:last-child) {
    margin-bottom: 20px;
}

#checkout-page .checkItems-container .item .title {
    margin-bottom: 15px;
}

    #checkout-page .checkItems-container .item .title span {
        font-weight: 500;
        font-size: 20px;
    }

    #checkout-page .checkItems-container .item .title a {
        font-size: 15px;
    }

        #checkout-page .checkItems-container .item .title a i {
            font-size: 12px;
        }

#checkout-page .checkItems-container .item .form-check {
    padding: 0;
}

    #checkout-page .checkItems-container .item .form-check:not(:last-child) {
        margin-bottom: 8px;
    }

    #checkout-page .checkItems-container .item .form-check input {
        display: none;
    }

    #checkout-page .checkItems-container .item .form-check label {
        padding: 0px 10px;
        border: 1px solid #e4e4e7;
        border-radius: 4px;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        min-height: 3rem;
        padding: 0.5rem 1rem;
        display: flex;
        position: relative;
        color: rgb(9 9 11 / 80%);
        user-select: none;
    }

    #checkout-page .checkItems-container .item .form-check input[type="radio"]:checked + label {
        border: 1px solid rgb(16, 185, 129);
        background: rgb(16 185 129 / 6%);
    }

    #checkout-page .checkItems-container .item .form-check .dropdown .dropdown-toggle:after {
        display: none;
    }

    #checkout-page .checkItems-container .item .form-check .dropdown .dropdown-toggle:active,
    #checkout-page .checkItems-container .item .form-check .dropdown .dropdown-toggle:focus {
        border: none;
        border-color: transparent;
        color: #000;
    }

    #checkout-page .checkItems-container .item .form-check .dropdown.active,
    #checkout-page .checkItems-container .item .form-check .dropdown-item:active {
        background-color: unset;
    }


    #checkout-page .checkItems-container .item .form-check label img {
        width: 25px;
        margin-left: 10px;
    }

/*-----------*/

#order-received-page .top {
    background-color: #f8f9fb;
    border-radius: 15px;
}

#order-received-page .message {
    text-align: center;
}

    #order-received-page .message .text h4 {
        color: #059f50;
        font-weight: 700;
        font-size: 40px;
    }

#order-received-page .order-overview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    justify-content: center;
}

    #order-received-page .order-overview .item {
        display: flex;
        justify-content: space-between;
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #eee;
    }

        #order-received-page .order-overview .item span {
            font-weight: 500;
        }

/* -- */

#order-received-page .order-details {
    border: 2px dashed #eee;
    border-radius: 15px;
}

    #order-received-page .order-details .title span {
        font-size: 20px;
        font-weight: 500;
    }

#order-received-page .products {
    background-color: #f7f7f7;
    border-radius: 7px;
}

    #order-received-page .products .item {
        padding: 15px 10px;
        margin: 0;
    }

        #order-received-page .products .item:not(:last-child) {
            border-bottom: 1px solid #f0e9e9;
        }

#order-received-page .subtotal .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 10px;
}

/*-----------*/

.sec-most-viewed-products .content {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
}

    .sec-most-viewed-products .content .sec-title {
        color: #fff
    }

.sec-most-viewed-products .products .item {
    display: flex;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e1cebc;
}


.sec-most-viewed-products .col2 .products .item {
    border: 1px solid hsl(0deg 0% 91% / 26%);
}

.sec-most-viewed-products .products .item .image-container {
    width: 30%;
}

    .sec-most-viewed-products .products .item .image-container img {
        width: 100%;
        object-fit: cover;
    }

.sec-most-viewed-products .products .item .content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 70%;
    padding: 10px;
}

    .sec-most-viewed-products .products .item .content .title {
        display: block;
        color: #fff;
        font-weight: 500;
    }

    .sec-most-viewed-products .products .item .content .price-div .price {
        color: #fff;
        text-align: end;
    }

    .sec-most-viewed-products .products .item .content .price-div .discount {
        text-align: end;
    }

        .sec-most-viewed-products .products .item .content .price-div .discount .discount-price {
            color: hsl(0deg 0% 93.33% / 56%);
            text-align: end;
            text-decoration: line-through;
        }

        .sec-most-viewed-products .products .item .content .price-div .discount .percent {
            border-radius: 5px;
            padding: 0px 6px;
            display: inline-block;
            font-size: 14px;
            margin-right: 3px;
        }

/*-----------*/

.pagination .page-item:not(:last-child) {
    margin-left: 0.25rem;
}

.pagination .page-item .page-link {
    min-width: 2.25rem;
    text-align: center;
    padding: 0.375rem 0.75rem;
    border-radius: 0.3125rem;
    color: #8c98a4;
    border: 2px solid #F8F9FA;
    font-weight: bold;
    user-select: none;
    cursor: pointer;
}

.pagination .page-item.active .page-link {
    border-color: #0d6efd;
    color: #0d6efd;
    background-color: #ffffff;
    border-width: 2px;
}

/*-----------*/
.floating_call_box ._div_btns {
    background: #0856b6;
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 70px;
    width: 70px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 8px 2px rgb(0 0 0 / 14%);
    transition: transform 0.6s cubic-bezier(.19,1,.22,1);
    transform: translate3d(0, 10%, 0);
    z-index: 5;
}

    .floating_call_box ._div_btns .open-btn svg {
        max-width: 24px;
        display: block;
        margin: 1px auto -4px;
    }

    .floating_call_box ._div_btns .open-btn span {
        font-size: 10px;
        font-weight: 600;
        color: #fff;
    }

    .floating_call_box ._div_btns .close-btn {
        animation: rotate_icon .1s forwards;
    }

        .floating_call_box ._div_btns .close-btn i {
            color: #fff;
            font-size: 30px;
            vertical-align: middle
        }

.floating_call_box .call_main {
    position: fixed;
    right: 2%;
    background: #ffffff;
    border-radius: 8px;
    width: 277px;
    z-index: 99999999;
    font-size: 12px;
    transition: all 120ms ease-out;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    bottom: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .floating_call_box .call_main.active {
        visibility: visible;
        opacity: 1;
        bottom: 120px;
        transition: all 190ms ease-out;
    }

    .floating_call_box .call_main ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

        .floating_call_box .call_main ul li {
            line-height: 2em;
            font-size: 14px;
        }

            .floating_call_box .call_main ul li a {
                padding: 8px;
                display: flex;
                align-items: center;
                transition: 0.2s ease;
            }

                .floating_call_box .call_main ul li a:hover {
                    background: #eee
                }

                .floating_call_box .call_main ul li a .call_item_icon {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    padding: 3px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .floating_call_box .call_main ul li a span {
                    color: #000;
                    margin-right: 10px;
                    font-size: 16px;
                }

                .floating_call_box .call_main ul li a i {
                    color: #fff;
                    font-size: 18px;
                }

@keyframes rotate_icon {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(180deg);
    }
}
/*----------*/
.main {
    margin: 50px 0;
}
/*----------*/
.content-container .content * {
    line-height: 2;
}

.content-container ._div_title {
    padding-bottom: 10px;
}

.content-container .content img {
    width: 100% !important;
    height: auto;
    border-radius: 5px;
}

.content-container .sec1 {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
}

.content-container .Comments {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
}

    .content-container .Comments .title_cta {
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .content-container .Comments .commentItem:not(:last-child) {
        border-bottom: 1px solid #eee;
    }

.content-container .share-content {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

    .content-container .share-content .sc_div {
        display: flex;
        align-items: center;
    }

        .content-container .share-content .sc_div .item {
            width: 35px;
            height: 35px;
            padding: 10px;
            border-radius: 5px;
            margin: 0 5px;
            box-shadow: 0 4px 15px rgb(53 54 62 / 27%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .content-container .share-content .sc_div img {
            width: 100%;
        }


/*-----------*/


@media only screen and (max-width: 768px) {
    .sec-banners, .sec-instagram-cta {
        margin: 40px 0;
    }

    .sec-slider .owl-stage-outer {
        border-radius: 10px;
    }

    #slider-owl .item img {
        object-fit: cover;
    }

    #product-slider-owl .owl-stage {
        margin-right: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

        .menu-list.open {
            display: block;
            padding: 0;
        }

    .categories {
        position: relative;
    }


    .sec-instagram-cta .content .text-container,
    .sec-instagram-cta .content .image-container {
        margin-bottom: 20px;
        padding: 0 50px;
    }

    .sec-instagram-cta .content {
        padding: 10rem 0 2rem 0;
    }

        .sec-instagram-cta .content .image-container img {
            bottom: -2rem;
        }

    footer .contact,
    footer .links {
        margin-bottom: 40px;
    }

    footer .license {
        justify-content: center;
        margin-bottom: 20px;
    }

        footer .license .item img {
            width: 80px;
            height: 80px;
        }


    .sec-aside-cart {
        right: -90%;
        width: 90%;
    }

    .btn-login span {
        display: none;
    }

    .sec-aside-cart .products .item .detail .price-container {
        width: 60%;
        flex: 0 0 auto;
    }

    .sec-aside-cart .products .item .detail .quantity-input-container {
        width: 40%;
        flex: 0 0 auto;
    }

    header .header-top .search-input-container {
        width: 100%;
        order: 3;
        margin-top: 10px;
        margin-bottom: 12px;
    }

    header .header-top .logo-container {
        width: 30%;
    }

    header .header-menu {
        display: none;
    }

    header .header-top .responsive-menu-Icon {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
    }

        header .header-top .responsive-menu-Icon i {
            font-size: 35px;
            color: var(--primary-color);
        }

    header .header-top {
        justify-content: space-between;
    }

    /*-----------*/

    .categories-menu-bg {
        top: 0;
    }

    .categories-menu {
        position: fixed;
        visibility: hidden;
        top: 10px;
        bottom: 0;
        background-color: #fff;
        z-index: 22;
        height: calc(100% - 20px);
        background: #fff;
        border-radius: 12px;
        transition: all ease-in-out .2s;
        display: flex;
        flex-direction: column;
        justify-content: start;
        right: -90%;
        width: 70%;
        overflow-y: auto;
    }

        .categories-menu.active {
            right: 10px;
            visibility: visible;
        }

    .parent-category {
        list-style-type: none;
        padding: 0;
    }

        .parent-category li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            font-weight: 500;
            color: #000;
            width: 100%;
            white-space: nowrap;
        }

            .parent-category li a.parent {
                border-bottom: 1px solid #eee;
            }

    .sCat-col .title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        margin: 0;
        cursor: pointer;
        color: #4c5e60;
    }

    .submenu-wrapper {
        transition: all 0.2s;
        overflow: hidden;
    }

    .sCat-col ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        transition: all 0.2s;
        overflow: hidden;
    }

    .fa-plus,
    .fa-minus {
        font-size: 12px;
        transition: transform 0.3s;
    }

    .sCat-col {
        border-bottom: 1px solid #eee;
    }

        .sCat-col ul li a {
            color: #888;
            font-weight: 400;
            padding-right: 30px;
        }

        .sCat-col ul li:not(:last-child) {
            border-bottom: 1px solid #eee;
        }

    /*-----------*/
    header .header-top .left-btns-container .text {
        display: none;
    }

    header .header-top .left-btns-container .icon svg {
        width: 20px;
    }

    header .header-top .left-btns-container .btn-account {
        padding: 0 10px;
    }

    header .header-top .left-btns-container {
        gap: 8px;
    }

    #pageAlert {
        right: 10px;
        bottom: 0;
        left: 10px;
    }

    .product-card .product-thumbnail-images img {
        height: 90px;
    }

    .product-card .product-info .features {
        margin-bottom: 30px;
    }

    #product-page .product-tabs-container .tab-content-content .product-features .item .title {
        width: 40%;
    }

    /*.product-card .left-box .price-container {
        position: fixed;
        background: #fff;
        box-shadow: 0 0px 50px rgba(1, 1, 2, 0.18);
        padding: 20px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: initial;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 2;
    }*/

    .product-card .left-box .btns .add-to-cart {
        padding: 8px 12px;
        font-size: 16px;
    }

    .product-card .left-box .benefits .item:not(:last-child) {
        border-bottom: 1px solid #e4e4e4;
    }

    .product-card .left-box .price-container .btns {
        width: 50%;
    }

    .product-card .left-box .price-container .notAvailable {
        width: 100%;
    }

        .product-card .left-box .price-container .notAvailable p {
            background: #fff;
        }

    #category-page .sorting-container {
        white-space: nowrap;
        overflow: auto;
    }

    #category-page .products-container .filtered-products .item {
        display: flex;
        gap: 20px;
        align-items: center;
    }

        #category-page .products-container .filtered-products .item .image-container {
            width: 40%;
        }

            #category-page .products-container .filtered-products .item .image-container img {
                width: 100%;
                object-fit: cover;
                border-radius: 4px;
            }

    #category-page .sidebar-filters-container {
        margin-bottom: 20px;
    }

        #category-page .sidebar-filters-container .search-input-container {
            margin-bottom: 10px;
        }

    #category-page .filter-box .divider {
        margin: 10px 0;
    }

    #category-page .filter-box {
        padding: 10px 15px;
    }

    #cart-page .cart-items .header {
        display: none;
    }

    #cart-page .cart-items .item .cn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    #cart-page .cart-items .item .header-md-h {
        font-weight: 500;
    }

    #cart-page .cart-items .item .quantity-input-container {
        width: 40%;
    }

    #checkout-page .checkItems-container .item .form-check label .dropdown {
        margin-right: 15px;
    }

    #order-received-page .message .icon img {
        width: 40%;
    }

    #order-received-page .message {
        margin-bottom: 40px;
    }

    #order-received-page .order-details,
    #order-received-page .top {
        padding: 1rem;
    }

    .sec-product-bottom-svg svg {
        margin-top: -10px;
    }

    .sec-banners .item svg {
        height: 26px;
    }

    .sec-banners .item i {
        width: 22px;
        height: 22px;
        font-size: 10px;
        left: 105px;
    }

    .sec-slider .top-banner {
        flex-direction: row;
    }

    .sec-slider .top-banner {
        margin-top: 20px;
    }

    header .header-top .online-price {
        width: 100%;
        order: 4;
        margin-bottom: 12px;
    }

    .top-alert.hasLink ._div_btn {
        margin-top: 20px;
        text-align: center
    }

    .top-alert .alert-dismissible {
        padding-right: 3rem;
        padding-left: unset;
    }

    #category-page .products-container .filtered-products .item .detail .price-container {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .product-card .product-info {
        margin-top: 20px;
    }

    .online-price .dropdown .dropdown-menu.show {
        left: 50% !important;
        transform: translate(-50%, 0) !important;
        top: 30px !important;
        right: auto !important;
    }

    .sec-main-category .title-category {
        font-weight: bolder;
        font-size: 17px;
    }

    .content-container ._div_title h1 {
        font-size: 18px;
        line-height: 1.6
    }

    .content-container .share-content {
        text-align: center
    }

        .content-container .share-content .sc_div {
            justify-content: center;
        }

        .content-container .share-content .div_title {
            margin-bottom: 15px;
        }

    footer .topSvg svg {
        height: 80px
    }

    .sec-slider #slider-owl .owl-dots {
        margin: auto;
        text-align: center
    }
}

@media only screen and (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .sec-banners {
        margin: 30px 0;
    }

    .sec-instagram-cta {
        margin: 80px 0;
    }

    #slider-owl .item img {
        object-fit: cover;
    }

    .sec-slider .owl-stage-outer {
        border-radius: 30px;
    }

    .sec-instagram-cta .content {
        padding: 3rem 0;
    }

        .sec-instagram-cta .content .image-container img {
            bottom: -7.5rem;
            width: 60%;
        }

    footer .license .item img {
        width: 120px;
        height: 120px;
    }

    .sec-aside-cart {
        right: -25%;
        width: 25%;
    }

    header .header-top .left-btns-container .btn-login svg {
        margin-left: 10px;
    }

    .sec-aside-cart .products .item .detail .price-container {
        width: 60%;
        flex: 0 0 auto;
    }

    .sec-aside-cart .products .item .detail .quantity-input-container {
        width: 40%;
        flex: 0 0 auto;
    }

    header .header-top .search-input-container {
        width: 38%;
    }

    header .header-top .logo-container {
        width: 12%;
    }

    /*------------*/
    header .header-menu {
        display: flex;
        align-items: center;
        margin-top: 1rem;
        justify-content: space-between;
    }

        header .header-menu .right-menu ul {
            margin: 0;
            padding: 0;
            display: flex;
            gap: 20px;
        }

            header .header-menu .right-menu ul li.m-item {
                list-style: none;
                position: relative;
            }

                header .header-menu .right-menu ul li.m-item:first-child {
                    font-weight: 500;
                    font-size: 1.1rem;
                    cursor: pointer;
                }

        header .header-menu .right-menu i.down {
            font-size: 11px;
            color: #888;
        }

        header .header-menu .right-menu ul li.m-item:first-child:after {
            content: "";
            width: 1px;
            background-color: #e0e0e2;
            height: 16px;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            top: 50%;
            position: absolute;
            left: -10px;
        }

        header .header-menu .right-menu ul li.m-item a:not(header .header-menu .right-menu .has-submenu .submenu a) {
            color: #4c5e60;
            padding: 10px 0 20px 0;
            display: inline-block;
            cursor: pointer;
        }

            header .header-menu .right-menu ul li.m-item a,
            header .header-menu .right-menu ul li.m-item a:hover {
                color: #4c5e60;
            }

        /*------------*/
        header .header-menu .right-menu .has-submenu .submenu {
            position: absolute;
            width: 180px;
            background: #fff;
            border-radius: 0 0 10px 10px;
            padding: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
            z-index: 999;
            display: none;
            margin: 0;
            list-style-type: none;
            border-top: 1px solid #ebebeb;
        }

        header .header-menu .right-menu .has-submenu.active .submenu {
            display: block;
        }

        header .header-menu .right-menu .has-submenu .submenu a {
            display: block;
            padding: 8px 5px;
            transition: 0.2s;
        }

            header .header-menu .right-menu .has-submenu .submenu a:hover {
                color: #2c3536;
            }

        /*------------*/

        header .header-menu .left-menu .btn-icon {
            display: flex;
            align-items: center;
        }

            header .header-menu .left-menu .btn-icon a {
                color: #4c5e60;
                margin-left: 5px;
                font-weight: 500;
                font-size: 18px;
            }

            header .header-menu .left-menu .btn-icon .iconBg {
                width: 32px;
                height: 32px;
                background: var(--secondary-color);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
            }

            header .header-menu .left-menu .btn-icon i {
                color: #fff;
            }

    /*------------*/

    .categories-menu {
        border-top: 1px solid #ebebeb;
        position: fixed;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        z-index: 22;
        justify-content: space-between;
        border-radius: 0 0 10px 10px;
        margin: auto;
        box-shadow: 0 20px 35px -10px rgba(0, 0, 0, .2);
        max-height: 450px;
    }

        .categories-menu.active {
            display: flex;
        }

        .categories-menu ul.parent-category {
            width: 250px;
            background: #E8E8F4;
            padding: 10px 0 20px 0;
            margin: 0;
            list-style: none;
            padding-right: 20px;
            border-bottom-right-radius: 10px;
            max-height: 450px;
        }

            .categories-menu ul.parent-category li {
                display: block;
                width: 100%;
            }

                .categories-menu ul.parent-category li a {
                    padding: 10px;
                    border-radius: 0 10px 10px 0;
                    margin: 5px 0;
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    padding-left: 25px;
                    color: #000;
                }

        .categories-menu li.active a,
        .categories-menu li:hover a {
            background: #fff;
        }

        .categories-menu .sub-category {
            width: calc(100% - 250px);
            display: none;
            padding: 25px;
            overflow-y: scroll;
        }

            .categories-menu .sub-category.active {
                display: block;
            }


            .categories-menu .sub-category .sCat-col {
                width: 20%;
            }

                .categories-menu .sub-category .sCat-col a.title {
                    color: #232323;
                    font-weight: 500;
                }

                .categories-menu .sub-category .sCat-col ul {
                    margin: 0;
                    padding: 0;
                    list-style: none;
                    padding-top: 5px;
                    padding-right: 5px;
                }

                    .categories-menu .sub-category .sCat-col ul li {
                        margin: 15px 0;
                    }

                        .categories-menu .sub-category .sCat-col ul li a {
                            color: #4c5e60;
                            font-size: 15px;
                        }

    /*------------*/

    header .header-top .responsive-menu-Icon {
        display: none;
    }

    header .header-top .logo-container,
    header .header-top .search-input-container {
        margin-left: 1rem;
    }

    header .header-top .left-btns-container {
        width: 20%;
        margin-right: auto;
    }

        header .header-top .left-btns-container .icon {
            display: none;
        }

        header .header-top .left-btns-container .btn-account {
            padding: 0 15px;
        }

    header .header-top .left-btns-container {
        gap: 12px;
    }

    #pageAlert {
        right: 30px;
        bottom: 40px;
    }

    .product-card .product-thumbnail-images img {
        height: 80px;
    }

    #product-page .product-tabs-container .tab-content-content .product-features .item .title {
        width: 20%;
    }

    .product-card .left-box .btns .add-to-cart {
        padding: 12px;
    }

    .product-card .left-box .benefits .item {
        border-bottom: 1px solid #e4e4e4;
    }

    .product-card .left-box .price-container .notAvailable p {
        background: #f8f9fa;
    }

    #category-page .sidebar-filters-container .search-input-container {
        margin-bottom: 20px;
    }

    #category-page .filter-box .divider {
        margin: 20px 0;
    }

    #category-page .filter-box {
        padding: 20px 15px;
    }

    #cart-page .cart-items .item .header-md-h {
        display: none;
    }

    #checkout-page .checkItems-container .item .form-check.w3 {
        width: 33%;
        display: inline-block;
    }

    #order-received-page .message .icon img {
        width: 20%;
    }

    #order-received-page .order-details,
    #order-received-page .top {
        padding: 2rem;
    }

    .sec-product-bottom-svg svg {
        margin-top: -1px;
    }

    .sec-banners .item svg {
        height: 36px;
    }

    .sec-banners .item i {
        width: 28px;
        height: 28px;
        font-size: 12px;
        left: 100px;
    }

    .sec-slider .top-banner {
        flex-direction: column;
    }

    .top-alert.hasLink .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    #category-page .products-container .filtered-products .item .detail .price-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .online-price .dropdown .dropdown-menu {
        right: 0 !important;
    }

    .online-price .dropdown:hover .dropdown-menu {
        display: block;
    }

    .product-card .left-box .price-container .btns {
        margin-top: 1.5rem;
    }


    .sec-main-category .title-category {
        font-weight: bolder;
        font-size: 22px;
    }

    .sec-main-category .title-line {
        width: 3%;
        height: 4px;
        background: rgba(4, 149, 233, 0.598);
        border-radius: 8px;
        margin-top: auto;
        margin-bottom: auto;
    }

    .sec-main-category .border-line {
        align-self: start;
        width: 60%;
        height: 1px;
        margin: 0;
        background: #d1d1d1;
        margin-top: auto;
        margin-bottom: auto;
        width: 75%;
    }

    .content-container ._div_title h1 {
        font-size: 22px;
    }

    .content-container .share-content .sc_div {
        justify-content: flex-end;
    }

    footer .topSvg svg {
        height: 160px
    }

    .sec-slider #slider-owl .owl-dots {
        bottom: 5px;
        text-align: center;
        position: absolute;
        left: 0;
        right: 0;
    }
}
