@charset 'UTF-8';
$font-primary: 'WeblySleek UI';
$font-primary-light: 'WeblySleek UI Semilight';
$font-primary-bold: 'WeblySleek UI Semibold';
// Mixins
@import 'mixins/core';
@import 'mixins/clearfix';
@import 'mixins/breakpoints';
@import 'mixins/lazy';
// Config
@import 'config/fonts';
@import 'config/variables';
@import 'config/helpers';
@import 'config/spacing';
@import 'demo/demo-variables';

// Plugins CSS
@import 'plugins/owl-carousel/owl.carousel';
@import 'plugins/owl-carousel/owl.theme.default';
@import 'plugins/magnific-popup/main';
@import 'plugins/jquery.bootstrap-touchspin';


//New Components
// Components
@import 'base/base';
@import 'components/alerts';
@import 'components/banners';
@import 'components/breadcrumb';
@import 'components/buttons';
@import 'components/cards';
@import 'components/counters';
@import 'components/feature-boxes';
@import 'components/font-icons';
@import 'components/forms';
@import 'components/info-boxes';
@import 'components/page-title-box';
@import 'components/modals';
@import 'components/product-card';
@import 'components/page-header';
@import 'components/pagination';
@import 'components/popup';
@import 'components/product';
@import 'components/product-category';
@import 'components/testimonials';
@import 'components/social-icons';
@import 'components/tabs';
@import 'components/liquide';
@import 'components/phone-request-modal';
@import 'components/filter-buy-stock-status';
@import 'components/product-single-gallery';


//Layouts
@import "layouts/header";
@import "layouts/footer";
// Base

@import 'base/layout';
@import 'base/plugins';
@import 'demo/demo-footer';
@import 'demo/demo-home';
//Pages
@import 'pages/home-page';


//Pages
// Pages CSS
@import "pages/static-pages";
@import 'pages/about';
@import 'pages/login-page';
@import 'pages/category';
@import 'pages/product-pages/product-page';
@import 'pages/product-pages/product-page-extended';
@import 'pages/product-pages/product-page-sidebar';
@import 'pages/product-pages/product-page-grid';
@import 'pages/cart';
@import 'pages/checkout';
@import 'pages/blog';
@import 'pages/contact';
@import 'pages/dashboard';
@import 'pages/map';
@import 'pages/brand-list';
@import 'pages/product-pages/product-single-page';

@media (max-width: 448px) {
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

.erf-required {
    margin-left: 3px;
    color: #f00;
}

input.is-invalid, textarea.is-invalid { border-color: #f00 !important; }
span.invalid-feedback {
    font-family: Mardoto-Regular;
    color: #f00; margin-top: 0;
    strong { font-family: Mardoto-Regular; color: #f00; }
}


.red-span{
    color:red;
    font-size: 18px;
    font-family: Mardoto-Medium;
}
/*for Error*/
.form-error{
    border:1px solid #C22401 !important;

}


/************************ PRODUCT CATEGORY START END ************************/
.category-page {
    .sidebar-shop {
        margin-bottom: 30px;
        max-width: 340px;
        .sidebar-wrapper {
            border: 0;
            padding: 40px 24px;
            background-color: #F3FEFF;

        }
    }

    .product-category-filters {
        &.product-filter-dropdown {
            position: relative;
            border: none;
            margin-bottom: 0;
            .select-ul {
                padding: 8px 14px;
                margin-bottom: 0;
                border-radius: 4px;
                background: #FFF;
                box-shadow: 2px 2px 4px 4px rgba(0, 35, 42, 0.10);
                position: absolute;
                right: 0;
                min-width: 184px;
                z-index: 111;
                @media screen and (max-width: 1024px){
                    left: 0;
                    right: auto;
                }
                li {
                    text-align: right;
                    margin-bottom: 12px;
                    a {
                        color: #000;
                        &.active {
                            font-family: $font-primary-bold;
                        }
                    }
                }
            }
            .filter-box {
                display: block;
                cursor: pointer;
                .filter-title {
                    font-family: $font-primary-bold;
                    color: #00232A;
                    font-size: 16px;
                    padding-right: 16px;
                    position: relative;
                    &::after {
                        content: '';
                        position: absolute;
                        right: 0;
                        top: .5em;
                        height: 6px;
                        width: 8px;
                        background-image: url("/images/main/vector-icons/arrow-down.svg");
                        background-size: contain;
                        background-position: center;
                        background-repeat: no-repeat;
                    }
                }
            }
        }
        .filter-box {
            ul {
                display: none;
                &.checkbox-ul {
                    padding-right: 15px;
                    li {
                        justify-content: space-between;
                        align-items: center;
                        display: flex;
                        a {
                            &.active {
                                position: relative;
                                font-family: $font-primary-bold;
                                color: #000;
                            }
                            input {
                                vertical-align: inherit;
                                display: inline-block;
                                margin-right: 8px;
                                border-radius: 0;
                            }
                        }
                    }
                }

            }
        }
    }
    .remove-filters {
        display: flex;
        align-items: center;
        .remove-link {
            border-right: 1px solid rgba(129,129,129,.2);
            margin-right: 15px;
            padding-right: 15px;
        }
        a {
            position: relative;
            padding-left: 15px;
            color: #2d2a2a;
            text-decoration: none;
            text-transform: capitalize;
            letter-spacing: .3px;
            font-size: 13px;
            &::after,
            &::before {
                content: " ";
                position: absolute;
                top: 50%;
                display: inline-block;
                margin-top: -1px;
                height: 2px;
                width: 10px;
                background-color: #000;
                left: 0;
                transition: background-color .2s ease-in-out,transform .2s ease-in-out,width .2s ease-in-out;
            }
            &::before {
                transform: rotate(45deg);
            }
            &::after {
                transform: rotate(-45deg);
            }
            &:hover::before,
            &:hover::after {
                transform: rotate(0);
            }
        }
        ul {
            margin-bottom: 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            li {
                a {
                    margin-bottom: 5px;
                    margin-right: 15px;
                }
            }
        }
    }
    .product-categories-content {
        vertical-align: middle;
        margin-right: -15px;
        margin-left: -15px;
        text-align: center;
        margin-top: 15px;
        .product-categories-box {
            display: inline-flex;
            vertical-align: top;
            max-width: 100%;
            padding: 15px;
            a {
                display: flex;
                gap: 10px;
                img {
                    display: inline-block;
                    max-height: 40px;
                }
                h6 {
                    margin-bottom: 0 !important;
                    text-transform: uppercase;
                    display: inline-block;
                    letter-spacing: .2px;
                    position: relative;
                    font-family: Mardoto-Bold;
                    line-height: 1.3;
                    font-size: 14px;
                    color: #4E4E4E;
                    &:after {
                        transition: width .4s cubic-bezier(.175,.885,.32,1.15);
                        background-color: #006699;
                        position: absolute;
                        content: '';
                        height: 2px;
                        top: 100%;
                        width: 0;
                        left: 0;
                    }
                }
                &:hover h6:after { width: 100%; }
                span {
                    text-transform: capitalize;
                    text-align: left;
                    margin-top: 5px;
                    font-size: 12px;
                    display: block;
                    color: #9A9A9A;
                }
            }
        }
    }
}
.left-sidebar-box {
    .filter-title{
        font-family: $font-primary-bold;
        text-transform: uppercase;
        margin-bottom: 24px;
        font-size: 16px;
        color: #1F2937;
    }
    .filter-attribute-list {
        li {
            &:not(:last-child) {
                margin-bottom: 12px;
            }
        }
    }
    li {
        position: relative;
    }
    li {
        ul {
            padding-left: 15px;
            li.active > a {
                font-weight: 600;
                color: #333;
            }
        }
        a {
            font-family: $font-primary-bold;
            width: calc(100% - 40px);
            padding: 8px 5px 8px 0;
            display: block;
            color: #1F2937;
        }

    }
    li.dropdown {
        display: block;
        margin: 0;
        > ul {
            display: none;
            margin: 0;
        }
        > a i {
            justify-content: center;
            align-items: center;
            position: absolute;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            height: 22px;
            width: 22px;
            color: #1F2937;
            top: 7px;
            right: 0;
        }
        > a i:hover {
            background-color: #F9F9F9;
            color: #333;
        }
        &.active > a i {
            background-color: #F9F9F9;
            transform: rotate(180deg);
            color: #333;
            > ul {
                display: block;
                margin: 0;
            }
        }
    }
    li:hover > a {
        color: #1F2937;
    }
}
@media screen and (max-width: 575px) {
    .category-page {
        .product-category-filters {
            flex-direction: column;
            .filter-box { width: 100%; }
        }
        .product-categories-content { display: none; }
        .cart-content { display: none; }
    }
}
/************************ PRODUCT CATEGORY PAGE END ************************/


/************************ CHECKOUT PAGE START ************************/
.checkout-page {
    .empty-cart-box {
        margin: 70px 0 30px;
        text-align: center;
        img {
            margin: 0 auto 20px;
            max-width: 100%;
            width: 194px;
            @include mq(lg, max) {
                width: 150px;
            }
            @include mq(sm, max) {
                width: 120px;
            }
        }
        h1 {
            margin-bottom: 15px;
            position: relative;
            line-height: 1.2;
            font-family: $font-primary-bold;
            font-size: 48px;
            color: #2d2a2a;
            @include mq(lg, max) {
                font-size: 32px;
            }
            @include mq(md, max) {
                font-size: 24px;
            }
            @include mq(sm, max) {
                font-size: 20px;
            }
        }
        p {
            margin-bottom: 0;
            font-size: 110%;
        }
    }

}
/************************ CHECKOUT PAGE END ************************/

/************************ CART PAGE START ************************/
.my-account-page {
    .page-title-box {
        background-image: url(/images/bg-header-main-my-account.png);
        background-position: center center;
        background-attachment: scroll;
        background-size: cover;
    }
    .my-account-sidebar {
        border-right: 1px solid rgba(129,129,129,.2);
        h3 {
            font-family: Mardoto-Bold;
            border-bottom: 1px solid rgba(129,129,129,.2);
            text-decoration: none !important;
            text-transform: capitalize;
            padding-bottom: 10px;
            padding-right: 10px;
            margin-bottom: 15px;
            padding-left: 15px;
            line-height: 1.4;
            font-size: 18px;
            color: #2d2a2a;
        }
        button {
            font-family: Mardoto-Bold;
            color: rgba(0,0,0,.9);
            padding: 10px 15px;
            line-height: 20px;
            text-align: left;
            font-size: 14px;
            display: block;
            width: 100%;
            &.notification {
                color: #f00;
                span.notification-count {
                    background-color: #f00;
                    border-radius: 50%;
                    margin-left: 5px;
                    font-size: 12px;
                    padding: 0 5px;
                    color: #fff;
                }
                &:hover, &:not(&.collapsed) { color: #f00; }
            }
            &:hover {
                background-color: #f8f8f8;
                color: rgba(0,0,0,.9);
                text-decoration: none;
            }
            &:not(&.collapsed) {
                background-color: rgba(136,136,136,.12);
                text-decoration: none;
                color: rgba(0,0,0,.9);
                cursor: default;
            }
        }
    }

    ///////////////////////new my-account/profile styles



    //.for_eye{
    //    position: absolute;
    //    img{
    //        top: 10px;
    //        @media screen and (min-width: 769px) {
    //            right: 53%;
    //        }
    //        right: 1%;
    //    }
    //
    //}



    .info-tvyal{
        font-size: 20px;
        font-family: Mardoto-Bold;
    }
    .my_info.for-tablet{
        display: none;
        @media screen and (max-width: 768px) {
            width: 100%;
            display: flex;
            margin-left: 10px;
        }
    }
    .my_info{
        display: flex;
        height: 183px;
        margin-bottom: 27px;
        align-items: center;
        background: rgba(245, 246, 247, 0.5);
        border-radius: 16px;
        @media screen and (max-width: 768px) {
            height: 160px;
        }
        @media screen and (max-width: 425px) {
            height: 105px;

        }

        .my_info_img{
            width: 140px;
            height: 140px;
            background-color: green;
            margin: 0 24px 0 0;
            border-radius: 50%;
            overflow: hidden;
            @media screen and (max-width: 768px) {
                width: 90px;
                height: 90px;
                margin: 20px 14px;
            }
            @media screen and (max-width: 375px) {
                width: 64px;
                height: 64px;
                margin: 0 7px;
            }
        }
        .my_info_text{
            .my_info_text_title{
                font-family: Mardoto-Regular;
                font-size: 16px;
                color: #333333;
                @media screen and (max-width: 425px) {
                    font-size: 14px;
                    line-height: 1;

                }
                .my_info_text_name{
                    font-family: Mardoto-Bold;
                }
                .my_info_text_phone, .my_info_text_mail{
                    font-family: Mardoto-Bold;
                    color: #006699;
                }
            }
        }
    }
    .my-account-content {
        padding: 20px;
        .my_info_name {
            font-family: Mardoto-Medium;
            font-size: 36px;
            color: #000000;
            text-transform: capitalize;
            @media screen and (max-width: 768px) {
                font-size: 28px;

            }
            @media screen and (max-width: 375px) {
                font-size: 24px;

            }
        }
        .hr{

            @media screen and (min-width: 769px) {
                display: none;

            }
        }

    }

    .change_info{
        width: 100%;
        min-height: 50px;
        padding: 13px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        background-color:#10C44C;
        margin: 0 0 64px;
        @media screen and (max-width:768px) {
            margin-bottom: 50px;
        }
        @media screen and (max-width:425px) {
            margin-bottom:38px;
        }
        img{
            padding: 0 12px;
        }
        span{
            display: flex;
            font-family: Mardoto-Medium;
            font-size: 16px;
            @media screen and (max-width: 768px) {
                padding-right: 5px;
            }
            color:#FFFFFF;
            &.change_info_text{
                align-items: flex-start;
            }
        }
    }

    ///////////////////////////////////////
    .dOut{
        font-family: Mardoto-Medium;
        font-size: 13px;
        color: #777777;
        letter-spacing: 0.035em;
        display: none;
        margin: 50px 0 36px;
        @media screen and (max-width: 991px) {
            display: block;
        }
        .dOutP{
            font-size: 14px;
            margin-bottom: 13px !important;

        }
        a{
            color: #777777;
            text-decoration: underline;
        }
    }
    #collapseOne {
        p {
            margin-bottom: 20px;
            font-size: 110%;
            a {
                color: #3f3f3f;
                &:hover { color: #006699; }
            }
        }
        .my-account-links-box {
            grid-template-columns: repeat(3, 1fr);
            margin-bottom: 40px;
            margin-top: 30px;
            display: grid;
            gap: 20px;
            a {
                box-shadow: 0 0 4px rgb(0 0 0 / 18%);
                text-align: center;
                padding: 20px;
                h4 {
                    font-family: Mardoto-Bold;
                    text-transform: uppercase;
                    margin-bottom: 0;
                    font-size: 14px;
                    color: #3f3f3f;
                    &.notification { color: #f00; }
                }
                i {
                    margin-bottom: 10px;
                    font-size: 50px;
                    color: #d0d0d0;
                }
                div.img-box {
                    position: relative;
                    width: fit-content;
                    margin: auto;
                    img {
                        margin-bottom: 10px;
                        width: 50px;
                    }
                    span.notification-count {
                        font-family: Mardoto-Bold;
                        transform: translate(50%, -50%);
                        justify-content: center;
                        background-color: #f00;
                        align-items: center;
                        position: absolute;
                        border-radius: 50%;
                        display: flex;
                        height: 22px;
                        color: #fff;
                        width: 22px;
                        right: 0;
                        top: 0;
                    }
                }
                &:hover {
                    background-color: rgba(0,0,0,.03);
                    i { color: #006699; }
                }
            }
        }
        .debt-box {
            .late {
                color: #ff0000;
            }
            box-shadow: 0 0 4px rgb(0 0 0 / 18%);
            margin-bottom: 20px;
            padding: 20px;
            .debt-header-box {
                border-bottom: 4px solid #ececec;
                justify-content: space-between;
                padding: 0 10px 20px;
                display: flex;
                h5 {
                    text-transform: uppercase;
                    color: #3f3f3f;
                    margin: 0;
                }
                h4 {
                    font-family: Mardoto-Bold;
                    text-align: right;
                    font-size: 22px;
                    color: #ff0000;
                    margin: 0
                }
                .frstH4{
                    color:#007cc4;
                }
                a {
                    text-align: right;
                    display: block;
                    color: #3f3f3f;
                    &:hover { color: #007cc4; }
                }
            }
            table {
                thead tr td {
                    font-family: Mardoto-Bold;
                    border-bottom: 1px solid #E6E6E6;
                    padding: 15px 12px;
                    font-size: 16px;
                    &:last-child { text-align: right; }
                }
                tbody tr td {
                    border-bottom: 1px solid #E6E6E6;
                    padding: 15px 12px;
                    &:last-child {
                        font-family: Mardoto-Bold;
                        text-align: right;
                    }
                    a {
                        font-family: Mardoto-Bold;
                        color: #007cc4;
                    }
                }
            }
        }
        .price-list-box {
            box-shadow: 0 0 4px rgb(0 0 0 / 18%);
            padding: 20px;
            width: 100%;
            h5 {
                font-family: Mardoto-Bold;
                text-transform: uppercase;
                margin-bottom: 0;
                font-size: 14px;
                color: #3f3f3f;
            }
        }
        .file-letter-box {
            box-shadow: 0 0 4px rgb(0 0 0 / 18%);
            margin-bottom: 20px;
            margin-top: 20px;
            padding: 20px;
            width: 100%;
            label {
                font-family: Mardoto-Bold;
                margin-bottom: 20px;
                line-height: 1.4;
                font-size: 16px;
                display: block;
                color: #3F3F3F;
                @media screen and (max-width:1369px) {
                    font-size: 14px;

                }
            }
            input[type=file] { margin-bottom: 25px; }
            textarea {
                border: 1px solid #ccc;
                margin-bottom: 20px;
                border-radius: 3px;
                max-height: 500px;
                min-height: 42px;
                font-size: 14px;
                height: 190px;
                outline: none;
                padding: 3px;
                width: 100%;
                color: #666;
            }
            button {
                font-family: Mardoto-Bold;
                transition: color .25s ease,background-color .25s ease,border-color .25s ease,box-shadow .25s ease,opacity .25s ease;
                border-color: #ccc #ccc #bbb !important;
                color: rgba(0, 0, 0, 0.8);
                padding: 0.6em 1em 0.4em;
                letter-spacing: .3px;
                background: #e6e6e6;
                border-radius: 3px;
                border: 1px solid;
                cursor: pointer;
                font-size: 12px;
                line-height: 1;
                outline: 0;
                &:hover {
                    box-shadow: inset 0 0 200px rgb(0 0 0 / 10%);
                    border-color: #ccc #bbb #aaa !important;
                    color: #3E3E3E;
                }
            }
        }
        .write-order {
            h4 {
                font-family: Mardoto-Bold;
                display: inline-block;
                margin-bottom: 20px;
                line-height: 1.4;
                font-size: 18px;
                color: #2d2a2a;
            }
            a {
                text-decoration: underline;
                color: #3f3f3f;
            }
        }
        .radio-btn-box {
            margin-top: 10px;
            display: flex;
            gap: 20px;
            label {
                font-family: Mardoto-Regular;
                vertical-align: middle;
                align-items: center;
                font-size: 14px;
                color: #464646;
                display: flex;
                margin: 0;
                gap: 5px;
            }
        }
        table {
            border-collapse: collapse;
            margin-bottom: 35px;
            border-spacing: 0;
            line-height: 1.4;
            font-size: 14px;
            width: 100%;

            thead tr th {
                font-family: Mardoto-Bold;
                border-bottom: 2px solid #EFEFEF;
                text-transform: capitalize;
                padding: 15px 10px;
                line-height: 1.2;
                font-size: 16px;
                color: #2d2a2a;
            }
            tbody tr td {
                border-bottom: 1px solid #E6E6E6;
                padding: 15px 12px;
                input {
                    border: 1px solid #ccc;
                    border-radius: 3px;
                    font-size: 14px;
                    max-width: 100%;
                    outline: unset;
                    padding: 3px;
                    height: 42px;
                    width: 100%;
                    color: #666;
                }
                i { cursor: pointer; }
            }
        }
        .btn-box button {
            font-family: Mardoto-Bold;
            transition: color .25s ease,background-color .25s ease,border-color .25s ease,box-shadow .25s ease,opacity .25s ease;
            background-color: #F3F3F3;
            letter-spacing: .3px;
            padding: 12px 20px;
            border-radius: 0;
            box-shadow: none;
            cursor: pointer;
            font-size: 13px;
            color: #3E3E3E;
            border: 0;
            &:hover {
                box-shadow: inset 0 0 200px rgb(0 0 0 / 10%);
                color: #3E3E3E;
            }
        }
    }
    #collapseTwo {
        table {
            margin-bottom: 35px;
            width: 100%;
            thead tr th {
                border-bottom: 2px solid #EFEFEF;
                text-transform: uppercase;
                padding: 15px 10px;
                line-height: 1.2;
                font-size: 16px;
                color: #2d2a2a;
                @media screen and (max-width: 658px) {
                    font-size: 12px;
                }
            }
            tbody tr td {
                border-bottom: 1px solid #E6E6E6;
                padding: 15px 12px;
                a {
                    font-family: Mardoto-Bold;
                    color: #3f3f3f;
                    &:hover { color: #006699; }
                    &.button {
                        transition: color .25s ease,background-color .25s ease,border-color .25s ease,box-shadow 0s ease,opacity .25s ease;
                        box-shadow: inset 0 -2px 0 rgb(0 0 0 / 15%);
                        background-color: #006699;
                        display: inline-flex;
                        letter-spacing: .3px;
                        padding: 10px 14px;
                        line-height: 16px;
                        margin-right: 5px;
                        font-size: 12px;
                        color: #fff;
                        &:hover { color: #333; }
                    }
                }
                span {
                    font-family: Mardoto-Bold;
                    font-size: 14px;
                    color: #006699;
                }
            }
            &.orders-table {
                th {
                    text-transform: capitalize;
                }
                @include mq(md, max) {
                    display: block;
                    thead {
                        th {
                            display: none;
                        }
                    }
                    tbody,
                    tbody tr,
                    tbody td {
                        display: block;
                    }
                    tr {
                        width: 100%;
                        border-bottom: 1px solid #EFEFEF;
                    }
                    td {
                        width: 100%;
                        padding-left: 50%;
                        position: relative;
                        border-bottom: none;
                        padding-top: 8px;
                        padding-bottom: 8px;
                        &:last-of-type {
                            display: flex;
                            align-items: flex-start;
                            flex-wrap: wrap;
                            a {
                                margin-bottom: 6px;
                            }
                        }
                        &::after {
                            font-family: Mardoto-Bold;
                            content: attr(data-label);
                            text-transform: uppercase;
                            line-height: 1.2;
                            font-size: 12px;
                            color: #2d2a2a;
                            position: absolute;
                            top: 15px;
                            left: 12px;
                        }
                    }
                }
            }
        }
        a.button {
            font-family: Mardoto-Bold;
            transition: color .25s ease,background-color .25s ease,border-color .25s ease,box-shadow 0s ease,opacity .25s ease;
            box-shadow: inset 0 -2px 0 rgb(0 0 0 / 15%);
            background-color: #006699;
            display: inline-flex;
            letter-spacing: .3px;
            padding: 12px 20px;
            font-size: 13px;
            color: #fff;
            &:hover {
                box-shadow: inset 0 -2px 0 rgb(0 0 0 / 15%);
                background-color: #eee;
                color: #333;
            }
        }
    }
    #collapseThree form {
        h3 {
            font-family: Mardoto-Bold;
            margin-bottom: 20px;
            line-height: 1.4;
            font-size: 22px;
            color: #2d2a2a;
        }
        label {
            font-family: Mardoto-Regular;
            margin-bottom: 5px;
            font-size: 14px;
            display: block;
            color: #464646;
            span {
                font-size: 16px;
                color: #E01020;
            }
        }
        input, select {
            border: 1px solid #ccc;
            margin-bottom: 20px;
            border-radius: 3px;
            max-width: 100%;
            font-size: 14px;
            outline: none;
            height: 42px;
            padding: 3px;
            color: #666;
            width: 100%;
        }
        button {
            font-family: Mardoto-Bold;
            transition: color .25s ease,background-color .25s ease,border-color .25s ease,box-shadow 0s ease,opacity .25s ease;
            box-shadow: inset 0 -2px 0 rgb(0 0 0 / 15%);
            text-transform: capitalize;
            background-color: #006699;
            letter-spacing: .3px;
            padding: 12px 20px;
            line-height: 18px;
            cursor: pointer;
            font-size: 13px;
            color: #fff;
            border: 0;
            &:hover {
                box-shadow: inset 0 -2px 0 rgb(0 0 0 / 15%);
                color: #333;
            }
        }
    }
    #collapseFour {
        .input-box {
            display: flex;
            gap: 20px;
        }
        label {
            display: block;
            width: 100%;
            span {
                font-family: Mardoto-Regular;
                font-size: 16px;
                color: #252525;
                margin-bottom: 5px;
                display: block;
                @media screen and (max-width: 374px) {
                    font-size: 14px;

                }
                sup {
                    font-size: 16px;
                    color: #E01020;
                    top: 0;
                }
            }
            input {
                border: 1px solid #ccc;
                background-color:#FAFAFA ;
                color: #666666 !important;
                font-family: Mardoto-Regular;
                border-radius: 3px;
                font-size: 16px;
                max-width: 100%;
                padding: 12px;
                @media screen and (max-width:768px) {
                    padding: 12px 2px;
                }
                height: 47px;
                color: #252525 ;
                width: 100%;
                outline: 0;
            }
            em {
                font-family: Mardoto-Regular;
                font-size: 14px;
                color: #777;
            }
        }
        .change-pass-box {
            //border: 2px solid #E6E6E6;
            //padding: 35px 45px 0;
            padding-top: 35px;
            margin: 40px 0;
            fieldset{
                border:1px solid #E6E6E6;
                padding: 51px;
                position: relative;
                @media screen and (max-width: 768px) {
                    padding: 30px 30px 15px;
                }
            }
            legend{
                font-family: Mardoto-Bold;
                color: #000000;
                transform: translate(0, -50%);
                text-transform: uppercase;
                display: inline-block;
                padding-right: 15px;
                position: absolute;
                padding-left: 15px;
                width: fit-content;
                margin-bottom: 0;
                background: #fff;
                font-size: 20px;
                top: 0;
            }
            input{
                height: 51px;
                background-color:white;
            }
            .eyeSpan{
                position: relative;
            }
            .eyeImg{
                cursor: pointer;
                position:absolute;
                top: 13px;
                left: 420px;
                @media screen and (max-width: 1368px) {
                    left: auto;
                    right: 12px;


                }
                &.eyeOpen{
                    display: none;
                }
            }
        }
    }
    #collapseFive {
        h3 {
            font-family: Mardoto-Bold;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-size: 22px;
        }
        p {
            font-size: 110%;
            margin: 0;
        }
        hr {
            border-top: 1px solid rgba(27,27,27,.6);
            margin: 20px 0;
        }
        h5 {
            font-family: Mardoto-Bold;
            margin-bottom: 25px;
            font-size: 15.4px;
            color: #777;
        }
        a {
            margin-bottom: 20px;
            align-items: center;
            color: #3f3f3f;
            display: flex;
            gap: 10px;
            img { max-width: 35px; }
            &:hover { color: #006699; }
        }
        table {
            width: 100%;
            tbody tr td {
                border-bottom: 1px solid #E6E6E6;
                padding: 15px 12px;
                &:last-child { text-align: right; }
            }
        }
    }
    #collapseSix {
        h2 {
            font-family: Mardoto-Bold;
            text-transform: uppercase;
            margin-bottom: 30px;
            line-height: 1.4;
            font-size: 22px;
        }
        p {
            margin-bottom: 30px;
            font-size: 110%;
            &:last-child {
                border-bottom: 4px solid #ececec;
                padding-bottom: 30px;
            }
        }
        table {
            width: 100%;
            thead tr th {
                font-family: Mardoto-Bold;
                border-bottom: 2px solid #EFEFEF;
                text-transform: uppercase;
                padding: 15px 10px;
                line-height: 1.2;
                font-size: 16px;
                color: #2d2a2a;
                &:last-child { text-align: right; }
                &:first-child { text-align: left; }
            }
            tbody tr td {
                border-bottom: 1px solid #E6E6E6;
                padding: 15px 12px;
                &:first-child {
                    font-family: Mardoto-Bold;
                    text-align: left;
                    font-size: 14px;
                    color: #007bc4;
                }
                &:last-child {
                    font-family: Mardoto-Bold;
                    text-align: right;
                }
            }
        }
    }
    #collapseSeven {
        h3 {
            font-family: Mardoto-Bold;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-size: 22px;
            color: #2d2a2a;
        }
        p {
            margin-bottom: 20px;
        }
        a {
            padding-bottom: 20px;
            margin: 0 auto 10px;
            position: relative;
            width: fit-content;
            text-align: center;
            display: block;
            h4 {
                font-family: Mardoto-Bold;
                margin-bottom: 20px;
                color: #2d2a2a;
            }
            img { max-width: 100%; }
            span {
                color: #3f3f3f;
            }
            &:after {
                background: rgba(27, 27, 27, 0.6);
                transform: translate(-50%, 0);
                position: absolute;
                content: "";
                width: 35px;
                height: 1px;
                bottom: 0;
                left: 50%;
            }
        }
    }
    #collapseEight {
        .heading-box {
            border-bottom: 1px solid rgba(129,129,129,.2);
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 5px;
            padding-right: 10px;
            padding-left: 15px;
            display: flex;
            h2 {
                font-family: Mardoto-Bold;
                text-transform: uppercase;
                margin-right: 10px;
                margin-bottom: 5px;
                font-size: 18px;
                color: #2d2a2a;
            }
            .heading-icon-box {
                span {
                    font-family: Mardoto-Bold;
                    margin-right: 3px;
                    color: #2D2A2A;
                }
                a {
                    color: rgba(0,0,0,.6);
                    padding: 6px;
                }
            }
        }
        .pagination-box {
            justify-content: center;
            margin-top: 20px;
            display: flex;
            gap: 2px;
            a {
                font-family: Mardoto-Bold;
                transition: all .2s ease;
                justify-content: center;
                box-sizing: content-box;
                align-items: center;
                padding-right: 5px;
                padding-left: 5px;
                line-height: 34px;
                font-size: 14px;
                min-width: 22px;
                color: #2d2a2a;
                display: flex;
                height: 34px;
                &:hover { background-color: #EEE; }
                &.active {
                    font-family: Mardoto-Bold;
                    background-color: #006699;
                    color: #FFF;
                }
            }
        }
    }
}

@media screen and (max-width: 575px) {
    .my-account-page {
        .my-account-content {
            #collapseOne {
                .my-account-links-box { grid-template-columns: auto; }
                .radio-btn-box { flex-direction: column; }
                .btn-box { gap: 15px; }
            }
            #collapseFour {
                .input-box {
                    flex-direction: column;
                    gap: 0;
                }
                .change-pass-box {

                }
            }
            #collapseEight {
                .heading-box {
                    align-items: flex-start;
                    flex-direction: column;
                }
                .product-content {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 10px;
                    .product-box .product-link {
                        h3.product-title { font-size: 12px; }
                        span.product-price { font-size: 14px; }
                        > div.d-flex {
                            flex-direction: column;
                            align-items: center;
                            gap: 5px;
                            button { margin: auto; }
                        }
                        &.new label { font-size: 10px; }
                    }
                }
            }
        }
    }
}

/************************ CART PAGE END ************************/


/*********************** 404 PAGE START ***********************/
.content-404-page .content-box {
    text-align: center;
    max-width: 870px;
    padding: 40px 0;
    display: block;
    margin: auto;
    width: 100%;
    img {
        max-width: 100%;
        margin: auto;
    }
    .error-title{
        font-family: $font-primary-bold;
        line-height: 55px;
        margin-top: 25px;
        margin-bottom: 25px;
        font-size: 45px;
        color: #2d2a2a;
    }
}
/************************ 404 PAGE END ************************/

/*********************** ORDER RECEIVED PAGE START ***********************/
.order-received-page .order-received-container .order-received-content-box {
    h2.thank-you-text {
        border: 2px dashed #7A9C59;
        margin-bottom: 30px;
        text-align: center;
        line-height: 1.4;
        font-size: 22px;
        color: #7A9C59;
        padding: 3%;
    }
    .info-content {
        margin-bottom: 10px;
        display: flex;
        @include mq(md, max){
            flex-wrap: wrap;
        }
        .info-box {
            flex-direction: column;
            margin-bottom: 20px;
            padding: 0 20px;
            gap: 10px;
            &:not(:last-child) {
                border-right: 1px solid #81818133;
                @include mq(md, max) {
                    border-right: none;
                }
            }
            @include mq(md, max) {
                padding-bottom: 10px;
                border-bottom: 1px solid #81818133;
            }
            p {
                font-size: 14px;
                color: #777;
            }
            span {
                font-family: Mardoto-Bold;
                font-size: 14px;
                color: #2d2a2a;
            }
        }
    }
    .info-text {
        font-size: 14px;
        color: #777;
    }
    .order-info {
        margin-top: 40px;
        h3 {
            text-transform: uppercase;
            margin-bottom: 20px;
            line-height: 1.4;
            font-size: 24px;
            color: #2d2a2a;
        }
        .order-info-table {
            overflow-x: auto;
            table {
                overflow-x: auto;
                border: 2px solid #E6E6E6;
                width: 100%;
                thead tr th {
                    font-family: Mardoto-Bold;
                    border: 2px solid #E6E6E6;
                    text-transform: uppercase;
                    text-align: center;
                    padding: 15px 10px;
                    line-height: 1.2;
                    font-size: 16px;
                    color: #2d2a2a;
                    max-width: 50%;
                }
                tbody tr td {
                    border: 2px solid #E6E6E6;
                    text-align: center;
                    padding: 15px 12px;
                    max-width: 50%;
                    color: #777;
                    a {
                        color: #777;
                        &:hover { color: #006699; }
                    }
                }
                tfoot tr {
                    th {
                        border: 2px solid #E6E6E6;
                        padding: 15px 10px;
                        line-height: 1.2;
                        font-size: 14px;
                        color: #2d2a2a;
                        span.float-right {
                            float: right;
                            color: #777;
                            &.strong {
                                font-family: Mardoto-Bold;
                                color: #2d2a2a;
                            }
                        }
                    }
                    td { padding: 15px 12px; }
                }
            }
        }
    }
}
/************************ ORDER RECEIVED PAGE END ************************/

.sidebar-categories .dropdown{
    display: block;
}

.wishlist {
    .product-content {
        .product-card{
            .remove-product{
                font-family: $font-primary-bold;
                cursor: pointer;
                font-size: 13px;
                letter-spacing: .3px;
                color: #2d2a2a;
            }
        }
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        display: grid;
        gap: 30px;
        @include mq(md, max) {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px 15px;
        }
    }
}

.toolbox-item.toolbox-show {
    justify-content: flex-end;
    margin-bottom: 25px;
    .select-box {
        display: flex;
        align-items: center;
        &:not(:last-child) {
            margin-right: 14px;
        }
    }
    label {
        font-family: Mardoto-Regular;
        margin: 1px 1.2rem 0 0;
        font-size: 1.2rem;
        color: #777;
    }
    .select-custom {
        select {
            padding: 0 25px 0 8px;
            font-size: 1.2rem;
            max-width: 160px;
            height: 34px;
            margin: 0;
        }
        &:after {
            transform: translateY(-54%);
            right: 1rem;
        }
    }
}

.view-order-content {
    .oder-code-box p {
        font-family: Mardoto-Bold;
        margin-bottom: 20px;
        font-size: 110%;
        mark {
            font-family: Mardoto-Bold;
            background-color: #F9F9F9;
            padding: 5px 8px;
            color: #2d2a2a;
        }
    }
    .oder-info-box {
        margin-top: 20px;
        h3 {
            font-family: Mardoto-Bold;
            text-transform: uppercase;
            margin-bottom: 20px;
            line-height: 1.4;
            font-size: 24px;
            color: #2d2a2a;
        }
        table {
            border: 2px solid #E6E6E6;
            thead tr th {
                border: 2px solid #E6E6E6;
                text-transform: uppercase;
                text-align: center;
                max-width: 50%;
                width: auto;
            }
            tbody tr td {
                font-family: Mardoto-Bold;
                border: 2px solid #E6E6E6;
                padding: 15px 12px;
                text-align: center;
                max-width: 50%;
                width: auto;
                a {
                    font-family: Mardoto-Regular;
                    text-align: center;
                    display: block;
                }
            }
            tfoot tr th {
                font-family: Mardoto-Regular;
                border: 2px solid #E6E6E6;
                padding: 15px 10px;
                font-size: 14px;
                color: #2d2a2a;
                span {
                    font-family: Mardoto-Regular;
                    float: right;
                    color: #777;
                    strong {
                        font-family: Mardoto-Bold;
                        color: #2d2a2a;
                    }
                }
            }
            thead {
                th {
                    @include mq(md, max) {
                        display: none;
                    }
                }
            }
            tbody {
                td[data-label] {
                    position: relative;
                    @include mq(md, max) {
                        border: none;
                        padding-left: 50% !important;
                        display: block;
                        font-size: 14px;
                        max-width: 100%;
                        text-align: right;
                        a {
                            text-align: right;
                        }
                        &:last-child {
                            border-bottom: none!important;
                        }
                        &:not(:last-child) {
                            border-bottom: 2px solid #E6E6E6!important;
                        }
                    }

                    &::after {
                        content: attr(data-label);
                        position: absolute;
                        width: 50%;
                        top: 15px;
                        bottom: 15px;
                        align-items: center;
                        margin: auto 0;
                        left: 15px;
                        text-align: left;
                        font-size: 14px;
                        text-transform: capitalize;
                        color: #2d2a2a;
                        font-weight: 700;
                        display: none;
                        @include mq(md, max) {
                            display: flex;
                        }
                    }
                }
            }

        }
    }
    .oder-address-box {
        h3 {
            font-family: Mardoto-Regular;
            text-transform: uppercase;
            font-size: 22px;
        }
        p {
            font-style: italic;
            line-height: 1.8;
            font-size: 110%;
            margin: 0;
        }
    }
}

form[onsubmit='return false'], form {
    span.error {
        position: relative;
        top: 0;
        display: block;
        color: #ff0000;
        &.change-red{
            color: #C22401;
        }
    }
}
select.form-control {
    height: 44px;
    margin-bottom: 25px;
    padding: 2px;
}

@media screen and (max-width: 1370px) {
    .home .sidebar-home .side-menu-wrapper .side-nav ul.menu li.menu-item{
        a{
            font-size: 12px!important;
        }
        &.dropdown a{
            padding: 7.9px 30px 7.9px 20px!important;
            font-size: 12px!important;
        }
    }
}

.divShowProduct{
    .main-btn {
        font-family: $font-primary-bold;
        .icon {
            margin-top: 4px;
            width: 8px;
            margin-left: 4px;
        }
    }
    .productshow{
        height: 34px;
        background-color: #006699;
        color:white;
        border:none;
        border-radius: 5px;
        letter-spacing: 1px;
        display: none;
        padding: 7px;
    }
    @media screen and (max-width: 992px) {
        justify-content: space-between!important;
        .productshow{
            display: inline-block;
        }

    }
}

.divShowProduct {
    .categoryListMobileBtn {
        font-family: $font-primary;
        padding: 10px 13px;
        background: #00232A;
        color: #fff;
        width: 164px;
        border-radius: 5px;
        height: 40px;
        display: flex;
        font-size: 14px;
        align-items: center;
        i {
            font-size: 10px;
            margin-left: 6px;
        }
    }
    .dropdown-menu {
        max-height: 300px;
        width: calc(100vw - 30px);
        left: auto;
        right: 0;
        overflow-y: auto;
        font-size: 16px;
        padding: 15px;
        .category-list ul {
            li {
                a {
                    width: 100%;
                }
            }
        }
    }
}


li {
    .dropdown-box {
        a {
            &.notification {
                color: #f00;
                span.notification-count {
                    background-color: #f00;
                    border-radius: 50%;
                    margin-left: 5px;
                    font-size: 12px;
                    padding: 0 7px;
                    color: #fff;
                    width: 22px;
                    height: 22px;
                    text-align: center;
                    &::after {
                        display: none;
                    }
                }
                &:hover, &:not(&.collapsed) { color: #f00; }
            }
        }
    }
}

.text-ellipsis {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.single-product-page {
    .product-right-box {
        .sidebar-wrapper {
            .price-total-box {
                margin-top: 15px;
            }
            .scroll-box {
                max-height: 635px;
                overflow-y: auto;
                overflow-x: hidden;
                padding-right: 10px;
                &::-webkit-scrollbar-track {
                    background-color: #dddddd;
                    border-radius: 10px;
                }
                &::-webkit-scrollbar {
                    background-color: #dddddd;
                    width: 3px;
                }
                &::-webkit-scrollbar-thumb {
                    background-color: #b8b8b8;
                    border-radius: 10px;
                }
            }
        }
    }
}

.profileImage {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #E7F3F9;
    font-style: normal;
    font-size: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 23px;
    color: #006699;
    text-align: center;
    @media screen and (max-width: 768px) {
        width: 90px;
        height: 90px;
        font-size: 38px;
        margin: 0 14px;
    }
    @media screen and (max-width: 415px) {
        width: 64px;
        height: 64px;
        font-size: 34px;
        margin: 0 7px;
    }
}
