.react-calendar {
    max-width: 575px;
    background: white;
    line-height: 1.125em;
}
.react-calendar--doubleView {
    width: 700px;
}
.react-calendar--doubleView .react-calendar__viewContainer {
    display: flex;
    margin: -0.5em;
}
.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;
}
.react-calendar button:enabled:hover {
    cursor: pointer;
}
.react-calendar__navigation {
    display: flex;
    height: 44px;
    margin-bottom: 1em;
}

.react-calendar__navigation__label > span {
    font-size: 15px;
}
.react-calendar__navigation__prev-button,
.react-calendar__navigation__next-button {
    font-size: 20px;
    color: rgb(143, 143, 143);
}
.react-calendar__navigation__prev2-button,
.react-calendar__navigation__next2-button {
    font-size: 20px;
    color: rgb(136, 136, 136);
}

.react-calendar__navigation button {
    min-width: 44px;
    background: #eeeeee;
}
.react-calendar__navigation button:enabled:hover,
.react-calendar__navigation button:enabled:focus {
    background-color: #e6e6e6;
}
.react-calendar__navigation button[disabled] {
    background-color: #f0f0f0;
}
.react-calendar__month-view__weekdays {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.75em;
}
.react-calendar__month-view__weekdays__weekday {
    padding: 0.5em 0 1em 0;
    font-size: 13px;
}
.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--neighboringMonth {
    color: #999;
}
.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;
    background: none;

    font-size: 13px;
    padding: 1.1em 0.5em;
}

.react-calendar__tile:disabled {
    background-color: #f0f0f0;
}
.react-calendar__tile:enabled:hover,
.react-calendar__tile:enabled:focus {
    background-color: #c5c5c5;
}
.react-calendar__tile--now {
    background: #e6e6e6;
}
.react-calendar__tile--now:enabled:hover,
.react-calendar__tile--now:enabled:focus {
    background: #e6e6e6;
}
.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: #29347a;
    color: white;
}
.react-calendar__tile--active:enabled:hover,
.react-calendar__tile--active:enabled:focus {
    background: #29347a;
}
.react-calendar--selectRange .react-calendar__tile--hover {
    background-color: #e6e6e6;
}

.box-radio-input input[type="radio"] {
    display: none;
}
.box-radio-input input[type="radio"] + span {
    display: inline-block;
    background: none;
    border: 0.1em solid #dfdfdf;
    padding: 0px 10px;
    text-align: center;
    height: 35px;
    line-height: 33px;
    font-weight: 500;
    cursor: pointer;
    font-size: 13px;
}
.box-radio-input input[type="radio"] + span:hover {
    background-color: #c5c5c5;
    border: 1px solid #c5c5c5;
}
.box-radio-input input[type="radio"]:checked + span {
    border: 1px solid #29347a;
    background: #29347a;
    color: #fff;
}

.fl {
    float: left;
}
.pl-25 {
    padding-left: 25px;
}
