/* Section Reservations */
.section.section-reservations {
    padding-top: 80px;
    padding-bottom: 80px;
    /* margin-top: -200px; */
    font-family: 'Roboto', sans-serif;
    position: relative;
  }
  
  .section.section-reservations h2 {
    text-align: center;
    color: #0A344E;
    font-size: 38px;
    line-height: 1.28;
    margin-bottom: 53px;
  }
  
  .section.section-reservations .calendar-wrapper {
    display: flex;
    justify-content: space-between;
  }
  
  .section-reservations .box {
    background: linear-gradient(180.38deg, #FFFFFF 0.33%, #F8F9FF 99.67%);
    box-shadow: 0px 34px 24px -9px rgba(50, 77, 171, 0.12);
    border-radius: 10px;
  }
  
  .section.section-reservations .calendar {
    min-width: 480px;
    min-height: 360px;
    width: 480px;
    color: #0A344E;
    margin-right: 20px;
    font-family: 'Roboto', sans-serif;
  }
  
  .vanilla-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 100%;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 26px;
    padding: 24px 65px 17px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgb(10 52 78 / 10%);
    margin-bottom: 22px;
  }
  
  .vanilla-calendar-header button {
    background: none;
    border: none;
  }
  
  .vanilla-calendar-week {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 2px 34px;
    font-weight: bold;
  }
  
  .vanilla-calendar-week span {
    text-align: center;
    width: 100%;
  }
  
  .vanilla-calendar .vanilla-calendar-body {
    display: flex;
    flex-wrap: wrap;
    padding: 0 34px 22px;
  }
  
  .vanilla-calendar .vanilla-calendar-date {
    width: calc(100%/7);
    margin-top: 5px;
  }
  
  .vanilla-calendar .vanilla-calendar-date span {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
  
  .vanilla-calendar .vanilla-calendar-date--active span {
    cursor: pointer;
  }
  
  .vanilla-calendar .vanilla-calendar-date--selected span {
    background-color: #0A344E;
    color: #FFF;
    font-weight: bold;
  }
  
  .vanilla-calendar .vanilla-calendar-date--disabled {
    border-radius: 0;
    cursor: not-allowed;
    opacity: 0.2;
  }
  
  .selected-date-info {
    padding: 30px 35px;
    font-family: 'Roboto', sans-serif;
    width: 100%;
  }
  
  .selected-date-info h4 {
    color: #0A344E;
    padding: 0 15px 6px;
    font-size: 22px;
    border-bottom: 1px solid rgb(10 52 78 / 10%);
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
  }
  
  .selected-date-info h4 span {
    text-transform: uppercase;
  }
  
  .selected-date-info p {
    padding: 36px 15px;
    font-size: 16px;
    line-height: 145%;
    color: #A4A0A0;
  }
  
  .selected-date-info p strong {
    display: block;
    font-weight: 500;
    color: #0A344E;
    margin-bottom: 8px;
  }
  
  .selected-date-info p .button {
    margin-top: 43px;
  }


@media (max-width: 800px) {
  .section.section-reservations {
    margin-top: -140px;
  }

  .section.section-reservations h2 {
    margin-bottom: 32px;
  }

  .section.section-reservations .calendar-wrapper {
   flex-direction: column; 
  }

  .section-reservations .box {
    padding: 14px;
    margin: 0;
  }

  .section.section-reservations .calendar {
    margin-bottom: 20px;
    width: 100%;
    min-width: 100%;
    padding: 0;
  }

  .vanilla-calendar-header {
    padding: 24px 17px;
  }

  .vanilla-calendar-week {
    padding: 0;
  }

  .vanilla-calendar .vanilla-calendar-body {
    padding-left: 0;
    padding-right: 0;
  }

  .selected-date-info h4 {
    padding-left: 0;
    padding-right: 0;
  }
}