
@media screen and (max-width: 870px) {
  .wrapper-search-form-calendar {
    position: fixed;
    top: 0;
    left: 0;

    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    padding: 75px 14px 14px;

    overflow-y: scroll;
  }

  .search-form-calendar-header-button {
    display: none;
  }

  .search-form-calendar-body-weekdays {
    display: none;
  }

  .search-form-calendar {
    gap: 20px;
  }

  .search-form-calendar-header span {
    font-weight: normal;
  }
}

@media screen and (max-width: 500px) {
  .search-form-calendar-body-days {
    grid-template-columns:repeat(7, 42px)
  }

  .search-form-calendar-body-days .day {
    width: 42px;
    height: 42px;
  }
}

@media screen and (max-width: 400px) {
  .search-form-calendar-body-weekdays div {
    width: 35px;
    height: 35px;
  }

  .search-form-calendar-body-days {
    grid-template-columns: repeat(7, 35px)
  }

  .search-form-calendar-body-days .day {
    width: 40px;
    height: 40px;
  }

  .search-form-calendar-body-days .day span {
    font-size: 12px;
  }
}
