.weekdays--wrapper {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

@media (max-width: 991px) {
  .weekdays--wrapper {
    justify-content: center;
  }
}

.weekdays--button {
  min-width: 30%;
  width: 30%;
  max-width: 30%;
  margin-right: 0.5%;
  margin-left: 0.5%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .weekdays--button {
    min-width: 22%;
    max-width: 22%;
    margin-right: 0.5%;
    margin-left: 0.5%;
  }
}

@media (max-width: 575px) {
  .weekdays--button {
    width: 45% !important;
    min-width: 45% !important;
    max-width: 45% !important;
    margin-right: 0.5%;
    margin-left: 0.5%;
  }
}

/* bag */

.bag--wrapper img {
  height: 115px;
  width: 140px;
  object-fit: contain;
}

@media (max-width: 575px) {
  .bag--wrapper img {
    max-width: 140%;
    width: 100%;
  }
}

.bag--wrapper h4 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 5px;
}

.bag--wrapper p {
  font-size: 14px;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

/* allergy - excludes */

.ctg--allergy-filter-wrapper h6 {
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
  margin-left: 10px;
}

.ctg--allergy-filter-wrapper h6 i, .ctg--allergy-filter-wrapper h6 svg {
  margin-left: 10px;
  margin-right: 10px;
  color: var(--color-theme-secondary) !important;
  fill: var(--color-theme-secondary) !important;
  font-size: 18px;
}

/* list */

.ctg--allergy-list {
  width: 92%;
  border: 1px solid var(--color-primary-transparent);
  padding: 12px 15px 5px;
  border-radius: var(--common-radius-lg);
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  margin: auto;
  margin-bottom: 6px;
}

.ctg--allergy-list .form--checkbox {
  width: 32%;
  margin-bottom: 10px;
}

.ctg--allergy-list .form--checkbox label {
  max-width: 16ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .ctg--allergy-list .form--checkbox, .ctg--allergy-list .form--checkbox input {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .ctg--allergy-list .form--checkbox, .ctg--allergy-list .form--checkbox input {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .ctg--allergy-list .form--checkbox label {
    max-width: 16ch;
  }
}

@media (max-width: 575px) {
  .ctg--allergy-list .form--checkbox {
    width: 49%;
  }
}

