/*!
Script: OneShop Single eCommerce - Laravel Website & Admin Panel
Author: Infotech Gravity
Support: infotechgravity@gmail.com
Version: 2.1
*/

@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');


.btn-primary {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary)
}

.btn-secondary {
    color: #fff;
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary)
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    box-shadow: none
}

.btn-outline-secondary {
    border-color: var(--bs-secondary) !important;
}

.modal {
    --bs-modal-zindex: 99999;
}

.item_quantity:disabled,
fieldset:disabled .item_quantity {
    border: none !important;
    border-color: transparent !important;
}

li,
ul {
    list-style: none
}

p {
    margin: 0;
    padding: 0;
}

.auth_form .submit-button-wrapper,
.ribbon span {
    text-align: center
}

#testimonial-1 .carousel-inner .item,
.bg,
.bg-img-dark,
.wrapper {
    overflow: hidden
}

.demo-header {
    background-color: #121212;
}

.top-header {
    background-color: var(--bs-primary);
}

.header-bar .navbar .navbar-toggler:focus,
:focus {
    box-shadow: none !important
}

a {
    text-decoration: none
}

body {
    /* font-family: Jost, sans-serif; */
    font-family: 'Montserrat', sans-serif;
    color: var(--viola_black);
    background-color: var(--pale_grey)
        /* var(--pale_grey) */
}

/***** Loader Start *****/
.loader {
    width: 21px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid #0000;
    border-right-color: #000;
    animation: loaderspin 1s infinite linear;
}

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: inherit;
    animation: inherit;
    animation-duration: 2s;
}

.loader:after {
    animation-duration: 4s;
}

@keyframes loaderspin {
    100% {
        transform: rotate(1turn)
    }
}

/***** Loader End *****/

:focus {
    outline: 0 !important
}

.text-justify {
    text-align: justify
}

.hw-50,
.take-away-img img {
    width: 50px;
    height: 50px
}

.hw-100 {
    width: 100px !important;
    height: 100px !important
}

.hw-70 {
    width: 70px !important;
    height: 70px !important
}

.w-410 {
    width: 410px !important
}

ul {
    margin: 0;
    padding: 0
}

input::placeholder {
    font-size: 14px
}

.direction-ltr {
    direction: ltr
}

.direction-rtl {
    direction: rtl
}

.justify-items-end {
    justify-items: end !important
}

.justify-items-center {
    justify-items: center !important
}

.fs-7 {
    font-size: 14px !important
}

.fs-8 {
    font-size: 12px !important
}

.fw-600 {
    font-weight: 600 !important
}

.fw-500 {
    font-weight: 500 !important
}

.line-4 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.line-3 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.line-2 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line-1 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.breadcrumb {
    margin-bottom: 0;
    align-items: center
}

.breadcrumb-sec {
    padding: 2rem 0;
    min-height: 130px;
    display: flex;
    align-items: center;
    background-color: var(--bg-section-gray);
}

.breadcrumb-sec-content h2 {
    font-size: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px
}

.breadcrumb-divider {
    --bs-breadcrumb-divider: '/'
}

.breadcrumb-item-rtl+.breadcrumb-item-rtl::before {
    float: right;
    padding-left: .5rem;
    color: #6c757d
}

/* breadcrumb font size */
.breadcrumb-item {
    font-size: 14px;
}

.auth_form a:hover,
.blog-wrapper .card .blog-author a:hover,
.blog-wrapper .card .card-title:hover,
.carousel-control-next span,
.cart-view .delivery-address a:hover,
.header-bar .header-top-area .header-top-right ul li i,
.header-bar .navbar .navbar-toggler span,
.pagination .page-link,
.slider-area .carousel .carousel-control-prev {
    color: var(--bs-primary)
}

.heart-icon:hover {
    color: var(--bs-white);
}

.pagination .page-item.active .page-link {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff
}

:root {
    --bs-primary: #fc6736;
    --bs-secondary: #000000;
    --viola_black: #2D2942;
    --december_sky: #D1D4D7;
    --city_lights: #DDE5E9;
    --pale_grey: #FAFAFC;
    --blue_fog: #9CADBC;
    --green: #03A103;
    --light_primary: #fde1c1;
    --light-dark: #767676;
    --bs-primary-light: #fc673629;
    --bg-section-gray: rgb(243, 243, 243);
    --bs-primary-rgb: color-mix(in srgb, var(--bs-primary), transparent 80%)
}

.bg-primary-rgb {
    background-color: var(--bs-primary-rgb) !important;
}

.light-primary {
    background-color: var(--light_primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-section-gray {
    background-color: var(--bg-section-gray) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}

.bg-none {
    background-color: transparent;
}

.light-dark {
    color: var(--light-dark);
}

.grey_color {
    color: var(--december_sky)
}

.border-green {
    border: 1px solid var(--green) !important
}

.dark_color,
.header-bar .header-top-area .header-top-left ul li a {
    color: var(--viola_black)
}

.green_color {
    color: var(--green)
}

.secondary_color {
    color: var(--secondary) !important
}

.bg_green_color {
    background-color: var(--green) !important
}

.border-radius {
    border-radius: .75rem
}

.bg {
    background: url(../images/bg1.jpg) center center/cover no-repeat;
    max-width: 100%;
    height: 100vh
}

.bg-img-dark {
    background-color: rgba(0, 0, 0, .2);
    max-width: 100%
}

.cursor-pointer {
    cursor: pointer
}

.border-dashed {
    border: 1px dashed #e5e5e5 !important
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary);
}

.heart-icon {
    color: #fff
}

.header-bar .navbar-nav .active,
.header-bar .navbar-nav a:hover,
.heart-red {
    color: var(--bs-primary) !important
}

.ribbon {
    position: absolute;
    left: -3px;
    bottom: 150px;
    z-index: 1;
    width: 93px;
    height: 93px;
    text-align: right
}

.ribbon span {
    font-size: .6rem;
    color: var(--bs-white);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 32px;
    width: 125px;
    display: block;
    background: #79a70a;
    background: linear-gradient(#9bc90d 0, #79a70a 100%);
    box-shadow: 0 3px 10px -5px rgb(0 0 0);
    position: absolute;
    top: 17px;
    right: -29px
}

.ribbon span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #79a70a;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #79a70a
}

.auth_form_container {
    flex-direction: column;
    justify-content: center;
    overflow: auto;
    display: flex;
    align-items: center;
}

.auth_form_container::-webkit-scrollbar {
    background-color: transparent;
}

.auth_form_inner {
    display: block;
    height: auto;
    flex-direction: column
}

.auth_form {
    padding: 2rem;
    background: rgba(0, 0, 0, .1);
    backdrop-filter: blur(0.2rem);
    border-radius: 12px;
    box-shadow: 0 0 10px #000;
    margin: auto
}

.auth_form .bottom-line {
    border-bottom: solid 1px var(--bs-primary)
}

.auth_form .form-control::placeholder {
    color: #aeb4b9;
    font-weight: 500;
    opacity: 1
}

.auth_form .form-control:-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500
}

.auth_form .form-control::-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500
}

.auth_form .form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .07), 0 0 8px var(--bs-primary)
}

.auth_form .submit-button-wrapper input {
    border: none;
    border-radius: 4px;
    background-color: var(--bs-primary);
    color: #fff;
    text-transform: uppercase;
    padding: 10px 60px;
    font-weight: 500;
    letter-spacing: 2px
}

.auth_form .submit-button-wrapper input:hover {
    background-color: transparent;
}


#preload,
.auth_form .card .rounded_circle {
    background-color: var(--bs-white)
}

.or_section {
    display: flex;
    align-items: center;
    margin: 1rem
}

.line {
    flex: 1;
    border-bottom: 1px dashed #000;
}

.or_section p {
    padding: 0 1rem;
    font-size: 12px
}

.auth_form .card {
    border: 1px solid var(--secondary);
    border-radius: 10px
}

.auth_form .card .rounded_circle {
    padding: .7rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%
}

.auth_form .card .content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: .5rem
}

.auth_form .card .card-body .rtl input {
    margin-left: -1px !important;
    border: none !important;
    border-radius: 3px 0 0 3px !important
}

.auth_form .card .card-body .rtl span {
    border-radius: 0 3px 3px 0 !important
}

.auth_form button:focus {
    box-shadow: none
}

.login-form-logo {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.brands-logo {
    height: 20px;
    width: 20px;
}


.header-bar {
    background-color: rgb(255, 255, 255);
    margin: 0 auto;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s
}

.sticky-top,
.header-dark-stick {
    padding: 10px 0;
    border-bottom: 2px solid var(--bs-primary);
    background-color: #fff;
}

.header-dark-stick {
    background: rgba(0, 0, 0, .8);
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s
}

.header-bar .header-top-area {
    padding: 4px 0;
    background-color: #fff;
    border-bottom: 1px solid #dedede
}

.header-bar .header-top-area .header-top-left ul li {
    display: inline-block;
    text-transform: lowercase;
    font-size: 13px;
    font-weight: 500;
    border-right: 1px solid #dedede;
    padding-right: 15px;
    margin-right: 15px
}

.header-bar .header-top-area .header-top-left ul li i {
    color: var(--bs-primary);
    font-size: 14px;
    padding-right: 5px
}

.header-bar .header-top-area .header-top-right ul li {
    display: inline;
    margin-left: 15px
}

.logo-area {
    margin-top: -8px
}

.header-bar .img-resposive,
.footer .left-side img {
    display: block;
    height: 50px
}

.header-bar .navbar .navbar-toggler {
    border: 1px solid var(--bs-primary)
}

.header-bar .navbar-nav a {
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 15px
}

/* .newsletter {
    background-color: var(--bg-section-gray);
} */

.blog-wrapper .blog-heading h2,
.category h2,
.menu-heading h2,
.testimonial-heading h2,
.newsletter-heading h2 {
    font-weight: 600 !important;
    font-size: 2rem;
}

.menu .menu-heading p,
.category .title-text p,
.blog-wrapper .blog-heading p {
    font-weight: 400;
    color: rgba(43, 43, 43, 0.7);
}


.header-search.search-form {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 10;
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 16px;
    height: 40px;
    width: 230px;
    background: var(--bs-white);
    border: 1px solid var(--city_lights);
    padding: 5px 18px 5px 10px;
    -webkit-box-shadow: 0 0 .5px -1.5px rgb(153 157 163 / 40%);
    -moz-box-shadow: 0 0 .5px -1.5px rgba(153, 157, 163, .4);
    box-shadow: 0 0 .5px -1.5px rgb(153 157 163 / 40%)
}

.header-search a i {
    color: rgb(0, 0, 0);
    -webkit-transition: .3s ease-out;
    -moz-transition: .3s ease-out;
    -ms-transition: .3s ease-out;
    -o-transition: .3s ease-out;
    transition: .3s ease-out
}

.banner1 .post-slide .post-img img,
.cat img {
    transform: scale(1, 1);
    transition: transform .2s linear
}

.quality,
.quality .quality-wrapper .quality-icon {
    transition: .3s
}

.header-search .search-button {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 30px
}

.header-cart-area {
    margin-top: 4px;
    text-align: right
}

.dropdown-toggle::after {
    margin-left: .5em;
    margin-right: .5em
}

.cart-area {
    position: relative;
    display: block
}

.cart-badge,
.navbar .offcanvas-body .sidebar-login .dropup ul,
.slider-area::before {
    position: absolute
}

.cart-badge {
    top: -12px;
    right: -12px;
    background-color: var(--bs-primary);
    border-radius: 50%;
    font-size: 12px;
    padding: 1px 7px;
    color: #fff;
    width: 20px;
    height: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .nav-sidebar {
    background-color: #fff;
    box-shadow: 0 0 10px 5px var(--light_primary)
}

.navbar .offcanvas-end,
.navbar .offcanvas-start {
    width: 300px
}

.navbar .offcanvas-body li .dropdown-menu-custom,
.navbar-nav li .dropdown-menu-custom {
    height: 170px;
    overflow-y: scroll;
    position: static
}

.dropdown-menu.rtl {
    text-align: right !important
}

/* for theme change dropdown */
.dropdown-menu.theme-menu.rtl {
    left: unset !important;
    right: 0;
}

.navbar .offcanvas-body .sidebar-login {
    position: absolute;
    bottom: 0;
    width: 267px
}

.avatar-upload .avatar-edit input,
.navbar-container .hamburger-lines {
    display: none
}

.header-bar .dropdown-item.active,
.header-bar .dropdown-item:active {
    color: var(--bs-white);
    text-decoration: none;
    background-color: transparent
}

#style-3::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 10px;
    background-color: #f5f5f5
}

#style-3::-webkit-scrollbar {
    cursor: pointer;
    width: 3px;
    height: 2px !important;
    border-radius: 10px;
    background-color: #f5f5f5
}

#style-3::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--bs-primary)
}

.new-address label,
.slider-area {
    position: relative
}

/* .slider-area::before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, .6);
    height: 100%;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0
} */

.slider-area .carousel .carousel-inner .carousel-item img {
    /* height: 100vh !important; */
    width: 100vw;
    object-fit: cover;
}

.slider-area .carousel .carousel-inner .carousel-item .carousel-caption {
    z-index: 3;
}

.slider-area .carousel .carousel-inner .carousel-item .carousel-caption h1 {
    font-weight: 500;
    font-size: 2rem;
    line-height: 130%;
    color: var(--bs-primary)
}

.slider-area .carousel .carousel-inner .carousel-item .carousel-caption p {
    font-style: normal;
    font-weight: 600;
    font-size: 3rem;
    line-height: 130%
}


.banner1,
.blog-wrapper,
.contact-us,
.theme-3-banner1,
.theme-3-blog-wrapper {
    margin: 75px 0
}

.banner1 .post-slide {
    /* margin: 0 5px; */
    border-radius: 15px;
    padding: 0px 1px;
}

.banner1 .post-slide .post-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px
}

.banner1 .post-slide .post-img img {
    width: 100%;
    height: auto
}

.banner1 .post-slide:hover .post-img img {
    transform: scale(1.1, 1.1)
}

.menu .card {
    border: 0px;
}

.category h2 {
    color: var(--viola_black)
}

.category .owl-stage-outer .owl-stage .owl-item {
    display: flex;
    justify-content: center;
    padding: 0 10px
}

.cat {
    background-color: transparent;
    width: 125px;
    height: 125px;
    padding: 5px;
}

.theme-1-category .cat {
    width: 190px;
    height: 220px;
    border-radius: 5px;
    padding: 0px;
    overflow: hidden !important;
}

.theme-2-category .cat {
    width: 190px;
    height: 220px;
    padding: 0px;
    overflow: hidden !important;
}

.theme-2-category .cat img {
    width: 190px;
    height: 220px;
    transform: scale(1);
    transition: all 0.5s;
    overflow: hidden !important;
}

.text-cat {
    bottom: 10px;
}

.theme-2-cat .text-cat p {
    background-color: #fff;
    color: var(--bs-secondary);
    transition: all 0.5s;
}

.theme-2-cat:hover .text-cat p {
    background-color: var(--bs-secondary);
    color: #fff;
    transition: all 0.5s;
}

.theme-1-cat p {
    border-radius: 5px;
}

.theme-1-category .cat img {
    width: 190px;
    height: 220px;
    transform: scale(1);
    transition: all 0.5s;
    overflow: hidden !important;
}

.theme-1-category:hover .cat img {
    transform: scale3d(1.1, 1.1, 1);
}

.theme-2-category:hover .cat img {
    transform: scale3d(1.1, 1.1, 1);
}

.cat img {
    width: 100%;
    height: -webkit-fill-available;
    border-radius: 5px;
}

/* Container for the image and overlay */
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* Adjust as needed */
}

/* Overlay styles */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.528);
    /* Adjust transparency here */
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

/* ========== theme-3 start ========*/
/* .cat-2 {
    background-color: transparent;
    width: 125px;
    height: 125px;
    padding: 5px;
}

.cat-2 img {
    width: 100%;
    height: -webkit-fill-available;
} */

.theme-3-category .image-container:hover .cat img {
    transform: scale3d(1.1, 1.1, 1);
}


.theme-3-category .cat {
    width: 190px;
    height: 220px;
    padding: 0px;
    overflow: hidden !important;
}

.theme-3-category .cat img {
    width: 190px;
    height: 220px;
    transform: scale(1);
    transition: all 0.5s;
    overflow: hidden !important;
}

/* ========== theme-3 end ========*/

.menu .card {
    overflow: hidden;
}


.menu-hover .card .card-option {
    position: absolute;
    bottom: 0%;
    left: 0%;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    gap: calc(4px + (7 - 4) * ((100vw - 320px) / (1920 - 320)));
    transition: .4s;
}

.menu-hover .card .card-option {
    position: absolute;
    bottom: 0%;
    left: 0%;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    gap: calc(4px + (7 - 4) * ((100vw - 320px) / (1920 - 320)));
    transition: .4s;
}

.menu-hover .card .card-option::after {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #969696;
    opacity: 0.2;
    z-index: -1;
    padding: 10px 100px;
}

.menu-hover .card:hover .card-option,
.menu-hover .card:hover .card-option-two,
.menu-hover .card:hover .card-option-four {
    opacity: 1;
    transition: .3s;
}

.menu-hover .card .card-option li i,
.menu-hover .card .card-option-two li i,
.menu-hover .card .card-option-four li i {
    background-color: #e5e5e5;
    color: #000;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: .4s;
}

.menu-hover .card .card-option li i:hover,
.menu-hover .card .card-option-two li i:hover,
.menu-hover .card .card-option-three li i:hover,
.menu-hover .card .card-option-four li i:hover {
    background-color: var(--bs-primary);
    color: #fff;
    transition: .4s;
}



/* ============== todays menu start ============== */

.menu-hover .card .card-option-two li {
    margin: 12px 10px;
}

.menu-hover .card .card-option-two {
    position: absolute;
    top: 0%;
    right: 0%;
    height: 145px;
    width: 50px;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.menu-hover .card .card-option-two::after {
    position: absolute;
    content: "";
    inset: 0;
    background-color: transparent;
    opacity: 0.2;
    z-index: -1;
}



.menu-hover .card .card-option-three li {
    margin: 5px;
}

.menu-hover .card .card-option-three li i {
    background-color: #e5e5e5;
    color: #000;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: .4s;
}

.menu-hover .card .card-image-two img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}




/* ============== todays menu end ============== */


.menu-hover .card .card-option-four {
    position: absolute;
    bottom: 0%;
    left: 0%;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    gap: calc(4px + (7 - 4) * ((100vw - 320px) / (1920 - 320)));
    transition: .4s;
}

.menu-hover .card .card-option-four::after {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #000000;
    opacity: 0.4;
    z-index: -1;
    padding: 10px 100px;
}



.banner2 img,
.menu .card .item-card-title {
    width: -webkit-fill-available;
    height: auto;
}

.menu,
.theme-3-menu {
    margin: 75px 0px
}

.blog-wrapper .blog-heading h2,
.menu-heading h2 {
    color: var(--viola_black);
    text-transform: capitalize
}

.blog-image {
    height: 240px;
    object-fit: cover;
}

.menu .card .card-image .card-img-top {
    max-width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    opacity: 1;
    transition: .3s;
}

.text-overflow {
    width: 260px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block
}

.text-overflow+a {
    display: inline-block;
    vertical-align: top;
    margin-top: -1px
}

.menu .card .img-overlay {
    position: absolute;
    top: 5%;
    right: 5%
}

.menu .card .card-body .cat-span {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu .card .card-body .cat-span span {
    font-size: 12px;
    font-weight: 400;
    color: var(--light-dark);

}

.menu .card .item-card-title {
    color: var(--viola_black);
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.menu .card .item-card-footer {
    padding: .0rem 1rem 1rem 1rem;
    background-color: transparent
}

.menu .card .item-card-footer span {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--viola_black)
}

.modalitemdetails .item-type-image {
    margin-top: 6px !important
}

.modalitemdetails .item-details .form-check span {
    font-size: 12px
}

.modalitemdetails .item-addons-list .form-check-label,
.modalitemdetails .item-varition-list .form-check-label {
    font-size: 14px
}

.modalitemdetails .item-addons-list .form-check,
.modalitemdetails .item-varition-list .form-check {
    margin: 5px 10px
}

.item-details .item-content .item-variation-list input:checked,
.modalitemdetails .item-details .form-check-input:checked,
.modalitemdetails .item-details .item-varition-list .form-check-input:checked {
    background-color: #121212;
    border-color: #121212;
}

.item-details .item-content .item-add-cart .btn:focus,
.item-details .item-content .item-variation-list input:focus,
.modalitemdetails .item-details .form-check-input:focus,
.modalitemdetails .item-details .item-varition-list .form-check-input:focus {
    border-color: rgb(3 161 3 / 20%);
    box-shadow: 0 0 0 .25rem rgb(3 161 3 / 20%)
}

.modalitemdetails .btn:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .07), 0 0 8px var(--bs-success)
}

.reservation,
.testimonials {
    max-width: 100%;
    overflow: hidden
}

.testimonial .testimonial-1 .card-text,
.testimonial .testimonial-1 .card-text-one {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.testimonial .testimonial-1 .name {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.theme-3-testimonial .item {
    border: 1px solid transparent;
}

.theme-3-testimonial .item:hover {
    border: 1px solid #000;
}

.review-star i {
    color: #ffc344;
    font-size: 14px
}

.owl-carousel .owl-stage {
    display: flex;
    height: 100%;
}

.app_download {
    max-width: 100%;
    overflow: hidden
}

.app_download .app_content {
    padding: 2rem
}

.app_download .app_content h2 {
    color: var(--viola_black);
    font-size: 5.5rem;
    line-height: 5.5rem;
    margin-bottom: 2rem
}

.app_download .app_content span {
    font-size: 16px;
}

.reservation-content {
    margin: 100px 0 150px
}

.reservation h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 64px;
    line-height: 89px;
    color: var(--bs-primary)
}

.reservation p {
    font-weight: 600;
    font-size: 64px;
    line-height: 96px;
    color: var(--viola_black)
}

#imagepreview-two {
    width: 60px;
    height: 60px;
}

.contact-us .contact-content .left-side .left-side-detail {
    display: grid;
}

.contact-us .contact-content .left-side i {
    color: var(--bs-primary);
}

.contact-us .contact-content .left-side h2 {
    color: var(--viola_black);
}

.contact-us .contact-content .left-side a {
    color: var(--viola_black) !important;
    font-size: 14px
}

.contact-us .contact-content .left-side p {
    color: var(--viola_black);
    font-size: 14px;
    margin: 0
}

.contact-us .contact-content .right-side form p {
    line-height: 130%;
    color: var(--viola_black)
}

.contact-us .contact-content .right-side form .form-control,
.product-quantity input {
    background-color: #fff
}

.contact-us .contact-content .right-side form span {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px
}

.contact-us .contact-content .right-side form {
    border-radius: 10px;
    background-color: var(--bg-section-gray);
    border: 1px solid rgb(227, 227, 227);
}

.contact-us .contact-content .left-side {
    border: 1px solid rgb(227, 227, 227);
    border-radius: 10px;
}

.blog-details .card-text,
.blog-wrapper .card .card-text {
    font-size: 12px;
    color: var(--bs-secondary);
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* cart page bill detail */
.cart-view .summary .bill-details span {
    font-size: 14px;
    color: var(--bs-secondary);
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-details .card .blog-author span,
.blog-details .card .blog-date span,
.blog-wrapper .card .blog-author span,
.blog-wrapper .card .blog-date span {
    font-size: 12px;
    color: var(--bs-secondary);
    margin-bottom: 8px
}

.blog-wrapper .card .blog-author,
.blog-wrapper .card .blog-date {
    margin-bottom: 8px
}

.blog-details .card {
    border-radius: 1.25rem
}

.blog-details .card .card-img-top {
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
}


.quality {
    padding: 15px 15px;
    border: 1px solid;
}

.theme-3-service .quality:hover {
    border: 1px solid #000;
}

.theme-3-category .category-wrapper {
    border: 1px solid transparent;

}

.quality .quality-wrapper .quality-icon i {
    font-size: 35px;
    color: var(--bs-primary)
}

.quality .quality-wrapper .quality-content h3 {
    color: #262834;
    font-size: 18px;
    font-weight: 700
}

.quality .quality-wrapper .quality-content p {
    color: #000;
    font-size: 12px;
    margin: 0
}

.footer {
    background-color: var(--bg-section-gray);
}

.footer .border-bottom-primary {
    border-bottom: 1px solid var(--light_primary)
}

.footer .left-side h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

footer .footer-py {
    padding: 50px 0px !important;
}

.footer .right-side h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 15px
}

.footer .right-side ul li {
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
}

.sub-cat-tab {
    text-align: center;
    border-radius: .5rem
}

.sub-cat-tab .nav-pills .nav-link {
    border-radius: .5rem;
    margin: 5px;
    color: var(--dark);
    background-color: var(--bs-white)
}

.sub-cat-tab .nav-pills .active-cat:first-child {
    border: 1px solid #228b22
}

.sub-cat-tab .nav-pills .active-cat:nth-child(2) {
    border: 1px solid red
}

/* .menu-section-header {
    padding: 1.5rem;
    border-radius: .5rem;
    margin-bottom: 3rem;
    background-color: var(--bs-white);
    box-shadow: 0 2px 22px rgb(0 0 0 / 10%)
} */

.menu-section .filter-sidebar a {
    padding: .5rem 1rem;
    border-radius: .5rem;
    -webkit-transition: .3s;
    transition: .3s;
    border: 1px solid #ccc;
    color: var(--bs-primary);
    margin-right: 10px;
    min-width: max-content;
    font-weight: 500;
}

.menu-section .sidebar-wrap {
    padding: 1rem 0;
    display: flex;
    overflow: auto
}

.menu-section .sidebar-wrap .active {
    border: 1px solid var(--bs-primary);
    color: #fff;
    background-color: var(--bs-primary)
}

.item-details .item-img-cover {
    overflow: hidden;
    height: auto;
    margin-bottom: 20px;
    color: #e5e5e5
}

.item-details .item-img-cover .item-img img {
    width: 100%;
    object-fit: contain;
    object-position: center
}

.small-img {
    height: 100px;
    margin-top: 10px;
    position: relative
}

.small-img .icon-left,
.small-img .icon-right {
    width: 12px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0
}

.small-img .icon-left {
    transform: rotate(180deg)
}

.small-img .icon-right {
    right: 0
}

.small-img .icon-left:hover,
.small-img .icon-right:hover {
    opacity: .5
}

.small-container {
    width: 480px;
    height: 100px;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto
}

.small-container div {
    width: 800%;
    position: relative
}

.small-container .show-small-img {
    width: 90px;
    height: 90px;
    margin-right: 6px;
    cursor: pointer;
    float: left;
    border-radius: 10px
}

.small-container .show-small-img:last-of-type {
    margin-right: 0
}

.item-details .item-content .item-heading img {
    width: 35px;
    margin-top: 10px;
    margin-right: 5px
}

.item-details .item-content .item-heading .item-title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: var(--viola_black)
}

.item-content .wishlist .wishlist-btn {
    text-align: center;
    border-radius: 6px;
    background-color: #f7f4ef;
    color: var(--bs-gray);
    align-items: center;
}

.btn-success:hover {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}


.item-content .wishlist .heart-red {
    border: 1px solid var(--light_primary) !important
}

.item-details .item-content .item-price {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    color: var(--bs-primary)
}

.item-details .item-content .item-detail-wrapper {
    max-height: 340px;
    overflow-y: auto
}

.product-quantity {
    display: flex;
    align-items: center;
    justify-content: center
}

.product-quantity .quantity {
    border: 1px solid var(--viola_black);
    border-radius: 19px;
    flex-grow: 0;
    overflow: hidden;
    position: relative;
    height: 38px;
    width: auto
}

.product-quantity .quantity input {
    border: none;
    width: 40px
}

.product-quantity .quantity button {
    padding: 0 15px
}

.product-quantity button {
    background: 0 0;
    border: none;
    padding: 0
}

.item-details .item-description h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--viola_black)
}

.item-details .item-description p {
    color: var(--bs-secondary);
    font-size: 14px
}

.cart-view .delivery-address,
/* .cart-view .payment-option, */
.cart-view .promocode,
.checkout-view,
.order-list,
.special-instruction,
.summary {
    border: 1px solid #dedede;
    background: #fff;
    padding: 25px;
    border-radius: 6px
}

.cart-view .order-list .item-img img {
    width: 70px;
    height: 70px;
    border-radius: .25rem;
    object-fit: cover;
    object-position: center;
}

.cart-view .order-list .item-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px
}

.cart-view .order-list .item-addons span {
    font-size: 13px;
    font-weight: 400
}

.tbl_cart_product {
    display: flex;
    align-items: center;
    width: 100%;
}

.item-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #121212;
    border-radius: 5px;
    width: 80px
}

.item-quantity .item-quantity-minus {
    color: #121212;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 16px;
    cursor: pointer
}

.item-quantity .item-quantity-plus {
    color: #121212;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 16px;
    cursor: pointer
}

.item-quantity input {
    width: 30px;
    vertical-align: middle;
    text-align: center;
    outline: 0;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    background: 0 0
}

.cart-view .item-price {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: end;
    color: #000;
}

.cart-view .summary h2,
.checkout-view .heading h2,
.payment-option .heading h2 {
    font-size: 18px;
    text-transform: capitalize;
    padding-bottom: .5rem;
    margin-bottom: 0;
    font-weight: 600
}



.cart-view .summary .bill-details {
    padding: 0.5rem 0
}

.cart-view .delivery-address h6,
.cart-view .promocode label,
.cart-view .special-instruction label {
    text-transform: capitalize;
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    color: var(--viola_black)
}

.cart-view .summary .bill-details p {
    margin: 0;
    padding: 0;
    font-weight: 600;
    color: var(--viola_black);
    font-size: 14px;
}

.cart-view .summary .bill-total span {
    font-size: 15px;
    font-weight: 700;
    color: var(--bs-secondary)
}

.cart-view .promocode a {
    color: var(--bs-primary);
    font-size: 14px;
    font-weight: 500
}

.cart-view .delivery-address a {
    color: var(--viola_black);
    font-size: 14px
}

.order-option {
    display: flex;
    justify-content: center
}

.order-option input,
.payment-option input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    opacity: 0;
    z-index: -1
}

.address-list input[type=radio]:checked~.address-card,
.order-option label input[type=radio]:checked~.home-delivery-img,
.payment-option label input[type=radio]:checked~.payment-gateway {
    border: 1px solid var(--bs-primary)
}

.home-delivery-img,
.take-away-img {
    width: 150px;
    display: grid;
    justify-items: center;
    cursor: pointer;
    text-align: center;
    padding: 20px 0;
    margin: 0 20px;
    border-radius: 8px;
    user-select: none;
    background-color: var(--bs-white);
    box-shadow: 0 0 10px rgb(0 0 0 / 20%)
}

.home-delivery-img img {
    width: 60px;
    height: 60px
}

.home-delivery-img span,
.take-away-img span {
    color: var(--viola_black)
}

.cart-view .checkout-btn a:focus,
.cart-view .continue-btn button:focus,
.checkout-view .address-card .address .btn:focus {
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .07), 0 0 8px var(--green)
}

.address-list {
    max-height: 400px;
    overflow-y: auto !important;
}

.payment-option {
    position: relative;
    display: grid
}

.address-map {
    width: 100%;
    height: 300px
}

.new-address label .save-as span {
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    color: #121212;
    cursor: pointer;
}

.new-address label input[type=radio]:checked~.save-as span {
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
}

.checkout-view .heading span {
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    color: var(--blue_fog)
}

.address-list .address-card {
    display: flex;
    border: 1px solid #e5e5e5;
    padding: 1rem 0;
    border-radius: 6px;
    /* margin: 5px 0 */
}

.address-list .address-card .address-icon {
    font-size: 20px;
    color: var(--viola_black);
    text-align: center;
    padding: 0 .7rem
}

.address-list .address-card .address h4 {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
    color: var(--viola_black);
    line-height: 1.18;
    text-transform: capitalize
}

.address-list .address-card .address p {
    font-size: 12px;
    color: var(--blue_fog);
    margin-bottom: 8px;
    font-weight: 300;
    line-height: 16px;
    height: px;
    overflow: hidden
}

.address-list .address-card .address .delivery-time {
    font-size: 14px;
    color: var(--viola_black);
    font-weight: 500;
    margin: 10px 0 17px
}

.payment-option .payment-gateway {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    color: var(--viola_black);
    cursor: pointer;
}

.payment-option .payment-gateway img {
    margin-right: .5rem;
    width: 32px;
    height: 32px
}

.reservation-area form {
    background-color: var(--bs-white);
    margin: 50px 0;
    padding: 80px 70px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .07), 0 0 8px var(--bs-gray);
    border-radius: 1rem
}

.reservation-area form p {
    color: var(--viola_black);
    font-size: 32px;
    font-weight: 500;
    border-bottom: 1px solid #ccc
}

.reservation-area form label {
    color: var(--viola_black);
    text-transform: capitalize
}

#promocodemodal .modal-body {
    background: var(--december_sky)
}

.coupon .right-side {
    border-left: 1px dashed #ddd;
    width: 40% !important;
    position: relative
}

.user-content-wrapper,
.user-sidebar {
    background-color: var(--bs-white);
    border-radius: .375rem;
    padding: 1.5rem;
    border: 1px solid #dedede;
    width: -webkit-fill-available
}

.order-status-card.border-warning,
.order-status-card.border-green,
.order-status-card.border-danger {
    background-color: #fff;
    border: 0px !important;
}

.order-status-card h5 {
    color: #000;
    background-color: #fff;
    border: 1px solid;
    width: 25px;
    font-size: 13px !important;
    font-weight: 600 !important;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-status-card.border-warning h5,
.order-status-card.border-green h5,
.order-status-card.border-danger h5 {
    color: #fff;
    border: 1px solid #000;
    background-color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-sidebar li a {
    padding: .7rem;
    display: flex;
    align-items: center;
    border-radius: 8px;
    background-color: #f3f3f3;
    color: var(--viola_black)
}

.user-sidebar .active,
.user-sidebar li a:hover {
    background-color: var(--bs-secondary);
    color: #f5f5f5
}

.user-content-wrapper .title {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 24px;
    color: var(--viola_black);
}

.user-content-wrapper .order-status-card {
    color: var(--viola_black);
    border: 1px solid #3636362e !important;
    padding: 0.6rem;
    border-radius: .375rem;
    display: flex;
}

.user-content-wrapper .order-status-card .icon {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center
}

.bg-light-warning {
    background-color: rgba(255, 193, 7, .3);
    color: var(--bs-warning)
}

.bg-light-green {
    background-color: rgba(3, 161, 3, .3);
    color: var(--green)
}

.bg-light-danger {
    background-color: rgba(220, 53, 69, .3);
    color: var(--bs-danger)
}

.bg-light-info {
    background-color: rgba(13, 202, 240, .3);
    color: var(--bs-info)
}

.user-content-wrapper .order-status-card .status-card-content p {
    font-size: 16px;
    margin-bottom: 0
}

.avatar-upload {
    position: relative;
    max-width: 120px
}

.avatar-upload .avatar-edit {
    position: absolute;
    left: 80%;
    z-index: 1;
    bottom: 10px
}

.avatar-upload .avatar-edit-rtl {
    position: absolute;
    right: 80%;
    left: auto;
    z-index: 1;
    bottom: 0
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: var(--bs-white);
    border: 1px solid transparent;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .12);
    cursor: pointer;
    font-weight: 400;
    transition: .2s ease-in-out
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6
}

.avatar-upload .avatar-edit input+label {
    color: #757575;
    align-items: center;
    justify-content: center;
    display: flex;
}

.avatar-upload .avatar-preview {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 100%;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 25%)
}

.avatar-upload .avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 100%
}

#imagepreview {
    width: 120px;
    height: 120px
}

.favouritelist tr td {
    padding: 10px;
    border: 1px solid #dedede;
    vertical-align: middle
}

.favouritelist .item-image {
    width: 70px;
    height: auto
}

.favouritelist .item-title {
    display: flex;
    justify-content: space-between;
}

.progress-barrr {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    margin-bottom: 2rem
}

.progress-step {
    text-align: center;
    position: relative;
    z-index: 1
}

.progress-step:after,
.progress-step:before {
    background-color: var(--bs-primary);
    content: "";
    height: 2px;
    position: absolute;
    z-index: -1;
    top: 15px
}

.progress-step:after {
    left: 50%;
    width: 100%
}

.progress-step-rtl:after {
    left: -50%;
    width: 100%
}

.progress-step .step-count,
.progress-step.is-active~.progress-step:not(.is-active) .step-count {
    background-color: var(--bs-white);
    height: 35px;
    width: 35px;
    margin: 0 auto;
    line-height: 35px;
    z-index: 100;
    font-size: 1rem;
    font-weight: 500
}

.progress-step:last-of-type.is-active:after {
    background-color: var(--bs-primary)
}

.progress-step:last-of-type:after {
    left: 50%;
    width: 50%
}

.progress-step-rtl:last-of-type:after {
    left: 0;
    width: 50%
}

.progress-step .step-count {
    border-radius: 50%;
    color: var(--bs-primary);
    border: 1px solid var(--bs-primary)
}

.progress-step.is-active~.progress-step:not(.is-active) .step-count {
    border-radius: 50%;
    color: var(--bs-gray);
    border: 1px solid var(--bs-gray)
}

/* .progress-step .step-count i {
    padding: 8px
} */

.progress-step.is-active .step-description {
    font-weight: 500
}

.progress-step.is-active:after,
.progress-step.is-active~.progress-step:after {
    background-color: var(--bs-gray)
}

.progress-step.is-active~.progress-step .step-count {
    background-color: var(--bs-white)
}

.step-description {
    font-size: .8rem
}

@media screen and (min-width:640px) {
    .progress-step:first-of-type:before {
        right: 50%;
        width: 50%
    }

    .progress-step-rtl:first-of-type:before {
        right: 0;
        width: 50%
    }
}

@media screen and (max-width:640px) {

    .progress-step:first-of-type:before,
    .progress-step:last-of-type:after {
        display: none !important
    }
}

#galleryimg {
    line-height: 0;
    -webkit-column-count: 5;
    -webkit-column-gap: 0px;
    -moz-column-count: 5;
    -moz-column-gap: 0px;
    column-count: 5;
    column-gap: 0
}

#galleryimg img {
    padding: 5px;
    border-radius: 1rem;
    width: 100% !important;
    height: auto !important;
    cursor: pointer;
}

.text-order-placed {
    color: #8e8e93
}

.text-order-preparing {
    color: #ff9500
}

.text-order-ready {
    color: #30b0c7
}

.text-order-ontheway,
.text-order-waitingpickup {
    color: #007aff
}

.text-order-completed {
    color: #34c759
}

.text-order-cancelled {
    color: #ff3b30
}

#payment-form #card-element .__PrivateStripeElement iframe {
    height: 50px;
    width: 100% !important;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    display: block;
    padding: 15px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3)
}

.cms-section img {
    width: -webkit-fill-available !important;
    object-fit: contain;
    object-position: center;
    margin-bottom: 1rem
}

.js-cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%);
    padding: 10px;
    z-index: 99999;
    background-color: #000;
    color: #fff;
    border: solid 2px #000;
    width: 100%;
    max-width: 100%;
}

.cookie-consent__message {
    text-align: start;
}

@media only screen and (min-width:769px) and (max-width:991px) {
    .js-cookie-consent {
        width: 40%
    }
}

@media only screen and (min-width:577px) and (max-width:768px) {
    .js-cookie-consent {
        width: 50%
    }
}

@media only screen and (min-width:375px) and (max-width:576px) {
    .js-cookie-consent {
        width: 70%
    }
}

@media only screen and (min-width:375px) and (max-width:406px) {
    .js-cookie-consent {
        width: 80%
    }
}

@media only screen and (min-width:200px) and (max-width:374px) {
    .js-cookie-consent {
        width: -webkit-fill-available
    }
}

.card-image,
.btn-wishlist {
    background-color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------- 
---------------------- EXTRA - Rahul --------- START -------------------
-----------------------------------------------------------------------*/
/*add-rattings-start*/
.star-rating {
    direction: rtl;
    display: inline-block;
    padding: 20px;
    cursor: default;
}

.star-rating input[type=radio] {
    display: none;
}

.star-rating label {
    color: #bbb;
    font-size: 40px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-shadow: 1px 1px #bbb;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input[type=radio]:checked~label {
    color: gold;
    text-shadow: 1px 1px #c60;
}

/*add-rattings-end*/
/* for out-of-stock----START */
.menu .card-image,
.favouritelist .card-image {
    text-align: center;
    color: white;
}

.menu .card-image {
    overflow: hidden;
}

.menu .card-image .text-overlay-centered,
.menu .card-image-two .text-overlay-centered,
.favouritelist .text-overlay-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* for out-of-stock----END */
/* SEND_EMAIL_NOTIFICATION -- START */
.checkbox-switch {
    display: none;
}

.switch {
    align-items: center;
    background-color: gray;
    border-radius: 500px;
    cursor: pointer;
    display: flex;
    height: 25px;
    justify-content: space-between;
    position: relative;
    user-select: none;
    width: 60px;
}

.checkbox-switch:checked~.switch {
    background-color: var(--bs-primary);
}

.checkbox-switch:not(:checked)~.switch {
    background-color: gray;
}

.switch__left,
.switch__right {
    color: white;
    font-size: small;
    text-transform: uppercase;
}

.checkbox-switch:checked~.switch .switch__left {
    visibility: hidden;
}

.checkbox-switch:not(:checked)~.switch .switch__right {
    visibility: hidden;
}

.switch__circle {
    height: 25px;
    padding: 5px;
    position: absolute;
    transition: all 0.1s linear;
    width: 25px;
}

.checkbox-switch:checked~.switch .switch__circle {
    left: 0;
    right: calc(100% - 25px);
}

.checkbox-switch:not(:checked)~.switch .switch__circle {
    left: calc(100% - 25px);
    right: 0;
}

.switch__circle-inner {
    background-color: white;
    border-radius: 50%;
    display: block;
    height: 100%;
    width: 100%;
}

/* SEND_EMAIL_NOTIFICATION -- END */
/* --------------------------------------------------------------------- 
---------------------- EXTRA - Rahul ----------- END -------------------
-----------------------------------------------------------------------*/


/*----------------- Extra css Dev -----------------*/
.blog-wrapper .card .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-view .order-list .item-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*----- coupon section -----*/
.left-side-rtl {
    border-right: 1px dashed #ddd;
    width: 40% !important;
    position: relative
}

.coupon .coupn-circle-up {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--december_sky);
    border-radius: 100%;
    top: -10px;
    left: -10px;
}

.coupon .coupn-circle-down {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--december_sky);
    border-radius: 100%;
    bottom: -10px;
    left: -10px;
}

/* for coupon rtl class */
.coupon .coupn-circle-up-rtl {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--december_sky);
    border-radius: 100%;
    top: -10px !important;
    right: -10px !important;
}

.coupon .coupn-circle-down-rtl {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--december_sky);
    border-radius: 100%;
    bottom: -10px !important;
    right: -10px !important;
}

.lag-img {
    width: 25px !important;
    height: 25px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50%;
}

.header-bar .navbar .min-dropdown {
    position: absolute !important;
    left: -100px !important;
    top: 100% !important;
}

.log-btn {
    padding: 6px 20px !important;
}

/*----------------- Extra css Dev -----------------*/



/*============================================================================
                                    theme-2 
=============================================================================*/

.theme-2-blog-wrapper .blog-heading h2,
.category h2,
.menu-heading h2 {
    font-weight: 600 !important;
    font-size: 2rem;
}

.rounded-5 {
    border-radius: 2rem !important;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.rounded-3 {
    border-radius: 0.6rem !important;
}

.rounded-0 {
    border-radius: 0rem !important;
}

/*========= slider-area =========*/



.slider-theme-2 {
    position: relative
}

/* .slider-theme-2::before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, .6);
    height: 100%;
    width: 100%;
    z-index: 1;F
    top: 0;
    left: 0;
    right: 0
} */

.slider-theme-2 .carousel .carousel-inner .carousel-item img {
    width: 100vw;
    object-fit: cover;
}

.slider-theme-2 .carousel .carousel-inner .carousel-item .carousel-caption {
    z-index: 3;
}

.slider-theme-2 .carousel .carousel-inner .carousel-item .carousel-caption h1 {
    font-weight: 500;
    font-size: 2rem;
    line-height: 130%;
    color: var(--bs-primary)
}

.slider-theme-2 .carousel .carousel-inner .carousel-item .carousel-caption p {
    font-style: normal;
    font-weight: 600;
    font-size: 3rem;
    line-height: 130%
}


.slider-theme-2 .carousel-item img {
    animation: crescendo 20s infinite ease-in;
    /* height: 600px; */
    object-fit: cover;
    object-position: center;
}



.like-btn {
    height: 35px !important;
    width: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/*======== theme-2-category ========*/
/* .category .category-bg {
    background-color: var(--bg-section-gray);
    border: 1px solid rgb(232, 232, 232);
} */


/*======== theme-2-blog ========*/

.theme-2-blog-wrapper .blog-date {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    font-size: 12px;
}

.theme-2-blog-wrapper .blog-date-rtl {
    width: auto;
    height: auto;
    border: 1px solid #000;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 5%;
    left: 5%;
    padding: 5px 10px;
    font-size: 12px;
}


/*======== theme-2-app_download ========*/

.app_download .app_content h2 {
    color: var(--viola_black);
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

/*======== theme-2-product-service ========*/

.theme-2-product-service .quality-icon {
    width: 70px;
    height: 70px;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: auto;
}

.theme-2-product-service .card {
    transition: 0.5s;
}

.theme-2-product-service .card:hover {
    transform: scale(1.02);
}


/*============================================================================
                                    theme-3 
=============================================================================*/

/*=============== theme-3-slider-area ===============*/

/* .theme-3-slider-area #slidercarousel::before {
    content: "";
    background-color: rgba(0, 0, 0, .6);
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
} */

.theme-3-slider-area .carousel .carousel-inner .carousel-item .carousel-caption {
    z-index: 2;
}

.theme-3-slider-area .carousel .carousel-inner .carousel-item .carousel-caption h1 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 130%;
    color: var(--bs-primary);
}

.theme-3-slider-area .carousel .carousel-inner .carousel-item .carousel-caption p {
    font-style: normal;
    font-weight: 600;
    font-size: 3rem;
    line-height: 130%;
}

.theme-3-slider-area .carousel-control-next,
.theme-3-slider-area .carousel-control-prev {
    width: 4% !important;
}

.theme-3-slider-area .carousel-caption {
    left: 8% !important;
}

.theme-3-slider-area .carousel-control-next-icon,
.theme-3-slider-area .carousel-control-prev-icon {
    width: 50px;
    height: 50px;
    display: flex;
    background: transparent;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
}

.theme-3-slider-area .carousel-control-next-icon:hover,
.theme-3-slider-area .carousel-control-prev-icon:hover {
    background-color: #fff;
}

.theme-3-slider-area .carousel-control-next-icon:hover i,
.theme-3-slider-area .carousel-control-prev-icon:hover i {
    color: var(--bs-primary) !important;
}

/*=============== theme-3-menu ===============*/
.theme-3-menu .card {
    overflow: hidden;
    padding: 10px;
    transition: .5s all;
}

.theme-3-menu .card:hover {
    border: 1px solid #000 !important;
}

.theme-3-menu .card-image,
.theme-3-menu .favouritelist .card-image {
    text-align: center;
    color: white;
}

.theme-3-menu .card .card-image {
    background-color: white;
    overflow: hidden;
}

.theme-3-menu .card .card-image img {
    max-width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    transition: .5s all;
}

.theme-3-menu .card .item-card-title {
    color: var(--viola_black);
    font-size: 16px;
}

.theme-3-menu .card .item-card-footer span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--viola_black);
}

.theme-3-menu .card .card-body .cat-span {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-3-menu .card .card-body .cat-span span {
    font-size: 12px;
    font-weight: 400;
    color: var(--light-dark);
}

.theme-3-menu .card .item-card-footer {
    padding: .5rem 1rem;
    background-color: transparent;
}

/* theme-3-blog-wrapper */
.theme-3-blog-wrapper .card {
    border-radius: 0px;
    overflow: hidden;
    padding: 10px;
    border: 1px solid #fff;
}

.theme-3-blog-wrapper .card:hover {
    border: 1px solid #000 !important;
}

.theme-3-blog-wrapper .card h5 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.theme-3-blog-wrapper .card p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/*========= theme-3-product-service =========*/
.theme-3-product-service .card .quality-icon i {
    font-size: 48px;
    color: var(--bs-primary);
}

.theme-3-product-service .card .service-content h3 {
    color: var(--viola_black);
    font-size: 18px;
    font-weight: 700;
}

.theme-3-product-service .card .service-content p {
    font-size: 14px;
    margin: 0;
    color: #999;
}


/* app-downlod */
.theme-3-app-download .app-downlod-box {
    background-color: var(--bs-primary);
    padding: 70px 20px;
    border: 5px solid #000;
    border-radius: 20px;
    text-align: center;
}



/* ==================== tool tip start =================== */

/* START TOOLTIP STYLES */
[tooltip] {
    position: relative;
}

[tooltip]::before,
[tooltip]::after {
    text-transform: none;
    font-weight: 600;
    font-size: 12px !important;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
}

[tooltip]::before {
    content: '';
    border: 5px solid transparent;
    z-index: 1001;
}

[tooltip]::after {
    content: attr(tooltip);
    min-width: 3em;
    max-width: 21em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 1ch 1.5ch;
    border-radius: .3ch;
    box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
    background: rgb(0, 0, 0);
    color: #fff;
    z-index: 1000;
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
    display: block;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: rgb(39, 39, 39);
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -.5em);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
    to {
        opacity: .9;
        transform: translate(-50%, 0);
    }
}

@keyframes tooltips-horz {
    to {
        opacity: .9;
        transform: translate(0, -50%);
    }
}

/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}



/* ========= left side tooltip ========== */

[data-tooltip],
.tooltip {
    position: relative;
    cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
    position: absolute;
    visibility: hidden;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
    visibility: visible;
    opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
    z-index: 1001;
    border: 6px solid transparent;
    background: transparent;
    content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
    background-color: #000;
    content: attr(data-tooltip);
    min-width: 3em;
    max-width: 21em;
    white-space: nowrap;
    overflow: hidden;
    font-size: 12px !important;
    text-overflow: ellipsis;
    padding: 5px 10px !important;
    border-radius: .3ch;
    color: #fff;
    z-index: 1000;
    font-size: 14px;
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
    right: 100%;
    bottom: 50%;
    left: auto;
    transform: translateX(-12px);
}

.tooltip-left:before {
    margin-left: 0;
    margin-right: -12px;
    margin-bottom: 0;
    border-top-color: transparent;
    border-left-color: #000;
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
    transform: translateX(-12px);
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
    margin-left: 0;
    margin-bottom: -10px;
}

/* ========= left tooltip ========== */


/* ==================== tool tip end =================== */


/* ==================== animation card-option start =================== */

.card:hover .card-option li:nth-child(2) {
    animation: fadeInTop 400ms ease-in-out;
}

.card:hover .card-option li:nth-child(3) {
    animation: fadeInTop 600ms ease-in-out;
}

.card:hover .card-option li:nth-child(4) {
    animation: fadeInTop 800ms ease-in-out;
}

@keyframes fadeInTop {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

/* ==================== animation card-option end =================== */


/* ====== animation card-option-two start ============ */

.card:hover .card-option-two li:nth-child(2) {
    animation: fadeInRight 400ms ease-in-out;
}

.card:hover .card-option-two li:nth-child(3) {
    animation: fadeInRight 600ms ease-in-out;
}

.card:hover .card-option-two li:nth-child(4) {
    animation: fadeInRight 800ms ease-in-out;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

/* ====== animation card-option-two start ============ */

.card:hover .card-option-four li:nth-child(1) {
    animation: fadeInTop 400ms ease-in-out;
}

.card:hover .card-option-four li:nth-child(2) {
    animation: fadeInTop 600ms ease-in-out;
}

.card:hover .card-option-four li:nth-child(3) {
    animation: fadeInTop 800ms ease-in-out;
}

@keyframes fadeInTop {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}


/*=================== jenish extra css start ==================*/
.thumbnail {
    display: flex;
    flex-direction: column !important;
}

.thumbnail .active {
    border: 1px solid var(--bs-primary);
}

.thumbnail .thumbnail-img {
    display: block;
    height: 80px;
    width: 80px;
    border-radius: 5%;
    overflow: hidden;
    background-color: #e5e5e5;
}

.thumbnail .thumbnail-img img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}


img.mfp-img {
    width: 400px !important;
    max-width: 100%;
    height: auto !important;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}


/* -------- accordian start ---------- */

.accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background-color: var(--light_primary) !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

/* ---------- accordian end-----------  */

/* ------ login start------- */
.auth_form_container .image {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
}

.auth_form_container .image img {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
}

.auth_form_inner .form-box {
    border-radius: 10px;
    overflow: hidden;
}

/* ------ login start------- */


/* ------ product hover img start------- */
.hover-card-img {
    top: 0%;
    left: 0;
    max-width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    opacity: 0;
    transition: .3s;
}

.menu-cards:hover .hover-card-img {
    opacity: 1;
    transition: .3s;
}

.menu-cards:hover .card-image .card-img-top,
.menu-cards:hover .card-image-two .card-img-top {
    opacity: 0 !important;
    transition: .3s;
}

/* ------ product hover img start------- */

/* ------ our team start------- */

.blog-wrapper .review {
    display: flex;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #e5e5e5;
    padding: 10px;
}

.blog-wrapper .review img {
    width: 100%;
    height: 300px;
    margin-bottom: 10px;
    border-radius: 5px;
    object-fit: cover;
}

/* ------ our team end------- */


/* ------ language end------- */

.dropdown,
.dropend,
.dropstart,
.dropup {
    position: relative;
}

.lab-dropdown .dropdown-menu {
    z-index: 9999 !important;
    margin-top: 5px !important;
}

.dropdown-menu.rtl[data-bs-popper] {
    right: 0;
    left: unset;
}

/* ------ language end------- */

.social-rounded {
    height: 23px;
    width: 23px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-rounded-footer {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.fb {
    background-color: #139DF7;
}

.ins {
    background-color: #ff0707;
}

.twi {
    background-color: #1DA1F2;
}

.pin {
    background-color: #c6071d;
}

.you {
    background-color: #FF0000;
}


.profile-menu .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: none;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.profile-menu .accordion-item {
    background-color: transparent;
    border: 0px;
}

.profile-menu .accordion-button:not(.collapsed) {
    color: var(--light-primary);
    background-color: var(--bg-primary) !important;
    box-shadow: none;
}


/* sucess page start */

.success {
    padding: 100px 0px;
}

.success .success-image img {
    height: 300px;
    width: 300px;
    object-fit: cover;
}



/*======= body scrolling =======*/

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 3px !important;
    height: 3px !important;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #000000;
}

/*======= body scrolling =======*/

.icon_box {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000 !important;
}

/* all drop down */
.dropdown-item {
    font-size: 14px !important;
}



/* common form label */
.form-label {
    font-size: 14px;
    font-weight: 500;
}


/* ============== product detail page start (jenish) ============== */
/* offer-badge */
.offer-badge {
    font-size: 14px;
    color: #fff;
    background-color: var(--bs-primary);
    border-radius: 4px;
    font-weight: 600;
}


.bg-gray {
    background-color: #f5f5f5;
}

/* sku start */
.product-sku {
    width: 100%;
    display: flex;
    align-items: center;
    max-width: 350px;
    padding: 5px 0;
}

.sku-title {
    font-size: 15px;
    color: #777;
    font-weight: 600;
}

.sku-text {
    text-align: left;
    font-size: 15px;
    margin-left: 5px;
    color: #222;
    font-weight: 500;
}

/* custom-size */

.custom-size .custom-control-label {
    min-width: 3rem;
    padding: 0.6rem 0.7rem !important;
    text-align: center;
    border: 1px solid #dce1f1;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
}

.custom-control-input-details {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1.125rem;
    height: 1.3125rem;
    opacity: 0;
}

.custom-varient {
    position: relative;
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 0.5rem;
}

.custom-varient.rtl {
    margin-right: unset;
    margin-left: 0.5rem;
}

.custom-varient .custom-control-input-details:checked~.custom-control-label {
    color: #fff;
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
}

/* share-product */
.share-product {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    background-color: #121212;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.share-product.rtl {
    right: unset;
    left: 5px;
}

.prod-social {
    background-color: #121212;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-danger,
.btn.btn-success,
.btn.btn-outline-dark {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.btn.item-quantity {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

/* product-view nav-pills */
.product-view .nav-pills .nav-link {
    font-weight: 600;
    font-size: calc(15px + (14 - 15) * ((100vw - 320px) / (1920 - 320)));
    text-transform: capitalize;
    color: #585858;
    background-color: #ebebeb;
    border: none;
}

.product-view .nav-pills .nav-link.active {
    border: none;
    background-color: var(--bs-primary) !important;
    color: #fff !important;
}

/* revier count */
.progress.progress-sm {
    height: 8px;
}

.progress .progress-bar {
    position: relative;
    overflow: visible;
    border-radius: 0.5rem;
}

.bg-opacity-15 {
    opacity: 0.15;
}

.review-modal-img {
    height: 80px;
    width: 80px;
}

/* ======= review modal start ======= */
/* rating star */
.rating {
    direction: rtl;
    display: inline-block;
    cursor: default;
}

.rating.rtl {
    direction: ltr;
}

.rating>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0;
}

.rating>label {
    position: relative;
    width: 25px;
    font-size: 30px;
    color: #ffc107;
    cursor: pointer;
}

.rating>label {
    position: relative;
    width: 25px;
    font-size: 30px;
    color: #ffc107;
    cursor: pointer;
}

.rating>input {
    display: none;
}

.rating>input:checked~label:before {
    opacity: 1;
}

/* ======= review modal start ======= */

.form-check.form-check-rtl {
    display: flex !important;
    gap: 30px !important;
}

/* ============== product detail page start (jenish) ============== */

.product-right-label {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 2px 5px;
    background-color: var(--bs-primary);
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
}

/* rtl */
.product-left-label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 5px;
    background-color: var(--bs-primary);
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
}


.product-right-label-2 {
    padding: 3px 5px;
    background-color: var(--bs-primary);
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
}

/* rtl */
.product-left-label-2 {
    padding: 3px 5px;
    background-color: var(--bs-primary);
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
}


.avatar-lg {
    height: 70px;
    width: 70px;
}




/* PWA start */

.mobile_menu_footer {
    position: fixed;
    bottom: 0;
    padding: 12px 0px;
    width: 100%;
    background-color: #fff;
    z-index: 229;
    -webkit-box-shadow: 0 2px 7px 3px rgba(168, 168, 168, 0.2);
    box-shadow: 0 2px 7px 3px rgba(168, 168, 168, 0.2);
}

.mobile_menu_footer i {
    margin-bottom: 2px;
    font-size: 18px;
    color: #000;
}

.mobile_menu_footer ul li{
    width: 100%;
}

.mobile_menu_footer p {
    font-size: 12px;
    color: #000;
    font-weight: 500;
    position: relative;
}

.active1 p::before {
    content: ".";
    width: auto;
    height: 5px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bs-secondary);
    font-size: 40px;
}

span.qut_counter {
    background: #DC3545;
    color: #fff;
    position: absolute;
    width: 18px;
    height: 18px;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    top: -5px;
    right: -12px;
}



/* PWA */
.pwa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bs-primary);
    width: 100%;
    position: relative;
    padding: 15px 10px;
    color: #FFF;
}

.pwa .pwa-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 136px;
}

.pwa .mobile-install-btn {
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 13px;
    line-height: 16px;
    border-radius: 4px;
    color: rgb(255, 255, 255);
    background: var(--bs-secondary);
    border: none;
    padding: 6px 12px;
    transition: background 0.8s ease 0s;
    font-weight: 600;
}

.pwa .close-btn {
    width: 15px;
    height: 15px;
    color: #fff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pwa-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
}

/*------------ Product Thumb Zoom ------------------*/
.sp-loading {
    text-align: center;
    max-width: 270px;
    padding: 15px;
    border: 5px solid #eee;
    border-radius: 3px;
    font-size: 12px;
    color: #888;
}

/* Element wrapper */

.sp-wrap {
    display: none;
    line-height: 0;
    font-size: 0;
    position: relative;
    width: 100%;
}

/* Thumbnails */
.sp-thumbs {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-thumbs img {
    min-height: 50px;
    min-width: 50px;
    max-width: 50px;
}

.sp-thumbs a:link,
.sp-thumbs a:visited {
    width: 90px;
    height: 90px;
    overflow: hidden;
    opacity: .3;
    display: inline-flex;
    background-size: cover;
    background-position: center;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 1px solid #eceef5;
    margin: 2px;
    border-radius: 4px;
}

.sp-thumbs a:hover {
    opacity: 1;
}

/* Styles for the currently selected thumbnail */

.sp-thumbs a:active,
.sp-current {
    opacity: 1 !important;
    position: relative;
}

/* Image currently being viewed */

.sp-large {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
}

.sp-large a img {
    width: 100%;
    height: auto;
    border: 1px solid #000;
}

.sp-large a {
    display: block;
}

.sp-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, .9);
    z-index: 500;
    display: none;
    cursor: pointer;
}

.sp-lightbox img {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 90%;
    max-height: 90%;
    border: 2px solid #fff;
}

#sp-prev,
#sp-next {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    z-index: 501;
    color: #fff;
    padding: 14px;
    text-decoration: none;
    background: #000;
    border-radius: 25px;
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    transition: .2s;
}

#sp-prev {
    left: 10px;
}

#sp-prev:before {
    content: '';
    border: 7px solid transparent;
    border-right: 15px solid #fff;
    position: absolute;
    top: 16px;
    left: 7px;
}

#sp-next {
    right: 10px;
}

#sp-next:before {
    content: '';
    border: 7px solid transparent;
    border-left: 15px solid white;
    position: absolute;
    top: 16px;
    left: 18px;
}

#sp-prev:hover,
#sp-next:hover {
    background: #444;
}

/* Tweak styles for small viewports */

@media screen and (max-width: 400px) {
    .sp-wrap {
        margin: 0 0 15px 0;
    }

    #sp-prev,
    #sp-next {
        top: auto;
        margin-top: 0;
        bottom: 25px;
    }
}

/*================= jenish extra css end ====================*/

.product_modal_main::-webkit-scrollbar {
    display: none;
}

.size_variation ul li input:checked+label {
    border-color: var(--bs-secondary);
    background-color: var(--bs-secondary);
    color: #fff !important;
}

/* ================dhruvil desai extra css start=============== */

.object {
    object-fit: cover !important;
    object-position: center !important;
}

.accordion-button.rtl::after {
    margin-left: unset;
    margin-right: auto;
}

.Who_We_Are .image1,
.FAQ .image1 {
    width: 100%;
    height: 100%;
}

.Who_We_Are .image1 img,
.FAQ .image1 img,
.Gallary .image1 img {
    width: 100%;
    height: 100%;
}

.Who_We_Are .icon {
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    /* background-color: var(--bs-primary-light); */
    color: var(--bs-primary);
}

/* .top-deals .card .card-image .card-img-top {
    height: 320px !important;
}

.top-deals .hover-card-img {
    height: 320px !important;
} */

.gallary-img {
    height: 240px;
}

.gallary-img img {
    width: 100%;
    height: 100%;
}

.theme-3-menu .top-deals .card:hover {
    border: 1px solid #000;
}

.theme-3-menu .top_deals .item {
    padding: 3px !important;
}

/* ================= whatsapp icon start ===================*/
.chat-btn i {
    font-size: 26px;
    color: #fff !important;
}

.chat-btn .close {
    display: none;
}

.chat-btn_ltr {
    position: fixed;
    right: 20px;
    bottom: 100px;
    cursor: pointer;
}

/*------------ rtl css start------------*/

.chat-btn_rtl {
    position: fixed;
    left: 33px;
    bottom: 100px;
    cursor: pointer
}

.wrapper_rtl {
    position: fixed;
    left: 33px;
    bottom: 160px;
    width: 293px;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.4s;
    z-index: 9999999999;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

/*------------ rtl css end------------*/
.chat-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: #25D366;
    color: #fff;
    font-size: 22px;
    border: none;
    z-index: 98;
}

.wrapper_ltr {
    position: fixed;
    right: 33px;
    bottom: 160px;
    width: 293px;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.4s;
    z-index: 999999999;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

.msg_header {
    padding: 1rem;
    background-color: #075E54;
    color: #fff;
}

.bg-msg {
    background-color: #E5DDD5;
}

.chat-form {
    padding: 15px;
}

.chat-form textarea {
    resize: none;
    height: 70px;
}

.btn-whatsapp,
.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: #25D366 !important;
    color: #fff !important;
    border-color: #25D366 !important;
    width: 40px !important;
    height: 40px !important;
}

.chat-form input,
textarea {
    margin-bottom: 10px;
}

#check:checked~.chat-btn .comment {
    display: none;
}

#check:checked~.chat-btn i {
    display: block;
    pointer-events: auto;
    transform: rotate(180deg);
}

#check:checked~.wrapper_rtl,
#check:checked~.wrapper_ltr {
    opacity: 1;
    visibility: visible;
}

/* ================= whatsapp icon end ===================*/

/* ===================cart icon start===================== */
.cart-modal-ltr {
    position: fixed;
    top: 50%;
    left: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
    background-color: var(--bs-secondary);
    color: #ffffff;
    border: 1px solid #fff;
}

.cart-modal-rtl {
    position: fixed;
    top: 50%;
    right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
    border: 1px solid #fff;
    background-color: var(--bs-secondary);
    color: #ffffff;
}

.cart-modal-ltr .count,
.cart-modal-rtl .count {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: var(--bs-danger);
    color: #ffffff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    z-index: 99;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-15 {
    font-size: 15px !important;
}

/* ===================cart icon end===================== */

.theme-1 .timer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
}

.theme-1 #news-slider .post-slide .post-img {
    border-radius: 0px !important;
}

.theme-3 .timer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
}

.extra-padding {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blurred {
    filter: blur(5px) !important;
    /* Adjust the blur level as needed */
    transition: filter 0s !important;
    /* Add a smooth transition effect */
}

.offer-button {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    background-color: var(--bs-primary);
    border-radius: 8px !important;
    padding: 10px 25px !important;
}

.bg-white {
    background-color: #fff;
}

.ltr-buttons {
    position: fixed;
    z-index: 999;
    right: -42px;
    top: 50%;
    display: flex;
    gap: 5px;
    transform: rotate(270deg);
}

.rtl-buttons {
    position: fixed;
    z-index: 999;
    left: -45px;
    top: 50%;
    display: flex;
    gap: 5px;
    transform: rotate(270deg);
}

.PWA-modal-button {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bs-primary);
    border-radius: 8px;
    transform: rotate(90deg);
    cursor: pointer;
}


.coupons-label {
    background-color: var(--bs-primary-rgb) !important;
    border-radius: 6px;
    color: #000;
    padding: 4px 11px;
    font-size: 14px;
    font-weight: 600;
}

.footer-img {
    width: 30px;
    height: 30px;
    background-color: #fff;
}

.footer-img img {
    width: 100%;
    height: 100%;
}

.header-bar .navbar .min-dropdown-ltr {
    position: absolute !important;
    left: -125px !important;
    top: 100% !important;
}

.header-bar .navbar .min-dropdown-rtl {
    position: absolute !important;
    left: 0px !important;
    top: 100% !important;
}

.variation {
    width: 23px;
    height: 23px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.delete-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bs-danger) !important;
}

.cart-table-title {
    font-size: 16px;
    font-weight: 600;
}

.view-icon {
    width: 34px !important;
    height: 34px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px !important;
}

.form-control {
    padding: 0.63rem .75rem;
    font-size: 14px !important;
}

.cart-model img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease-in-out;
    animation: slidein 5s infinite;
}

@keyframes slidein {
    0% {
        transform: scale(1.5);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.5);
    }

    75% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.5);
    }
}

.blog-slid-padding {
    padding: 0px 5px !important;
}



.btn-block {
    width: 80px;
    height: 40px;
    background-color: var(--bs-secondary);
    color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
}

.btn-block:focus {
    background-color: var(--bs-primary);
    color: #fff;
}

/* ====================== join model start ======================*/

.newslatter-img {
    height: 450px;
}

.subscribe-title {
    font-size: 32px;
    font-weight: 700;
}

#NewsModal .btn-close {
    position: absolute;
    right: 2%;
    top: 5%;
}


.checkbox-inline input {
    display: none
}

.size-variation .checkbox-inline {
    padding: 6px 15px;
    border: 1px solid var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    border-radius: 6px;
}

.size-variation .active {
    border-color: var(--bs-primary) !important;
    color: #fff !important;
    font-weight: 600;
    background-color: var(--bs-primary);
}

.product_details .checkbox-inline {
    padding: 6px 15px;
    border: 1px solid var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    border-radius: 6px;
}

.product_details .active {
    border-color: var(--bs-primary) !important;
    color: #fff !important;
    font-weight: 600;
    background-color: var(--bs-primary);
}

/* ====================== join model end ======================*/

/* .content {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
} */

.form-control:focus {
    border: var(--bs-border-width) solid var(--bs-primary) !important;
}

.blink_me {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.btn.btn-primary:disabled {
    color: #fff;
    pointer-events: none;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn.btn-secondary:disabled {
    color: #fff;
    pointer-events: none;
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.text-dark {
    color: #000 !important;
}

.default-btn-check {
    width: 35px !important;
    height: 35px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-check-input:checked {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.form-select {
    padding: 0.63rem .75rem;
    font-size: 14px !important;
}

.form-select:focus {
    border-color: var(--bs-primary) !important;
}

.form-check-input:focus {
    border-color: var(--bs-border-color) !important;
}

.btn-address {
    background-color: var(--bs-primary) !important;
    color: #fff;
    border-color: var(--bs-primary);
    padding: 0.63rem .75rem;
}


/* ================================= */


#sales-booster-popup .sales-booster-popup-inner img {
    max-width: 70px;
}

#sales-booster-popup {
    position: fixed;
    left: 20px;
    bottom: 20px;
    font-size: 1rem;
    background: #fff;
    z-index: 9999999999;
    max-width: 400px;
    width: calc(100vw - 40px);
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .1);
    transition: all .3s ease-in-out;
}

/* rtl class */
#sales-booster-popup.rtl {
    right: 20px;
    left: unset;
}


#sales-booster-popup .close {
    margin: 10px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#sales-booster-popup .sales-booster-popup-inner {
    display: flex;
    align-items: center;
    padding: 20px;
}


#sales-booster-popup .heading {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

#sales-booster-popup .info {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 5px;
}

#sales-booster-popup .read-more {
    font-size: 13px;
    font-weight: 500;
}


.pos-absolute.right,
.pos-fixed.right {
    right: 0;
}

.pos-absolute.left,
.pos-fixed.left {
    left: 0;
}

.pos-absolute.top,
.pos-fixed.top {
    top: 0;
}

.pos-absolute {
    position: absolute;
}

#sales-booster-popup.animation-slide_right:not(.loaded) {
    transform: translateX(-30px);
}

/* rtl class */
#sales-booster-popup.animation-slide_right.rtl:not(.loaded) {
    transform: translateX(30px) !important;
}

#sales-booster-popup:not(.loaded) {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
}

.quick_call {
    position: fixed;
    right: 33px;
    bottom: 80px;
    width: 293px;
    background-color: #fff;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.4s;
    z-index: 999999999;
    visibility: hidden;
    overflow: hidden;
}

.quick_call_rtl {
    position: fixed;
    left: 33px;
    bottom: 80px;
    width: 293px;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.4s;
    z-index: 9999999999;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

@media (min-width: 200px) and (max-width: 991px) {

    .quick-btn_ltr,
    .quick-btn {
        bottom: 90px !important;
    }

    .chat-btn_ltr {
        bottom: 160px !important;
    }

    .wrapper_ltr {
        right: 12px;
        bottom: 217px !important;
    }

    .wrapper_rtl {
        bottom: 217px !important;
    }

    .chat-btn_rtl {
        position: fixed;
        left: 25px;
        bottom: 90px;
        cursor: pointer
    }

    .quick_call_rtl,
    .quick_call {
        bottom: 150px !important;
        right: 12px;
    }

    #sales-booster-popup .sales-booster-popup-inner {
        padding: 15px;
    }

    #sales-booster-popup {
        bottom: 100px;
    }

}

.quick-btn_ltr {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
}

.quick-btn_rtl {
    position: fixed;
    left: 20px;
    bottom: 20px;
    cursor: pointer
}

.quick-btn {
    width: 50px;
    /* padding: 10px 25px; */
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    border: none;
    z-index: 500;
    /* transition: all .5s ease-in-out; */
}

.quick-btn .close {
    display: none
}

.quick-btn i {
    /* transition: all 0.9s ease */
}

#quick_call:checked~.quick-btn i {
    display: block;
    pointer-events: auto;
    transform: rotate(180deg)
}

#quick_call:checked~.quick-btn {
    /* padding: 10px; */
    /* transition: all .4s ease-in-out; */
}

#quick-btn.expanded {
    width: 50px !important;
    /* animation: widtgg .5s ease-in-out; */
}

@keyframes widtgg {
    0% {
        width: 150px;
    }
}

#quick_call:checked~.quick-btn .comment {
    display: none
}

.quick-btn i {
    font-size: 26px;
    color: #fff !important
}

#quick_call:checked~.quick_call {
    opacity: 1;
    visibility: visible;
    /* transition: all .4s ease-in-out; */
}

#quick_call:checked~.quick_call_rtl {
    opacity: 1;
    visibility: visible;
}

.call_info {
    padding: 1.5rem;
    display: grid;
    justify-content: center;
}

.call_info h6 {
    margin: 0px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.caller_img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

#quick_call {
    display: none !important
}

.custom-badge {
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .7px;
}

.bg-cancelled {
    color: #dc3545;
    background-color: #dc35451a;
    border: 1px solid rgba(220, 53, 69, .541);
}

.bg-completed {
    color: #2f8733;
    background-color: #2f87331a;
    border: 1px solid rgba(47, 135, 51, .5411764706);
}

/* =============================== */

/* .modal {
    --bs-modal-zindex: 99999;
} */
.progress-bar {
    overflow: visible !important;
    text-align: end;
}

.progress-bar i {
    background-color: #000;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.glyphicon {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.progress {
    overflow: visible !important;
}

/* Top deal countdown start */
.eapps-countdown-timer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eapps-countdown-timer-position-bar .eapps-countdown-timer-header-title-text {
    display: -webkit-box;
    overflow: hidden;
    word-wrap: break-word;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.9em;
}

#eapps-countdown-timer-1 .eapps-countdown-timer-button {
    font-size: 12px;
    padding: 10px 32px;
    border-radius: 2px;
}

#eapps-countdown-timer-1 .eapps-countdown-timer-button {
    color: #fff;
}

#eapps-countdown-timer-1 .eapps-countdown-timer-button {
    background-color: var(--bs-primary);
}

.eapps-countdown-timer-position-bar .eapps-countdown-timer-button {
    font-size: 13px;
    font-weight: 700;
    line-height: 15.3px;
    padding: 8px 24px;
    margin-top: 0 !important;
}

.eapps-countdown-timer-button {
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 700;
    white-space: nowrap;
}

.eapps-countdown-timer-position-bar .eapps-countdown-timer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    outline: 0;
}

#eapps-countdown-timer-1.eapps-countdown-timer,
#eapps-countdown-timer-1 .eapps-countdown-timer-inner {
    color: var(--bs-primary);
}

#eapps-countdown-timer-1.eapps-countdown-timer-style-blocks .eapps-countdown-timer-item-value {
    background-color: var(--bs-primary);
}

#eapps-countdown-timer-1.eapps-countdown-timer-style-outline.eapps-countdown-timer-style-blocks .eapps-countdown-timer-item-value,
#eapps-countdown-timer-1.eapps-countdown-timer-style-outline.eapps-countdown-timer-style-blocks .eapps-countdown-timer-item-value .eapps-countdown-timer-item-value-base {
    background-color: transparent;
    color: var(--bs-primary);
}

#eapps-countdown-timer-1.eapps-countdown-timer-style-blocks .eapps-countdown-timer-item-value {
    color: #000;
}

#eapps-countdown-timer-1 .eapps-countdown-timer-item-group-label {
    color: var(--bs-primary);
}

#eapps-countdown-timer-1 .eapps-countdown-timer-header-title,
#eapps-countdown-timer-1 .eapps-countdown-timer-bar-close {
    color: rgb(255, 255, 255);
}

#eapps-countdown-timer-1 .eapps-countdown-timer-button {
    color: #000000;
}

#eapps-countdown-timer-1.eapps-countdown-timer {
    background-color: rgb(0, 0, 0);
}

#eapps-countdown-timer-1 .eapps-countdown-timer-button {
    font-size: 14px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 2px;
}

#eapps-countdown-timer-1 .eapps-countdown-timer-item-value {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

#eapps-countdown-timer-1 .eapps-countdown-timer-item-group-label {
    font-size: 14px;
}

.eapps-countdown-timer-item-group {
    height: 60px;
    width: 60px;
    display: flex;
    flex-direction: column;
}

.background-black {
    background-color: #000;
}

/* Top deal countdown end */


#footersiderbar a{
    color: #000;
}

#footersiderbar {
    z-index: 9999999999;
}

.custom-padding{
    padding: 0px 5px;
}


.tab-pane .progress-bar {
    background-color: var(--bs-warning) !important;
}
