.calendar {
    display: flex;
    position: relative;
    padding: 16px;
    margin: 0 auto;
    max-width: 320px;
    background: white;
    border-radius: 4px;
    /*box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);*/
}

.month-year {
    position: absolute;
    bottom:62px;
    right: -27px;
    font-size: 2rem;
    line-height: 1;
    font-weight: 300;
    color: #94A3B8;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}

.year {
    margin-left: 4px;
    color: #CBD5E1;
}

.days {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    margin-right: 46px;
}

.day-label {
    position: relative;
    flex-basis: calc(14.286% - 2px);
    margin: 1px 1px 12px 1px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #1E293B;
    text-align: center;
}

.day {
    position: relative;
    flex-basis: calc(14.286% - 2px);
    margin: 1px;
    /*border-radius: 999px;*/
    cursor: pointer;
    font-weight: 300;
    color: #94A3B8;
}

.day.dull {
    color: #94A3B8;
}

.day.today {
    color: black;
    font-weight: 600;
}

.day::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.day:hover {
    background: #E0F2FE;
}

.day .content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.day.free {
    background-color: #BCD6B17F;
}

.day.occupied {

}

.bookable:hover {
    color: #F2C401;
    font-weight: 600;
}

.day.date-arrival {
    color: #F2C401;
    font-weight: 600;
    /* border: 1px solid #F2C401; */
}

.day.occupied_free {
    background:linear-gradient(-45deg, #BCD6B17F 50%, white 50%);
}

.day.free_occupied {
    background:linear-gradient(-45deg, white 50%, #BCD6B17F 50%);
}

@media (min-width: 768px) {
    .modal-xl {
        width: 90%;
        max-width:1200px;
    }
}
