.root-containers {
  width: clamp(200px, 1200px, 95%);
  margin: auto;
  min-height: 80vh;
  display: flex;
  gap: 1rem;
}
.filters-container {
  flex: 0 0 300px;
}
.booking-grid-filters {
  padding: 1rem;
  border-radius: 15px;
  height: max-content;
  width: 220px;
}
.booking-container-to-fill {
  flex: 1;
  background-color: white;
  padding: 1rem;
  border-radius: 15px;
  margin-bottom:1rem;
}
.booking-grid-container {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem; */
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 1rem;
}
.back-to-types-button{
  margin-bottom: 1rem;
}
.session-card {
  cursor: pointer;
  border-radius: 10px;
  /* max-width: 300px; */
  height: auto;
  position: relative;
  flex-basis: 32.2%;
}
.session-card:hover {
  transition: all 0.2s ease 0s;
}
.background-gradient {
  box-shadow: inset 0px -115px 49px rgba(245, 247, 247, 0.75);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10px;
  z-index: 1;
}
.no-show-card {
  display: none;
}
.session-card-image {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 10px;
  height: 100%;
}
.session-card-text {
  padding: 12px;
  z-index: 2;
}
.session-card-heading {
  padding: 12px;
  font-weight: 500;
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
}
.session-card-heading-course {
  bottom: 17px;
}
.session-card-text {
  padding: 12px;
  padding-bottom: 9px;
  font-weight: 500;
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
}
.session-card-location {
  margin-top: 0.25rem;
}
@media (max-width: 1025px) {
  .session-card {
    flex-basis: 48%;
  }
}
@media (max-width: 500px) {
  .session-card {
    flex-basis: 100%;
  }
}
.gift-card-area {
  width: 100%;
  height: 5rem;
  border-radius: 15px;
  padding: 0.6rem;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.quick-choose-amount {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.quick-choose-amount-amount {
  padding: 0.7rem;
  cursor: pointer;
  border-radius: 16px;
  border: 2px solid var(--sailia-gray-4);
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.gift-card-pattern-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.gift-card-pattern {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.gift-card-header {
  z-index: 1;
  position: relative;
}
.gift-card-icon-container {
  height: 100%;
  position: relative;
  width: max-content;
  margin-left: auto;
}
.gift-card-icon {
  display: none;
  height: 100%;
  width: 100px;
  object-fit: contain;
}
.gift-card-label {
  margin-top: 1rem;
}
.gift-card-amount-input {
  /* margin-top: 1rem; */
  width: 6rem;
}
.gift-card-recipient-email {
  width: clamp(10rem, 15rem, 100%)
}
.gift-card-checkout-area {
  margin-top: 1rem;
}
.sailia-unit-input {
  display: flex;
  align-items: center;
  height: 32.5px;
  border: 1px solid var(--sailia-gray-4);
  border-radius: 8px;
}
.sailia-unit-input-unit-booking {
  width: 2rem;
}
.sailia-unit-input-input {
  border: none;
  background: #FFF;
  margin: 0px;
  height: 100%;
  width: 100%;
}
/* when focusing on the input box the input box should have no effect */
.sailia-unit-input-input:focus {
  outline: none;
  box-shadow: none;
}
.sailia-unit-input:focus-within {
  outline: 0;
  box-shadow: 0 0 0 2px var(--sailia-teal-2);
}

@media (max-width: 768px) {
  .root-containers {
    flex-direction: column;
  }

  .filters-container {
    flex: none;
    width: 100%;
    margin-bottom: 1rem;
  }
  .booking-grid-filters {
    width: 100%;
    box-sizing: border-box;
  }
  .booking-grid {
    display: flex;
    flex-direction: column;
  }
}