@media only screen and (max-width: 600px) {
  .mobile-no-view {
    display: none;
  }
  .mobile-larger-view {
    width: 27% !important;
    min-width: unset;
  }
  #new-booking {
    width: unset;
    padding: 12px;
  }
  .week-calendar-table th,
  .week-calendar-table td {
    min-width: unset;
    padding: 10px;
  }
  .week-calendar {
    padding: 0px 3px;
  }
  .week-day-select {
    display: flex;
    padding: 12px 22px 22px 22px;
    justify-content: space-between;
    align-items: center;
    margin: -0.8rem 0 0rem 0;
    font-weight: 500;
    position: sticky;
    z-index: 7;
    top: 0;
    background-color: white;
  }
  .week-day-select p {
    font-size: 14px;
  }
  .week-day-select p,
  .week-day-select span {
    display: flex;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    margin-bottom: 0rem;
    padding: 5px 7px 5px 7px;
    width: 32px !important;
    height: 32px !important;
  }
  .week-day-select span {
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
  }
  .selected-mobile-week {
    background-color: black;
    color: white;
    border-radius: 50% !important;
  }
  .mobile-font-large {
    font-size: 18px;
    height: 80px;
  }
  .mobile-month-title {
    margin: 0px 10px 0px 10px;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

@media screen and (min-width: 600px) {
  .week-day-select {
    display: none;
  }
}
