.event_time_slot:has(.slot_seats) .time {
  margin-top: 1rem;
}

.keep_text_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.time {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #797979;
}
.past_time_slot {
  pointer-events: none;
  width: 121px;
  height: 53px;
  background: #e5e5e5;
  border-radius: 7px;
  flex: none;
  order: 1;
  flex-grow: 0;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #797979;
}

.unselected_time_slot {
  width: 130px;
  height: 53px;
  padding: 0.3rem;
  background: #f1f1f1;
  box-shadow: 5px 5px 6px #dddddd, inset -7px -7px 7px #ebebeb,
    inset 7px 7px 7px #ffffff;
  border-radius: 7px;
}

.selected_time_slot {
  width: 130px;
  padding: 0.3rem;
  height: 53px;
  background: #f1f1f1;
  box-shadow: inset -9px -9px 13px rgba(255, 255, 255, 0.81),
    inset 9px 9px 13px #e4e4e4;
  border-radius: 7px;
  & > .time {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #e44672;
  }
}

.slot_seats {
  /* Red Top */

  width: 121px;
  height: 20px;

  &.slot_seats--low {
    background: linear-gradient(
      90deg,
      rgba(255, 70, 70, 0.92) 0%,
      rgba(255, 138, 138, 0.92) 100%
    );
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.17);
  }
  &.slot_seats--moderate {
    background: linear-gradient(90deg, #4690ff 0%, #8dbbff 100%);
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.17);
  }
  &.slot_seats--available {
    background: linear-gradient(90deg, #1dd200 0%, #1cce00 100%);
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.17);
  }
}
