.will-root .will-calendar-wrapper {
    box-shadow: var(--will-box-shadow-dark);
    border-radius: 20px;
    background-color: var(--will-white);
    position: absolute;
    top: 0;
    left: 0;
   
}

.will-root .will-calendar-wrapper .will-calendar-header,
.will-root .will-calendar-wrapper .will-calendar-main,
.will-root .will-calendar-wrapper .will-calendar-footer {
   padding: 20px;
}

/* Header */

.will-root .will-calendar-wrapper .will-calendar-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--will-grey);
    align-items: center;
}

/* Footer */

.will-root .will-calendar-wrapper .will-calendar-footer {
    border-top: 1px solid var(--will-grey);
}

/* Footer actions */

.will-root .will-calendar-wrapper .will-calendar-footer-actions-wrapper {
    display: flex;
    justify-content: space-between;
}

.will-root .will-calendar-wrapper .will-calendar-footer-dates > div {
    margin-bottom: 5px;
}

.will-root .will-calendar-wrapper .will-calendar-footer-dates-separator {
    margin: 0 15px;
}

.will-root .will-calendar-wrapper .will-calendar-footer-dates .will-calendar-footer-booked {
    display: flex;
    min-height: 20.5px;
    margin-top: 10px;
}

.will-root .will-calendar-wrapper .will-calendar-footer-error {
    display: flex;
    max-width: 80%;
}

.will-root .will-calendar-wrapper .will-calendar-footer-error span {
    display: inline-block;
    margin-left: 10px;
}

@media (max-width: 960px) {
    .will-root .will-calendar-wrapper {
        width: -webkit-fill-available;
        margin: 0 -6%;
    }

    .will-root .will-calendar-wrapper .will-calendar-header,
    .will-root .will-calendar-wrapper .will-calendar-main,
    .will-root .will-calendar-wrapper .will-calendar-footer {
        padding: 20px 10px;
    }

    .will-root .will-calendar-wrapper .will-calendar-footer-actions-wrapper {
        flex-direction: column;
    }

    .will-root .will-calendar-wrapper .will-calendar-footer-dates  {
        text-align: center;
    }

    .will-root .will-calendar-wrapper .will-calendar-footer-dates .will-calendar-footer-booked {
       justify-content: center;
    }

    .will-root .will-calendar-wrapper .will-calendar-footer-actions {
       flex-direction: column;
       width: 100%;
    }

    .will-root .will-calendar-wrapper .will-calendar-footer-actions button{
        width: 100%;
        margin-top: 10px;
     }

     .will-root .will-calendar-wrapper .will-calendar-footer-error {
        max-width: 100%;
    }

    .will-root .will-calendar-wrapper .will-calendar-footer-error span {
        text-align: center;
        margin-left: 5px;
    }
  }

.will-root .will-calendar-wrapper .will-calendar-header .will-filter-bar-close-button {
    position: initial;
}