.sidebar {
    position: fixed;
    top: 0;
    left: -70%; /* Initially hidden */
    width: 70%; /* Takes 70% of the screen */
    height: 100%;
    background-color: #333;
    color: white;
    padding-top: 60px;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-left: 20px;
}

.sidebar a {
    padding: 15px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    background-color: #575757;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* When sidebar is open */
.sidebar.active {
    left: 0;
}

.main_header{

    background-color: black;
    border:0.2px solid black;
    position: fixed;
    width:100%;
    top:0;
    z-index: 100;
 }

 *{
    text-transform:capitalize!important;
    font-family: "Poppins", sans-serif;
    /* font-family: 'Poppins', sans-serif; */
}

body{
    
}

.cart_footer{
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.cart_body{
    height: 420px;
    overflow-y: scroll;
}

button {
    touch-action: manipulation; /* Prevents zooming on button clicks */
}

.cart_btns button{

    background: black;
    border:none!important;
    outline:0;
    color:white;
    touch-action: manipulation; 
}

.cart_btns input{

    background: black;
    width:60px;
    border:none!important;
    outline:0;
    color:white;
}

.cart_trash button{
    background: black;
    color:white;
}


.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: black;
    --bs-btn-border-color: black;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: black;
    --bs-btn-hover-border-color: black;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: black;
    --bs-btn-active-border-color: black;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: black;
    --bs-btn-disabled-border-color: black;
    width:100%;
}

.btn_custom{
    background: black;
    border: 0;
    outline: 0;
    color: white;
    font-size: 8px;
    padding: 3px 10px;
    border-radius: 10px;
}

.sml_span{
    font-size: 26px;
    color: black;
}

/* Cancel capitalize for placeholders */
input::placeholder {
    text-transform: none !important;
}

/* Cancel capitalize for input on focus */
input:focus {
    text-transform: none !important;
}
input{
    text-transform: none !important;
}

.alert-boxx{
    top: 20px;
right: 40px;
position:fixed;
z-index: 9000 !important;
width: 250px;
padding:10px 0;
 }

 .footercs{
    justify-content: space-between;
 }

 .foot_f_size{
    font-size: 12px!important;
  }


 .input-group>.form_control, .input-group>.form-floating, .input-group>.form-select {
    position: relative;
     flex: 1 1 auto; 
    width: 1%;
     min-width: 0;
}


 .form_control{
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    outline:0;
    outline-color: #aaa;
}
 

 /* .product_row{
 
 } */

 .product_row .product_grid{

    background: white;
    border: 1.5px solid rgb(214, 214, 214);
 }

 /* .product_row span{
    font-size: 20px;
    color:black;
    font-weight: 550;
 } */

 .product_row button{
 background:black;  
 border-radius: 10px;
 color:white;
 border: none;
 outline:none;
 width:100%;
 padding:5px 0;
 }

 .product_img{
    position: relative;
 }

 .product_img img{
    object-fit:contain;
 }

 .image_cover_fit{
    object-fit:cover;
 }

 .price_tag{
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px;
    border-radius: 10px;
    color: white;
    background:black; 
    font-weight: 700;
 }


 .cart_pos{
    position: absolute;
    top: -2px;
    right: -7px;
 
 }

 .nav-link {
    color: white;
 }

 .nav-link:hover{
    color: white;
 }

 .active{
    text-decoration: underline;
    /* text-decoration-line: overline; */
    text-underline-offset: 6px;
    text-decoration-color:#d4a348;
 }

 nav .nav-item .active {
    color: white !important;
}


 .hactive{
    color:white;
 }

 .cart_pos{
    width: 17px;
    height: 17px;
    background: white;
    border-radius: 50%;
    color: black;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;    
 }

 .cart-sidebar {
    position: fixed;
    right: -30%; 
    top: 0;
    width: 30%;
    height: 100%;
    background-color: white;
    box-shadow: -3px 0px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    padding: 20px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.cart_button {
    cursor: pointer;
}

.cursor_pointer {
    cursor: pointer;
}

.cart_item_text{
    font-size: 12px;
    font-weight: 400;
}

.pl_5{
    padding-left: 5px!important;
}

.pl_0{
    padding-left: 0px!important;
}

.cart_btn_item_incr{
    background: #0c831f;
    color:white; 
    margin: auto;   
}

.cart_btn_item_incr button{
    background: #0c831f;
    color:white;    
}


.package_layout {
    position: fixed;
    height: 100vh; /* Full screen height */
    width: 100vw;  /* Full screen width */
    top: 0;
    left: 0;
    /* background: rgba(0, 0, 0, 0.475); */
    background:#000000bf;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.package_layout_inside {
    width: 40%;
    background: white;
}

.cart_layout {
    position: fixed;
    height: 100vh; /* Full screen height */
    width: 100vw;  /* Full screen width */
    top: 0;
    left: 0;
    /* background: rgba(0, 0, 0, 0.475); */
    background: rgba(255, 255, 255, 0.75); /* Semi-transparent background */
    backdrop-filter: blur(4px); /* Applies the blur effect */
    z-index: 1000;
   
    
}



.cart_layout_inside {
    width: 40%;
    background: white;
    position: absolute;
    right:0;
    height: 100vh;
}

.removecart{
    cursor: pointer;
}

.outsider{
    height: 250px;
    width: 100%;
}

.dlv_chrg_cls{
    font-size: 13px;
    font-weight: 450;
}

#pac-input {
  
    width: 100%;
}

#map {
    height: 100%;
    width: 100%;
}

.otp-container {
    display: flex;
    gap: 8px;
    justify-content: center;
  }

  .cart_lll_btn{
    width: fit-content;
  }

  .otp-input {
    width: 45px;
    height: 45px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
  }

  .otp-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  }

  .mob_cart {
    position: relative;
  }
  
  .dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: -71;
    width: 150px; /* Adjust width as needed */
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none; /* Initially hidden */
    z-index: 10;
  }
  
  .dropdown-menu-custom .dropdown-item {
    padding: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
  }
  
  .dropdown-menu-custom .dropdown-item:hover {
    background: #f0f0f0;
  }
  
  .mob_cart:hover .dropdown-menu-custom {
    display: block; /* Show dropdown on hover */
  }
  
  input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}


/* my account csss */

.fix_bottom{
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 100%;
}

.mainclr_bg{
    background-color: #fedf0a;
}

.mainclr{
    background-color: #fedf0a;
}


.swal-confirm-btn{

    background: black;
}