.fas-shipping-options {
  display: flex;
  width: 100%;
  gap: 12px;
  margin-bottom: 12px;
}

@media screen and (max-width: 720px) {
  .fas-shipping-options {
    flex-direction: column;
    gap: 6px;
  }
}

.fas-shipping-options .icon {
  width: 24px;
}

.fas-shipping-options .city-selector,
.fas-shipping-options .select-delivery-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 1px solid #6c7257;
  height: 54px;
  padding: 0 6px;
  border-radius: 3px;
  gap: 2px;
}
.fas-shipping-options .select-delivery-options .hide {
  display: none;
}
.fas-shipping-options .selected-delivery-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 2px;
}
.fas-shipping-options .delivery-option-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 2px;
}

.fas-shipping-options .delivery-option-selector .calendar-icon {
  width: 26px;
}
.fas-shipping-options .delivery-option-selector .label {
  flex-grow: 1;
}
.fas-shipping-options .delivery-option-selector .right-arrow {
  width: 18px;
}
.fas-shipping-options .done {
  background: #ecedeb;
}
.fas-shipping-options .active {
  animation: shadowScale 1s infinite alternate;
}
.fas-shipping-options .inactive {
  opacity: 0.4;
}
@keyframes shadowScale {
  from {
    box-shadow: 0px 0px 0px 0px #6c725796;
  }
  to {
    box-shadow: 0px 0px 5px 3px #6c725796;
  }
}

.fas-shipping-options .city-selector select {
  border: none;
  height: 100%;
}
.select-delivery-options .date {
  font-size: 40px;
  font-weight: 100;
}
.select-delivery-options .detail {
  font-size: 12px;
  flex-grow: 1;
  color: #6c7257;
}
.select-delivery-options .edit-icon svg {
  width: 24px;
  height: 24px;
}

/* Modal */
.fas-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;

  padding-top: 100px;
  overflow: auto;
}

.fas-modal-container .modal {
  background: #fff;
  border-radius: 10px;
  max-width: 500px;
  overflow: hidden;
  transform: scale(0.7);
  opacity: 0;
  animation: scaleIn 0.3s ease forwards;
  position: relative;
  margin: auto;
  border: 1px solid #888;
  width: 80%;
}

.fas-modal-container .modal-header {
  padding: 15px 20px;
  background: #6c7257;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fas-modal-container .modal-header .modal-title {
  font-size: 18px;
  font-weight: bold;
}

.fas-modal-container .modal-body {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.fas-modal-container .step-container {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease;
}

.fas-modal-container .step {
  width: 100%;
  flex-shrink: 0;
  padding: 20px;
  box-sizing: border-box;
}

.fas-modal-container .step .content {
  width: calc((100% / 3) - 40px);
  overflow: hidden;
}

.fas-modal-container .step .content .heading {
  color: #6c7257;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.modal-footer {
  padding: 15px 20px;
  text-align: right;
}

.fas-modal-container button.back-btn,
.fas-modal-container button.close-btn {
  cursor: pointer;
  border: none;
  background: none;
}
.fas-modal-container button.back-btn svg,
.fas-modal-container button.close-btn svg {
  width: 32px;
}
.fas-modal-container button.back-btn.invisible {
  visibility: hidden;
}

.fas-modal-container .step #shipping-methods,
.fas-modal-container .step #time-slots {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.fas-modal-container .step .form-check-label {
  padding: 12px;
  border: 1px solid #6c7257;
  border-radius: 8px;
  width: 250px;
  text-align: center;
  align-items: center;
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 8px;
  color: #6c7257;
}

.fas-modal-container .step .shipping-methods .form-check-label {
  width: 100%;
  justify-content: space-between;
  gap: 8px;
  padding: 0;
  padding-left: 12px;
  color: #6c7257;
}
.fas-modal-container .step .shipping-methods .form-check-label .label {
  flex-grow: 1;
  text-align: left;
}
.fas-modal-container .step .form-check-label .cost {
  background-color: #6c7257;
  color: #fff;
  padding: 12px;
  border-radius: 0 8px 8px 0;
}

@keyframes scaleIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Calendar */

.calendar-header {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
}

.calendar-header button {
  background: none;
  border: none;
  cursor: pointer;
}

.calendar-header button svg {
  width: 26px;
}

.day-names,
.dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding: 0.5rem;
}

.day-names div {
  font-weight: bold;
  color: #555;
  text-transform: capitalize;
}

.dates div {
  padding: 10px 0;
  margin: 3px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

.dates div:hover {
  color: white;
  background: #6c7257;
}

.dates .disabled {
  color: #ccc;
  pointer-events: none;
  background: #f0f0f0;
}

.dates .today {
  background: #6c7257;
  color: white;
}

.dates .selected {
  background: #28a745;
  color: white;
}

#billing_city_field {
  display: none !important;
}
