﻿
@media (min-width: 1024px) {


    header.main-header {
        margin-bottom: 15px;
        border-bottom: 1px solid #e3e3e342;
        padding-bottom: 20px;
        background-color: white;
        transition: all .3s ease;
        box-shadow: 0px 9px 28px -3px #ffffff;
    }

    .main-header.fixed {
        position: fixed;
        top: 0;
        z-index: 999;
        left: 0px;
        right: 0px;
        box-shadow: 0px 2px 6px -3px gray;
        padding-bottom: 20px;
        animation: slideDown .3s ease;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .main-header .main-menu,
    .main-header .top-bar-container {
        opacity: 1;
        max-height: 100px;
        transition: opacity .3s ease, transform .3s ease, max-height .3s ease;
    }

    .main-header.fixed .main-menu,
    .main-header.fixed .top-bar-container {
        opacity: 0;
        max-height: 0;
        transform: translateY(-15px);
        pointer-events: none;
    }


    .main-header.fixed .header-content {
        margin: 12px 0 0 0;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 30px auto;
        transition: margin .3s ease;
    }

    .logo-search {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 60%;
        max-width: 700px;
        gap: 10px;
    }

    .header-content .search-area {
        width: 100%;
        max-width: 600px;
        position: relative;
    }

    header.main-header .search-area form.search {
        position: relative;
        width: 100%;
    }

        header.main-header .search-area form.search input {
            width: 100%;
            height: 50px;
            padding: 10px 20px;
            line-height: 1.833;
            font-size: 14px;
            color: #474747;
            outline: 0;
            border: 0;
            font-weight: normal;
            border-radius: 30px;
            background-color: #f4f4f4;
        }

        header.main-header .search-area form.search button {
            width: 60px;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            border: 0;
            border-radius: 7px 0 0 7px;
            background-color: transparent;
            cursor: pointer;
            outline: 0;
        }

            header.main-header .search-area form.search button i {
                font-size: 18px;
                color: #808080;
                position: relative;
                top: 3px;
            }

    header.main-header .dropdown-toggle::after {
        display: none;
    }

    header.main-header .top-user-area {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 40%;
    }

    header.main-header .user-login {
        margin-left: 10px;
    }

        header.main-header .user-login > a {
            font-size: 15px;
            font-weight: 400;
            background: none;
            background: transparent;
            border: 1px solid #808080;
            border-radius: 25px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: #1cd3a314;
            border: 1px solid #1cd3a394;
            color: #1cd3a3;
            height: 48px;
            width:auto;
        }
            header.main-header .user-login > a span {
                display: block;
            }
            header.main-header .user-login > a i.icon-img {
                width: 27px;
                height: 27px;
            }

            header.main-header .user-login > a i.icon {
                position: relative;
                top: -2px;
            }

    header.main-header .header-cart-button {
        width: 186px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border-radius: 24px;
        background: linear-gradient(264.86deg, #DC2F02 0%, #FF7B00 100%);
        background: linear-gradient(264.86deg, #4c0a10 0%, #963916 100%);
        background: linear-gradient(264.86deg, #810f4e 0%, #bb3c82 100%);
        background: linear-gradient(264.86deg, #1cd3a3 0%, #1cd3a3 100%);
        cursor: pointer;
        transition: 0.4s;
        position: relative;
        padding: 4px;
        color: white;
        justify-content: space-between;
    }

        header.main-header .header-cart-button i.bag-icon {
            font-size: 22px;
            background-color: white;
            color: #DC2F02;
            border-radius: 100%;
            width: 40px;
            height: 40px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            color: #1cd3a3;
        }

        header.main-header .header-cart-button .cart-button-content {
            flex: 1;
            text-align: center;
            display: block;
        }

        header.main-header .header-cart-button .count-cart {
            position: absolute;
            left: -7px;
            top: -9px;
            background-color: #ffffff;
            width: 22px;
            height: 22px;
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            box-shadow: 1px 1px 11px -3px gray;
        }

    .two-col-container {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .main-top-bar {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
    }

        .main-top-bar .top-bar-menu {
            display: flex;
            flex-direction: row;
            gap: 10px;
        }

            .main-top-bar .top-bar-menu li {
                margin-left: 15px;
                padding-left: 15px;
                border-left: 1px solid #e0e0e0;
                font-size: 12px;
            }

                .main-top-bar .top-bar-menu li a {
                    color: var(--secondary-color);
                }

                .main-top-bar .top-bar-menu li:last-child {
                    border-left: 0;
                }

    .top-bar-phone {
        display: flex;
        gap: 10px;
        align-items: center;
    }

        .top-bar-phone .title {
            font-size: 12px;
            color: #7d7d7e;
        }

        .top-bar-phone .value {
            background-color: #1cd3a314;
            font-size: 14px;
            color: var(--prim-color);
            font-weight: 400;
        }

    .main-top-bar .top-bar-menu li a:hover {
        color: var(--prim-color);
    }

    .mainmenu {
        width: 100%;
        margin-bottom: 0;
        padding-right: 0;
        position: relative;
        list-style: none;
        padding: 20px 15px;
        display: inline-block;
        background-color: #363b59;
        background-color: #9f1f66;
        background-color: #810f4e;
        background-color: #8d8d8d21;
        border-radius: 10px;
        color: #fff;
        color: #292929;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
    }

        .mainmenu > li {
            float: right;
            position: relative;
        }

        .mainmenu li > a {
            padding: 13px;
            color: inherit;
            cursor: pointer;
        }

        .mainmenu li a i {
            -o-transition: all .15s ease 0s;
            -webkit-transition: all .15s;
            -moz-transition: all .15s;
            -ms-transition: all .15s;
            transition: all .15s;
        }

        .mainmenu li:hover > a > i {
            filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
            -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            transform: rotate(180deg);
        }

        .mainmenu li:hover a {
            color: black;
        }

        .mainmenu li > .dropdownCN {
            display: none;
            position: absolute;
            width: 200px;
            z-index: 9;
        }

            .mainmenu li > .dropdownCN > ul {
                width: 100%;
                z-index: 1;
                box-shadow: 0 1px 8px 1px rgba(0, 0, 0, .2);
                background-color: #fff;
                border-top: 1px solid #e8e8e8;
                top: 18px;
                display: inline-block;
                position: relative;
                border-radius: 10px;
            }

            .mainmenu li > .dropdownCN ul > li {
                background: #fff;
                border-bottom: 1px solid #e8e8e8;
                position: relative;
            }

        .mainmenu li:hover > a {
            background: rgb(28 211 163 / 22%) !important;
        }

        .mainmenu li > .dropdownCN ul > li a {
            font-weight: 300;
            color: #000;
            display: block;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .mainmenu li > .dropdownCN ul > li a i {
                font-size: 10px;
            }

        .mainmenu li:hover > .dropdownCN, .mainmenu li .dropdownCN ul li:hover .dropdownCN3 {
            display: block;
        }

        .mainmenu li > .dropdownCN .dropdownCN3 {
            z-index: 9;
            width: 200px;
            display: none;
            position: absolute;
            top: 0;
            right: 100%;
        }

            .mainmenu li > .dropdownCN .dropdownCN3 ul {
                z-index: 1;
                background-color: #fff;
                border-top: 1px solid #e8e8e8;
                width: 100%;
                display: inline-block;
                position: relative;
                box-shadow: 0 1px 8px 1px #0003;
            }

                .mainmenu li > .dropdownCN .dropdownCN3 ul > li {
                    background: #fff;
                    border-bottom: 1px solid #e8e8e8;
                }
    .header-cart-button.dropdown-toggle .cart-button-content i {
        -o-transition: all .15s ease 0s;
        -webkit-transition: all .15s;
        -moz-transition: all .15s;
        -ms-transition: all .15s;
        transition: all .15s;
    }

    .cart.dropdown.show.cart-button-content i,
    .header-cart-button.dropdown-toggle[aria-expanded=true] .cart-button-content i {
        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .cart.dropdown .dropdown-menu {
        padding: 15px 10px 10px;
        z-index: 2;
        border: 1px solid #F0F0F0;
        border-radius: 12px;
        box-shadow: 0px 0px 19px -11px #605656;
        width: 350px;
        left: 0;
    }

    .empty-card .empty-content {
        text-align: center;
        padding: 20px;
    }

        .empty-card .empty-content i {
            color: #DC2F02;
            font-size: 70px;
        }

        .empty-card .empty-content h3 {
            font-size: 1.25rem;
            margin-top: 35px;
            color: #e54301;
        }

    .mini-shopping-cart .count {
        text-align: left;
        background: #75df610d;
        padding: 12px;
        font-size: 12px;
        border: 1px solid #75df6140;
        border-radius: 4px;
    }

    header.main-header .cart .dropdown-menu a {
        text-decoration: none;
    }

    .mini-shopping-cart .rpart {
        text-align: right;
        float: right;
        display: inline-block;
    }

    .mini-shopping-cart .count a {
        color: #222222;
        text-align: left;
        font-weight: 500;
        display: inline-block;
    }

        .mini-shopping-cart .count a:hover {
            color: black;
        }

    .mini-shopping-cart .items {
        border-top: 1px solid #f0f0f1;
        font-size: 12px;
        line-height: 22px;
    }

        .mini-shopping-cart .items .item {
            border-bottom: 1px solid #f0f0f1;
            text-align: right;
            padding-top: 10px;
            padding-bottom: 10px;
        }

    .mini-shopping-cart .picture {
        float: right;
        text-align: center;
        width: 70px;
    }

        .mini-shopping-cart .picture + .product {
            margin: 0 80px 0 0;
        }

        .mini-shopping-cart .picture a {
            display: block;
            position: relative;
            overflow: hidden;
        }

    .mini-shopping-cart .attributes {
        color: #444;
        margin: 5px 0;
    }

    .mini-shopping-cart .items .item .name a {
        font-weight: bold;
        color: black;
    }

    .btn-cta {
        color: #fff;
        background: var(--prim-grad);
        padding: 14px 30px;
        display: block;
        width: 100%;
        box-shadow: 0 4px 8px 0 #dc2f0233;
        max-width: 400px;
        margin: auto;
    }

        .btn-cta:hover {
            color: #fff;
            background: var(--prim-grad-2);
        }

    .btn {
        transition: 200ms;
        overflow: hidden;
        position: relative;
    }

        .btn:not(.no-highlight):before {
            display: inline-block;
            content: '';
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            left: 100%;
        }

        .btn:hover:before {
            transition: 800ms;
            left: -100%;
        }

    #main-slider .carousel-indicators li {
        cursor: pointer;
        background: #ffffffbf;
        border-radius: 50%;
        width: 12px;
        height: 12px;
        margin-left: 6px;
        margin-right: 6px;
        box-shadow: 0 2px 4px #0000001a;
    }

    .home-main-banner {
        margin: 15px 0 32px;
        display: flex;
        justify-content: space-between;
        flex-flow: nowrap row;
        height: auto;
    }

        .home-main-banner .main-slider {
            align-self: flex-start;
            border-radius: 16px;
            overflow: hidden;
            flex: 2 0 50.55%;
            max-width: 100%;
        }

        .home-main-banner .small-banner {
            display: flex;
            flex-direction: column;
            flex: 1 0 22.22%;
            max-width: 25%;
            margin-right: 16px;
            justify-content: space-between;
        }

            .home-main-banner .small-banner .banner {
                margin: 0;
                position: relative;
                border-radius: 16px;
                overflow: hidden;
            }

                .home-main-banner .small-banner .banner img {
                    width: 100%;
                    border-radius: 16px;
                }



    /*products*/

    .product-box {
        display: block;
        background: #fff;
        height: 100%;
        position: relative;
        transition: box-shadow .2s cubic-bezier(.4, 0, 1, 1), transform .2s cubic-bezier(.4, 0, 1, 1);
        border: 1px solid rgb(238 238 238);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 24px -16px #5a5a5a;
        box-shadow: 0 10px 61px -37px #5a5a5aa6;
    }

        .product-box:hover {
            box-shadow: rgb(28 211 163) 0px 10px 24px -16px;
            border-color: rgb(28 210 162);
        }

        .product-box .picture {
            text-align: center;
            max-width: 100%;
            height: 240px;
            overflow: hidden;
            padding: 10px;
        }

        .product-box .product-box-content {
            padding: 15px;
            margin: 12px;
            border-radius: 14px;
        }

    .product-title {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px 0;
        margin-bottom: 0;
    }

    .product-box .product-box-content-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 38px;
        overflow: hidden;
    }

        .product-box .product-box-content-row .prices {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-end;
        }

    .product-box-content h2 a {
        color: #484848;
        font-size: 15px;
        line-height: 18px;
        height: 34px;
        overflow: hidden;
        text-align: center;
    }

    .product-box .prices .old-price {
        text-decoration: line-through;
        color: gray;
        font-size: 12px;
    }

    .product-box .prices .discountpr {
        background-color: #fb2c36;
        border-radius: 6px;
        width: 32px;
        height: 21px;
        display: flex;
        font-size: 12px;
        text-align: center;
        position: absolute;
        top: 5px;
        left: 7px;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 500;
        background-color: #fa0000;
        color: #ffffff;
        box-shadow: 1px 1px 8px -4px #560000;
    }

    .product-box .has-free-shipping {
        background-color: #1cd3a37a;
        position: absolute;
        right: 6px;
        top: 5px;
        color: white;
        font-size: 12px;
        padding: 1px 8px;
        border-radius: 6px;
    }

    .product-box:hover .has-free-shipping {
        background-color: #1cd3a3;
    }

    .product-box .prices .actual-price {
        font-size: 15px;
        color: black;
    }

    .section-title-row {
        display: flex;
        margin-bottom: 40px;
        position: relative;
        justify-content: space-between;
        margin-top: 20px;
    }

        .section-title-row:before {
            content: "";
            height: 1px;
            position: absolute;
            width: 100%;
            top: 24px;
            border-bottom: 1px dashed #d3dae0;
        }

        .section-title-row .title {
            display: flex;
            flex-direction: row;
            gap: 10px;
            align-items: center;
            background-color: var(--body-bg-color);
            z-index: 1;
            padding-left: 12px;
        }

            .section-title-row .title .icon {
                box-shadow: rgba(0, 0, 0, .1) 0 10px 15px -3px, rgba(0, 0, 0, .1) 0 4px 6px -4px;
                width: 30px;
                height: 30px;
                background-color: #fff;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 20px;
                width: 3rem;
                height: 3rem;
                border-radius: .5rem;
            }

            .section-title-row .title h2, .section-title-row .title h2 {
                font-size: 1.3rem;
                margin: 0;
            }

        .section-title-row .more {
            z-index: 1;
            display: flex;
            align-items: center;
            height: 37px;
            position: relative;
            top: 4px;
            padding-right: 6px;
            background-color: #fff;
            box-shadow: rgba(0, 0, 0, .1) 0 10px 15px -3px, rgba(0, 0, 0, .1) 0 4px 6px -4px;
            padding: 10px 10px;
            border-radius: 8px;
            gap: 6px;
        }

            .section-title-row .more i {
                font-size: 12px;
                transition: all .3s ease;
            }

            .section-title-row .more:hover {
                box-shadow: rgb(0 0 0 / 21%) 0 10px 15px -3px, rgb(0 0 0 / 90%) 0 4px 6px -4px;
            }

    .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
        border-radius: .75rem;
        width: 35px;
        height: 35px;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        background-color: #fff !important;
        box-shadow: rgba(0, 0, 0, .1) 0 10px 15px -3px, rgba(0, 0, 0, .1) 0 4px 6px -4px;
    }

    .owl-theme .owl-nav {
        display: flex;
        justify-content: center;
        margin-top: 0 !important;
        margin-bottom: 20px;
        opacity: .2;
    }

    .owl-carousel:hover .owl-nav {
        opacity: 1;
    }

    .blog_post_list .post {
        background: #fff;
        box-shadow: 0px 0px 15px -4px #39393945;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .blog_post_list .post-image:hover {
        opacity: 1;
    }

    .blog_post_list .post-image {
        height: 220px;
        padding: 15px;
        opacity: .8;
    }

        .blog_post_list .post-image img {
            border-radius: 25px;
        }

    .blog_post_list .post-head {
        height: 80px;
        overflow: hidden;
    }

        .blog_post_list .post-head a {
            direction: rtl;
            font-size: 15px;
            line-height: 27px;
        }

    .blog_post_list .post-detail-wrapper {
        padding: 20px;
    }

    .blog_post_list .post-body {
        height: 66px;
        font-size: 13px;
        font-weight: 200;
        line-height: 22px;
        overflow: hidden;
    }

    .blog_post_list .blog-details {
        padding-top: 15px;
        border-top: 1px solid #e1e1e1;
        margin-top: 15px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

        .blog_post_list .blog-details .post-date {
            font-weight: 200;
            font-size: 12px;
        }

        .blog_post_list .blog-details .post-badge .item {
            background-color: #1cd3a3;
            color: white;
            font-weight: 200;
            font-size: 12px;
            padding: 2px 10px;
            border-radius: 6px;
        }


    .blog_post_list .buttons a {
        background: #f6f6f6;
        padding: 5px 13px;
        font-size: 14px;
        font-weight: 300;
        color: #000 !important;
        border: 1px solid #d4d4d4 !important;
        margin-bottom: 10px !important;
    }

    .float-contact-icon {
        z-index: 100;
        width: 54px;
        height: 54px;
        position: fixed;
        right: 38px;
    }

        .float-contact-icon.bale {
            bottom: 100px;
        }

    .main-footer {
        background-color: #363636;
        padding: 130px 0px 30px;
    }

        .main-footer .middle-footer {
            margin-top: 50px;
        }

        .main-footer .widget-menu {
        }

        .main-footer .header {
        }

            .main-footer .header .title {
                font-size: 18px;
                font-weight: bold;
                color: #c0c0c0;
                position: relative;
                padding-right: 10px;
                padding-bottom: 0;
                margin-bottom: 20px;
            }

                .main-footer .header .title::before {
                    content: '';
                    position: absolute;
                    width: 4px;
                    height: 29px;
                    border-radius: 16px;
                    top: -5px;
                    right: 0;
                    background: linear-gradient(264.86deg, #1cd3a3 0%, #016148 100%);
                    box-shadow: 0 4px 8px 0 #08806161;
                }

        .main-footer .title {
            color: #fff;
            font-size: 1.0rem;
        }

        .main-footer .footer-menu {
        }

            .main-footer .footer-menu li {
                margin-bottom: 10px;
                position: relative;
                padding-right: 14px;
                background-color: transparent;
                padding: 0px;
                max-width: 100%;
            }

                .main-footer .footer-menu li::before {
                    content: '';
                    position: absolute;
                    background: #66666680;
                    width: 12px;
                    height: 6px;
                    border-radius: 24px;
                    top: 8px;
                    right: -3px;
                    transition: .4s;
                    opacity: inherit;
                }

                .main-footer .footer-menu li a {
                    color: #9b9ca4;
                    padding: 15px 10px;
                }

                .main-footer .footer-menu li:hover a
               {
                    color: #f7f7f7;
                }
                .main-footer .footer-menu li:hover::before {
                    background: #ffffff;
                }

                    .main-footer .license {
                        display: flex;
                        flex-direction: row;
                        gap: 10px;
                        justify-content: flex-end;
                    }

            .main-footer .license a {
                display: block;
                background-color: #757575;
                border-radius: 10px;
                padding: 15px;
                font-size: 15px;
                width: 110px;
                height: 110px;
                text-align: center;
            }

                .main-footer .license a img {
                    max-height: 100%;
                }

        .main-footer .fotter-text {
            background-color: #3e3e3e;
            border-radius: 12px;
            padding: 20px;
            color: #d8d8d8;
            line-height: 25px;
        }

        .main-footer .copyright {
            font-size: 14px;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2d2d2d;
            margin-top: 20px;
            color: #919191;
            font-weight: 300;
        }

    .copyright-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-phone-support {
        display: flex;
        flex-direction: row;
        background: linear-gradient(276deg, #000000 0%, #11111159 100%);
        border-radius: 16px;
        padding: 15px;
        color: #fff;
        justify-content: center;
        gap: 20px;
        align-items: center;
        border: 1px solid #1cd3a369;
    }

        .footer-phone-support .title {
            display: flex;
            flex-direction: column;
        }

        .footer-phone-support .number {
            font-size: 1.5rem;
            color: inherit;
        }

        .footer-phone-support .subtitle {
            text-align: center;
        }

        .footer-phone-support .icon {
            font-size: 40px;
        }

    footer.main-footer .newsletter p {
        padding: 0;
        margin: 0;
        font-weight: 200;
        font-size: 12px;
        margin-bottom: 10px;
        color: #717171;
        margin-top: 35px;
        text-align: center;
    }

    .newsletter-subscribe {
        position: relative;
    }

    footer.main-footer .newsletter .form-control {
        font-size: 13px;
        border-radius: 7px;
        color: #515151;
        padding: 7px !important;
        line-height: 2 !important;
        box-shadow: none;
        display: block;
        width: 100%;
        background-color: #fff;
        border: 1px solid #c8c8c878;
        transition: all .2s ease-out;
        height: 40px;
        text-align: right;
    }

    footer.main-footer .newsletter .btn {
        position: absolute;
        top: 0;
        left: -1px;
        border-radius: 8px;
        font-size: 16px;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        background-color: var(--prim-color);
        color: #fff;
        border: 0;
        padding-right: 30px;
        height: 39px;
    }

    .services-feature-item .feature-item {
        box-shadow: 0 0 50px -30px rgb(0 0 0 / 45%);
        background-color: #fff;
        border-radius: 14px;
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding: 20px;
        color: var(--secondary-color);
    }

        .services-feature-item .feature-item .icon {
            border: 1px dashed #515151;
            border-radius: 5px;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 34px;
        }

        .services-feature-item .feature-item .title h5 {
            font-size: 16px;
        }

        .services-feature-item .feature-item .title h6 {
            font-size: 12px;
            font-weight: normal;
        }

    .special-offer-wrapper {
        border-radius: 16px;
        background: #1cd3a31a;
        border: 1px solid #1cd3a3;
        padding: 40px 20px;
        margin: 80px auto;
    }

        .special-offer-wrapper > .title {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--prim-color);
            font-weight: bold;
        }

    .special-offer-product {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        width: 100%;
        align-items: center;
        border-top: 1px solid;
        border-bottom: 1px solid;
        border-color: #ebebeb;
        padding: 8px 0px 2px 0px;
    }

        .special-offer-product > .title {
            background-color: #1cd3a3;
            border-radius: 20px;
            padding: 3px 9px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3px;
            font-size: 12px;
            color: white;
        }

    .vertical-product {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 25px;
    }

        .vertical-product .product-box {
            width: 450px;
            height: 200px;
            padding: 20px;
            border: 1px solid rgb(28 211 163);
            box-shadow: rgb(28 211 163 / 24%) 0px 4px 8px 0px;
            display: flex;
            border-radius: 16px;
        }

            .vertical-product .product-box:hover {
                border: 1px solid #1cd3a3;
                box-shadow: 0px 4px 8px 0px #DC2F021A;
            }

    .product-box .picture img {
        height: 100%;
    }

    .vertical-product .product-box .picture {
        height: 100%;
        padding: 0px;
        flex: 2;
    }

    .vertical-product .product-box .product-box-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: 0px;
        padding: 0;
        flex: 3;
    }

        .vertical-product .product-box .product-box-content .product-box-content-row {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
        }

        .vertical-product .product-box .product-box-content .prices {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

            .vertical-product .product-box .product-box-content .prices .actual-price {
                font-size: 16px;
                font-weight: 700;
                line-height: 22.4px;
                color: #DC2F02;
            }

                .vertical-product .product-box .product-box-content .prices .actual-price small {
                    font-size: .775em;
                }

    .vertical-product .product-title {
        padding: 0px;
        width: 100%;
    }

        .vertical-product .product-title a {
            text-align: right;
            color: #000000;
            font-weight: 300;
        }

    .show-product-icon {
        color: var(--prim-color);
        background: #1cd3a312;
        border: 1px solid #1cd3a3;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        flex-direction: row;
        -webkit-transition: width 1s ease-in-out;
        -moz-transition: width 1s ease-in-out;
        -o-transition: width 1s ease-in-out;
        transition: width .5s ease-in-out !important;
    }

        .show-product-icon i {
            font-size: 18px;
        }

        .show-product-icon .text {
            width: 0px;
            display: inline-block;
            width: 0%;
            overflow: hidden;
            -webkit-transition: width 1s ease-in-out;
            -moz-transition: width 1s ease-in-out;
            -o-transition: width 1s ease-in-out;
            transition: width .5s ease-in-out;
            font-weight: 300;
        }

        .show-product-icon:hover {
            width: 95px;
            background: #ff363682;
            background: linear-gradient(264.86deg, #1cd3a3 0%, #057e5f 100%);
            color: white;
        }

            .show-product-icon:hover .text {
                width: 65px;
                padding-right: 8px;
            }

    .timercn {
        direction: ltr;
    }

        .timercn .countdown-timer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

            .timercn .countdown-timer .item {
                display: flex;
                flex-direction: column;
                text-align: center;
            }

                .timercn .countdown-timer .item .count {
                    width: 26px;
                    height: 26px;
                    background: rgb(255 144 155 / 21%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 100%;
                    font-weight: 200;
                    font-size: 12px;
                    color: #ff000099;
                }

                .timercn .countdown-timer .item .sub-title {
                    font-size: 9px;
                    font-weight: 300;
                    color: #ff7474;
                }

    .products-byadmin {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 20px;
    }

        .products-byadmin .section-title-row .title {
            background-color: #ffffff;
        }

    .search-area .ui-autocomplete li a {
        font-family: var(--main-font);
        display: block;
        padding: 10px;
        border-bottom: 1px solid #f2f2f2;
    }

    .search-area .ui-autocomplete li a {
        font-family: var(--main-font);
        display: block;
        padding: 10px;
        border-bottom: 1px solid #f2f2f2;
    }

    .search-area .ui-autocomplete li a {
        border: none !important;
        background: none !important;
    }

    .search-area .ui-autocomplete li .ui-state-active {
        border: none !important;
        background: none !important;
    }

    .search-area .ui-autocomplete li:hover {
        background-color: #e7e7e7;
    }



    .services-feature-item {
        margin: 0px auto 50px auto;
    }

    .html-home-page .services-feature-item {
        margin: 50px auto 50px auto;
    }
    .services-feature-item .col {
        margin-bottom: 0;
        flex: 1 0 0%;
    }
    .s_sidebar {
        -ms-flex: 0 0 22%;
        -webkit-box-flex: 0;
        flex: 0 0 22%;
        max-width: 22%;
        padding-right: 0;
        padding-left: 10px;
        width: auto;
        position: inherit;
        z-index:1;
    }

    .s_pagecontent {
        position: relative;
        width: 100%;
        min-height: 1px;
        padding-right: 10px;
        -ms-flex: 0 0 78%;
        -webkit-box-flex: 0;
        flex: 0 0 78%;
        max-width: 78%;
        padding-left: 0;
    }

    breadcrumb-section {
    }

    .breadcrumb {
        padding: 0;
        margin: 0;
        background-color: #ffffff;
        margin-bottom: 30px;
        padding: 10px 8px;
        border-radius: 8px;
        border: 1px solid #eaeaea;
    }

        .breadcrumb ul {
        }

        .breadcrumb li {
            display: inline-block;
            margin-left: 10px;
        }

            .breadcrumb li a {
                font-size: 12px;
                font-weight: normal;
            }

            .breadcrumb li i {
                position: relative;
                font-size: 10px;
            }

    .prpage.category-page {
        line-height: 22px;
        position: relative;
    }

    .product-selectors {
        position: relative;
        margin-bottom: 30px;
    }

    .listing-items {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -10px;
        margin-bottom: -1px;
        list-style: none;
        padding: 0;
    }

    .product-grid .item-grid .item-box {
        margin: 0;
        margin-bottom: 30px;
        flex: none;
    }

    .listing-items .product-box {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 1px;
    }

    .product-filter-sidebar {
        background-color: #fff;
        border: 1px solid #f0f0f0;
        box-shadow: 0 4px 8px 0 #6666661a;
        border-radius: 24px;
        padding: 20px;
    }

    .s_sidebar .list {
        margin: 0;
        padding: 10px 0 0 2px;
        color: #fff;
        background-color: inherit;
        line-height: 20px;
        padding: 20px;
        border-radius: 16px;
        border: 1px solid #e5e5e5;
    }

        .s_sidebar .list li {
            margin: 10px 0;
            font-size: 15px;
            position: relative;
            -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
        }

        .s_sidebar .list ul {
            margin-right: 30px;
        }

    .s_sidebar .sublist .active.last a,
    .s_sidebar .active > a {
        font-weight: bold;
        color: #000;
        border-bottom: 2px solid var(--prim-color);
    }

    .product-sorting {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 10px;
    }

    .product-selectors span {
        display: inline-block;
        vertical-align: middle;
        font-size: 12px;
    }

    #sort-button-container {
        display: flex;
        gap: 10px;
        margin-right: 20px;
    }

        #sort-button-container button {
            padding: 6px 18px;
            border: none;
            background-color: #ffffff;
            cursor: pointer;
            transition: background-color 0.3s ease;
            border-radius: 25px;
            border: 1px solid #e8e8e8;
            color: black;
        }

            #sort-button-container button.active {
                border: 1px solid #1cd3a3;
                color: #1cd3a3;
                box-shadow: 0px 2px 12px -5px #1cd3a3;
            }

    .product-selectors .product-viewmode {
        font-size: 0;
        opacity: .5;
        display: none;
    }

    .product-filter-sidebar .header {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .filter-box .filter-box-header {
        border: 1px solid #e0e0e0;
        border-radius: 50px;
        padding: 8px 6px 8px 16px;
        width: 100%;
        height: 48px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

        .filter-box .filter-box-header.active {
            background: linear-gradient(264.86deg, #dc2f02 0%, #ff7b00 100%);
            color: #fff;
        }

        .filter-box .filter-box-header span {
            display: flex;
            align-items: center;
            flex-direction: row;
            gap: 10px;
        }

        .filter-box .filter-box-header .icon {
            border-radius: 100%;
            width: 35px;
            height: 35px;
            display: flex;
            align-content: center;
            justify-content: center;
            align-items: center;
            color: #fff;
            background: linear-gradient(264.86deg, #1cd3a3 0%, #08916d 100%);
        }

        .filter-box .filter-box-header .arrowHold {
            color: var(--prim-color);
            font-size: 15px;
            position: unset;
            background: none;
        }

        .filter-box .filter-box-header.active .arrowHold {
            color: #fff;
        }

    .filter-box {
        margin-bottom: 10px;
        position: relative;
    }

        .filter-box.category .filter-box-header {
            cursor: default;
        }

    .product-filter-sidebar .custom-section {
        border: 1px solid #dadada;
        margin-top: 30px;
        border-radius: 25px;
    }

        .product-filter-sidebar .custom-section .ajaxfilter-section {
            border: none;
        }

    .product-filter-sidebar #custom-filter-section .filter-section {
        margin: 0px;
    }

    .shirazsunRage {
        border-bottom: 1px solid #f5f5f5;
        padding: 5px 26px 15px;
    }

    #slider-range, .shirazsunRage {
        direction: rtl;
    }

    .ajaxfilter-section .ui-widget.ui-widget-content {
        background: #ffe2e2;
        border: none;
        height: 3px;
    }

    #slider-range {
        margin: 20px 6px 10px;
    }

    .ajaxfilter-section .ui-widget-header {
        background: #ef5661;
        height: 2px !important;
        box-shadow: none !important;
        border: none !important;
        top: 1px !important;
    }

    .ajaxfilter-section .ui-slider-handle {
        cursor: pointer;
        background: #fff;
        border: none;
        border-radius: 100%;
        top: -7px;
        box-shadow: 0 0 3px #ff9191;
    }

        .ajaxfilter-section .ui-slider-handle:before, .ajaxfilter-section .ui-slider-handle:last-child:before {
            font-family: Nucleo Outline;
            font-size: 11px;
            position: relative;
            left: 2px;
        }

    .ajaxfilter-price-section {
        max-width: 100%;
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .ajaxfilter-price-section .prs-r {
            text-align: center;
            letter-spacing: .3px;
            color: #858585;
            -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
            padding: 13px 15px 20px;
            font-size: .8rem;
            line-height: 1.692;
        }

        .ajaxfilter-price-section input {
            padding: 0;
        }

        .ajaxfilter-price-section .prs-r input[type=text], .ajaxfilter-price-section .prs-l input[type=text] {
            text-align: center;
            background-color: #f8f8f8;
            border: none;
            width: 70px;
            margin: 10px auto;
            display: block;
        }

        .ajaxfilter-price-section .prs-l {
            text-align: center;
            letter-spacing: .3px;
            color: #858585;
            border-right: 1px solid #f5f5f5;
            -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
            padding: 13px 15px 20px;
            font-size: .8rem;
            line-height: 1.692;
        }

    .ajaxfilter-price-range-section {
        display: none;
    }

    .sub-category-grid {
        margin: 15px 0 25px 0;
    }

    .sub-category-item {
        font-size: 12px;
        padding: 1px 9px;
        border: 1px solid #e6e6e6;
        border-radius: 5px;
        display: inline-block;
        color: #6c757d;
        margin: 0 0 10px 10px;
        font-weight: 400;
        text-align: center;
        background-color: #fff;
        box-shadow: var(--box-shaddow-1);
    }

        .sub-category-item:hover {
            border-color: #000;
            color: #000;
        }

    .pager {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin: 10.5px -10px;
        display: -ms-flexbox;
        display: flex;
    }

        .pager ul {
            text-align: left;
            font-size: 0;
            background-color: white;
            padding: 6px 16px;
            border-radius: 8px;
        }

        .pager li {
            vertical-align: top;
            margin: 0 5px;
            display: inline-block;
        }

            .pager li a, .pager li span {
                text-align: center;
                cursor: pointer;
                background-color: #eee;
                border: 1px solid #ffffff;
                min-width: 35px;
                height: 35px;
                padding: 8px;
                font-size: 14px;
                display: block;
                border-radius: 4px;
            }

            .pager li span {
                color: #fff;
                background-color: var(--prim-color);
                border-color: #0000;
            }

    .sticky-icon {
        z-index: 1;
        position: fixed;
        top: 45%;
        left: 0%;
        width: 160px;
        display: flex;
        flex-direction: column;
        opacity: .4;
        direction: ltr;
    }

    .AdminIconEdit {
        background-color: #2c80d3;
        color: #fff;
    }

    .AdminIcon {
        background-color: #53c5ff;
        color: #fff;
    }

    .sticky-icon a {
        transform: translate(-105px, 0);
        border-radius: 0 50px 50px 0;
        text-align: right;
        margin: 2px;
        text-decoration: none;
        text-transform: uppercase;
        padding: 10px;
        font-size: 12px;
        transition: all .8s;
    }

        .sticky-icon a i {
            background-color: #fff;
            height: 40px;
            width: 40px;
            color: #000;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-left: 4px;
            transition: all .5s;
        }

        .sticky-icon a:hover {
            color: #fff;
            transform: translate(-2px, 0);
        }

    .sticky-icon:hover {
        opacity: 1;
    }

    .why-us-section {
        margin-bottom: -30px;
    }

        .why-us-section .item-wrapper {
            background-color: var(--prim-color);
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            margin-top: 100px;
            border-radius: 12px;
            padding: 30px;
            align-items: center;
            color: white;
            min-height: 160px;
            position: relative;
            box-shadow: 0px 0px 11px -2px #006a4e;
        }

            .why-us-section .item-wrapper .logo-badge {
                right: 71px;
                top: -33px;
                position: absolute;
                background-color: #1cd3a3;
                padding: 13px;
                border-radius: 10px;
            }

                .why-us-section .item-wrapper .logo-badge img {
                    opacity: 0.5;
                }

        .why-us-section:hover .item-wrapper .logo-badge img {
            opacity: 1;
        }

        .why-us-section .item-wrapper .item {
            border-left: 1px solid #16b58b80;
            display: flex;
            flex-direction: column;
            width: 100%;
            flex: 1;
            align-items: center;
            padding-top: 20px;
            border-bottom: none;
            padding-bottom: 0;
        }

            .why-us-section .item-wrapper .item:last-child {
                border-left: none;
            }

            .why-us-section .item-wrapper .item .title h3 {
                font-size: 1.2rem;
                color: #027758;
                text-shadow: 1px 1px 12px white;
            }

            .why-us-section .item-wrapper .item.title .title h3 {
                font-size: 1.5rem;
                color: #034030;
            }

            .why-us-section .item-wrapper .item.title p {
                color: #003d2d;
                text-align: center;
            }

            .why-us-section .item-wrapper .item p {
                width: 230px;
                min-height: 65px;
                margin: 0;
                color: #494949;
                font-weight: 400;
                font-size: 12px;
            }

    .homepost {
        background-color: white;
        padding: 70px;
        border-radius: 20px;
    }

        .homepost .section-title-row .title {
            background-color: white;
        }

    .product-essential {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 16px -9px #363b59, 0 15px 14px -9px #b2b2b2;
        box-shadow: 7px 7px 16px -12px #b9b9b9;
        overflow: hidden;
        margin-top: 30px;
        padding: 30px 20px;
        margin-bottom: 50px;
    }

    .overview .product-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        border-bottom: 1px solid #363b5957;
        padding: 3px 0 10px 0;
        margin: 0 0 30px 0;
    }

    ul.gallery-options {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: row-reverse;
    }

        ul.gallery-options li {
            position: relative;
        }

        ul.gallery-options button, ul.gallery-options a {
            width: 51px;
            height: 37px;
            border-radius: 8px;
            background-color: #fff;
            border: 0;
            color: #565656;
            cursor: pointer;
            outline: 0;
            font-size: 24px;
            display: block;
            text-align: center;
        }

        ul.gallery-options .tooltip-option {
            opacity: 0;
            visibility: hidden;
            padding: 9px 15px;
            background-color: #6f6f6f;
            color: #fff;
            z-index: 4;
            font-size: 13px;
            line-height: 1.692;
            position: absolute;
            top: -4px;
            left: 60px;
            width: 160px;
            text-align: center;
            transition: all .2s ease-in;
        }

            ul.gallery-options .tooltip-option::before {
                content: "";
                width: 0;
                height: 0;
                border-style: solid;
                position: absolute;
                left: -10px;
                border-width: 10px 10px 10px 0;
                border-color: transparent #6f6f6f transparent transparent;
            }

        ul.gallery-options li:hover .tooltip-option {
            opacity: 1;
            visibility: visible;
        }

    .overview .product-name h1 {
        color: #494949;
        font-weight: bold;
    }

    .product-essential .product-name .free-shipping {
        font-weight: 300;
        font-size: 12px;
        background-color: #1cd3a363;
        background-color: #0d6efdb5;
        margin-right: 18px;
        color: white;
        border-radius: 4px;
        padding: 5px 10px;
        position: absolute;
        height: 23px;
        width: 82px;
        text-align: center;
    }

    .product-essential .gallery {
        background-color: var(--secondary-color);
        padding: 20px;
        border-radius: 10px;
    }

        .product-essential .gallery > .picture {
            border-radius: 8px;
            overflow: hidden;
            max-height: 460px;
        }

        .product-essential .gallery .picture-thumbs {
            background-color: #fdfeff38;
            border-radius: 12px;
            margin-top: 10px;
            padding: 0 5px 0 5px;
        }

            .product-essential .gallery .picture-thumbs a {
                cursor: zoom-in;
                border-radius: 6px;
                overflow: hidden;
                display: block;
            }

    .zoomWindow {
        box-shadow: 0 4px 6px #999;
        -moz-box-shadow: 0 4px 6px #999;
        -ms-box-shadow: 0 4px 6px #999;
        -webkit-box-shadow: 0 4px 6px #999;
        border: 1px solid #e6e7e8 !important;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -webkit-border-radius: 3px;
    }

    .picture-thumbs .owl-nav {
        opacity: .1;
    }

        .picture-thumbs .owl-nav .owl-next {
            top: 19px;
            position: absolute;
            left: -22px;
        }

        .picture-thumbs .owl-nav .owl-prev {
            top: 19px;
            position: absolute;
            right: -22px;
        }

        .picture-thumbs .owl-nav [class*=owl-]:hover {
            color: black !important;
        }

    .mfp-arrow-left .mfp-arrow-right-icon {
        display: none;
    }

    .mfp-arrow-right .mfp-arrow-left-icon {
        display: none;
    }

    .mfp-arrow-left::before {
        font: var(--fa-font-light);
        content: "\f053"; /* fa-chevron-left */
    }

    .mfp-arrow-right::before {
        font: var(--fa-font-light);
        content: "\f054"; /* fa-chevron-right */
    }

    .attributes dt, .attribute-label {
        white-space: nowrap;
        color: #444;
        margin: 0 0 5px;
        font-weight: 700;
        display: block;
    }

    .product-essential .attributes .text-prompt {
        color: #6f6f6f;
        margin-top: .5rem;
        font-size: 13px;
        font-weight: 400;
    }

    .required {
        font-weight: 400;
        position: relative;
        color: #f00;
        font-size: 13px;
    }

    .attributes dd, .attribute-data {
        margin: 0 0 10px;
    }

    .attribute-squares li {
        text-align: center;
        margin: 0 5px 5px;
        display: inline-block;
    }

    .attribute-squares li {
        margin: 0 0 10px 10px;
    }

    .attribute-squares label {
        display: block;
        position: relative;
        overflow: hidden;
        margin: 0 !important;
    }

    .attribute-squares .attribute-square-container {
        z-index: 0;
        padding: 1px;
        display: block;
        position: relative;
    }

    .attribute-squares .attribute-square {
        cursor: pointer;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
        display: inline-block;
        position: absolute;
        top: 8px;
        right: 8px;
        border: 1px solid #ccc !important;
        width: 20px !important;
        height: 20px !important;
    }

    .attribute-squares .selected-value .attribute-square-container .attcolorval {
        border-color: #00bfd6 !important;
    }

    .product-essential .attributes .color-squares li .attcolorval {
        color: #6f6f6f;
        cursor: pointer;
        border: 1px solid #dedede;
        border-radius: 8px;
        width: auto;
        padding: 8px 37px 8px 16px;
        font-size: 11px;
        display: inline-block;
        background-color: #ffffff;
    }

    .attribute-squares li input {
        z-index: -1;
        margin: -32px 0 0;
        position: absolute;
    }

    .attributes select {
        width: auto;
        min-width: 100px;
        max-width: 100%;
    }

    .product-essential .attributes select {
        border: 1px solid #ccc;
        border-radius: 4px;
        min-width: 220px;
        height: 39px;
        padding: 3px 12px;
        font-size: 12px;
    }

    .product-essential .attributes ul {
        margin-bottom: 0;
    }

    .product-essential .attributes .rdlist li {
        direction: rtl;
        border: 1px solid #dedede;
        border-radius: 8px;
        font-size: 11px;
        display: inline-block;
        position: relative;
        background-color: white;
    }

    .attributes .option-list label {
        margin: 0 5px;
    }

    .product-essential .attributes .rdlist li label {
        padding: 10px 30px 10px 10px;
    }

    .product-essential .attributes {
        background-color: #f5f5f54a;
        padding: 13px 20px;
        border-radius: 16px;
        margin: 20px auto;
        border: 1px solid #8080800f;
    }

        .product-essential .attributes .title {
            margin-bottom: 20px;
        }

            .product-essential .attributes .title span {
                font-size: 12px;
                border-bottom: 1px solid gray;
            }

    .product-essential .product-more-info .title-row {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
        color: var(--secondary-color);
        font-size: 15px;
        align-items: center;
    }
    .product-cart-variant {
        flex-direction: unset;
    }
        .product-essential .product-more-info .title-row .title {
            font-weight: 200;
            display: flex;
            gap: 6px;
        }

            .product-essential .product-more-info .title-row .title i {
                font-size: 16px;
            }

        .product-essential .product-more-info .title-row .value a {
            background-color: #1cd3a314;
            font-size: 14px;
            color: var(--prim-color);
            font-weight: 400;
            border-bottom: 1px dashed;
        }

    .hs-mt {
        color: #55565a;
        font-size: 14px;
        font-weight: 200;
        margin-top: 10px;
    }

        .hs-mt i {
            font-size: 16px;
            margin-left: 3px;
        }

    .headerspecification {
        position: relative;
        margin-right: 25px;
        color: #797979;
    }

        .headerspecification li {
            font-size: 12px;
            margin: 8px 0;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-align: baseline;
            -ms-flex-align: baseline;
            align-items: baseline;
            width: 100%;
            color: inherit;
        }

            .headerspecification li:before {
                content: "";
                width: 5px;
                height: 5px;
                background: #ccc;
                vertical-align: middle;
                margin-left: 5px;
                border-radius: 50%;
            }

    .expandible .showmore {
        display: inline-block;
        position: relative;
    }

    .expandible span.showmore {
        color: var(--prim-color);
        font-size: 11px;
        cursor: pointer;
    }

        .expandible span.showmore::after {
            left: 0;
            top: 52%;
            margin-top: .85em;
            content: "";
            position: absolute;
            border-bottom: 1px dashed var(--prim-color);
            width: 87%;
            background: none;
            height: 1px;
        }

    .expandible .showmore li {
        color: var(--prim-color);
        font-size: 11px;
        cursor: pointer;
    }

    .add-to-cart-area {
        box-shadow: 0 0 20px 0 #ededed;
        padding: 35px 15px;
        border-radius: 8px;
        border: 1px solid #1cd3a35e;
    }
    .add-to-cart-area-col {
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5);
    }
        .add-to-cart-area .add-to-cart-info {
            margin-bottom: 30px;
        }

            .add-to-cart-area .add-to-cart-info .info-row {
                border-bottom: 1px solid #ededed;
                display: flex;
                align-items: center;
                gap: 15px;
                padding: 14px 0;
            }

                .add-to-cart-area .add-to-cart-info .info-row:first-child {
                    padding-top: 0;
                }

                .add-to-cart-area .add-to-cart-info .info-row.badge-row {
                    padding-bottom: 20px;
                }

                .add-to-cart-area .add-to-cart-info .info-row .title {
                    display: flex;
                    align-items: center;
                    gap: 3px;
                    font-size: 14px;
                }

                    .add-to-cart-area .add-to-cart-info .info-row .title i {
                        font-size: 16px;
                    }

                .add-to-cart-area .add-to-cart-info .info-row .value {
                    font-weight: 200;
                }

    .lable-success {
        font-weight: 200;
        background-color: #edf5e6;
        color: #00867d;
        padding: 8px 15px;
        border-radius: 50rem;
        font-size: 13px;
    }

    .add-to-cart-area .add-to-cart-info .info-row.badge-row .lable-success {
        margin-left: 10px;
    }

    .lable-error {
        font-weight: 200;
        background-color: #ff00005e;
        color: #790000;
        padding: 8px 15px;
        border-radius: 50rem;
        font-size: 13px;
    }

    .lable-gray {
        font-weight: 200;
        background-color: #cacaca;
        color: #484848;
        padding: 8px 15px;
        border-radius: 50rem;
        font-size: 13px
    }

        .lable-gray i {
            position: relative;
            top: 1px
        }

    .add-to-cart-area .availability .in-stock,
    .add-to-cart-area .availability .out-stock,
    .add-to-cart-area .availability .select-option {
        display: none;
    }

    .add-to-cart-area .availability.exist .in-stock {
        display: inline-block;
    }

    .add-to-cart-area .availability.outofstock .out-stock {
        display: inline-block;
    }

    .add-to-cart-area .availability.selectOption .select-option {
        display: inline-block;
    }

    .add-to-cart-area .product-price {
        text-align: center;
        margin: 0 0 20px 0;
    }

        .add-to-cart-area .product-price span {
            font-weight: 500;
            font-size: 1.5rem;
            color: var(--prim-color);
        }

    .overview .qty-label, .variant-overview .qty-label {
        display: none !important;
    }

    .overview .qty-input, .variant-overview .qty-input {
        display: none;
    }

    .overview .need-support {
        background-color: #f1f1f175;
        padding: 12px;
        border-radius: 10px;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        gap: 10px;
        color: #909090;
        font-weight: 200;
    }

        .overview .need-support p {
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .overview .need-support span {
            font-size: 18px;
            margin-top: 10px;
        }

            .overview .need-support span a {
                color: inherit;
            }

        .overview .need-support .icon i {
            font-size: 40px;
        }

        .overview .need-support:hover {
            color: #000;
        }

    .single-product .breadcrumb {
        margin-left: 0;
    }

    .product-page-section {
        background-color: #fff;
        border-radius: 16px;
        padding: 30px;
        border: 1px solid var(--dp-bc2);
        box-shadow: 0 4px 8px 0 #6666661a;
        margin-bottom: 50px;
    }

        .product-page-section .header {
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }

            .product-page-section .header span {
                color: var(--prim-color);
                margin-right: 5px;
                font-weight: 200;
                font-size: 12px;
            }

        .product-page-section .content {
            padding: 0 100px;
            line-height: 40px;
        }

    .product-specs-box table tr td {
        background: #fafafa;
        border: 12px solid #fff;
        padding: 14px;
    }

    .product-specs-box table tr td {
        background: #fafafa;
        border: 12px solid #fff;
        padding: 14px;
    }

    header.main-header .user-login .dropdown-menu {
        position: absolute;
        top: 50px !important;
        width: 270px;
        -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .3);
        box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .3);
        background: #fff;
        border-radius: 5px;
        z-index: 10;
        transform: none !important;
        right: auto;
        padding: 0;
        left: 0;
    }

    .user-login .dropdown-menu .btncn {
        text-align: center;
        padding: 20px 16px 6px 16px;
    }

    .user-login .btncn a {
        font-size: 10px;
        padding-right: 10px;
        position: relative;
        top: -6px;
        display: block;
        font-weight: 200;
        overflow: hidden;
        direction: ltr;
    }

    .user-login .btncn .username {
        display: block;
        color: #4c4c4c;
        font-size: 15px;
        margin-left: 15px;
    }

    .user-login .dropdown-item {
        border-top: 1px solid #f0f0f1;
        width: 90%;
        margin: auto;
    }

    header.main-header .user-login .dropdown-menu:after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 8px 8px;
        border-color: transparent transparent #e8e8e8;
        position: absolute;
        bottom: 100%;
        margin-bottom: 0;
        left: 0;
    }

    header.main-header .user-login .dropdown-menu .dropdown-item {
        text-align: center;
        padding: 10px;
    }

        header.main-header .user-login .dropdown-menu .dropdown-item a.dropdown-item-link {
            display: block;
            text-align: right;
            padding: 5px 10px;
            font-weight: 300;
        }

    .user-login .dropdown-menu li.btncn:hover {
        background: #f0f0f1;
    }


    .bar-notification-container {
        z-index: 1000;
        color: #fff;
        opacity: 0.95;
        position: fixed;
        top: 50%;
        left: 50%;
        width: 40em;
        margin-top: -9em;
        margin-left: -15em;
        display: none;
    }

    .bar-notification {
        position: relative;
        display: none;
        padding: 15px 10px 15px 25px;
        border-radius: 5px;
    }

        .bar-notification.error {
            background-color: #e4444c;
        }

        .bar-notification .content {
            margin: 0 0 0 10px;
        }

        .bar-notification .close {
            position: absolute;
            top: 9px;
            left: 0;
            width: 32px;
            height: 32px;
            margin: 7px;
            /* background: #fff url(../img/close.png) center no-repeat; */
            cursor: pointer;
            font-family: shirazsunshopfont;
            text-shadow: none;
            color: white;
            opacity: 1;
            font-size: 18px;
        }

    .checkout-content {
        position: relative;
        overflow: hidden;
        border: 1px solid #f0f0f0;
        background-color: #fff;
        box-shadow: 0 4px 8px 0 #6666661a;
        padding: 15px 25px;
        border-radius: 24px;
    }

    .checkout-summary {
        border: 1px solid #f0f0f0;
        background-color: #fff;
        box-shadow: 0 4px 8px 0 #6666661a;
        padding: 15px 25px 30px 25px;
        border-radius: 24px;
    }

        .checkout-summary .checkout-summary-title {
            color: var(--secondary-color);
            font-size: 16px;
            line-height: 32px;
            border-bottom: 1px solid #e0e0e0;
            margin-bottom: 10px;
            padding-bottom: 10px;
            font-weight: 500;
        }

    .checkout-summary-main > span.price10 {
        display: block;
        text-align: center;
        margin-top: 30px;
        font-weight: bold;
        font-size: 17px;
    }

    .checkout-summary-content {
        padding: 50px 10px;
        color: #a0a0a0;
        font-size: 11px;
        font-size: .786rem;
        line-height: 2;
    }

    .simple-tip-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .checkout-feature-aside {
        background-color: #fff;
        margin-top: 10px;
        padding: 30px 15px;
        letter-spacing: -.2px;
        font-size: .786rem;
        line-height: 1.73;
        color: #aaa;
        font-weight: 500;
        border-radius: 14px;
    }

    .cart-collaterals {
        max-width: 100%;
    }

    .coupon-box {
        position: relative;
    }

        .coupon-box .coupon-code {
            overflow: hidden;
            display: flex;
            width: 100%;
            flex-direction: row;
            align-items: center;
            justify-content: center;
        }

    .cart-collaterals .coupon-code input[type="text"] {
        height: 36px;
        margin: 0 0 0 -1px;
        border: 1px solid #c8c8c8;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        font-size: 11px;
        font-weight: 200;
        padding-right: 20px;
        width: 100%;
    }

    .cart-collaterals .coupon-code button {
        display: inline-block;
        border: 0;
        background-color: #aaa;
        padding: 10px 15px;
        color: #fff;
        text-transform: uppercase;
        height: 36px;
        padding: 0;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        background-color: var(--secondary-color);
        width: 100px;
    }

    .cart-item-container .cart-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        border: 1px solid #e0e0e0;
        border-radius: 16px;
        padding: 24px;
        margin-bottom: 20px;
        background-color: #fff;
        flex-wrap: nowrap;
        gap: 0;
    }

        .cart-item-container .cart-row .cart-item {
            width: 20%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .cart-item-container .cart-row .cart-item.product-th {
                justify-content: flex-start;
                width: 40%;
            }

                .cart-item-container .cart-row .cart-item.product-th .image a {
                    display: block;
                }

                    .cart-item-container .cart-row .cart-item.product-th .image a img {
                        border-radius: 8px;
                        box-shadow: 0 4px 8px 0 #6666661a;
                        border: 1px solid #f0f0f0;
                        padding: 5px;
                        width: 72px;
                        height: 72px;
                    }

                .cart-item-container .cart-row .cart-item.product-th .item-product-title .name {
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 28px;
                    display: -webkit-box !important;
                    overflow: hidden !important;
                    -webkit-line-clamp: 2 !important;
                    -webkit-box-orient: vertical !important;
                    color: #333;
                    padding-right: 15px;
                }

                .cart-item-container .cart-row .cart-item.product-th .item-product-title .attributes {
                    padding-right: 15px;
                    font-weight: 400;
                    font-size: 12px;
                }

            .cart-item-container .cart-row .cart-item.price {
             
                flex-direction: column;
                width: 20%;
                margin: 0px;
                align-content: center;
                align-items: center;
            }

            .cart-item-container .cart-row .cart-item .item-lable {
                color: #808080;
                font-size: 12px;
                font-weight: 200;
                margin-bottom: 8px;
            }

            .cart-item-container .cart-row .cart-item.quantity {
                flex-direction: column;
            }

            .cart-item-container .cart-row .cart-item .item-lable {
                color: #808080;
                font-size: 12px;
                font-weight: 200;
                margin-bottom: 8px;
            }

            .cart-item-container .cart-row .cart-item .quantitychnage {
                border: 1px solid #e0e0e0;
                width: 88px;
                height: 35px;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .cart-item-container .cart-row .cart-item .quantitychnage button {
                    border: 0;
                    background-color: transparent;
                    padding: 0;
                    margin: 0;
                    width: 20px;
                    height: 20px;
                    color: #da3a00;
                }

                    .cart-item-container .cart-row .cart-item .quantitychnage button i {
                        font-weight: 500;
                    }

                .cart-item-container .cart-row .cart-item .quantitychnage input {
                    color: #666;
                    border: 0;
                    width: 32px;
                    height: 30px;
                    font-weight: 700;
                    font-size: 18px;
                    line-height: 26px;
                    padding: 0;
                    outline: 0;
                    text-align: center;
                    padding-top: 4px;
                }

                .cart-item-container .cart-row .cart-item .quantitychnage button {
                    border: 0;
                    background-color: transparent;
                    padding: 0;
                    margin: 0;
                    width: 20px;
                    height: 20px;
                    color: #da3a00;
                }

            .cart-item-container .cart-row .cart-item.subtotal {
                flex-direction: column;
                width: 20%;
            }
    .checkout-summary {
        margin-top: 0px;
    }
  
    .cart-item-container .cart-row .cart-item .item-lable {
        color: #808080;
        font-size: 12px;
        font-weight: 200;
        margin-bottom: 8px;
    }

            .cart-item-container .cart-row .cart-item.remove {
                width: 10%;
            }

                .cart-item-container .cart-row .cart-item.remove input[type=checkbox] {
                    display: none;
                }

                .cart-item-container .cart-row .cart-item.remove button.remove-btn {
                    border: 0;
                    background: transparent;
                }

        .cart-item-container .cart-row .remove-from-cart-item-action {
            font-size: 20px;
            cursor: pointer;
        }

        .cart-item-container .cart-row .cart-item.remove button.remove-btn i {
            font-size: 18px;
        }

    .checkout-content .header-title {
        display: flex;
        color: var(--secondary-color);
        position: relative;
        padding-right: 7px;
        margin-bottom: 25px;
        font-weight: bold;
        font-size: 20px;
    }

        .checkout-content .header-title::before {
            content: '';
            position: absolute;
            right: 0;
            top: 1px;
            width: 2px;
            height: 24px;
            background-color: #f00;
        }

    .checkout-summary-main .total-info .order-subtotal {
        color: black;
    }

    .cart-total td {
        width: 50%;
        padding: 5px 0;
        text-align: left;
        font-weight: 300;
    }

        .cart-total td:first-child {
            text-align: right;
        }

    .cart-total td {
        width: 50%;
        padding: 5px 0;
        text-align: left;
        font-weight: 300;
    }

    .checkout-summary-main .total-info .order-subtotal .value-summary {
        font-size: 16px;
    }

    .checkout-summary-main .total-info .order-total .value-summary {
        font-size: 18px;
        font-weight: bold;
        color: black;
    }

    .opc-box .opc-content {
        border: 1px solid #e6e6e6;
        border-radius: 8px;
        -webkit-box-shadow: 0 8px 13px -7px rgba(0, 0, 0, .05);
        box-shadow: 0 8px 13px -7px rgba(0, 0, 0, .05);
        position: relative;
        overflow: hidden;
        background: white;
        padding: 30px 5px;
        margin-bottom: 30px;
    }

    .opc-box .opc-title {
        margin-bottom: 12px;
        padding-right: 13px;
    }

    .opc .step {
        text-align: center;
    }

    .checkout-page .opc .section {
        padding: 0px;
        background: none;
    }

    .shipping-method .method-list li, .payment-method .method-list li {
        margin: 20px 0;
        font-size: 14px;
    }

    .checkoutpage .method-list li {
        width: 100%;
        text-align: right;
        direction: rtl;
        display: inline-block;
        height: auto;
        margin-bottom: 37px;
        min-height: auto;
    }

        .checkoutpage .method-list li .method-name {
            position: relative;
            padding: 0px;
            margin: 0px;
        }

            .checkoutpage .method-list li .method-name input[type="radio"] {
                position: relative;
                right: 23px;
                z-index: 7;
                top: 20px;
                cursor: pointer;
            }

    .shipping-method .method-list li label, .payment-method .method-list li label {
        font-size: 13px;
        font-weight: bold;
        color: #444;
    }

    .checkoutpage .method-list li .method-name label {
        position: absolute;
        height: 100%;
        margin: 0px;
        padding: 0px;
        padding-right: 21px;
        width: 94%;
        min-height: 65px;
        cursor: pointer;
        border: 1px solid #d4d4d4d1;
        background: #ececec30;
        border-radius: 8px;
    }

        .checkoutpage .method-list li .method-name label .sh-0 {
            width: 100%;
            display: inline-block;
            float: right;
            width: -moz-calc(100% - 110px);
            width: -webkit-calc(100% - 110px);
            width: calc(100% - 110px);
            padding-top: 9px;
            padding-right: 13px;
        }

        .checkoutpage .method-list li .method-name label .sh-1 {
            color: #000000;
            font-weight: normal;
            font-size: 13px;
        }

        .checkoutpage .method-list li .method-name label .sh-2 {
            display: block;
            padding-top: 7px;
            font-weight: 300;
            font-size: 12px;
        }

        .checkoutpage .method-list li .method-name label .sh-3 {
            width: 109px;
            display: block;
            float: left;
            background: #fbfbfb;
            height: 100%;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            border-right: 1px solid #dadada;
        }

            .checkoutpage .method-list li .method-name label .sh-3 .sh3-t1 {
                display: block;
                text-align: center;
                padding-top: 9px;
                font-weight: 300;
                font-size: 13px;
            }

            .checkoutpage .method-list li .method-name label .sh-3 .sh3-t2 {
                display: block;
                text-align: center;
                padding-top: 7px;
                font-size: 14px;
            }

    .checkoutpage .method-list li input[type="radio"]:checked + label {
        color: #009687;
        border: 1px solid #1cd3a3;
        background: #edfcf8;
    }

        .checkoutpage .method-list li input[type="radio"]:checked + label .sh-1 {
            color: #009687;
        }

    .page-title {
        min-height: 44px;
        margin: 0 0 25px;
        padding: 6px 10px;
        text-align: right;
        direction: rtl;
    }

        .page:after, .page-title:after, .page-body:after {
            content: "";
            display: block;
            clear: both;
        }

        .page-title h1 {
            margin-bottom: 0px;
            font-size: 1.043rem;
            line-height: 1.375;
            font-weight: 500;
            text-align: right;
            direction: rtl;
            position: relative;
            display: inline-block;
        }

            .page-title h1:before {
                content: "";
                position: absolute;
                background-color: #ef394e;
                right: 0;
                bottom: -2px;
                height: 2px;
                border-radius: 1px;
                top: 33px;
                width: 100%;
            }

    .opc .section > label {
        display: block;
        margin: 0 0 10px;
    }

    #billing-address-select {
        border: 1px solid #d0d0d0;
        height: 38px;
        padding: 0px 15px;
        border-radius: 4px;
    }

    .formtype4 {
        padding: 30px;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        background: white;
    }

        .formtype4 .row {
            margin-bottom: 28px;
        }

        .formtype4 .form-account-title {
            text-align: right;
            font-size: 13px;
            color: #000000;
            font-weight: 400;
        }

    .field-validation-valid, .username-available-status {
        display: block;
        text-align: center;
        font-size: 13px;
        color: #4cb17c;
    }

    .input-field {
        border-radius: 5px;
        background: #fff;
        border: 1px solid #c8c8c8;
        color: #717171;
        font-size: 14px;
        line-height: 1.571;
        padding: 11px 12px;
        width: 100%;
        letter-spacing: -.8px;
        text-align: left;
        outline: none;
        direction: rtl;
        text-align: right;
    }

    .inputs {
        text-align: right;
        direction: rtl;
    }

    .input-label {
        position: absolute;
        display: inline-block;
        line-height: 22px;
        outline: none;
    }

    .now-ui-icons {
        display: inline-block;
        font-size: inherit;
        speak: none;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .formtype4 .input-field {
        text-align: right;
        direction: rtl;
        padding-right: 20px;
    }

    .opc input[type="text"], .opc select {
        max-width: 100%;
    }

    .inputs input[type="text"], .inputs input[type="email"], .inputs input[type="tel"], .inputs input[type="password"], .inputs select {
        min-height: 40px;
    }

    .alert {
        border: 0;
        border-radius: 0;
        color: #FFFFFF;
        padding-top: .9rem;
        padding-bottom: .9rem;
        position: relative;
    }

    .alert--info {
        background-color: #fffde4;
        border: 1px solid #f6e8a1;
        color: #a37731;
        direction: rtl;
        text-align: right;
    }

    .noaddress aside.cart-page-content, .noaddress #opc-shipping_method, .noaddress #orderprdetail {
        display: none;
    }

    .sidebox2 {
        background-color: #ffffff80;
        -webkit-box-shadow: 0 8px 13px -7px rgba(0, 0, 0, .05);
        box-shadow: 0 8px 13px -7px rgba(0, 0, 0, .05);
        border: 1px solid #e6e6e6;
        border-radius: 8px;
        margin-top: 25px;
        color: #969696;
        font-weight: normal;
        font-size: 13px;
        padding: 17px;
    }

    .shippingrvCN-t {
        margin-bottom: 15px;
    }

    .shippingrv li {
        margin-bottom: 15px;
    }

    .shippingrv .rv-t {
        display: inline-block;
    }

    .shippingrv .rv-v {
        display: inline-block;
        color: #333333;
    }

    .sidebox .selected-shipping-method {
        display: block;
        font-size: 12px;
        color: #d82323;
    }

    .cart-total {
        width: 100%;
    }

    .checkout-summary-main .buttons {
        margin: 40px 0px 30px 0px;
    }

    #general-modal .modal-body {
        max-height: calc(100vh - 170px);
        overflow-y: auto;
    }


    .success-modal {
        top: 20%;
    }

        .success-modal .modal-content .modal-header {
            background-color: #10911f;
            color: #fff;
        }

    .modal .modal-content .modal-header {
        display: flex;
        justify-content: space-between;
        background-color: #3232321a;
    }

    .success-modal .modal-content .modal-header h5, .success-modal .modal-content .modal-header i {
        color: #fff;
    }

    .modal .modal-content .modal-header .close {
        background-color: transparent;
        border: 0;
        font-size: 21px;
    }

    .modal .modal-header .close:hover i {
        color: #bababa;
    }

    .error-modal {
        top: 20%;
    }

        .error-modal .modal-content .modal-header {
            background-color: #ef0f0f;
            color: #fff;
            padding: 10px 20px;
        }

    .error-alert-body {
        min-height: 134px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #f00;
        font-weight: bold;
        padding-bottom: 24px;
    }

    .error-modal .modal-content .modal-header h5, .error-modal .modal-content .modal-header i {
        color: #fff;
    }

    .terms-of-service #termsofservice {
        font-size: 25px;
        width: 22px;
        height: 22px;
    }

    .terms-of-service {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
        flex-wrap: wrap;
        background-color: #edfcf8;
        padding: 12px;
        border-radius: 10px;
    }

        .terms-of-service a {
            border-bottom: 1px dashed red;
            color: black;
            cursor: pointer;
        }

            .terms-of-service a:hover {
                color: red;
            }

        .terms-of-service.focus {
            background-color: #ff1d2638;
            padding: 15px;
            border-radius: 20px;
            border: 1px solid red;
        }


    .terms-of-service {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
        flex-wrap: nowrap;
        background-color: #edfcf8;
        padding: 12px;
        border-radius: 10px;
        direction: rtl;
    }

        .terms-of-service input[type="checkbox"] {
            flex: 0 0 auto;
            margin-top: 3px;
        }

        .terms-of-service label {
            flex: 1;
            min-width: 0;
            line-height: 1.8;
            overflow-wrap: anywhere;
        }

    main.profile-user-page .profile-box {
        margin-bottom: 21px;
        background-color: #fff;
        -webkit-box-shadow: 0 12px 12px 0 hsla(0, 0%, 71%, .1);
        box-shadow: 0 12px 12px 0 hsla(0, 0%, 71%, .1);
        border: 1px solid #dedede;
        border-radius: 8px;
        overflow: hidden;
    }

    main.profile-user-page .profile-box-header {
        position: relative;
        background-color: var(--secondary-color);
        height: 50px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    main.profile-user-page .profile-box-avatar {
        width: 60px;
        height: 60px;
        background-color: #fff;
        border-radius: 100%;
        position: relative;
        top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid #363b59;
    }

        main.profile-user-page .profile-box-avatar i {
            font-size: 26px;
        }

    main.profile-user-page .profile-box-username {
        padding: 23px 20px 19px;
        text-align: center;
        font-size: 16px;
        line-height: 20px;
        font-weight: 500;
        letter-spacing: -.5px;
    }

    main.profile-user-page .profile-box-tabs {
        border-top: 1px solid #f1f1f1;
        background-color: #fcfcfc;
        min-height: 47px;
        text-align: center;
        display: block;
        width: 100%;
        padding-bottom: 0;
        margin-bottom: 0;
        height: 60px;
    }

    .profile-box-tabs .box-l {
        display: block;
        width: 50%;
        float: left;
        height: 50px;
    }

    main.profile-user-page .profile-box-tabs a {
        font-size: 13px;
        font-weight: 300;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 6px;
    }

    main.profile-user-page .profile-box-tabs i {
        display: block;
        font-size: 18px;
        margin-top: 10px;
    }

    .profile-box-tabs .box-r {
        display: block;
        width: 50%;
        float: right;
        border-left: 1px solid #ebebeb;
        height: 60px;
    }

    main.profile-user-page .profile-box-tabs a {
        font-size: 13px;
        font-weight: 300;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 6px;
    }

    main.profile-user-page .profile-menu {
        background-color: #fff;
        -webkit-box-shadow: 0 12px 12px 0 hsla(0, 0%, 71%, .1);
        box-shadow: 0 12px 12px 0 hsla(0, 0%, 71%, .1);
        border: 1px solid #dedede;
        margin-bottom: 21px;
        border-radius: 6px;
    }

    .block-account-navigation .title {
        text-align: center;
        font-weight: normal;
        font-size: 15px;
    }

    .profile-menu .block-account-navigation > .title {
        margin: 0;
        border-bottom: 1px solid #ddd;
        background: none;
        cursor: auto;
        padding: 12px;
    }

    .profile-menu .block-account-navigation ul.list {
        padding: 15px;
    }

    .block-account-navigation ul.list li a {
        margin-bottom: 13px;
        background-color: #f0f0f0;
        border-radius: 12px;
        padding: 8px 10px;
        display: block;
        font-size: 14px;
    }

        .block-account-navigation ul.list li a i {
            margin-left: 12px;
        }

    .page-layout {
        position: relative;
        overflow: hidden;
        border: 1px solid #f0f0f0;
        background-color: #fff;
        box-shadow: 0 4px 8px 0 #6666661a;
        padding: 15px 25px;
        border-radius: 24px;
    }

        .page-layout .page-layout-header {
            display: flex;
            color: var(--secondary-color);
            position: relative;
            padding-right: 7px;
            margin-bottom: 25px;
            font-weight: bold;
            font-size: 20px;
        }

            .page-layout .page-layout-header::before {
                content: '';
                position: absolute;
                right: 0;
                top: -1px;
                width: 2px;
                height: 24px;
                background-color: #f00;
            }

            .page-layout .page-layout-header > * {
                font-size: 1.3rem;
            }

    .address-list-page .address-list .address-item {
        border: 1px solid #e0e0e0;
        margin-bottom: 20px;
        border-radius: 12px;
        padding: 20px;
        position: relative;
    }

        .address-list-page .address-list .address-item .title {
            margin-top: 0;
            border-bottom: 1px solid #ececec;
            padding-bottom: 10px;
            color: var(--secondary-color);
            font-weight: 500;
        }

        .address-list-page .address-list .address-item .info li {
            display: inline-block;
            padding: 15px;
        }

        .address-list-page .address-list .address-item .buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

            .address-list-page .address-list .address-item .buttons input {
                background: #d6d6d6e8;
                border: 0;
                border-radius: 12px;
                padding: 6px 14px;
                color: #717171;
            }

                .address-list-page .address-list .address-item .buttons input:hover {
                    background: #b0b0b0e8;
                }

    .addressadd-list-page .new-address-next-step-button {
        display: none;
    }

    .field-validation-error {
        color: #f00;
    }

    .order-list .order-item {
        border: 1px solid #e0e0e0;
        margin-bottom: 20px;
        border-radius: 12px;
        padding: 20px;
    }

    .order-list .title {
        margin-top: 0;
        border-bottom: 1px solid #ececec;
        padding-bottom: 10px;
        color: #363b59;
        font-weight: 500;
    }

    .order-list .order-item .info {
        border-bottom: 1px solid #ececec;
    }

        .order-list .order-item .info li {
            width: 32%;
            display: inline-block;
            border-left: 1px solid #ececec;
            padding: 15px;
            font-weight: 300;
        }

    .order-status {
        border: 1px dashed #000;
        padding: 6px 14px
    }

        .order-status.complete {
            font-weight: 200;
            background-color: #edf5e6;
            color: #00867d;
            padding: 8px 15px;
            border-radius: 50rem;
            font-size: 13px;
            border: 0 !important
        }

        .order-status.processing {
            background-color: #ffc76a80;
            border: 0;
            border-radius: 26px;
            color: #ff6d38
        }

        .order-status.pending, .order-status.cancelled {
            border-radius: 15px;
            background-color: #ff00002e;
            color: #f00;
            border: 0 !important
        }

    .order-overview-content .order-status {
        border: 1px dashed #f00;
        display: inline-block;
        padding: 10px;
        margin: 17px
    }

    .order-overview-content li {
        font-weight: 300
    }

    .col-info-row {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #e4e4e4a1;
        padding-bottom: 30px;
        flex-direction: row;
        gap: 0px;
    }

        .col-info-row .col-info {
            display: flex;
            align-items: center;
            flex-direction: row;
            gap: 10px
        }

            .col-info-row .col-info .title {
                font-weight: 200;
                display: flex;
                align-items: center;
                gap: 4px
            }

                .col-info-row .col-info .title i {
                    font-size: 16px
                }

            .col-info-row .col-info .value {
                color: #363b59;
                font-weight: bold
            }

    .order-details-page .shipments {
        border: 1px dashed;
        padding: 10px;
        text-align: center;
        font-weight: 200;
        margin-bottom: 20px
    }

    .order-list .order-item .buttons {
        display: flex;
        justify-content: flex-end;
    }

    .btn-cta-2 {
        color: #fff;
        background: var(--secondary-color);
        padding: 10px 20px;
        width: 100%;
        box-shadow: 0 4px 8px 0 #363b59;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 200px;
        font-size: 14px;
    }

    .order-list .order-details-button {
        max-width: 180px;
        margin-top: 10px;
        padding: 8px;
    }

    .btn-cta-2:hover {
        color: #fff;
        background: linear-gradient(264.86deg, #363b59 0%, #696c79 100%);
    }

    .order-details-page .order-overview {
        margin: 0 0 50px;
        line-height: 26px;
        text-align: center;
        font-size: 16px;
        color: #444;
    }

        .order-details-page .order-overview .order-number {
            margin: 0 0 10px;
            text-transform: uppercase;
        }

    .order-overview-content li {
        font-weight: 300;
    }

    .delivertoinfo {
        padding: 15px;
        margin-top: 20px;
    }

        .delivertoinfo .dl_title {
            margin-bottom: 12px;
            border-bottom: 1px solid red;
            display: inline-block;
            padding-bottom: 5px;
        }

        .delivertoinfo .dl_content ul li {
            display: inline-block;
            width: 49%;
            background: #f9f9f9;
            margin-bottom: 3px;
            padding: 14px;
            font-weight: 300;
            color: black;
        }

            .delivertoinfo .dl_content ul li .dl_t {
                display: inline-block;
            }

            .delivertoinfo .dl_content ul li .dlv {
                display: inline-block;
                font-weight: normal;
            }

    .order-details-page .totals {
        float: left;
        clear: both;
    }

    .order-details-page .total-info {
        background-color: #f0f0f0;
        padding: 15px;
        border-radius: 12px;
    }

    .order-details-page .products {
        border: 1px dashed;
        padding: 15px;
        margin-bottom: 20px;
    }

    .order-details-page .table-wrapper {
        overflow-x: inherit;
    }

        .order-details-page .table-wrapper .data-table {
            margin-bottom: 50px;
            width: 100%;
        }

            .order-details-page .table-wrapper .data-table tr {
                text-align: center;
            }

                .order-details-page .table-wrapper .data-table tr td {
                    border-bottom: 1px solid #f3f3f3;
                    padding: 21px 11px;
                }

    .order-details-page .products td a {
        color: #000;
        font-weight: bold;
    }

    .order-details-page .data-table label {
        display: none;
    }

    .order-details-page .totals {
        display: flex;
        justify-content: flex-end;
    }

        .order-details-page .totals .cart-total {
            width: 300px;
            margin: 20px auto;
        }

            .order-details-page .totals .cart-total tr {
                text-align: center;
                border-bottom: 1px solid #ddd;
            }

                .order-details-page .totals .cart-total tr td {
                    padding: 10px;
                }

    .comment-list {
        margin: 0 0 50px;
    }

    .cmlist .blog-comment {
        position: relative;
        padding: 20px;
        margin-bottom: 20px;
        background-color: #fff;
        border-radius: 4px;
        box-shadow: 0 2px 2px #edeef0;
    }

    .cmlist .comment-info {
        float: right;
        width: 80px;
    }

    .comment-info .avatar {
        border: none;
    }

        .comment-info .avatar img {
            max-width: 80%;
            max-height: 80%;
        }

    .cmlist .comment-info .avatar img {
        border: 1px solid #e5e5e5;
    }

    .cmlist .comment-content {
        float: right;
        width: calc(100% - 150px);
    }

    .comment-time {
        margin: 0 0 15px;
        font-size: 13px;
        font-weight: bold;
    }

        .comment-time span {
            display: inline-block;
            color: #444;
        }

    .cmlist .comment-time .stat-value {
        display: block;
        color: #a8a8a8;
        font-weight: 300;
        padding-top: 5px;
    }

    .comment-body {
        line-height: 22px;
    }

    .comment-body {
        padding: 20px;
    }

    .replybtn {
        position: absolute;
        top: 37px;
        left: 50px;
        background: none;
        border: none;
        font-weight: 200;
        border: 1px dashed red;
        padding: 4px 25px;
        color: #ff0068;
    }

    .innerlist {
        display: inline-block;
        width: 90%;
    }

        .innerlist li {
            display: inline-block;
            box-shadow: 0px 0px 7px 0px #80808063 !important;
            width: 100%;
            margin-right: 52px;
        }

    .comment-list .comment:last-child {
        border-bottom: 1px solid #ddd;
    }

    .blog-commentcn {
        background-color: #fff;
        border-radius: 8px;
        border: 1px solid #ededed;
        padding: 16px 24px 24px;
        margin-top: 20px;
    }

    .fieldset, .section {
        position: relative;
        margin: 0 0 40px;
    }

    .new-comment {
        text-align: center;
    }

    .fieldset .title, .section .title {
        margin: 0 0 15px;
        padding: 0 10px;
        font-size: 20px;
        color: #444;
    }

    .blog-commentcn .title {
        text-align: right;
        margin-top: 25px;
    }

    .replyto {
        text-align: right;
        color: red;
    }

    .new-comment .notifications {
        margin: 0 0 10px;
    }

    .new-comment .form-fields {
        margin: 0 0 20px;
    }

    .blog-commentcn .form-fields input[type=text], .blog-commentcn .form-fields textarea {
        border-radius: 5px;
        background: #fff;
        border: 1px solid #c8c8c8;
        color: #717171;
        font-size: 14px;
        line-height: 1.571;
        padding: 11px 12px;
        width: 100%;
        letter-spacing: -.8px;
        text-align: left;
        outline: none;
        direction: rtl;
        text-align: right;
    }

    .field-validation-valid, .username-available-status {
        display: block;
        text-align: center;
        font-size: 13px;
        color: #4cb17c;
    }

    .center-1 .buttons {
        text-align: center;
    }

    .new-comment .buttons {
        text-align: center;
        display: flex;
        justify-content: center;
    }

    textarea {
        min-height: 150px;
    }

    .comment-list .title {
        margin: 0 0 15px;
        padding: 0 10px;
        font-size: 20px;
        color: #444;
        margin-top: 21px;
        text-align: right;
    }

    .cmlist .comment-time .username {
        font-weight: 300;
    }

    .comment-list .comment:after {
        content: "";
        display: block;
        clear: both;
    }

    .new-comment .result {
        color: #690;
    }

    .not-found-page {
        margin-top: 50px;
    }

        .not-found-page .page-title h1 {
            text-align: center;
            display: block;
            border: none;
            font-size: 1.5rem;
        }

            .not-found-page .page-title h1:before {
                display: none
            }

        .not-found-page .page-title {
            margin: 0pc;
        }

    .not-found-content {
        text-align: center;
    }

    .content-page-link ul {
        display: flex;
        flex-direction: row;
        gap: 15px;
        list-style: none;
        align-content: center;
        justify-content: center;
        margin: 40px 0;
    }

        .content-page-link ul li a {
            background-color: #fff;
            display: flex;
            flex-direction: column;
            width: 90px;
            height: 90px;
            border: 1px solid #363b5926;
            align-items: center;
            justify-content: center;
            gap: 12px;
            border-radius: 12px;
        }

            .content-page-link ul li a i {
                background-color: oklab(.743768 -.144915 .0522536 / .1);
                color: #32c98a;
                width: 34px;
                height: 34px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 8px;
                font-size: 16px;
            }

            .content-page-link ul li a span {
                font-size: 12px;
                color: #363b59;
            }

            .content-page-link ul li a:hover {
                border: 1px solid #363b59bd;
            }

    .account-box {
        max-width: 540px;
        margin: 70px auto;
        border: 1px solid #f0f0f0;
        background-color: #fff;
        box-shadow: 0 4px 8px 0 #6666661a;
        border-radius: 10px;
        overflow: hidden;
        padding: 15px;
    }

    .account-box-title {
        border-bottom: 1px solid #ececec;
        color: #fff;
        padding: 17px 40px;
        font-size: 18px;
        font-weight: bold;
        font-weight: 400;
        background: var(--secondary-color);
        border-radius: 10px;
    }

    .account-box-content {
        padding: 40px 30px;
    }

        .account-box-content .form-account {
            max-width: 451px;
            margin: 10px auto;
        }

    .form-account-title {
        color: #000;
        margin-bottom: 0;
        font-size: 15px;
        line-height: 1.467;
        font-weight: 400;
    }

    .account-box .form-account-title {
        padding: 10px 0;
    }

    .form-account-row {
        margin: 0 -10px 23px;
    }

    .account-box-content .form-account-row {
        margin-bottom: 9px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .account-box .form-account .input-field {
        border-radius: 13px;
        height: 50px;
        text-align: center;
    }

    .account-box .loginprivacy {
        font-weight: normal;
        font-size: 13px;
        padding: 20px 0;
        font-weight: 400;
        position: relative;
        padding-right: 25px;
    }

    .form-account-submit button {
        margin-top: 30px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .account-box .loginprivacy a {
        color: var(--secondary-color);
        font-weight: bold;
        border-bottom: 1px dashed;
        cursor: pointer;
    }

        .account-box .loginprivacy a:hover {
            color: red;
        }

    .modal-body .page-layout-header {
        display: none
    }

    .modal-body .page-layout {
        padding: 0px;
        box-shadow: none;
        border: none;
    }

    .account-box input[type=text], .account-box input[type=number] {
        letter-spacing: 10px;
        color: #000;
    }

    .account-box ::-webkit-input-placeholder {
        letter-spacing: 0;
        font-weight: 300;
        font-size: 12px;
        color: #808080
    }

    .account-box ::-moz-placeholder {
        letter-spacing: 0;
        font-weight: 300;
        color: #808080;
        font-size: 12px
    }

    .account-box :-ms-input-placeholder {
        letter-spacing: 0;
        font-weight: 300;
        font-size: 12px;
        color: #808080
    }

    .account-box :-moz-placeholder {
        letter-spacing: 0;
        font-weight: 300;
        font-size: 12px;
        color: #808080
    }

    .account-box .title2 {
        font-weight: 300;
        color: #000;
        padding: 20px 0;
        display: block;
    }

    .sencodeagain {
        color: #0fabc6;
        border: 0;
        background: none;
        font-size: 13px;
        display: none;
    }

    .cart-empty {
        position: relative;
        overflow: hidden;
        border: 1px solid #f0f0f0;
        background-color: #fff;
        box-shadow: 0 4px 8px 0 #6666661a;
        padding: 100px;
        border-radius: 24px;
    }

    .cart-empty-icon {
        width: 167px;
        height: 170px;
        text-align: center;
        margin: auto;
    }

    .cart-empty-title {
        font-size: 30px;
        margin: 68px 0 60px;
        color: #363b59;
        text-align: center;
    }

    .box-shape {
        position: relative;
        overflow: hidden;
        border: 1px solid #f0f0f0;
        background-color: #fff;
        box-shadow: 0 4px 8px 0 #6666661a;
        padding: 15px 25px;
        border-radius: 24px;
    }

        .box-shape .header-title {
            display: flex;
            color: var(--secondary-color);
            position: relative;
            padding-right: 7px;
            margin-bottom: 25px;
            font-weight: bold;
            font-size: 20px;
            flex-direction: column;
        }

            .box-shape .header-title::before {
                content: '';
                position: absolute;
                right: 0;
                top: 1px;
                width: 2px;
                height: 24px;
                background-color: #f00;
            }

    .form-style .inputs label {
        display: block;
    }

    form .required {
        color: #f00;
    }

    .form-style .inputs input, .form-style .inputs textarea {
        outline: 0;
        border: 1px solid #d6d6d6;
        border-radius: 8px;
        height: 48px;
        padding: 15px 15px;
        width: 100%;
        font-size: 14px;
        font-weight: 500;
        color: #000;
        transition: .4s;
        margin: 5px 0 25px;
    }

    .contact-us-page .contact-detail .contact-detail-title {
        margin-top: 20px;
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 20px;
    }

    .box-shape .header-title .sub-title {
        font-size: 12px;
        color: #808080;
        font-weight: 200;
    }

    .contact-list-info.r {
        border-left: 1px solid #d4d4d4;
    }

    .contact-list-info ul li {
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin-bottom: 20px;
    }

        .contact-list-info ul li .icon i {
            font-size: 28px;
        }

        .contact-list-info ul li .content-row {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

            .contact-list-info ul li .content-row .title {
                color: var(--prim-color);
                min-width: 120px;
            }

                .contact-list-info ul li .content-row .title.bold {
                    font-weight: 500;
                    color: #000;
                }

            .contact-list-info ul li .content-row .value {
                font-size: 1rem;
            }

    .socials .networks {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .contact-list-info ul li .content-row .networks {
        gap: 20px;
        margin-top: 20px;
    }

    .contact-list-info ul li {
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin-bottom: 20px;
        border: none;
    }

    .socials .networks li a {
        margin: 0;
        background-color: #ff6d3836;
        color: var(--prim-color);
        display: flex;
        padding: 7px;
        border-radius: 4px;
        font-size: 20px;
        width: 35px;
        height: 35px;
        align-items: center;
        justify-content: center;
    }

        .socials .networks li a:hover {
            background-color: #ff6d3878;
            color: #fff;
        }

    footer.main-footer .socials .networks {
        gap: 10px;
    }

        footer.main-footer .socials .networks li a {
            color: #949494;
        }
    .admin-header-links {
        display: block !important;
    }
    #filter-sidebar-toggle-btn {
        display: none;
    }
}

