/*
Theme Name: BWR Ordering Web Theme
Theme URI: https://bwr-intl.com
Author: The BWR Team
Author URI: https://bwr-intl.com
Text Domain: web_theme
*/
/* Basic CSS Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
html, body {
    font-family: 'Arial', sans-serif;
    height: 100%;
    margin: 0; /* Remove default margin */
    background-color:#eeeeee;
}
.main-container {
    /*height: 100vh;  100% of the viewport height */
    display: flex;
    flex-direction: column; /* This ensures that the content is stretched full height */
}
.container-fluid {
    height: 100%; /* Fill the height of its parent */
    display: flex;
    flex-direction: column;
}
.row {
    height: 100%; /* This will make sure row is full height of its parent */
    display: flex; /* Using flex to easily manage the columns */
}

/* Remove padding from all columns */
.intro .row > [class^="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Ensure the layout remains responsive */
.left_side, .right_side {
    background-size: cover !important;
    background-position: center;
    height: 100%; /* Full height of the viewport */
}
.left_side div {
    background-size: cover !important;
    background-position: center;
    height: 100%; /* Full height of the viewport */
}
.right_side {
     /* max-height: 100vh; Sets the maximum height to be the viewport height */
    overflow-y: auto; /* Enables vertical scrolling */
}
@media (max-width: 991px) {
    .left_side_banner {
        display: none;
    }
    #arabic_btn_full_size{
        display: block !important;
    }
    #arabic_btn_small_size{
        display: none !important;
    }
    .navbar-brand{
        margin-right: 0px !important
    }
}
@media (max-width: 400px) {
    .otp_code_inputs input {
        width: 50px !important;
    }
}

@media (max-width: 767px) {
    .intro_sales_type .shipping-option {
        width: 40% !important;
        margin: auto;
    }
}

.web_orange_btn{
    background-color:#CC353B;
    color:white;
    border:none;
    padding:10px;
    border-radius: 40px;
    border: 1px solid #CC353B;
    text-align: center;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.web_black_btn{
    background-color: #3d4643;
    color: #FFFFFF!important;
    border: 1px solid #7d7d7d;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    margin: 0 5px 0 5px;
}
.top_section_choose_country{
    text-align:right;
}
.middle_section_choose_country,.bottom_section_choose_country{
    text-align:center;
}

.web_black_btn:hover ,.web_orange_btn:hover ,.web_transparent_btn:hover {
    background-color: #99a2aa; /* Changes the background color when hovering */
    color: #ffffff !important; /* Changes the text color when hovering */
}

.country_list {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line if needed */
    justify-content: center; /* Center the items horizontally */
    gap: 20px; /* Adds space between the flex items */
    padding: 0px; /* Optional: Adds some padding around the flex container */
}
.country_container {
    width: 20%; /* Adjust based on the gap and number of items per row */
    text-align: center; /* Center the content inside the box */
    padding: 10px; /* Adjust the padding inside each box */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Optional: Adds a subtle shadow for depth */
    border-radius: 5px; /* Optional: Rounds the corners of the boxes */
    background-color:white;
}
.country_name_label{
    font-weight:bold;
}

.country_radio {
    display: none; /* Hide the actual radio button */
}

.country_label {
    display: block;
    cursor: pointer;
    padding: 10px;
    border: 2px solid transparent; /* No border by default */
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

/* When hovering over the label */
.country_label:hover {
    border-color: #CC353B; /* Change to your theme color */
}

/* When the radio button is checked, style its label */
.country_radio:checked + .country_label {
    border-color: #CC353B;
    box-shadow: 0 0 10px rgb(204 53 59);
}
@media (min-width: 991px) and (max-width: 1374px) {
    .country_container {
        width: calc(50% - 30px);
    }

}


@media (max-width: 670px) {
    .country_container {
        width: calc(50% - 30px);
    }
}
@media (max-width: 473px) {

    .country_container {
        xwidth: calc(100% - 30px);
    }
}
.hero {
    height: 40vh; /* Sets the height of the hero section to 40% of the viewport height */
    position: relative;
    overflow: hidden; /* Ensures the image doesn't overflow the hero container */
}

.hero .hero_image {
    width: 100%; /* Ensures the image covers the full width of the hero section */
    height: 100%; /* Ensures the image covers the full height of the hero section */
    object-fit: cover; /* Ensures the image covers the area without being stretched or distorted */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the image */
}
.web_transparent_btn{
    color: #CC353B;
    border: 1px solid #CC353B;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    font-weight:600;
}
.web_header_1{
    font-weight: bold;
    vertical-align: super;
    font-size: larger;
    text-transform: uppercase;
    color: black;
}
.product_card .card-title{
    margin-top:15px;
}
.product_card .card-title ,.product_card .price,.product_card .currency{
    font-weight:bold;
}
.order_total_data{
    font-weight: bold;
    color:gray;
}
.order-total .woocommerce-Price-amount{
    color: #CC353B;
}
.product_card{
    xmargin-bottom:150px;
}
.product_card .card-img-top{
    width: 70%;
    margin-top: 10px;
    margin:auto;
}
.product_card hr{
    margin: 7px 0px !important;
}
.product_card .card-text{
    min-height:70px;
}
.card-text{
    line-height:1.3;
}
.product_card .card-body{
    margin-top: 0px;
}
.customize_btn{
    margin-bottom:-15px;
}
.sales_type_container{
    width: 22%;
    background-color: #ffffffe6;
    position: absolute;
    bottom: 12%;
    left: 18%;
    border-radius: 20px;
}
.shipping_option_label{
    font-weight: bold;
    font-size: 14px;
}
.sales_type .shipping-option {
    background: #918e8c;
    border-radius: 50%;
    width: 100%;
    padding: 4px 4px 1px 4px;
    cursor:pointer;
    margin: 5px 0px;
}
.intro .sw-theme-basic>.nav .nav-link.active {
    color: #ec7e20 !important;
}
.intro .sw .toolbar,.sw>.tab-content>.tab-pane {
    padding:0 .8rem !important;
}
.intro .sw .toolbar>.sw-btn {
    background-color: #CC353B;
    border: 1px solid #CC353B;
}
.intro  .sw-theme-basic>.nav .nav-link.active::after {
    background: #CC353B !important;
}
.intro .sw>.progress>.progress-bar {
    background-color: #CC353B;
}
.intro .sw-theme-basic>.nav .nav-link.done {
    color: #CC353B;
    font-weight: bold;
}
.sw.sw-justified>.nav .nav-link, .sw.sw-justified>.nav>li{
    font-weight: bold;
}
.intro .sw-theme-basic>.nav .nav-link.done::after {
    background: #ec7e2082;
    font-weight: bold;
}
.intro .sw-theme-basic>.nav .nav-link::after{
    width:0px !important;
}
.intro .sw>.nav .nav-link {
    padding: 0.5rem 0.5rem !important;
}
.intro .sw-theme-basic>.nav {
    box-shadow: none !important;
}
.intro .sw>.tab-content {
    overflow: auto !important;
}
.intro #step-2, .intro .intro_sales_type{
    xheight:100%;
}
.intro .intro_sales_type .shipping-option {
    background: #99a2aa;
    border-radius: 50%;
    padding: 4px 4px 1px 4px;
    cursor:pointer;
    width:60%;
    height:auto;
    margin: 5px 0px;
}
.intro .shipping-option.checked-option {
    background-color: #CC353B;
}
.hero_container_image .shipping-option.checked-option{
    background-color: #CC353B;
}
.ui-loader-default {
    background: #ffffffd9;
    filter: Alpha(Opacity = 18);
    opacity: 1;
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
    z-index: 99999;
}
.icon-loading {
    /* background-color: #ef7900; */
    display: block;
    width: 95px;
    position: absolute;
    height: 95px;
    padding: 0.0625em;
    -webkit-border-radius: 2.25em;
    border-radius: 2.25em;
    right: 0;
    margin: auto;
    left: 0;
    transform: translateY(-50%);
    top: 50%;
}
.icon-loading {
    background: url(assets/img/chixter-loader.gif);
    background-size: contain;
    background-repeat: no-repeat;
}
#branches-container ul.list-group{
    overflow-y: auto;
}
#branches-container .buisness_hours_label{
    font-size: 10px;
    color: gray;
}
#branches-container .web_transparent_btn {
    color: #CC353B;
    border: 1px solid #CC353B;
    padding: 5px 5px;
    border-radius: 20px;
    text-align: center;
    font-size: 10px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}
#branches-container .branch_status_label{
    font-size: 10px;
    color: #fd0000;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 0px 0px 10px gray;
}
.category_filter,.my_order_container{
    background-color: white;
    border-radius: 10px;
}
.category_filter .form-check {
    border-bottom: 1px solid lightgray;
    padding: 10px 45px;
}
.category_filter .form-check-input:focus {
    border-color: #CC353B94;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(222 126 37 / 36%);
}
.category_filter .form-check-input:checked {
    background-color: #CC353B;
    border-color: #CC353B;
}
.category_filter .form-check-label{
    vertical-align: sub;
    font-weight: bold;
    text-transform: uppercase;
}

/* Custom spacing for Slick slider items */
.product_card.slick-slide {
    margin: 0 30px; /* Adjust the margin as needed */
}
.best_seller .slick-track {
    padding-top: 120px;
    padding-bottom: 50px;
}
.slick-slide img{
    display: inline-block !important;
}
.slick-prev:before, .slick-next:before {
    color: #CC353B !important;
}
.footer_social_media li{
    display: inline-block;
    border: 1px solid #CC353B;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    padding: 5px;
    margin: 3px;
}
.footer_social_media li i{
    color: white;
}
.footer_menu li{
    display: inline-block;
    padding: 5px;
    margin: 0 20px;
}

.footer_menu li a{
    text-decoration: none;
    color: white;
}
.home_menu_categories a{
    text-decoration: none;
    color: inherit;
}
.customize_container{
    background-color: lightgray;
    padding: 4px;
    border-radius: 5px;
}
.customize_label_total{
    font-weight: bold;
    padding: 7px;
}
.customize_link{
    border-radius: 20px;
    background-color: white;
    padding: 7px;
    color: black;
    font-weight: bold;
}
.order_breadcrumb_container li{
    display: inline-block;
    margin: 0px 15px;
}
.order_breadcrumb_container li.active{
    font-weight: bold;
    font-size: large;
}
.order_breadcrumb_container li a{
    color: white;
}
.order_breadcrumb_container ul{
    background-color: #CC353B;
    padding: 5px 10px;
    border-radius: 10px;
    text-align: center;
}
.customize_container{
    cursor: pointer;
}
.order_total_data .justify-content-between{
    padding: 10px 0px;
}
.home_menu{
    position: relative;
}
.home_menu .icon-loading {
    top: 200px !important;
}
.product_info{
    padding: 15px;
}
.product_info .product_card{
    margin-top: 0px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}
.single-product {
    background-color: #efefef;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
    font-size: 1.25em;
    display: inline-block;
}
.login-form p{
    color:#000000;
    font-size: 15px;
    line-height:25px;
}
.btn-default {
    background-color: #333333 !important;
    color:#fff;
    border-radius: 30px;
}
.btn-default:hover,.btn-default:active {
    background-color: #CC353B !important;
    color: #fff !important;
}
.btn-default:hover .my_rate {
    color: #fff !important;
}

#questions_tabs {
    background-color: white;
}
#questions_tabs h2 a{
    padding: 8px 8px !important;
    display: block;
}
#questions_tabs h2 a{
    color: grey;
    font-weight: bold;
}
#questions_tabs h2 a.active{
    border-right: 5px solid #CC353B;
}
#questions_tabs h2 a.active{
    color: black !important;
}
.wcpa_wrap .wcpa_field.wcpa_group_field{
    background-color: white;
    border-radius: 10px;
    padding: 10px;
}
@media (min-width: 992px){
    .modal-lg, .modal-xl {
        --bs-modal-width: 1024px;
    }
}
.single-product .product_card .card-title{
    padding: 10px 0;
    text-align: center;
    color: #CC353B;
}
#single_product_module .modal-body{
    height: calc(100% - 41px);
}
label.error{
    text-align:left;
    font-size:13px;
    color:red;
    margin-top:5px;
    display:block;
}
input.error,select.error{
    border:1px solid red;
}
p.mobile_length_error{
    text-align:left;
    font-size:13px;
    color:red;
    margin-top:5px;
    display: none;
}

.otp_code_inputs {
    position: relative;
}
.otp_code_inputs input {
    text-align:center;
    width: 65px;
    margin: 0 0.5%;
    display: inline-flex;
}
.otp_code_inputs div.ui-input-text input {
    font-size: 1.5rem;
    text-align: center;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
.verification_error{
    display:none;
    font-size: 13px !important;
    color: #ec0000 !important;
}
.login-msg{
    font-size: 13px !important;
    color: #ec0000 !important;
}
@media (max-width: 768px){
    .intro_sales_type img{
        width:150px;
    }
    
    .top_footer{
        display:none;
    }
}
.page-title{
    font-size: 26px;
    margin: 35px 0;
}
.status-img{
    vertical-align: middle;
    width:90px;
    margin:auto;
}
.my_rate{
    color:#CC353B;
}
.rate-error{
    color: #da0000;
    font-size: 14px;
    margin-top: -6px;
}

.float-right {
    float: right !important;
}
#order-details .list-group-item{
    line-height: 30px;
    border:0px;
}
.order-details-table thead th {
    background: #F05423;
}
.order-details-table thead th {
    vertical-align: middle;
    border-top: 0;
    border-bottom: 0;
    background: rgba(244, 129, 37, 0.9);
    color: #fff;
    padding: 15px;
}
.table tbody tr td {
    vertical-align: middle;
    padding: 15px;
}
b, strong {
    font-weight: bolder;
}
.order-details-table tbody, .order-details-table tfoot {
    font-size: 14px;
}
.order-details-table tbody tr td{
    border-bottom:1px solid lightgray;
}

.steps-form {
    display: table;
    width: 100%;
    position: relative;
}
.steps-form .steps-row {
    display: table-row;
}
.steps-form .steps-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 3px;
    background-color: #ccc;
}

.steps-form .active_bar{
    height: 3px;
    background: #CC353B;
    padding: 1px;
    margin-top: 14px;
    position: absolute;
}
.steps-form .step_new .steps-step:nth-child(-n+2) a {
    background-color: #CC353B;
    color: #fff;
    padding: 7px;
}
.steps-form .step_new .active_bar{
    width:17%;
}

.steps-form .step_accepted .steps-step:nth-child(-n+3) a {
    background-color: #CC353B;
    color:#fff;
}
.steps-form .step_accepted .active_bar{
    width:37%;
}

.steps-form .step_inpreparation .steps-step:nth-child(-n+4) a {
    background-color: #CC353B;
    color:#fff;
}
.steps-form .step_inpreparation .active_bar{
    width:63%;
}

.steps-form .step_out-for-delivery .steps-step:nth-child(-n+5) a {
    background-color: #CC353B;
    color:#fff;
}
.steps-form .step_out-for-delivery .active_bar{
    width:100%;
}

.steps-form .step_ready_for_pickup .steps-step:nth-child(-n+5) a {
    background-color: #CC353B;
    color:#fff;
}
.steps-form .step_ready_for_pickup .active_bar{
    width:100%;
}

.steps-form i{
    font-size: 15px;
    margin-top: -2px;
}
.steps-form .steps-row .steps-step {
    display: table-cell;

    text-align: center;
    position: relative;
}
.steps-form .steps-row .steps-step p {
    margin-top: 0.5rem;
    font-size: 12px;
}
.steps-form .steps-row .steps-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}
.steps-form .steps-row .steps-step .btn-circle {
    width: 30px;
    height: 30px;
    background-color: #e4e4e4   ;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
    margin-top: 0;
}

.countdown h5,.countdown p{
    font-size:16px;
    font-weight: bold;
    margin: 5px;
}
.countdown #timer{
    font-weight: bold;
    margin: 5px;
    display:block;
}
.product_card.card{
    min-height: 175px;
}
.btn-light{
    border-radius: 30px;
}
.list-group-item{
    border-radius: 5px;
}
#filter_locations{
    width:70%;
}
#filter_country{
    width:28%;
}
#order_type_filter{
    border-bottom:1px solid lightgray;
    margin-bottom:10px;
}
#order_type_filter a{
    color:#000;
    margin:0 15px 0 0;
    cursor: pointer;
    padding:0 10px;
}
#order_type_filter a:hover{
    border-bottom:5px solid lightgray;
}
#order_type_filter a.active{
    font-weight:bold;
    border-bottom:5px solid #df7e20;
}
.location_flag{
    width:30px;
    height: 20px;
}
#the_locations{
    height: 530px;
    overflow: auto;
}
#locations #googleMap{
    height:600px !important;
}
.btn-yellow{
    background-color: #c2d501;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
    padding: 5px 20px;
}
.wc-proceed-to-checkout{
    margin-bottom: -20px !important;
    text-align: center;
}
.btn-yellow:hover, .btn-yellow:active {
    background-color: #212529 !important;
    color: #fff !important;
}

.input-group-append .add{
    background: white;
    border-radius: 0px 21px 21px 0px;
    height: 100%;
    font-weight: bold;
    border: 1px solid lightgray;
}
.input-group-prepend  .remove{
    background: white;
    border-radius: 21px 0px 0px 21px;
    height: 100%;
    font-weight: bold;
    border: 1px solid lightgray;
}
.customize_container .increasenumber {
    width: 115px;
}
.product_btn_container {
    margin-bottom: -15px;
}
.product_info .product_btn_container{
    margin-bottom: -25px;
}
.product_info .increasenumber{
    width: 132px;
}
.product_info .customize_container {
    background-color: #f3f3f3;
}
#loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    color: #333;
}

.btn-outline-default {
    border-color: #3d454d !important;
    color: #3d454d !important;
    background: #fff !important;
}

.link{
    color:#CC353B !important;
}

.hide-address-form{
    display: none;
}
.iti__flag-container{
    color:#000;
}
#phone-error,#email-error {
    font-size: 13px;
    margin-top:6px;
    color: #ec0000;
}

#verification-form{
    color:#000;
}
.toggle-password {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
show_navbar{
    position: fixed;
    width: 100%;
    z-index: 9999;
}
.wcpa_wrap .wcpa_field,.wcpa_field_wrap   {
    width: 100% !important;
}

#bottom_bar{
    display:none;
}
#bottom_bar ul{
    display: flex;
    list-style-type: none;  /* Removes the bullets */
    margin: 0;
    padding: 10px;
}
a{
    color: rgb(232 75 24) ;
}

#bottom_bar li{
    color:#ffffff;
    text-align:center;
    width:20%;
    display: inline;
}
#bottom_bar li h2{
    text-transform:uppercase;
}
#bottom_bar li img{
    height:30px;
    margin-bottom:5px;
}
#bottom_bar li a{
    color: #ffffff !important;
    font-size: 12px;
}

#smartwizard a.nav-link{
    color:gray !important;
}
#smartwizard li.active a.nav-link,#smartwizard li a.nav-link.active{
    color:#CC353B !important;
    pointer-events: none;
    cursor: default;
}

#smartwizard .nav .nav-link.active,#smartwizard .nav .nav-link.done{
    color:#CC353B  !important;
    pointer-events: none;
    cursor: default;
}
.navbar-nav a.nav-link{
    color:#fff !important;
}
#mobile_view_menu .close_mobile_menu{
    color:#ffffff;
    font-size:35px;
    padding: 15px;
}
#mobile_view_menu{
    width: 70%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 500;
    background: #212529;
}
#mobile_view_menu li{
    padding:15px;
}
#mobile_view_menu li a{
    color:#fff !important;
    font-weight:bold;
}
.product-name a{
    color: black;
    font-weight:bold;
    line-height: 1.4;
}
.variation-item dt{
    display:none;
}
.variation-item dd p{
    padding: 2px 0px;
    color: gray;
    font-weight: bold;
    font-size: 11px;
}
.variation-item dd p img{
    display: none;
}
.variation{
    padding: 10px 0px;
}
.cart.woocommerce-cart-form__contents .woocommerce-Price-amount{
    color: #CC353B;
    font-weight: bold;
}
*{
    unicode-bidi: normal;
}
.cart_totals  li{
    padding: 10px 0px;
    text-transform: uppercase;
    font-weight: bold;
    color: gray;
}
.cart_totals .order-total{
    font-size: 20px;
    color: black;
}
.cart_totals .order-total .woocommerce-Price-amount{
    color: #CC353B;
}
.product-name{
    text-transform: uppercase;
}
.woocommerce-cart-form .shipping{
    font-weight: bold;
    color:gray;
    text-transform: uppercase;
}


.category_filter .form-check.active{
    background:none;
    color:#212529;
    border-radius:0px;
}
@media (max-width: 991px) {
.complete_orders_desktop{
    display:none !important;
}
}

@media (min-width: 991px) {
.complete_orders_mobile{
    display:none !important;
}
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .slick-prev{
         left: -10px !important;
    }
    .slick-next{
        right: -10px !important;
    }
    body,html,main.main-container{
        height:100%;
    }
    #smartwizard ul.nav,.left_side_banner,#branches-container .marker_map_div{
        display:none;
    }
    .footer{
        display:none
    }
    #bottom_bar{
        display:block !important;
    }
    main.main-content{
        padding-bottom: 80px;
    }
    .category_filter {
        padding: 10px;  /* Padding for better touch interaction */
    }
    /* Container styling for horizontal scrolling */
    .category_filter {
        display: flex;
        overflow-x: auto;  /* Enables horizontal scrolling */
        white-space: nowrap;  /* Keeps items in a single line */
        -webkit-overflow-scrolling: touch;  /* Smooth scrolling on iOS devices */
        margin-bottom:40px !important;
    }

    /* Individual item styling */
    .category_filter .form-check{
        display: inline-block;  /* Align items in a row */
        margin-right: 10px;
        border:0px;/* Space between items */
        padding:10px!important;
    }
    .category_filter .form-check.active{
        background:#CC353B;
        color:#ffffff;
        border-radius:35px;
    }
    .category_filter .form-check .form-check-input{
        float:none;
        margin:0px!important;
        display:none;
    }
    .order_breadcrumb_container{
        display:none;
    }
}
address_to_deliver{
    width:25px;
    height:25px;
}
#list_addresses .address_selector{
    width:60px;
    display:none;
}
.place_order{
    margin-bottom: -40px;
}
.woocommerce-checkout-payment .card{
    background-color: #d3d3d36b;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: #ffffff;
    border-radius: 5px;
}
.media-body{
    display: flex;
    justify-content: space-between;
}
.form-row.place-order{
    display:none;
}
.order-type-details .card div{
    padding: 5px 0px;
    color: gray;
    font-weight: bold;
}
#cart_quantity_footer{
    position: relative;
    width: 30px;
    margin: auto;
}
#cart_quantity_footer .cart-quantity{
    position: absolute;
    width: 20px;
    height: 20px;
    background: #e49446;
    color: #fff;
    padding: 4px 0px;
    right: -10px;
    border-radius: 50px;
    font-weight: bold;
    top: -5px;
}

@media (min-width: 992px) {
    .mobile_view_show {
        display: none;
    }
}
@media (max-width: 992px) {
    .mobile_view_hide {
        display: none;
    }
}
.card .pickup input[type="text"]{
    width: 175px !important;
}
.card .pickup{
    align-items: baseline;
}
#reorder_modal img{
    width: 100%;
    padding-top: 3px;
    cursor: pointer;
}

#reorder_modal .shipping-option .card-body {
    padding: 5px !important;
}

#reorder_modal .shipping-option.checked-option {
    background-color: #CC353B;
}
#reorder_modal  .shipping-option {
    display: block;
    background: #4b4948;
    border-radius: 75px;
}

#reorder_modal .address_box .card {
    background: #F3F2F6;
}
#order-delivery-form .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #CC353B;
    background: transparent;
}
#order-delivery-form .custom-control-label::after {
    position: absolute;
    top: -2.25rem;
    right: 0rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50% / 50% 50%;
}
#order-delivery-form .custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}
#reorder_modal  .page-subtitle {
    font-weight: bold;
    color: #414141;
    line-height: 28px;
}
#reorder_modal .page-subtitle {
    padding: 10px 0;
    line-height: 20px;
    vertical-align: middle;
    margin: 15px 0 5px 0;
}
#reorder_modal .text-mute {
    opacity: 0.6;
}
#reorder_modal label, #reorder_modal .ui-controlgroup-label {
    display: block;
    margin: 0 0 .4em;
}
#reorder_modal .custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}
#order-delivery-form .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background: #CC353B;
}
#order-delivery-form .custom-control-label::before {
    position: absolute;
    top: 10px;
    right: 0rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
}
.woocommerce-checkout-payment input{
    display:none;
}

 .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background: #CC353B;
}
.woocommerce-checkout-payment .custom-control-label::before {
    position: absolute;
    top: 10px;
    right: 0px;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
}
.woocommerce-checkout-payment .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #f48125;
    background: transparent;
}
.woocommerce-checkout-payment .custom-control-label::after {
    position: absolute;
    top: 10px;
    right: 0rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50% / 50% 50%;
}

.woocommerce-checkout-payment .custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}
.order-now-alert{
        margin: 0px 15px 15px;
}

.refreshing {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  animation: 0.7s rotate infinite linear;
}

@keyframes rotate {
  to {
    transform: rotate(1turn);
  }
}

#navbarSupportedContent .site-menu a {
    color: #000000 !important;
}
.welcome_intro{
    background-image: url(assets/img/welcome_bk.png);
    background-size: 100%;
    background-position: top;
    background-repeat: repeat-y;
    width: 100%;
    z-index: 999;
}
.welcome_intro .welcome_header h3{
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin:0;
}
.welcome_intro .welcome_header h4{
    font-size: 17px;
    color: #fff;
    margin:0;
}
.welcome_intro_card{
    
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 30px;
}

.welcome_intro_card h2{
    font-size: 18px !important;
    font-weight: bold;
    margin-bottom:40px;
}
.welcome_intro_card h3{
    font-size: 15px !important;
    font-weight: bold;
    margin-bottom:3px;
}
.welcome_intro_card p{
    font-size: 14px !important;
}
.welcome_intro_card a.btn{
    margin:auto;
    width:50%;
    line-height: 10px;
    font-size:14px;
}


input:focus::placeholder {
  color: transparent;
}
.update_cart{
 display:none !important;   
}
.modal-content{
    margin:auto !important;
}
.welcome_intro .btn-close {
    --bs-btn-close-color: #000;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    --bs-btn-close-opacity: 0.5;
    --bs-btn-close-hover-opacity: 0.75;
    --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-btn-close-focus-opacity: 1;
    --bs-btn-close-disabled-opacity: 0.25;
    --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: var(--bs-btn-close-color);
    background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: 1 !important;
}

.woocommerce-form-coupon button[name="apply_coupon"] i{
    display:none;       
}
.woocommerce-form-coupon div.input-group{
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    margin-top:5px;
}
.woocommerce-form-coupon div.input-group input[name="coupon_code"]{
    border:0;
}
.woocommerce-form-coupon div.input-group input[name="coupon_code"]{
    border:0;
    outline: none;
    box-shadow:none;
}

.woocommerce-form-coupon div.input-group{
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    margin-top:5px;
}
.woocommerce-form-coupon div.input-group input[name="coupon_code"]{
    border:0;
}
input#coupon_code{
    outline: none;
    box-shadow:none;
}
button.btn[name="apply_coupon"]{
    border-radius:0 5px 5px 0;
}
button.btn[name="apply_coupon"] i{
    display:none;
}
.my_order_container .woocommerce-notices-wrapper{
    padding:5px;
}
.category_filter .form-check-label {
    cursor: pointer;
}
.wapf-input{
    padding: 5px;
    border: 1px solid lightgray;
    border-radius: 5px;  
}

#single_product_module .single-product{
    padding:15px 0 !important;
}

#single_product_module .input-group-append .add:active,#single_product_module .input-group-append .remove:active {
    background: white;
    border-radius: 0px 21px 21px 0px;
    height: 100%;
    font-weight: bold;
    border: 1px solid lightgray;
}
#single_product_module .input-group-append .add:hover,#single_product_module .input-group-append .remove:hover {
    background: #CC353B;
    color:#000;
}

.single-product .increasenumber .input-group-prepend,
.single-product .increasenumber .input-group-append {
    height:31px !important;
}

.empty-img img{
    margin:auto;
}

.btn:hover {
    color: #333333;
    background-color: var(--secondary);
    border-color: var(--secondary);
}


.wcpa_label_wrap {
            position: relative;
            display: inline-block;
        }
        .wcpa_quantity_field {
            padding-left: 30px; /* Adjust according to the size of the minus sign */
            padding-right: 30px; /* Adjust according to the size of the plus sign */
        }
        .wcpa_quantity_field::before,
        .wcpa_quantity_field::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            user-select: none;
            font-size: 18px; /* Adjust the font size as needed */
        }
        .wcpa_quantity_field::before {
            content: '-';
            left: 10px; /* Adjust for positioning */
        }
        .wcpa_quantity_field::after {
            content: '+';
            right: 10px; /* Adjust for positioning */
        }
        
        .spinner-border{
            color:#ffffff!important;   
            margin:0px 10px;
        }

@media (min-width: 576px) {
    .page-subtitle {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}
@media (max-width: 768px) {

    #smartwizard {
        margin-top:15px !important;
        
    }
    .tab-content{
        height:auto !important;
    }
}
@media (max-width: 568px){
    #single_product_module .input-group{
        width:100%;
    }
}
@media (max-width: 991px){
    #single_product_module .input-group{
        width:100%;
    }
    .site-menu {
        background:#fafafa;
        padding: 5px;
        border-radius: 5px;
    }
    .filter_category.current {
        border-bottom: 2px solid #bb202a  !important;
        background-color:var(--primary) !important;
    }
    
    .shop-filter::-webkit-scrollbar {
        display: none;
    }
    
    .shop-filter {
        left:0 !important;
        padding:0px !important;
        background: #fff;
        width: 100% !important;
        overflow-x: auto;
        text-wrap: nowrap;
        height: Auto !important;
        position:relative !important;
        margin-bottom: 30px;
        box-shadow:none !important;
    }
    .shop-filter.sticky {
        padding:0px !important;
        position: fixed;
        left: -345px;
        top: 0px;
        background: #fff;
        height: 100%;
        transition: all 0.8s;
        box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2) !important;
        width: 325px;
        overflow: scroll;
        position: fixed !important;
        top: 80px;
    }
    .shop-filter a.filter_category.current label {
        color: white !important;
        background-color: var(--primary) !important;
        border-bottom: 3px solid #bb202a !important;
        padding: 10px !important;
    }
     .shop-filter a.filter_category label {
        padding: 10px !important;
    }
    .dz-widget_services {
        margin-bottom: 0px !important;
    }
    .shop-filter .block {
        display: inline-block !important;
        margin-bottom:0px !important;
    }
    .shop-filter .flex.justify-between {
        display: none !important;
    }
    
/* Position the cart button as a bubble */
.cart-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999999;
}

/* Style the button */
#cartButton {
    background-color: #CC353B; /* Tomato color */
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    outline: none;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
#cartButton:hover {
    background-color: #ff4500; /* Darker tomato color */
    transform: scale(1.1);
}

/* Active effect */
#cartButton:active {
    transform: scale(0.95);
}

/* Cart count badge */
.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff4500; /* Darker tomato color */
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Animation class */
.animate-count {
    animation: bounce 0.3s ease;
}



}


/* Keyframes for the bounce effect */
@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}


.footer-title {
    font-weight: bold;
    cursor: pointer;
    padding: 10px 10px;
    border-bottom: 1px solid #d4cdcd8f;
    font-size: 15px;
}
.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none ;
}

.submenu li {
    border-bottom: 1px solid #d4cdcd8f;
}

.arrow {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    transition: transform 0.3s ease;
    
}

.submenu li a {
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    transition: all 0.5s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#071c35 !important;
}

.submenu li a:hover {
    text-decoration: underline;
}

.submenu.show {
    display: block;
}

.submenu-transition {
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submenu-transition.show {
    opacity: 1;
}
.arrow.rotate {
    transform: rotate(90deg);
}
.footer_menu_insidebar .menu-item .footer-title{
    font-weight: 400;
    justify-content: space-between;
    display: flex;
}


















