

.react-calendar {
    width: 350px;

    max-width: 100%;
    background: white;
    border: 1px solid #E8ECF1;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.125em;
}
.react-calendar--doubleView {
    width: 700px;
}
.react-calendar--doubleView .react-calendar__viewContainer {
    display: flex;
    margin: -0.5em;
}
.react-calendar__navigation__next2-button,.react-calendar__navigation__prev2-button{
    display: none;
}
.react-calendar__navigation__next-button,.react-calendar__navigation__prev-button{
    color: white!important;
    border: none!important;

}
.react-calendar__navigation__arrow{
    font-size: 32px;
}
.react-calendar__navigation__label__labelText{
    color: white;
    font-weight: bold;
    border: none!important;

}

.react-calendar--doubleView .react-calendar__viewContainer > * {
    width: 50%;
    margin: 0.5em;
}
.react-calendar,
.react-calendar *,
.react-calendar *:before,
.react-calendar *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.react-calendar button {
    margin: 0;
    border: 0;
    outline: none;
    border-left: 1px solid #E8ECF1;
    border-bottom: 1px solid #E8ECF1;
}
.react-calendar button:enabled:hover {
    cursor: pointer;
}
.react-calendar__navigation {
    height: 34px;

    background: #4B93D2;
}
.react-calendar__navigation button {
    min-width: 44px;
    background: none;
    border: none;
}

.react-calendar__navigation button[disabled] {
   /* background-color: #4B93D2;*/
}
.react-calendar__month-view__weekdays {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    color: #5E6772;
    text-decoration: none;
    background: #F5F7F9;

}

.react-calendar__month-view__weekdays__weekday {
    padding-top: 0.7em;
    padding-bottom: 0.7em;

}
.react-calendar__month-view__weekNumbers {
    font-weight: bold;
}
.react-calendar__month-view__weekNumbers .react-calendar__tile {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    padding: calc(0.75em / 0.75) calc(0.5em / 0.75);
}
.react-calendar__month-view__days__day--weekend {
    color: #d10000;
}
.react-calendar__month-view__days__day--neighboringMonth {
    color: #5E6772!important;
}
.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
    padding: 2em 0.5em;
}
.react-calendar__tile {
    max-width: 100%;
    text-align: center;
    padding: 1.2em 0.5em;
    background: none;
    font-family: 'robotomedium';
    font-size: 14px;
    color: #4B93D2;
}
.react-calendar__tile:disabled {
    background-color: #E8ECF1;
    color: #5E6772;
}
.react-calendar__tile:enabled:hover,
.react-calendar__tile:enabled:focus {
    background-color: #E8ECF1;
}
.react-calendar__tile--now {
    /*background: #ffff76;*/

}
.react-calendar__tile--now:enabled:hover,
.react-calendar__tile--now:enabled:focus {
    /*background: #ffffa9;*/
}
.react-calendar__tile--hasActive {
    background: #76baff;
}
.react-calendar__tile--hasActive:enabled:hover,
.react-calendar__tile--hasActive:enabled:focus {
    background: #a9d4ff;
}
.react-calendar__tile--active {
    background: #4B93D2;
    color: white;
}
.react-calendar__tile--active:enabled:hover,
.react-calendar__tile--active:enabled:focus {
    background: #4B93D2;
}
.react-calendar--selectRange .react-calendar__tile--hover {
    background-color: #E8ECF1;
}
