.bgc-primary{
  background-color: #1F3F6D !important;
  color: white;
}
.menu-selected{
  border-color: #1F3F6D !important;
  color: #1F3F6D !important;
}
.form-control, button:focus {
  box-shadow: none !important;
  border-color: #1F3F6D !important;
}
.btn:focus {
  box-shadow: none !important;
}
.featues_img{
  height: 30%;
  align-items: center;
  display: flex;
  justify-content: center;
}
/* for accordian */
.collapsed .fa-angle-up{
  display: none;
}
/* for checked checkboxes */

.form-check-input:not(:checked) {
  background-color: #ffffff; /* Change this to the desired background color */
  box-shadow: none;
  border-color: #949494;
}
.form-check-input:checked {
  background-color: #1F3F6D; /* Change this to the desired background color */
  box-shadow: none;
  border-color: #949494;
}
/* for meal selection header */
.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
  }
  .stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  
    @media (max-width: 768px) {
      font-size: 12px;
    }
  }
  
  .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 4px solid #EAECEB;
    width: 100%;
    top: 20px;
    left: -50%;
    /* z-index: 2; */
  }
  
  .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 4px solid #EAECEB;
    width: 100%;
    top: 20px;
    left: 50%;
    /* z-index: 2; */
  }
  
  .stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fffefe;
    margin-bottom: 6px;
    border:4px solid #EAECEB;
    color:#909694;
  }
  .step-name {
    color: #909694;
    font-weight: 500;
    font-size: .8rem;
  }
  .stepper-item.active {
    font-weight: 600;
    font-size: 22px;
    color: #0d6efd;
  }
  .stepper-item.active .step-name{
    font-weight: 600;
    font-size: 1rem;
    color: #0d6efd;
  }
  
  .stepper-item.completed .step-counter {
    background-color: #1F3F6D;
    color:white
  }
  .stepper-item.completed .step-name {
    color: #1F3F6D;
    font-weight: bold;
  }
  
  .stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 3px solid #EAECEB;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
  }
  
  .stepper-item:first-child::before {
    content: none;
  }
  .stepper-item:last-child::after {
    content: none;
  }
  /* for buttons in select meal type page */

  .number_of_meals label {
   
    border:2px solid #D9D9D9 !important;
    cursor: pointer; /* Ensure the label is clickable and focusable */
    display: inline-block; /* Ensure the label can receive focus */
    padding: 0.375rem 0.75rem;
    text-align: center;
  }
  .number_of_meals input[type="radio"]:checked + label {
    border-color: #1F3F6D !important;
    outline: 0; /* Remove default focus outline */
    box-shadow: 0 0 0 0; /* Add a custom focus style */
  }