 @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&family=Roboto:wght@100;300;400;500;700&display=swap');

:root {
    --font-montserrat: 'Montserrat', sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;
    --font-roboto: 'Roboto', sans-serif;


    --pos-primary: #877DF2;
    --pos-primary-alt: #7b72e3;

    --pos-secondary: #6f6a6a;
    --pos-secondary-alt: #686060;

    --pos-info: #58AFE2;
    --pos-info-alt: #4fa6d9;

    --pos-success: #28C76F;
    --pos-success-alt: #24c46b;

    --pos-warning: #FFAD5F;
    --pos-warning-alt: #f8a85a;

    --pos-danger: #EC1B34;
    --pos-danger-alt: #e5162f;

    --pos-light: #f5f5f5;
    --pos-light-alt: #f0f0f0;

    --pos-dark: #263D4F;
    --pos-dark-alt: #213849;

    --pos-deep-navy: #152735;
    --pos-deep-navy-alt: #132532;

    --pos-muted: #656c7d;
    --pos-muted-alt: #656c7d;

    --pos-light-muted: #aaaaaa;
    --pos-light-muted-alt: #999999;

    --white: #ffffff;
    --pos-bg: #f5f7fe;


    --pos-nav-text: #625f6e;
}

body {
    font-family: var(--font-open-sans);
    font-family: var(--font-montserrat) !important;
}

a {
    text-decoration: none;
}

a:hover {
    color: var(--pos-primary);
}

.text-subtitle {
    font-size: 20px;
}

.with-bg-img {
    position: relative;
    z-index: 1;
}

.bg-cover-img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

@media screen and (max-width: 767px) {
    .text-subtitle {
        font-size: 17px;
    }
}

.rounded-lg {
    border-radius: 2rem !important;
}

.rounded-md {
    border-radius: 1.25rem !important;
}

.navbar-brand {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand img {
    display: block;
    width: auto;
    height: auto;
    max-height: 60px;
}
.navbar-brand-small {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand-small img {
    display: block;
    width: auto;
    height: auto;
    max-height: 40px;
}

/*============== posing Button Customize Css here ==================*/
.btn {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 4px;
}

.btn.btn-flat {
    border-radius: 0;
}

.btn.btn-sm {
    padding-left: 1rem;
    padding-right: 1rem;
}
/*=== pos Primary Button ===*/
.btn-pos-primary {
    background-color: var(--pos-primary);
    border-color: var(--pos-primary);
    color: var(--white);
}
.btn-pos-primary:hover {
    background-color: var(--pos-primary-alt);
    border-color: var(--pos-primary-alt);
    color: var(--white);
}

/*=== pos Primary Outline Button ===*/
.btn-outline-pos-primary {
    background-color: transparent;
    border-color: var(--pos-primary);
    color: var(--pos-primary);
}
.btn-outline-pos-primary:hover {
    background-color: var(--pos-primary-alt);
    border-color: var(--pos-primary-alt);
    color: var(--white);
}


/*======== pos Secondary ==============*/
.btn-pos-secondary {
    background-color: var(--pos-secondary);
    border-color: var(--pos-secondary);
    color: var(--white);
}

.btn-pos-secondary:hover {
    background-color: var(--pos-secondary-alt);
    border-color: var(--pos-secondary-alt);
    color: var(--white);
}

/*=== pos secondary Outline Button ===*/
.btn-outline-pos-secondary {
    background-color: transparent;
    border-color: var(--pos-secondary);
    color: var(--pos-secondary);
}
.btn-outline-pos-secondary:hover {
    background-color: var(--pos-secondary-alt);
    border-color: var(--pos-secondary-alt);
    color: var(--white);
}



/*======== pos info ==============*/
.btn-pos-info {
    background-color: var(--pos-info);
    border-color: var(--pos-info);
    color: var(--white);
}

.btn-pos-info:hover {
    background-color: var(--pos-info-alt);
    border-color: var(--pos-info-alt);
    color: var(--white);
}

/*=== pos info Outline Button ===*/
.btn-outline-pos-info {
    background-color: transparent;
    border-color: var(--pos-info);
    color: var(--pos-info);
}
.btn-outline-pos-info:hover {
    background-color: var(--pos-info-alt);
    border-color: var(--pos-info-alt);
    color: var(--white);
}



/*======== pos success ==============*/
.btn-pos-success {
    background-color: var(--pos-success);
    border-color: var(--pos-success);
    color: var(--white);
}

.btn-pos-success:hover {
    background-color: var(--pos-success-alt);
    border-color: var(--pos-success-alt);
    color: var(--white);
}

/*=== pos success Outline Button ===*/
.btn-outline-pos-success {
    background-color: transparent;
    border-color: var(--pos-success);
    color: var(--pos-success);
}
.btn-outline-pos-success:hover {
    background-color: var(--pos-success-alt);
    border-color: var(--pos-success-alt);
    color: var(--white);
}



/*======== pos warning ==============*/
.btn-pos-warning {
    background-color: var(--pos-warning);
    border-color: var(--pos-warning);
    color: var(--white);
}

.btn-pos-warning:hover {
    background-color: var(--pos-warning-alt);
    border-color: var(--pos-warning-alt);
    color: var(--white);
}

/*=== pos secondary Outline Button ===*/
.btn-outline-pos-warning {
    background-color: transparent;
    border-color: var(--pos-warning);
    color: var(--pos-warning);
}
.btn-outline-pos-warning:hover {
    background-color: var(--pos-warning-alt);
    border-color: var(--pos-warning-alt);
    color: var(--white);
}


/*======== pos danger ==============*/
.btn-pos-danger {
    background-color: var(--pos-danger);
    border-color: var(--pos-danger);
    color: var(--white);
}

.btn-pos-danger:hover {
    background-color: var(--pos-danger-alt);
    border-color: var(--pos-danger-alt);
    color: var(--white);
}

/*=== pos danger Outline Button ===*/
.btn-outline-pos-danger {
    background-color: transparent;
    border-color: var(--pos-danger);
    color: var(--pos-danger);
}
.btn-outline-pos-danger:hover {
    background-color: var(--pos-danger-alt);
    border-color: var(--pos-danger-alt);
    color: var(--white);
}


/*======== pos light ==============*/
.btn-pos-light {
    background-color: var(--pos-light);
    border-color: var(--pos-light);
    color: var(--pos-dark);
}

.btn-pos-light:hover {
    background-color: var(--pos-light-alt);
    border-color: var(--pos-light-alt);
    color: var(--pos-dark);
}

/*=== pos light Outline Button ===*/
.btn-outline-pos-light {
    background-color: #ffffff;
    border-color: var(--pos-light-alt);
    color: var(--pos-dark);
}
.btn-outline-pos-light:hover {
    background-color: var(--pos-light-alt);
    border-color: var(--pos-light-alt);
    color: var(--pos-dark);
}

/*======== pos danger ==============*/
.btn-pos-dark {
    background-color: var(--pos-dark);
    border-color: var(--pos-dark);
    color: var(--white);
}

.btn-pos-dark:hover {
    background-color: var(--pos-dark-alt);
    border-color: var(--pos-dark-alt);
    color: var(--white);
}



/*=== pos danger Outline Button ===*/
.btn-outline-pos-dark {
    background-color: transparent;
    border-color: var(--pos-dark);
    color: var(--pos-dark);
}
.btn-outline-pos-dark:hover {
    background-color: var(--pos-dark-alt);
    border-color: var(--pos-dark-alt);
    color: var(--white);
}

/*======== pos deep navy ==============*/
.btn-pos-deep-navy {
    background-color: var(--pos-deep-navy);
    border-color: var(--pos-deep-navy);
    color: var(--white);
}

.btn-pos-deep-navy:hover {
    background-color: var(--pos-deep-navy-alt);
    border-color: var(--pos-deep-navy-alt);
    color: var(--white);
}


/*=== pos deep navy Outline Button ===*/
.btn-outline-pos-deep-navy {
    background-color: transparent !important;
    border-color: var(--pos-deep-navy) !important;
    color: var(--pos-deep-navy) !important;
}
.btn-outline-pos-deep-navy:hover {
    background-color: var(--pos-deep-navy-alt) !important;
    border-color: var(--pos-deep-navy-alt) !important;
    color: var(--white) !important;
}

/*============== posing background Color Class Set ===========*/
.bg-pos-primary {
    background-color: var(--pos-primary) !important;
}
.bg-pos-secondary {
    background-color: var(--pos-secondary) !important;
}
.bg-pos-info {
    background-color: var(--pos-info) !important;
}
.bg-pos-success {
    background-color: var(--pos-success) !important;
}
.bg-pos-warning {
    background-color: var(--pos-warning) !important;
}
.bg-pos-danger {
    background-color: var(--pos-danger) !important;
}
.bg-pos-dark {
    background-color: var(--pos-dark) !important;
}
.bg-pos-deep-navy {
    background-color: var(--pos-deep-navy) !important;
}
.bg-pos-light {
    background-color: var(--pos-light) !important;
}

/*============== posing border Color Class Set ===========*/
.border-pos-primary {
    border-color: var(--pos-primary) !important;
}
.border-pos-secondary {
    border-color: var(--pos-secondary) !important;
}
.border-pos-info {
    border-color: var(--pos-info) !important;
}
.border-pos-success {
    border-color: var(--pos-success) !important;
}
.border-pos-warning {
    border-color: var(--pos-warning) !important;
}
.border-pos-danger {
    border-color: var(--pos-danger) !important;
}
.border-pos-dark {
    border-color: var(--pos-dark) !important;
}
.border-pos-deep-navy {
    border-color: var(--pos-deep-navy) !important;
}
.border-pos-light {
    border-color: var(--pos-light) !important;
}

/*=========== posing Text Color Class Set ================*/
.text-pos-primary {
    color: var(--pos-primary) !important;
}
a.text-pos-primary:hover {
    color: var(--pos-primary-alt) !important;
}

.text-pos-secondary {
    color: var(--pos-secondary) !important;
}
a.text-pos-secondary:hover {
    color: var(--pos-secondary-alt) !important;
}
.text-pos-info {
    color: var(--pos-info) !important;
}
a.text-pos-info:hover {
    color: var(--pos-info-alt) !important;
}
.text-pos-success {
    color: var(--pos-success) !important;
}
a.text-pos-success:hover {
    color: var(--pos-success-alt) !important;
}
.text-pos-warning {
    color: var(--pos-warning) !important;
}
a.text-pos-warning:hover {
    color: var(--pos-warning-alt) !important;
}

.text-pos-danger {
    color: var(--pos-danger) !important;
}
a.text-pos-danger:hover {
    color: var(--pos-danger-alt) !important;
}

.text-pos-dark {
    color: var(--pos-dark) !important;
}
a.text-pos-dark:hover {
    color: var(--pos-dark-alt) !important;
}
.text-pos-deep-navy {
    color: var(--pos-deep-navy) !important;
}
a.text-pos-deep-navy:hover {
    color: var(--pos-deep-navy-alt) !important;
}

.text-pos-light {
    color: var(--pos-light) !important;
}
a.text-pos-light:hover {
    color: var(--pos-light-alt) !important;
}


.ms-n5 {
    margin-left: -3rem;
}

.ms-n4 {
    margin-left: -1.5rem;
}

@media screen and (min-width: 1200px) {
    .ms-xl-n6 {
        margin-left: -60px;
    }

    .ms-xl-n5 {
        margin-left: -3rem;
    }

    .ms-xl-n4 {
        margin-left: -1.5rem;
    }

    .mt-xl-n6 {
        margin-top: -60px;
    }

    .mt-xl-n5 {
        margin-top: -3rem;
    }

    .mt-xl-n4 {
        margin-top: -1.5rem;
    }
}



/*========== Footer ==============*/
.vertical-input-group >* {
    border: 1px solid #444444;
}

.vertical-input-group >*:not(:last-child) {
    border-bottom: none;
}

.vertical-input-group .form-control,
.vertical-input-group .form-select {
    border-radius: 0;
    border: none;
    padding: .5rem;
}

.vertical-input-group .form-control:focus,
.vertical-input-group .form-select:focus {
    box-shadow: none;
    outline: none;
}

/*======================= Listing Page ========================*/
.btn-menu-item {
    display: block;
    border: 1px solid #eeeeee;
    background-color: #FFFFFF;
    padding: .65rem .5rem;
    border-radius: .25rem;
    text-align: center;
    color: var(--pos-deep-navy);
    font-size: 14px;
    font-weight: 500;
}

.btn-menu-item.active,
.btn-menu-item:hover {
    background-color: var(--pos-deep-navy);
    border-color: var(--pos-deep-navy);
    color: var(--pos-light);
}


.btn-menu-item-info {
    color: var(--pos-info) !important;
}


.btn-menu-item-info:hover {
    border-color: var(--pos-info) !important;
    color: var(--pos-info) !important;
}



.btn-menu-item.hover-gradient::before,
.btn-order::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(79,166,217,1) 0%, rgba(226,62,47,1) 100%);
    left: 0;
    top: 0;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    z-index: -2;
}


.btn-menu-item.hover-gradient::after,
.btn-order::before {
    content: '';
    position: absolute;
    display: block;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: white;
    left: 1px;
    top: 1px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    z-index: -1;
}

.btn-menu-item.hover-gradient {
    position: relative;
    z-index: 1;
    border-color: transparent;
    color: var(--pos-danger-alt);
}

.btn-thin {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    font-size: 13px;
}

.btn-menu-item.hover-gradient.active::before,
.btn-menu-item.hover-gradient.active::after,
.btn-menu-item.hover-gradient:hover::before,
.btn-menu-item.hover-gradient:hover::after {
    content: none;
}

.btn-menu-item.hover-gradient.active,
.btn-menu-item.hover-gradient:hover {
    background: rgb(79,166,217);
    background: linear-gradient(90deg, rgba(79,166,217,1) 0%, rgba(226,62,47,1) 100%);
    color: #ffffff;
    transition: all .1s;
}

/*.btn-menu-item.hover-gradient.active,*/
/*.btn-menu-item.hover-gradient:hover {*/
/*    background: rgb(79,166,217);*/
/*    background: linear-gradient(90deg, rgba(79,166,217,1) 0%, rgba(226,62,47,1) 100%);*/
/*    color: #ffffff;*/
/*    transition: all .1s;*/
/*}*/


.listing-banner {
    border-radius: 1rem;
    overflow: hidden;
}

.listing-banner-layer {
    padding: calc(3rem + 4vw) calc(1rem + 2vw);
    background-color: rgba(0, 0, 0, .1);
}


/*======== Product Card =============*/
.product-card-header{
    --bs-aspect-ratio:calc(3 / 4 * 100%);
}

.product-card-header >* {
    background-color: #FFFFFF;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.img-fit-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.timer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    min-height: 48px;
    border-radius: 8px;
    position: relative;
}



.timer>* {
    line-height: 100%;
    font-size: 13px;
    color: var(--pos-danger);
}

.timer .time {
    font-size: 16px;
    font-weight: 500;
    color: var(--pos-danger)
}

@media screen and (max-width: 767px) {
    .timer {
        min-height: 32px;
        border-radius: 4px;
    }
    .timer>* {
        font-size: 10px;
    }
    .timer .time {
        font-size: 13px;
    }
}


.product-card-body {
    margin-top: calc(-4rem - 3vw);
    position: relative;
    z-index: 1;
    padding-left: 1rem;
    padding-right: 1rem;
}

.product-card-body-content {
    background-color: #FFFFFF;
    -webkit-border-radius: .75rem;
    border-radius: .75rem;
    padding: 1.5rem;
}

@media screen and (max-width: 767px) {
    .product-card-body-content {
        -webkit-border-radius: .5rem;
        border-radius: .5rem;
    }
}


.deals-product-content {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
}


.product-card-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--pos-dark);
    margin-bottom: .5rem;
}

.product-card-title:hover {
    color: var(--pos-deep-navy-alt);
}

.rating {
    color: var(--pos-light-muted);
    font-size: 12px;
}

@media screen and (max-width: 767px) {
    .product-card-title {
        font-size: 11px;
    }
    .deals-product-content .product-card-title {
        min-height: 32px;
    }
    .rating {
        font-size: 11px;
    }
}

.star-selected {
    color: var(--pos-warning);
}

.face-fig {
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}


/*.face-fig-overlay {*/
/*    position: absolute;*/
/*    top: -8px;*/
/*    left: -8px;*/
/*    width: calc(100% + 18px);*/
/*    height: calc(100% + 18px);*/
/*    -webkit-border-radius: 50%;*/
/*    border-radius: 50%;*/
/*    padding: .5rem;*/
/*}*/


.face-fig-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.overlay {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/*=========== Testimonial ==================*/
.testimonial-item >* {
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, .85);
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, .1);
    border-radius: 1.5rem;
}


/*@media screen and (max-width: 991px) {*/
/*    .mask-section-bg {*/
/*        background-repeat: no-repeat;*/
/*        background-size: 100% auto;*/
/*        background-position: center;*/
/*    }*/
/*}*/

/*@media screen and (min-width: 992px) {*/
/*    .mask-section-bg {*/
/*        background-repeat: no-repeat;*/
/*        background-size: 100% auto;*/
/*        background-position: top center;*/
/*        min-height: 60vh;*/
/*    }*/
/*}*/


.mask-section-bg {
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top;
}
@media screen and (max-width: 992px) {
    .mask-section-bg {
        background-size: cover;
        background-position: center;
    }
}

.owl-dot-medium .owl-dots .owl-dot {
    height: 12px;
    width: 12px;
}

.owl-dot-overlay .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.bg-curve-top {
    background-size: 100% 100%;
    background-position: bottom;
}

.bg-curve-bottom {
    background-size: 100% 100%;
    background-position: top;
    padding-bottom: 8rem !important;
}

@media screen and (max-width: 991px) {
    .bg-curve-top {
        background-size: cover;
    }

    .bg-curve-bottom {
        background-size: cover;
    }

}

.z-index-1 {
    z-index: 1 !important;
}


.end {
    right: 0;
    left: auto;
}


.top {
    top: 0;
    bottom: auto;
}

.bottom {
    bottom: 0;
    top: auto;
}


.max-w-300px {
    max-width: 300px;
}

.w-70px {
    width: 70px !important;
}

.box-20 {
    display: -webkit-inline-flex;
    display: inline-flex;
    height: 20px;
    width: 20px;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

.box-15 {
    display: -webkit-inline-flex;
    display: inline-flex;
    height: 15px;
    width: 15px;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

.box-13 {
    display: -webkit-inline-flex;
    display: inline-flex;
    height: 13px;
    width: 13px;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

.rounded-sm {
    -webkit-border-radius: .5rem;
    border-radius: .5rem;
}


@media screen and (min-width: 1200px) {
    .custom-template {
        position: relative;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -12px;
        margin-right: -12px;
    }

    .custom-template >* {
        padding-left: 12px;
        padding-right: 12px;
    }

    .template-aside {
        width: 200px;
    }

    .template-body {
        width: calc(100% - 400px);
        max-width: 1296px;
        margin-left: auto;
        margin-right: auto;
    }
}


.template-body-content {
    padding-top: 1.5rem;
}

/*@media screen and (min-width: 1200px) {*/
/*    .template-body {*/
/*        width: calc(100% - 500px);*/
/*        background-color: red;*/
/*        margin-left: auto;*/
/*        margin-right: auto;*/
/*    }*/
/*}*/


.input-tab input {
    display: none;
}

.input-tab input ~ .input-tab-text {
    position: relative;
    display: inline-block;
    padding: .4rem 2rem;
    background-color: var(--pos-muted);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.input-tab input:checked ~ .input-tab-text {
    background-color: var(--pos-dark);
}

.input-tab-text .text-border {
    border: 1px solid transparent;
}

.input-tab input:checked ~ .input-tab-text .text-border {
    border: 1px solid #FFFFFF;
}

@media screen {
    .search-type-group {
        display: inline-flex !important;
        overflow: hidden;
        border-radius: 50rem;
        background-color: #FFFFFF;
    }
    .search-type-group .input-tab input ~ .input-tab-text {
        background-color: transparent;
        color: var(--pos-dark);
        -webkit-border-radius: 50rem;
        border-radius: 50rem;
    }

    .search-type-group .input-tab input:checked ~ .input-tab-text {
        background-color: var(--pos-dark);
        color: #ffffff;
    }
}

.inside-body-search-box {
    position: relative;
}

.inside-body-search-box::before {
    content: '';
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: #f5f5f5;
    z-index: -1;
    top: 0;
    left: 0;
}

    /*.input-tab:first-child input ~ .input-tab-text {*/
/*    -webkit-border-top-left-radius: .5rem;*/
/*    border-top-left-radius: .5rem;*/
/*}*/
/*.input-tab:last-child input ~ .input-tab-text {*/
/*    -webkit-border-top-right-radius: .5rem;*/
/*    border-top-right-radius: .5rem;*/
/*}*/

.body-content-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    z-index: 1000;
}


.category-card {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-border-radius: .5rem;
    border-radius: .5rem;
    overflow: hidden;
    padding: 1rem;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.category-card.active,
.category-card:hover {
    border-color: var(--pos-warning);
}


.category-card > .category-card-header {
    display: block;
    position: relative;
    padding: 0;
}

.category-card > .category-card-header::before {
    content: '';
    display: block;
    padding-top: 75%;
}


.category-card > .category-card-header >* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-card-img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    padding: .5rem;
}


.category-card-title {
    font-size: 13px;
    font-weight: bolder;
}

.category-card-count {
    font-size: 12px;
}


.category-card > .category-card-body {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}


.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}


@media screen and (min-width: 1200px) {
    .row.category-card-row > * {
        flex:0 0 auto !important;
        width:20% !important;
    }
}


.category-card-outline, .outline-type-content {
    border: 1px solid var(--pos-dark);
    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;
    background-color: #FFFFFF;
    text-align: center;
    padding: 0;
}

@media screen and (max-width: 767px) {
    .category-card-outline, .outline-type-content {
        -webkit-border-radius: .75rem;
        border-radius: .75rem;
    }

}


.outline-type-content {
    -webkit-border-radius: .5rem;
    border-radius: .5rem;
    -webkit-display: flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-between;
    padding: 4px 4px 8px 4px;
}

.category-card-outline::before {
    content: '';
    display: block;
    padding-top: 100%;
}


.outline-type-content:hover,
.category-card-outline:hover {
    border-color: var(--pos-danger);
}



.category-card-outline img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 1rem;
}

.outline-type-content img {
    position: relative;
    width: auto !important;
    height: auto !important;
    max-width: 90% !important;
    max-height: 90% !important;
    margin: auto;
    padding: 4px;
}

.outline-type-content-title,
.category-card-outline-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--pos-dark);
}



/*============ Owl Equal Height =========*/
.equal-height .owl-stage{
    display: flex;
}
.equal-height .owl-items {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}
.equal-height .owl-item >* {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    padding: 2px;
}


/*=========== Footer Grid ===================*/
.footer {
    padding-bottom: 1.5rem;
}
.footer-grid {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -.75rem;
}

.footer-grid >* {
    padding: .75rem;
}

@media screen and (min-width: 1200px) {
    .footer-grid >* {
        width: 20%;
    }
}

@media screen and (max-width: 1199px) {
    .footer-grid >* {
        width: 33.33%;
    }
}

@media screen and (max-width: 767px) {
    .footer-grid >* {
        width: 50%;
    }
}

@media screen and (max-width: 575px) {
    .footer-grid >* {
        width: 50%;
    }

    .footer-grid >*:first-child {
        width: 100%;
    }
}


@media screen and (max-width: 1199px) {
    .d-xl-down-block {
        display: block !important;
    }
    .d-xl-down-none {
        display: none !important;
    }
}
@media screen and (max-width: 991px) {
    .d-lg-down-block {
        display: block !important;
    }
}



@media screen and (min-width: 768px) {
    .order-table {
        /*border-collapse: collapse;*/
        width: 100%;
        border-radius: .5rem;
    }

    .order-table > *:first-child > *:first-child {
        border-top-left-radius: .25rem;
    }

    .order-table > *:first-child > *:last-child {
        border-top-right-radius: .25rem;
    }

    .order-table > *:last-child > *:first-child {
        border-bottom-left-radius: .25rem;
    }

    .order-table > *:last-child > *:last-child {
        border-bottom-right-radius: .25rem;
    }


    .order-table > * > * {
        border: 1px solid #dddddd;
        vertical-align: middle;
        color: var(--pos-dark);
        padding: .5rem .25rem;
        background-color: #F5F5F5;
    }

    .order-table.table-padding-3 > * > * {
        padding: .75rem;
    }

    .order-table > *:first-child >* {
        background-color: #CED0D8;
    }

    .order-table > * > *:not(:last-child) {
        border-right: none;
    }

    .order-table > *:nth-child(2) > *:last-child {
        border-top-right-radius: .75rem;
    }

    .order-table > *:not(:last-child) > * {
        border-bottom: none;
    }

    .cart-mobile-view-serial {
        display: none;
    }
}

.order-table > * > * {
    font-size: 13px;
}

.v-align-middle {
    vertical-align: middle;
}

@media screen and (max-width: 767px) {
    .order-table >* {
        border: 1px solid #dddddd;
        padding: .25rem;
        margin-bottom: 1rem;
        position: relative;
    }


    .order-table >* >* {
        padding: 4px;
    }

    .cart-mobile-view-serial {
        position: absolute;
        border: 1px solid #dddddd;
        background-color: #ffffff;
        color: var(--pos-dark);
        padding: 0 8px;
        border-bottom-right-radius: 2px;
        font-size: 13px;
        top: -1px;
        left: -1px;
    }
}


.text-16 {
    font-size: 16px !important;
}


.w-50px {
    width: 50px !important;
}

.w-75px {
    width: 75px;
}

.popover-image {
    width: auto;
    max-width: 100px;
    height: auto;
    max-height: 100px;
}

.popover {
    border: none;
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, .1);
}


.min-height-50vh {
    min-height: 50vh !important;
}


.request-form-control {
    background-color: #f5f5f5;
}

.request-control-label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
}



/*============ order-quantity-count ==============*/
.quantity-counter-group {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 26px;
}

.quantity-counter-group input {
    width: 100px;
    padding: 0 12px;
    text-align: center;
    background-color: transparent;
    border: none;
    border-radius: 0;
    font-weight: 600;
    height: 18px;
    font-size: 14px;
}

@media screen and (max-width: 991px) {
    .quantity-counter-group input {
        width: 80px;
    }
}

.quantity-counter-group input:focus {
    box-shadow: none;
    border-color: #dddddd;
    background-color: #feeeee;
}


.quantity-counter-group a {
    border: none;
    background-color: var(--pos-danger);
    position: absolute;
    right: 3px;
    font-size: 14px;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #FFFFFF;
    font-weight: 700;
}

@media screen and (max-width: 991px) {
    .quantity-counter-group a {
        height: 20px !important;
        width: 20px !important;
        font-weight: 400;
    }
}

.quantity-counter-group a.qty-increment {
    top: 50%;
    transform: translateY(-50%);
    right: 3px;
}

.quantity-counter-group a.qty-decrement {
    top: 50%;
    transform: translateY(-50%);
    left: 3px;
}

.quantity-counter-group a span {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*============ Input number spinner remove ===============*/
.quantity-counter-group input::-webkit-outer-spin-button,
.quantity-counter-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
.quantity-counter-group input[type=number] {
    -moz-appearance:textfield;
}


.custom-table {
    vertical-align: middle;
    width: 100%;
}

.custom-table thead tr th {
    font-weight: 600;
    padding: .5rem;
    border-bottom: 1px solid #dddddd !important;
    font-size: 13px;
    color: var(--pos-muted);
}


.table > :not(:last-child) > :last-child > * {
    border-bottom-color: inherit;
}


.custom-table tr th:first-child,
.custom-table tr td:first-child {
    padding-left: 0;
}

.custom-table tr td {
    font-size: 13px;
    color: var(--pos-muted);
}


@media screen and (max-width: 991px) {
    .custom-table thead tr th {
        padding: .25rem;
    }
}
@media screen and (max-width: 767px) {
    .table-font-md-down-10 * {
        font-size: 10px !important;
    }
}


.fw-strong {
    font-weight: 600 !important;
}

.rounded-4 {
    -webkit-border-radius: .5rem !important;
    border-radius: .5rem !important;
}




.input-bg-theme,
.input-bg-theme:focus,
.input-bg-theme:active {
    background-color: #F5F5F5 !important;
}

@media screen and (min-width: 768px) {
    .input-bg-md-theme,
    .input-bg-md-theme:focus,
    .input-bg-md-theme:active {
        background-color: #F5F5F5 !important;
    }
}


.circle-step-vertical > .circle-step-item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    z-index: 1;
    align-items: start;
    padding-bottom: 1rem;
}

.circle-step-vertical > .circle-step-item::before {
    content: '';
    position: absolute;
    height: calc(100% - 60px);
    width: 3px;
    background-color: #dddddd;
    left: 24px;
    top: 54px;
    z-index: -1;
}



.stepper-horizontal {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
}

.stepper-horizontal .circle-step-item {
    position: relative;
    flex-grow: 1;
    -webkit-flex-grow: 1;
    max-width: 160px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

/*.stepper-horizontal .circle-step-item:last-child {*/
/*    max-width: 160px;*/
/*    -webkit-flex-grow: initial;*/
/*    flex-grow: initial;*/
/*}*/

.stepper-horizontal .circle-step-item::before {
    content: '';
    position: absolute;
    display: block;
    height: 3px;
    width: calc(50% - 18px);
    background-color: var(--pos-dark);
    top: 17px;
    left: 0;
}

.stepper-horizontal .circle-step-item::after {
    content: '';
    position: absolute;
    display: block;
    height: 3px;
    width: calc(50% - 18px);
    background-color: var(--pos-dark);
    top: 17px;
    right: 0;
}

.stepper-horizontal .circle-step-item:first-child::before,
.stepper-horizontal .circle-step-item:last-child::after {
    content: none;
}

.stepper-horizontal .circle-step-count >* {
    font-size: 20px;
    height: 36px;
    width: 36px;
}


.circle-step-vertical > .circle-step-item:last-child::before {
    content: none;
}

.circle-step-count >* {
    width: 50px;
    height: 50px;
    display: -webkit-inline-flex;
    display: inline-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #F5F5F5;
    border: 3px solid #dddddd;
    color: #dddddd;
    font-size: 20px;
    font-weight: 600;
}



.circle-step-item.active .circle-step-count >* {
    border-color: var(--pos-dark);
    background-color: var(--pos-dark);
    color: #FFFFFF;
}

.circle-step-item.step-danger.active .circle-step-count >* {
    border-color: var(--pos-danger);
    background-color: var(--pos-danger);
    color: #FFFFFF;
}


.circle-step-content {
    padding: .75rem 1rem .75rem 1.75rem;
}


.circle-step-item:not(.active, .complete) * {
    color: #cccccc;
}


.circle-step-item:not(.active):hover .circle-step-count >*,
.circle-step-item.complete .circle-step-count >* {
    border-color: var(--pos-dark);
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, .1);
    color: var(--pos-dark);
    text-shadow: 1px 1px rgba(0, 0, 0, .1);
}



@media screen and (max-width: 767px) {
    .circle-step-count >* {
        font-size: 16px;
        height: 36px;
        width: 36px;
    }

    .circle-step-vertical > .circle-step-item::before {
        left: 17px;
        top: 48px;
    }

    .circle-step-content {
        padding: .5rem .75rem;
    }
}




.payment-selector-label {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: #FFFFFF;
    padding: 1.5rem 1rem;
    /*-webkit-box-shadow: 0 0 4px 4px rgba(0, 0, 0, .05);*/
    /*box-shadow: 0 0 4px 4px rgba(0, 0, 0, .05);*/
    -webkit-border-radius: .75rem;
    border-radius: .75rem;
    border: 1px solid #dddddd;
}


.payment-selector-label > input {
    display: none;
}


.payment-selector-text {
    position: relative;
    display: inline-block;
    color: var(--pos-dark);
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px rgba(0, 0, 0, .1);
    padding-left: 30px;
}

.custom-radio {
    position: relative;
    display: inline-block;
    color: var(--pos-dark);
    padding-left: 30px;
}



 .payment-selector-text::before, .custom-radio::before {
    content: '';
    position: absolute;
    display: inline-block;
    height: 24px;
    width: 24px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid var(--pos-dark);
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, .1);
    left: 0;
}

input[type="checkbox"] ~ .custom-radio::before {
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

input:checked ~ .payment-selector-text::after,
input:checked ~ .custom-radio::after {
    content: '';
    position: absolute;
    display: inline-block;
    height: 17px;
    width: 17px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--pos-dark);
    margin-top: .21rem;
    left: .225rem;
}

input[type="checkbox"]:checked ~ .custom-radio::after {
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: transparent;
    height: 8px;
    width: 14px;
    left: 6px;
    top: 3px;
    border-left: 3px solid var(--pos-dark);
    border-bottom: 3px solid var(--pos-dark);
    transform: rotate(-45deg);
}


.payment-selector-label-sibling {
    border: 1px solid #dddddd;
    padding: 1rem 1.75rem;
    background-color: #FFFFFF;
    border-bottom-left-radius: .75rem;
    border-bottom-right-radius: .75rem;
    margin-top: -.5rem;
    display: none;
}


input:checked .payment-selector-label-sibling {
    display: block;
}


.extra-small {
    font-size: 12px !important;
}
.px-05 {
    padding-left: 2px;
    padding-right: 2px;
}



/*SHOP*/
.product-cart-wrap {
    position: relative;
    background-color: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow: hidden;
    transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
}

@media screen and (max-width: 767px) {
    .product-cart-wrap {
        border-radius: 7px;
    }

    .title-detail {
        font-size: 16px;
    }
}

.product-cart-wrap:hover {
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #BCE3C9;
    transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
}

.product-cart-wrap .product-img-action-wrap {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    max-height: 320px;
    padding: 25px 25px 0 25px;
}

.product-cart-wrap .product-img-action-wrap .product-action-1 {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #BCE3C9;
}

.product-cart-wrap .product-img-action-wrap .product-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.product-cart-wrap .product-img-action-wrap .product-img a {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-cart-wrap .product-img-action-wrap .product-img a img {
    width: 100%;
}

.product-cart-wrap .product-img-action-wrap .product-img a img.hover-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s opacity, 0.25s visibility, transform 1.5s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.product-cart-wrap .product-img-action-wrap .product-img-zoom a img {
    -webkit-transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
    transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
}

.product-cart-wrap .product-action-1 {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    z-index: 9;
    -webkit-box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
}

.product-cart-wrap .product-action-1.show {
    visibility: visible;
    opacity: 1;
    bottom: 26px;
    left: unset;
    right: 20px;
    top: unset;
    -webkit-transform: none;
    transform: none;
}

.product-cart-wrap .product-action-1 button, .product-cart-wrap .product-action-1 a.action-btn {
    width: 40px;
    height: 36px;
    line-height: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    border-right: 1px solid #BCE3C9;
}

.product-cart-wrap .product-action-1 button:last-child, .product-cart-wrap .product-action-1 a.action-btn:last-child {
    border: none;
}

.product-cart-wrap .product-action-1 button.small, .product-cart-wrap .product-action-1 a.action-btn.small {
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.product-cart-wrap .product-action-1 button.small i, .product-cart-wrap .product-action-1 a.action-btn.small i {
    font-size: 12px;
}

.product-cart-wrap .product-action-1 button:after, .product-cart-wrap .product-action-1 a.action-btn:after {
    bottom: 100%;
    left: 50%;
    position: absolute;
    white-space: nowrap;
    border-radius: 5px;
    font-size: 11px;
    padding: 7px 10px;
    color: #ffffff;
    background-color: #EB4635;
    content: attr(aria-label);
    line-height: 1.3;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(0px);
    transform: translateX(-50%) translateY(0px);
}

.product-cart-wrap .product-action-1 button:before, .product-cart-wrap .product-action-1 a.action-btn:before {
    content: '';
    position: absolute;
    left: calc(50% - 7px);
    bottom: 100%;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    border: 7px solid transparent;
    border-top-color: #EB4635;
    z-index: 9;
    margin-bottom: -13px;
    transition-delay: .1s;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    opacity: 0;
    visibility: hidden;
}

.product-cart-wrap .product-action-1 button:last-child, .product-cart-wrap .product-action-1 a.action-btn:last-child {
    margin-right: 0;
}

.product-cart-wrap .product-action-1 button i, .product-cart-wrap .product-action-1 a.action-btn i {
    font-size: 15px;
    margin-left: 1px;
}

.product-cart-wrap .product-action-1 button:hover, .product-cart-wrap .product-action-1 a.action-btn:hover {
    color: #FDC040;
}

.product-cart-wrap .product-action-1 button:hover:after, .product-cart-wrap .product-action-1 a.action-btn:hover:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px);
}

.product-cart-wrap .product-action-1 button:hover:before, .product-cart-wrap .product-action-1 a.action-btn:hover:before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.product-cart-wrap .product-action-1 button:hover i, .product-cart-wrap .product-action-1 a.action-btn:hover i {
    color: #FDC040;
}

.product-badges {
    display: inline-flex;
    display: inline-flex;
    background-color: var(--pos-danger);
    color: #FFFFFF;
    font-size: 12px;
    line-height: 100%;
    font-weight: 600;
    padding: 6px 12px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    top: -12px;
    z-index: 0;
    white-space: nowrap;
}

.product-badges.badge-small {
    font-size: 10px;
    padding: 3px 6px;
    top: -6px;
}

.product-cart-wrap .product-badges.product-badges-mrg {
    margin: 0 0 10px;
}

.product-cart-wrap .product-badges.product-badges-position {
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 9;
}

.product-cart-wrap .product-badges span {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    border-radius: 15px 0 20px 0;
    color: #fff;
    padding: 9px 20px 10px 20px;
}

.product-cart-wrap .product-badges span:last-child {
    margin-right: 0px;
}

.product-cart-wrap .product-badges span.hot {
    background-color: #f74b81;
}

.product-cart-wrap .product-badges span.new {
    background-color: #EB4635;
}

.product-cart-wrap .product-badges span.sale {
    background-color: #67bcee;
}

.product-cart-wrap .product-badges span.best {
    background-color: #f59758;
}

.product-cart-wrap {
    height: 100%;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.product-cart-wrap .product-content-wrap {
    padding: 0 10px 10px 10px;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.product-cart-wrap .product-content-wrap .product-card-bottom {
    margin-top: auto;
}

.product-cart-wrap .product-content-wrap .product-category {
    margin-bottom: 5px;
}

.product-cart-wrap .product-content-wrap .product-category a {
    color: #adadad;
    font-size: 12px;
}

.product-cart-wrap .product-content-wrap .product-category a:hover {
    color: #EB4635;
}

.product-cart-wrap .product-content-wrap h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-cart-wrap .product-content-wrap h2 a {
    color: #253D4E;
}

.product-cart-wrap .product-content-wrap h2 a:hover {
    color: #EB4635;
}

.product-cart-wrap .product-content-wrap .product-price {
    padding-top: 5px;
}

.product-cart-wrap .product-content-wrap .product-price span {
    font-size: 18px;
    font-weight: bold;
    color: #EB4635;
}

.product-cart-wrap .product-content-wrap .product-price span.new-price {
    color: #EB4635;
}

.product-cart-wrap .product-content-wrap .product-price span.old-price {
    font-size: 14px;
    color: #adadad;
    margin: 0 0 0 7px;
    text-decoration: line-through;
}

.product-cart-wrap .product-content-wrap .rating-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-cart-wrap .product-content-wrap .rating-result > span {
    display: block;
    overflow: hidden;
    margin-left: 5px;
}

.product-cart-wrap .product-content-wrap .rating-result::before {
    font-family: "uicons-regular-straight"  !important;
    font-size: 11px;
    letter-spacing: 2px;
    content: '\f225' '\f225' '\f225' '\f225' '\f225';
    color: #ff9900;
}

.product-cart-wrap .product-content-wrap .add-to-cart {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 5px;
    background-color: #f5f5f5;
    text-align: center;
    display: block;
    color: #253D4E;
    font-size: 16px;
    position: absolute;
    bottom: 25px;
    right: 20px;
    font-weight: 300;
}

.product-cart-wrap .product-content-wrap .add-to-cart:hover {
    background-color: #EB4635;
    color: #fff;
}

.product-cart-wrap .product-content-wrap .add-to-cart img {
    width: 20px;
    display: inline-block;
    margin-top: 11px;
}

.product-cart-wrap .product-card-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 15px;
}

.product-cart-wrap .product-card-bottom .add-cart {
    cursor: pointer;
}

.product-cart-wrap .product-card-bottom .add-cart .add {
    position: relative;
    display: inline-block;
    padding: 6px 20px 6px 20px;
    border-radius: 4px;
    background-color: #DEF9EC;
    font-size: 14px;
    font-weight: 700;
}

.product-cart-wrap .product-card-bottom .add-cart .add:hover {
    background-color: #EB4635;
    color: #fff;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.product-cart-wrap .product-stock .status-bar {
    background-color: #ededed;
    margin: 0px 0 10px;
    border-radius: 5px;
}

.product-cart-wrap .product-stock .status-bar .sold-bar {
    background-image: linear-gradient(235deg, #EB4635 0%, #77ccfd 100%);
    border-radius: 4px;
    height: 8px;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-33 {
    width: 33.333333333333%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-10 {
    width: 10%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-40 {
    width: 40%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-6 {
    width: 6.6666666666667%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-42 {
    width: 42.857142857143%;
}

.product-cart-wrap .product-stock .product-stock-status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-cart-wrap .product-stock .product-stock-status .sold {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 20px;
}

.product-cart-wrap .product-stock .product-stock-status .available {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span {
    font-size: 15px;
}

.product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span.label {
    color: #253D4E;
}

.product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span.value {
    font-weight: 700;
    color: #333;
}

.product-cart-wrap .progress {
    height: 5px;
}

/*.product-cart-wrap:hover .product-img-action-wrap .product-img a img.hover-img {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

.product-cart-wrap .product-img-action-wrap .product-img a img.default-img {
    z-index: 0;
}
.product-cart-wrap:hover .product-img-action-wrap .product-img a img.default-img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
}
.product-cart-wrap:hover .product-img-action-wrap .product-img a img.default-img ~ img {
    opacity: 0;
}

.product-cart-wrap:hover .product-img-action-wrap .product-action-1 {
    opacity: 1;
    visibility: visible;
}

/*.product-cart-wrap:hover .product-img-zoom a img {*/
/*    -webkit-transform: scale3d(1.05, 1.05, 1.05) translateZ(0);*/
/*    transform: scale3d(1.05, 1.05, 1.05) translateZ(0);*/
/*}*/

.product-cart-wrap.small {
    border: 0;
    text-align: center;
}

.product-cart-wrap.small .rating-result {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-cart-wrap.small .product-content-wrap {
    padding: 5px 15px 0 15px;
}

.product-cart-wrap.small .product-price {
    padding-top: 0;
}

.product-cart-wrap.small:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.product-cart-wrap.small h2 {
    border-bottom: 0;
    padding: 0;
    margin-bottom: 0;
}

.product-cart-wrap.small .product-badges span {
    font-size: 10px;
}

.product-cart-wrap.style-2 {
    border: 0;
    padding-bottom: 25px;
}

.product-cart-wrap.style-2:hover {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.product-cart-wrap.style-2 .product-img-action-wrap {
    padding: 0;
    position: relative;
    z-index: 1;
    max-height: unset;
}

.product-cart-wrap.style-2 .product-img-action-wrap img {
    border-radius: 15px;
}




.product-cart-wrap.style-2 .product-content-wrap {
    position: relative;
    margin-top: -90px;
    z-index: 3;
    padding: 0;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
}

.product-cart-wrap.style-2 .product-content-wrap .deals-content {
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.product-cart-wrap.style-2 .product-content-wrap .deals-countdown-wrap {
    position: absolute;
    top: -80px;
    width: 100%;
    text-align: center;
}

.product-cart-wrap.style-2:hover .product-content-wrap {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
}

.product-price {
    font-family: "Quicksand", sans-serif;
}


@media screen and (max-width: 767px) {
    .mw-md-position-relative {
        position: relative !important;
    }
}


.accordion-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion-list .accordion-toggler-item {
    margin-bottom: 2px;
}

.accordion-toggler-icon {
    position: relative;
    align-self: start;
    padding-left: 8px;
    padding-right: 8px;
}
.accordion-toggler-icon::after {
    content: '\f0da';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    display: inline;
}

.accordion-toggler-item.active .accordion-toggler-icon::after {
    content: '\f0d7';
}

.accordion-toggler-icon i {
    font-size: 10px;
}


.product-wiz-link {
    display: block;
    padding: .4rem .5rem;
    font-size: 13px;
    color: var(--pos-dark);
    border: 1px solid var(--pos-dark);
    border-radius: 4px;
}

.product-wiz-link.active,
.product-wiz-link:hover {
    background-color: var(--pos-dark);
    border-color: var(--pos-dark);
    color: #ffffff;
    font-weight: 600;
}



.accordion-link-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-link-group .accordion-link {
    padding: .5rem .5rem;
    cursor: pointer;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.accordion-link-group .accordion-link {
    flex-grow: 1;
}

.accordion-toggler-item.active .accordion-link-group .accordion-link {
    color: var(--pos-dark);
    background-color: #dddddd;
}

.accordion-link-group:hover *,
.accordion-link-group * {
    color: #888888;
    font-size: 12px;
    cursor: pointer;
}

.accordion-toggler-item.active * {
    font-weight: 500;
}

/*.accordion-link {*/
/*    display: -webkit-flex;*/
/*    display: flex;*/
/*    color: #888888;*/
/*    font-size: 13px;*/
/*    padding: 12px 8px;*/
/*    font-weight: 500;*/
/*}*/


/*.accordion-toggler-item.active .accordion-link {*/
/*    background-color: #dddddd;*/
/*    border-radius: 3px;*/
/*}*/
/*.accordion-toggler-item.active .accordion-toggler {*/
/*    background-color: #dddddd;*/
/*    border-radius: 3px;*/
/*}*/



.accordion-list-general .accordion-toggler {
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .accordion-list-general .accordion-toggler {
        font-size: 14px;
    }
}

.accordion-list-general .accordion-toggler-icon::after {
    content: '\f105';
}

.accordion-list-general .accordion-toggler-item.active .accordion-toggler-icon::after {
    content: '\f107';
}

.accordion-sub-item {
    display: block;
    color: var(--pos-muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.accordion-sub-item:last-child {
    margin-bottom: 0;
}

.accordion-sub-item.active {
    font-weight: 600;
    color: var(--pos-dark);
}

.accordion-sub-item:hover {
    font-weight: 600;
    color: inherit;
}

.accordion-content {
    padding-bottom: 12px;
}


.accordion-toggleable {
    display: none;
}
.accordion-toggler-item.active .accordion-toggleable {
    display: block;
}


.accordion-toggler-item:not(:last-child) {
    border-bottom: 1px solid #dddddd;
}


.accordion-toggler-item.active .accordion-toggler {
    color: var(--pos-dark);
    font-weight: 600;
}

.accordion-toggler-item:hover .accordion-toggler {
    color: var(--pos-dark);
}


.pagination {
    flex-wrap: wrap;
}

.pagination-center .pagination {
    justify-content: center;
}

.pagination li {
    margin: 4px;
}

.pagination li .page-link {
    border: none;
    color: var(--pos-dark);
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    display: inline-flex;
    display: -webkit-inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    min-width: 40px;
    height: 40px;
}
.pagination li a:hover {
    color: var(--pos-dark);
}
.pagination .active a {
    color: #ffffff;
    background-color: var(--pos-dark) !important;
    font-weight: 600;
}


.product-filter-item {
    color: #888888;
    font-size: 13px;
}

.product-filter-item.active {
    color: var(--pos-dark);
}






.detail-gallery .product-image-slider {
    background-color: #fff;
    margin-bottom: 12px;
    border-radius: 15px;
    border: 1px solid #ececec;
    overflow: hidden;
}

.detail-gallery .product-image-slider img {
    opacity: 1;
    border-radius: 16px;
}

.detail-gallery .product-image-slider.slider-nav-thumbnails {
    background: none;
    border-radius: 0;
}

.detail-gallery .product-image-slider button.slick-arrow {
    background: none;
    border: 0;
    padding: 0;
    font-size: 14px;
}

.detail-gallery .product-image-slider button.slick-arrow i {
    color: #adadad;
}


/*PRODUCT DETAILS*/
.detail-gallery {
    position: relative;
}

.detail-gallery .zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    font-size: 22px;
    opacity: 0.6;
}

.slider-nav-thumbnails .slick-list {
    margin: 0 -10px;
}

.slider-nav-thumbnails .slick-slide {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.slider-nav-thumbnails .slick-slide img {
    border-radius: 17px;
}

.slider-nav-thumbnails .slick-slide.slick-current::before {
    border-bottom: 5px solid #333;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    top: -6px;
    width: 0;
}

.slider-nav-thumbnails .slick-slide.slick-current img {
    border: 2px solid #a2d2c9;
}

.slider-nav-thumbnails div.slick-slide {
    margin: 0 10px;
}

.slider-nav-thumbnails button {
    opacity: 0;
}

.slider-nav-thumbnails button.slick-arrow {
    margin: 0;
    border: 0;
    background: #F2F3F4;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    line-height: 44px;
    font-size: 24px;
    z-index: 9;
    color: #7E7E7E;
}

.slider-nav-thumbnails button.slick-arrow:hover {
    color: #fff;
    background-color: #EB4635;
}

.slider-nav-thumbnails button.slick-arrow.slick-prev {
    left: -20px;
}

.slider-nav-thumbnails button.slick-arrow.slick-next {
    right: -20px;
}

.slider-nav-thumbnails:hover button {
    opacity: 1;
}

.slider-nav-thumbnails .slick-prev,
.slider-nav-thumbnails .slick-next {
    font-size: 12px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product-rate {
    background-image: url("theme/rating-stars.png");
    background-position: 0 -12px;
    background-repeat: repeat-x;
    height: 12px;
    width: 60px;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}

.product-rating {
    height: 12px;
    background-repeat: repeat-x;
    background-image: url("theme/rating-stars.png");
    background-position: 0 0;
}



/*COMPONENTS -> SLIDER*/
.single-animation-wrap.slick-active .slider-animated-1 h1 {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 h2 {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 h3 {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 h4 {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 span {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 p {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 a.btn {
    -webkit-animation-delay: 2.0s;
    animation-delay: 2.0s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1.slider-product-price {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

.single-animation-wrap.slick-active .slider-animated-1 .single-slider-img img {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 .slider-product-offer-wrap,
.single-animation-wrap.slick-active .slider-animated-1 .slider-product-offer-wrap-2 {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.hero-slider-1 {
    position: relative;
}

.hero-slider-1 .single-hero-slider {
    height: 538px;
    border-radius: 30px;
    background-size: cover;
    background-position: center center;
}

.hero-slider-1 .single-hero-slider.rectangle {
    border-radius: 0;
}

.hero-slider-1 .single-hero-slider.rectangle .slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
}

.hero-slider-1 .single-hero-slider.rectangle .slider-content form {
    margin: 0 auto;
}

.hero-slider-1 img {
    max-height: 538px;
    border-radius: 30px;
}

.hero-slider-1 .slider-content {
    position: absolute;
    top: 50%;
    left: 6%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hero-slider-1 .slider-content p {
    font-size: 30px;
}

.hero-slider-1 .slider-content form {
    background-color: #fff;
    max-width: 450px;
    border-radius: 50px;
}

.hero-slider-1 .slider-content form input {
    border: 0;
    border-radius: 50px 0 0 50px;
    padding-left: 58px;
    background: url(../imgs/theme/icons/icon-plane.png) no-repeat 25px center;
}

.hero-slider-1 .slider-content form button {
    border: 0;
    border-radius: 50px;
}

.hero-slider-1 .single-slider-img-1 {
    height: 538px;
    position: relative;
}

.hero-slider-1 .single-slider-img-1 .slider-1-1 {
    position: absolute;
    bottom: 30px;
    right: 0;
}

.hero-slider-1 .single-slider-img-1 .slider-1-2 {
    position: absolute;
    bottom: 20px;
    right: 0;
}

.hero-slider-1 .single-slider-img-1 .slider-1-3 {
    position: absolute;
    bottom: 30px;
    right: 0;
}

.hero-slider-1.style-5 .display-2 {
    font-size: 50px;
}

.hero-slider-1.style-5 .slider-content p {
    font-size: 24px;
}

.hero-slider-1.style-5 img {
    border-radius: 10px;
}

.hero-slider-1.style-5 .single-hero-slider {
    border-radius: 10px;
}


.product-thumbnail {
    border-radius: .75rem;
    overflow: hidden;
    border: 1px solid #eeeeee;
    cursor: pointer;
}

.product-thumbnail.active {
    border-color: var(--pos-info);
}


.product-gallery-image {
    border-radius: .75rem;
    overflow: hidden;
    border: 1px solid #eeeeee;
    background-color: #FFFFFF;
}


.primary-image {
    position: absolute;
    background-color: #fff;
    border: 1px solid var(--default-border);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    cursor: crosshair
}

.primary-image img {
    position: absolute;
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}



.primary-image:hover img {
    transform: translate(-50%,-50%) scale3d(1.4,1.4,1.4)
}

@media screen and (min-width: 992px) {
    .primary-image:hover img {
        transform:translate(-50%,-50%) scale3d(2,2,2)
    }
}


/*.owl-product-gallery {*/
/*    position: relative;*/
/*}*/

/*.owl-product-gallery button.owl-prev,*/
/*.owl-product-gallery button.owl-next {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    -webkit-transform: translateY(-50%);*/
/*    transform: translateY(-50%);*/
/*    height: 100%;*/
/*    width: 30px;*/
/*    background-color: rgba(88, 175, 226, .5) !important;*/
/*    display: block;*/
/*    color: #FFFFFF !important;*/
/*    opacity: .1;*/
/*}*/

/*.owl-product-gallery:hover button.owl-prev,*/
/*.owl-product-gallery:hover button.owl-next {*/
/*    opacity: 1 !important;*/
/*}*/


/*.owl-product-gallery button.owl-prev {*/
/*    left: 0;*/
/*    border-top-left-radius: 12px !important;*/
/*    border-bottom-left-radius: 12px !important;*/
/*}*/

/*.owl-product-gallery button.owl-next {*/
/*    right: 0;*/
/*    border-top-right-radius: 12px !important;*/
/*    border-bottom-right-radius: 12px !important;*/
/*}*/



.owl-product-gallery.nav-between.owl-carousel .owl-nav button.owl-prev,
.owl-product-gallery.nav-between.owl-carousel .owl-nav button.owl-next {
    background-color: rgba(88, 175, 226, 1) !important;
    color: #FFFFFF !important;
    font-size: 24px !important;
    height: 32px;
    width: 32px;
}

.owl-product-gallery.nav-between.owl-carousel .owl-nav button.owl-prev {
    margin-left: 12px;
}.owl-product-gallery.nav-between.owl-carousel .owl-nav button.owl-next {
    margin-right: 12px;
}


 .small {
     font-size: 13px !important;
 }



 .tab-style3 .nav-pills .nav-item .nav-link {
     color: var(--pos-muted);
     font-weight: 500;
 }
 .tab-style3 .nav-pills .nav-item .nav-link.active {
     background-color: var(--pos-secondary);
     color: #FFFFFF;
 }


.progress + .progress {
    margin-top: 1rem;
}

.progress span {
    line-height: 16px;
    background: #fff;
    padding-right: 10px;
    width: 45px;
}

.progress-bar {
    background-color: #EB4635;
}




/*comment*/
.comments-area {
    background: transparent;
    padding: 45px 0;
}

@media screen and (max-width: 767px) {
    .comments-area {
        padding: 0;
    }
}

.comments-area h5 {
    font-size: 16px;
    margin-bottom: 0px;
}

.comments-area .comment-list {
    padding-bottom: 48px;
}

.comments-area .comment-list:last-child {
    padding-bottom: 0px;
}

.comments-area .comment-list.left-padding {
    padding-left: 25px;
}

.comments-area .comment-list .single-comment {
    margin: 0 0 15px 0;
    border: 1px solid #f2f2f2;
    border-radius: 15px;
    padding: 20px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.comments-area .comment-list .single-comment:not(:last-child) {
    border-bottom: 1px solid #ececec;
}

.comments-area .comment-list .single-comment .reply {
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.comments-area .comment-list .single-comment:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.comments-area .comment-list .single-comment:hover .reply {
    opacity: 1;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.comments-area p {
    font-size: 16px !important;
}


.comments-area .date {
    font-size: 14px;
    color: #999999;
    margin-bottom: 0;
    margin-left: 20px;
}

.comments-area .comment {
    margin-bottom: 10px;
    color: #777777;
    font-size: 15px;
}

.comments-area .btn-reply {
    background-color: transparent;
    color: #888888;
    padding: 5px 18px;
    font-size: 14px;
    display: block;
    font-weight: 400;
}

.comments-area.style-2 {
    border: 0;
    margin-top: 0;
    padding: 25px 0;
}

.comments-area h4 {
    margin-bottom: 35px;
    color: #2a2a2a;
    font-size: 18px;
}

.comment-form .email {
    padding-right: 0px;
}


.comment-form {
    padding-top: 45px;
    margin-bottom: 20px;
}

.comment-form .form-group {
    margin-bottom: 20px;
}

.comment-form textarea {
    min-height: 200px;
    padding-top: 15px;
}

.comment-form textarea:focus {
    background: transparent;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #BCE3C9;
}


.avatar {
    height: 56px;
    width: 56px;
    display: inline-block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    background-color: #eeeeee;
    position: relative;
}

.avatar img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}



.select2-transparent {
    padding-right: 8px;
}

.select2-transparent .select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none;
}


/*.select2-transparent .select2-selection__arrow {*/
/*    display: none;*/
/*}*/

.select2-transparent .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 7px;
    right: 1px;
    width: 20px;
}

.select2-transparent .select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: calc(50% - 2px);
    height: 6px;
    width: 6px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-left: 2px solid #999999;
    border-bottom: 2px solid #999999;
}

.select2-results__options {
    cursor: pointer;
}

.select2-transparent .flag {
    height: 16px;
    width: auto;
    margin-top: -2px;
}


.custom-btn-group {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    margin-top: -4px;
    margin-bottom: -4px;
}

.custom-btn-group >* {
    padding-top: 4px;
    padding-bottom: 4px;
    flex-grow: 1;
}

.custom-btn-group .btn {
    width: 100%;
    text-align: center;
}


@media screen and (min-width: 768px) {
    .custom-btn-group .btn {
        border-radius: 0;
    }
    .custom-btn-group >*:first-child .btn {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    .custom-btn-group >*:last-child .btn {
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

}


@media screen and (max-width: 767px) {
    .custom-btn-group {
        margin: -4px;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .custom-btn-group >* {
        padding: 4px;
    }
}


.form-control::file-selector-button {
    content: 'Chose file';
}


.owl-carousel .owl-brand-img {
    width: auto !important;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    padding: 8px;
}


.card-disabled {
    opacity: .5;
}




@media screen and (min-width: 992px) {
    .order-table-scrollable {
        max-height: 85vh;
        overflow: auto;
    }
}


.w-25px {
    width: 25px !important;
}

.w-30px {
    width: 30px !important;
}

.right-100 {
    right: 100%;
}


@media screen and (min-width: 1200px) {
    .dropdown-mega-menu {
        min-width: 768px;
        height: 430px;
    }

    .nav-mega-sub-content {
        position: relative;
        height: 430px !important;
        overflow: auto;
    }
}

@media screen and (min-width: 992px) {
    .dropdown-mega-menu.ms-n5 {
        margin-left: -3rem;
    }
}


.dropdown-mega-menu .nav-category {
    display: flex;
    display: -webkit-flex;
    padding: .5rem 0;
    color: var(--pos-dark);
    font-size: 13px;
}


.dropdown-mega-menu .nav-category.active,
.dropdown-mega-menu .nav-category:hover {
    font-weight: 600;
}


.branch-info {
    display: none;
}

.branch-info.yes {
    display: block;
}

.product-card-title-box {
    min-height: 40px;
    font-size: 14px !important;
    font-weight: 600 !important;
}

@media screen and (max-width: 767px) {
    .product-card-title-box {
        min-height: 24px;
    }
}



@media screen and (max-width: 767px) {
    .product-content-wrap .font-md-down-10,
    .product-card-title-box.font-md-down-10,
    .font-md-down-10 {
        font-size: 10px !important;
    }

    .font-md-down-11 {
        font-size: 11px !important;
    }
    .font-md-down-12 {
        font-size: 12px !important;
    }
    .font-md-down-13 {
        font-size: 13px !important;
    }
    .font-md-down-14 {
        font-size: 14px !important;
    }
     .font-md-down-16 {
        font-size: 16px !important;
    }

    .font-md-down-20 {
        font-size: 20px !important;
    }

    .font-md-down-24 {
        font-size: 24px !important;
    }
.font-md-down-28 {
        font-size: 28px !important;
    }

}

.mh-30px {
    min-height: 30px;
}


.custom-select {
    position: relative;
    font-family: Arial;
    min-width: 200px;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.light-dropdown {
    border-radius: .75rem;
    overflow: hidden;
}
.light-dropdown .dropdown-item:hover {
    background-color: #fafafa;
    color: var(--pos-dark);
}

.mw-120px {
    min-width: 120px;
}
.font-size-14 {
    font-size: 14px;
}


.card-disabled .product-cart-wrap:hover .product-img-action-wrap .product-img a img.default-img {
    transform: translate(-50%, -50%) scale(1);
}

/*.product-cart-wrap .product-img-action-wrap .product-img-zoom a img {*/
/*    -webkit-transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);*/
/*    transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);*/
/*}*/
/*.product-cart-wrap .product-img-action-wrap .product-img a img {*/
/*    width: 100%;*/
/*}*/

.page-title {
    font-size: calc(.75rem + .75vw);
}


.aside-wiz-title {
    display: block;
    color: var(--pos-dark);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.aside-wiz-title:hover {
    color: var(--pos-dark);
}


.font-size-20px {
    font-size: 20px;
}

.icon-image {
    height: auto;
    max-height: 24px;
    width: auto;
    max-width: 24px;
}
.icon-image-md {
    height: auto;
    max-height: 30px;
    width: auto;
    max-width: 30px;
}


.tooltip-green .tooltip-arrow::before{
    border-top-color:green;
}
.tooltip-red .tooltip-arrow::before{
    border-top-color:red;
}

.pay-icon {
    width: auto;
    max-width: 48px;
    height: auto;
    max-height: 24px;
}


.career-banner {
    position: relative;
    padding: 1.5rem;
    border-radius: .75rem;
    background-color: #FFFFFF;
    z-index: 1;
}

@media screen and (min-width: 992px) {
    .career-banner {
        padding: 3rem;
    }
}

.career-banner-image-box {
    position: absolute;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    padding: .5rem 1rem .5rem 1rem;
    z-index: -1;
}



.career-banner-image {
    position: relative;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.custom-input {
    background-color: #E9ECEF;
    border-color: #dddddd;
    border-radius: 6px !important;
}

.input-group .input-group-text ~ .custom-input {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-left: 0;
}

.custom-input-label {
    display: block;
    font-size: 14px;
    color: var(--pos-dark);
    margin-bottom: 5px;
}

.custom-input option {
    font-size: 13px !important;
    font-weight: normal;
}


.custom-input-form .input-group {
    background-color: #F5F5F5;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #dddddd;
}
.custom-input-form .input-group >* {
    background-color: transparent;
    border: none;
}

.custom-input-form .input-group-text {
    color: var(--pos-muted);
}

.custom-input-form .form-select.form-select-phone-code {
    min-width: auto;
    max-width: 60px !important;
    background-size: 8px;
    background-position-x: right 0;
    padding-right: 12px;
}
.custom-input-form .form-select:focus,
.custom-input-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.custom-input-form .form-select option {
    font-size: 13px;
}

.custom-input-form .auth-form-label {
    font-size: 13px;
    margin-bottom: 4px;
}

.custom-input-form .btn-auth-submit {
    border: 1px solid #dddddd;
}
.custom-input-form .btn-auth-submit:hover {
    background-color: #dddddd;
}


.custom-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
    .custom-form-label {
        font-size: 12px;
    }
}

.job-position-item {
    margin-bottom: 16px;
}

.job-position-title {
    display: block;
    padding: .75rem 1rem;
    font-size: 14px;
    color: var(--pos-dark);
    border: 1px solid #dddddd;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

.job-position-title.active, .job-position-title:hover {
    background-color: var(--pos-dark);
    border-color: var(--pos-dark);
    color: #FFFFFF;
}

.job-position-details-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--pos-dark);
}

.job-position-list-content {
    height: 100%;
    overflow: auto;
}


.custom-breadcrumb {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    text-transform: capitalize;
    color: #7E7E7E;
    font-size: 14px;
    font-weight: 600;
    background: none;
    margin: 0;
    border-radius: 0;
}

.custom-breadcrumb a {
    position: relative;
    text-align: center;
    padding: 0;
    color: var(--pos-dark);
}
.custom-breadcrumb span {
    position: relative;
    text-align: center;
}

.custom-breadcrumb span::before {
    content: "/";
    font-family: "uicons-regular-straight"  !important;
    display: inline-block;
    font-size: inherit;
}


.report-tab-item {
    position: relative;
}

.report-tab-link {
    position: relative;
    display: block;
    padding: 1.5rem;
    font-size: 17px;
    color: var(--pos-dark);
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .report-tab-link {
        padding: 1rem;
        font-size: 14px;
    }
}

.report-tab-link:hover {
    color: var(--pos-dark);
}


.report-tab-link::before {
    content: '';
    position: absolute;
    width: calc(100% - 1.5rem);
    max-width: 80px;
    height: 3px;
    left: 1.5rem;
    bottom: 0;
    background-color: var(--pos-danger);
}

@media screen and (max-width: 767px) {
    .mw-small-report-tab-item .report-tab-link {
        padding: 1rem .75rem;
        font-size: 14px;
    }

    .mw-small-report-tab-item .report-tab-link::before {
        left: .75rem;
    }

    .mw-report-tab-link {
        padding: 1rem .25rem !important;
        font-size: 12px;
    }

    .mw-report-tab-link.report-tab-link::before {
        width: calc(100% - 1.5rem);
        max-width: 80px;
        height: 3px;
        left: 50%;
        transform: translateX(-50%);
    }
}


.report-tab-item:not(.active) .report-tab-link::before {
    display: none;
}

.upload-with-preview input {
    display: none;
}


.w-100px {
    width: 100px !important;
}

.avatar-box {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--dark);
    overflow: hidden;
    border: 4px solid var(--dark);
    cursor: pointer;
}

.avatar-box .preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}


.avatar-box-label {
    position: absolute;
    width: 100%;
    text-align: center;
    display: block;
    background-color: rgba(0, 0, 0, .8);
    color: #FFFFFF;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 4px;
    font-size: 13px;
    bottom: -60px;
    transition: all .3s ease;
}

.avatar-box:hover .avatar-box-label {
    bottom: 0;
}


.subcategory-body-item {
    position: relative;
}

.subcategory-body-title {
    display: block;
    text-align: center;
    font-size: 13px;
    margin-top: 4px;
}

.subcategory-body-item:hover .subcategory-body-title {
    font-weight: 600;
}


/*======== Compare Table ================*/
.compare-item-title {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: var(--pos-dark);
    display: block;
    margin-bottom: 4px;
}

.compare-item-price {
    font-size: 13px;
    text-align: center;
}

.compare-item-price del {
    font-size: 11px;
    color: var(--pos-danger);
}

.added-btn {
    background-color: #58AFE2;
    border-color: #58AFE2;
    color: white;
}

.added-btn:hover {
    background-color: #4da3d5;
    border-color: #4da3d5;
    color: white;
}

.compare-table {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
}

.compare-table tbody td {
    font-size: .85rem;
    /*white-space: nowrap;*/
    text-align: center;
}


@media screen and (max-width: 757px) {
    .compare-table tbody td {
        font-size: 12px;
    }
}

.compare-table tr td {
    width: 25% !important;
    min-width: 200px;
    padding: 8px 12px;
}
.compare-table {
    border-collapse: separate;
    border-spacing: 0;
}


.compare-table thead tr >* {
    background-color: #ffffff;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
    border-bottom: none;
    vertical-align: initial;
}
.compare-table thead tr >*:not(:last-child) {
    border-right: none;
}
.compare-table thead tr >*:first-child {
    border-top-left-radius: 12px;
}
.compare-table thead tr >*:last-child {
    border-top-right-radius: 12px;
}

.compare-table thead tr:first-child td:first-child {
    border-top-left-radius: 12px;
}


@media screen and (max-width: 991px) {
    .compare-table thead tr:first-child td:nth-child(2) {
        border-top-left-radius: 12px;
    }

}

.compare-table thead tr:first-child td:last-child {
    border-top-right-radius: 12px;
}

.compare-table tbody tr >* {
    vertical-align: middle;
    background-color: #EEF0F7;
    border: 1px solid #dddddd;
}

.compare-table tbody tr >*:not(:last-child) {
    border-right: none;
}
.compare-table tbody tr:not(:last-child) >* {
    border-bottom: none;
}

.compare-table tbody tr:last-child >*:first-child {
    border-bottom-left-radius: .5rem;
}

.compare-table tfoot tr >* {
    padding: 0;
    border-right: 1px solid #dddddd;
    background-color: #EEF0F7;
}


.compare-table tfoot tr >*:first-child {
    border: none;
    background-color: transparent;
}


.compare-table tfoot tr .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}


.compare-table .select2-selection__rendered {
    font-size: 14px !important;
    white-space: initial !important;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 26px;
}

.select2-results__option {
    font-size: 14px !important;
    white-space: initial !important;
}





.offer-nav-btn {
    display: inline-block;
    background-color: #FFFFFF;
    border-radius: 50rem;
    white-space: nowrap;
    font-size: 14px;
    color: var(--pos-dark);
    padding: .45rem 1rem;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
}

@media screen and (max-width: 767px) {
    .offer-nav-btn {
        padding: .25rem .5rem;
    }
}

.offer-nav-btn.active,
.offer-nav-btn:hover {
    background-color: var(--pos-dark);
    color: #FFFFFF;
}

.deals-day-banner-group {
    position: relative;
    min-height: 140px;
    border-radius: .75rem;
    overflow: hidden;
}

.deals-day-timer {
    max-width: 240px;
}

.deals-day-banner-content {

}

@media screen and (min-width: 768px) {
    .deals-day-banner-content {
        position: absolute;
        width: 100%;
        height: 100%;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        -webkit-justify-content: center;
        align-items: center;
        -webkit-flex-direction: column;
        flex-direction: column;
        z-index: 1;
        top: 0;
        left: 0;
    }

    .deals-day-banner-content >* {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .deals-day-banner-group {
        background: #213E54;
        background: radial-gradient(circle farthest-corner at center center, #213E54 16%, #152735 78%);
        padding: 1.5rem;
    }

    .deals-day-banner-group img {
        display: none !important;
    }
}

.voucher-item {
    background-image: url("../../../public/offer-image/voucher-element-bg.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    display: -webkit-flex;
}

.voucher-item .voucher-point-count {
    width: 180px;
    border-right: 1px dashed #AAAAAA;
    padding: 1rem;
    text-align: center;
}

.voucher-item .voucher-point-value {
    width: calc(100% - 180px);
    padding: 1rem;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}


.w-150px {
    width: 150px !important;
}

.modal-medium {
    max-width: 600px;
}


.text-shadow-white {
    text-shadow: 1px 1px  #222222;
}


.ui-timepicker-container,
.bring-to-front,
.select2-container.select2-container--default.select2-container--open {
    z-index: 15000 !important; /* Adjust the value as needed */
}

.input-bg-theme ~ .select2-container .select2-selection--single {
    background-color: #EDF0F7 !important;
}


@media screen and (max-width: 767px) {
    .mw-bg-white {
        background-color: #FFFFFF !important;
    }
}
@media screen and (min-width: 768px) {

    .rounded-md-device {
        border-radius: .75rem !important;
    }

    .bg-md-white {
        background-color: #FFFFFF;
    }

    .bg-md-transparent {
        background-color: transparent !important;
    }

    .mw-md-shadow {
        box-shadow: 0 0 2px 1px rgba(100, 100, 100, .2);
    }
}


.text-ellipsis {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*============= Custom 12-09-2023 =================*/
.popup-sign-modal-content {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 1rem;
}

/*.popup-sign-modal-body {*/
/*    min-height: 65vh;*/
/*    display: flex;*/
/*    display: -webkit-flex;*/
/*    -webkit-flex-direction: column;*/
/*    flex-direction: column;*/
/*}*/

/*.popup-covered-image {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    object-position: center;*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/

.popup-content-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: calc(1.5rem + 1vw);
    padding-right: calc(1.5rem + 1vw);
}

.popup-modal-close {
    position: absolute;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 24px;
    width: 24px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    top: 18px;
    right: 18px;
    border: none;
    background-color: #FFFFFF;
}


.font-size-24{
    font-size: 24px;
}


/*===== mw-nav-tabs =========*/
.mw-offcanvas-tabs {
    box-shadow: 0 3px 5px rgba(0,0,0, .1) inset;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.mw-offcanvas-tabs .nav-item .nav-link {
    color: var(--pos-dark);
    font-size: 13px;
}

.mw-offcanvas-tabs .nav-item:not(:last-child) {
    border-right: 1px solid #cccccc;
}

.post-menu .mw-offcanvas-tabs .nav-item:not(:last-child) {
    border-right: none;
}

.mw-offcanvas-tabs .nav-item .nav-link.active {
    background-color: var(--pos-dark);
    color: #FFFFFF;
}

.covered-offconvas {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: auto;
    top: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 1;
    padding: 0 1rem 2rem 1rem;
}


.accordion-nav-style .accordion-toggler-item .accordion-link-group .accordion-link {
    font-size: 16px;
    color: var(--pos-dark);
    padding: .75rem .75rem;
}



.accordion-nav-style .accordion-toggler-item.active .accordion-link-group .accordion-link {
    color: var(--pos-dark);
    background-color: initial;
}


.accordion-nav-style .accordion-toggler-icon::after {
    content: '\f054';
    font-size: 16px;
}

.accordion-nav-style .accordion-toggler-item.active .accordion-toggler-icon::after {
    content: '\f107';
}

.accordion-nav-style .accordion-toggler-icon i {
    font-size: 18px;
}
.accordion-nav-style .accordion-sub-item {
    color: var(--pos-muted);
    font-size: 14px;
    margin-bottom: .75rem;
}


.mw-drawer-menu {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background-color: #FFFFFF;
}

.mw-drawer-menu-header, .drawer-menu-selector-group {
    padding: .75rem 1rem;
}
.mw-drawer-menu-body {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    overflow: auto;
    padding: .5rem 1rem;
}

.drawer-menu-post {
    display: none;
}
.post-menu .drawer-menu-pre {
    display: none;
}

.post-menu .drawer-menu-post {
    display: block;
}

.offcanvas-end {
    width: 480px;
}


@media screen and (min-width: 992px) {
    .bg-lg-white {
        background-color: #FFFFFF !important;
    }
    .desktop-rounded-sm {
        border-radius: .5rem;
    }
    .desktop-rounded-md {
        border-radius: .75rem;
    }
    .desktop-shadow-sm {
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    }
    .desktop-shadow-md {
        box-shadow: 0 .25rem .5rem rgba(0,0,0,.075) !important;
    }
}

@media screen and (max-width: 991px) {
    .mw-small {
        font-size: 12px;
    }
    .bg-lg-down-white {
        background: #FFFFFF;
    }

    .mw-rounded-sm {
        border-radius: .5rem;
    }
    .mw-shadow-sm {
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    }

    .mw-font-16 {
        font-size: 16px !important;
    }
    .mw-font-14 {
        font-size: 14px !important;
    }

    .mw-order-list-card {
        background-color: #FFFFFF;
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        -webkit-border-radius: 8px;
        border-radius: 8px;
    }

    .mw-order-list-card >* {
        order: 12;
    }

    .mw-order-list-card * {
        font-size: 12px;
    }

    .super-extra-small,
    .super-extra-small * {
        font-size: 10px !important;
    }

    .text-title-ellipsis {
        white-space: nowrap;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mw-ordering-0 { order: 0; }
    .mw-ordering-1 { order: 1; }
    .mw-ordering-2 { order: 2; }
    .mw-ordering-3 { order: 3; }
    .mw-ordering-4 { order: 4; }
    .mw-ordering-5 { order: 5; }
    .mw-ordering-6 { order: 6; }
    .mw-ordering-7 { order: 7; }
    .mw-ordering-8 { order: 8; }
    .mw-ordering-9 { order: 9; }
    .mw-ordering-10 { order: 10; }
    .mw-ordering-11 { order: 11; }
    .mw-ordering-12 { order: 12; }
}


/*========= quick-footer =============*/
.quick-footer-group {
    position: fixed;
    width: 100%;
    min-height: 60px;
    bottom: 0;
    z-index: 990;
}
@media screen and (min-width: 992px) {
    .quick-footer-group{
        display: none;
    }
}

.bg-white {
    background-color: #FFFFFF !important;
}

.quick-footer-group >* {
    margin-top: .5rem;
}
.quick-footer {
    background-color: #FFFFFF;
    padding-top: .5rem;
    padding-bottom: .5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}


.quick-footer-link {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    color: var(--pos-dark);
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: .25rem .35rem !important;
    min-width: 48px;
}

.quick-footer-nav-text {
    font-size: 11px;
    font-weight: 500;
    visibility: hidden;
}

.quick-footer-link:hover,
.quick-footer-link:focus,
.quick-footer-link:active,
.quick-footer-link.active {
    background-color: #f5f5f5;
    color: var(--pos-dark);
    font-weight: 600;
}
.quick-footer-link:hover .quick-footer-nav-text,
.quick-footer-link:focus .quick-footer-nav-text,
.quick-footer-link:active .quick-footer-nav-text,
.quick-footer-link.active .quick-footer-nav-text {
    visibility: visible;
}

.quick-footer-avatar {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #F5F5F5;
    overflow: hidden;
}

.quick-footer-avatar img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 991px) {
    .btn-md-down-sm {
        padding: 4px 1rem !important;
        font-size: 14px !important;
    }
}

@media screen and (min-width: 992px) {
    .border-lg {
        border: 1px solid #dddddd;
    }
}

.section-with-bg {
    position: relative;
    z-index: 1;
}

.section-bg-img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

@media screen and (max-width: 575px) {
    .section-bg-img {
        display: none;
    }

    .section-bg-img.section-mobile-bg {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .h-md-100 {
        height: 100% !important;
    }

    .border-md-bottom {
        border-bottom: 1px solid #dddddd;
    }
}

@media screen and (max-width: 767px) {
    .font-md-down-strong {
        font-weight: 600 !important;
    }

    .border-md-down-0 {
        border: none !important;
    }
}



@media screen and (max-width: 991px) {
    .track-order-item {
        background-color: #FFFFFF;
        padding: .75rem;
        border-radius: .5rem;
    }
}



/*.rating:not(:hover) label input ~.icon, .rating:hover label:hover input ~ .icon {*/
/*    color: #fdd0a5 !important;*/
/*}*/



.rating:not(:hover) label input:checked ~ .icon,
.rating:hover label:hover input ~ .icon {
    color: var(--pos-warning-alt) !important;
}


.details-price-group {
    display: flex;
    display: -webkit-flex;
}

.details-price-group >* {
    /*padding: 1rem;*/
}

.details-price-group-content {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: .5rem 1rem;
}



.details-price-group-content:not(.active) * {
    color: #888888;
}
.details-price-group-content.active {
    background-color: var(--pos-dark);
    -webkit-border-radius: 8px;
    border-radius: 8px;
}
.details-price-group-content.active * {
    color: #FFFFFF;
}
.details-price-group {
    box-shadow: 0 3px 5px rgba(0,0,0, .1) inset;
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFFFFF;
}
.details-price-group >* {
    flex-grow: 1;
}


@media screen and (max-width: 0px) {
    .details-price-group {
        box-shadow: 0 3px 5px rgba(0,0,0, .1) inset;
        border-radius: 8px;
        overflow: hidden;
        background-color: #FFFFFF;
    }

    .details-price-group >* {
        flex-grow: 1;
    }




    .details-price-group-content.active {
        background-color: var(--pos-dark);
        -webkit-border-radius: 8px;
        border-radius: 8px;
    }
    .details-price-group-content.active * {
        color: #FFFFFF;
    }
}
