.customCalendar-wrapper{
    margin: 0 auto;
    background-color: white;
    border-radius: 1rem;
    display: grid;
/*    grid-template-columns: repeat(4, 1fr); */
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    place-items: start center;
    gap: 20px;
/*    max-width: 1340px; */
    width: 100%;
}

.customCalendar-wrapper .calendar-input{
    display: none;
}


.customCalendar-wrapper .air-datepicker{
    border: none;
}
.customCalendar-wrapper .air-datepicker-nav{
    border-bottom: none;
    padding: 0 10px;
}

.customCalendar-wrapper .air-datepicker--navigation{
    position: relative;
}

.customCalendar-wrapper .air-datepicker-nav--title{
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    pointer-events: none;
    cursor: default;
    border: 1px solid #e7e7e7;
    padding: 6px 13px 8px 13px;
    border-radius: 1rem;
    line-height: 1;
}
.customCalendar-wrapper .air-datepicker-body--day-name,
.customCalendar-wrapper .air-datepicker-nav--title i{
    color: #434343;
}


.customCalendar-wrapper .air-datepicker-cell{
    font-size: 16px;
    padding-bottom: 2px;
    color: #787878;
    background-color: white;
    transition: background-color .4s ease-in;
}
.customCalendar-wrapper .air-datepicker-cell:hover{
    background-color: #fafafa;
}

.customCalendar-wrapper .air-datepicker-cell,
.customCalendar-wrapper .air-datepicker-body--day-name{
    user-select: none;
}

.customCalendar-wrapper .air-datepicker-cell.-selected-{
    background: none;
}


.customCalendar-wrapper .air-datepicker-body--day-name{
    font-size: 13px;
    font-weight: 600;
}


.customCalendar-wrapper .air-datepicker-nav--title:hover,
.customCalendar-wrapper .air-datepicker-cell.-day-.-other-month-:hover{
    background-color: transparent;
}

.customCalendar-wrapper .air-datepicker-cell,
.customCalendar-wrapper .birthday,
.customCalendar-wrapper .today{
    border-radius: .5rem;
}

.customCalendar-wrapper .birthday:not(.-other-month-),
.customCalendar-wrapper .birthday:not(.-other-month-):hover{
    background-color: #f3f3f3!important;
}
.customCalendar-wrapper .today,
.customCalendar-wrapper .today:hover,
.customCalendar-wrapper .today .-selected-{
    background-color: #ea3200!important;
    color: white!important;
}
