@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body{
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Urbanist', sans-serif !important;
}
.foods-checkout-wrapper {
  background-color: #e9ecee;
  min-height: 100vh;
  height: auto;
}
.food-check-left,
.food-check-right {
  background-color: white;
  border-radius: 7px;
}
.foods-checkout-wrapper .food-check-right img {
  border-radius: 7px;
}
.col-12{
  flex: auto !important;
}

.foods-checkout-wrapper .food-check-right .bill-container {
  background: #fff;

  border-radius: 10px;
}
.foods-checkout-wrapper .food-check-right .text-muted {
  text-decoration: line-through;
  color: #999 !important;
}
.foods-checkout-wrapper .food-check-right .tip {
  color: #e63946;
  font-weight: 500;
  cursor: pointer;
}

.floating-label {
  position: relative;
}

.floating-label input,
.floating-label select {
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  font-size: 16px;
  transition: all 0.3s;
  color: black;
  height: 44px;
  background-color: white;
}

.floating-label label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #777;
  background: white;
  padding: 0 5px;
  transition: all 0.3s ease-in-out;
  pointer-events: none ;
}

/* When Input is Focused or Has Value */
.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label select:focus + label,
.floating-label select:not(:placeholder-shown) + label {
  top: 0;
  left: 10px;
  font-size: 12px;
  color: #007bff;
}

.floating-label input:focus,
.floating-label select:focus {
  border-color: #007bff;
}

.foods-checkout-wrapper .food-check-right .food-item-box {
    box-shadow: 2px 13px 10px aliceblue !important;
  height: auto;
  max-height: 200px;
}
.foods-checkout-wrapper .food-check-left .col-6 {
  flex: auto !important;
}
.foods-checkout-wrapper .food-check-right .food-item-box h4 {
  font-size: 17px;
}
.foods-checkout-wrapper .food-check-left .foods-heading {
  height: 50px;
  background-color: #dfdfdf;
}
.foods-checkout-wrapper .food-check-left .foods-heading h2 {
  font-size: 1.3rem;
  color: #646464;
}

.foods-checkout-wrapper .food-check-right .bill-container .payment-heading {
  font-weight: 500;
  font-size: 18px;
  border-bottom: 2px solid #b9b9b9;
}

.foods-checkout-wrapper .food-check-right .food-quantity-box button,
.foods-checkout-wrapper .food-check-right .food-quantity-box input {
  background-color: white;
  transition: all 0.3s ease-in-out;
}
.foods-checkout-wrapper .food-check-right .food-quantity-box input {
  max-width: 100px;
  width: 50px;
  color: black;
}
.foods-checkout-wrapper .food-check-right .food-quantity-box input:focus {
  box-shadow: none !important;
}
.foods-checkout-wrapper .food-check-right .bg-danger {
  border-radius: 8px;
  color: white;
}

.foods-checkout-wrapper .food-check-right .food-quantity-box {
  border: 1px solid #9d9d9d;
  border-radius: 8px;
  font-size: 10px;
}
.foods-checkout-wrapper .food-check-right .food-item-box h3 {
  font-size: 1.2rem !important;
  font-weight: 600;
}

.foods-checkout-wrapper .food-check-right .food-quantity-box #quantity-food {
  border-left: 1px solid #9d9d9d;
  border-right: 1px solid #9d9d9d;
  border-radius: 0px !important;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
.theme-btn{
  font-family: "Urbanist", sans-serif;
  padding: 8px 20px !important;
  font-size: .8rem !important;
}
.theme-btn:hover::before {
  background-color: #b0b0b0 !important;
  transform: none !important;
}
.theme-btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: none !important;
  z-index: -1;
  transition: all 500ms ease;
}
.cancel-btn{
  font-family: "Urbanist", sans-serif;
  padding: 8px 20px !important;
  background-color: gray !important;
  color: white !important;
}
.cancel-btn:hover{
  background-color: #b0b0b0 !important;
  transform: none !important;
}
.foods-checkout-wrapper .food-check-right .food-items-lists {
  max-height: 403px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin; 
  scrollbar-color: #ff7f50 #f0f0f0;
}


.food-items-lists::-webkit-scrollbar {
  width: 8px; 
}

.food-items-lists::-webkit-scrollbar-track {
  background: #f0f0f0; 
  border-radius: 4px;
}

.food-items-lists::-webkit-scrollbar-thumb {
  background: #ff7f50;
  border-radius: 4px;
}

.food-items-lists::-webkit-scrollbar-thumb:hover {
  background: #ff4500; 
}
.foods-checkout-wrapper .food-check-left .form-select{
  color: #777 !important;

}
.foods-checkout-wrapper .food-check-left .form-select:focus{
  box-shadow: none !important;
}

.item-meta p{
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
}








@media screen and (max-width: 992px){
  .foods-checkout-wrapper .food-check-right .food-items-lists {
    height: auto !important;
    max-height: 100% !important;
    
  }
}

@media screen and (max-width: 415px){
  .foods-checkout-wrapper .food-check-left .foods-heading h2{
    font-size: 1.1rem;
  }
    .foods-checkout-wrapper .food-check-right .food-item-box {
        height: auto !important;
        max-height: 500px !important;
        flex-wrap: wrap;
        
    }
    .foods-checkout-wrapper .food-check-right .food-item-box img{
        height: 150px !important;
    }
    .foods-checkout-wrapper .food-check-right .food-item-box .gap-3{
        justify-content: space-between !important;
    }
    .foods-checkout-wrapper .food-check-right .food-item-box .col-5, .foods-checkout-wrapper .food-check-right .food-item-box .col-7{
        width: 100% !important;
    }

}
