.react-calendar {
  position: relative;
  width: 300px;
  max-width: 100%;
  background: white;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(70, 70, 70);
}
.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;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(70, 70, 70);
}
.react-calendar button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.react-calendar__navigation {
  border-bottom: 1px solid rgb(220, 220, 220);
}
.react-calendar__navigation button {
  min-width: 44px;
  background: none;
  padding: 8px 0;
}
.react-calendar__navigation button:not([disabled]):hover {
  background-color: #F0F5FB;
}
.react-calendar__navigation button:not([disabled]):focus {
  outline: 1px dotted black;
  z-index: 1;
}
.react-calendar__month-view__weekdays {
  text-align: center;
  border-bottom: 1px solid rgb(220, 220, 220);
}
.react-calendar__month-view__weekdays__weekday {
  padding: 8px 0;
  font-size: 12px;
  color: rgb(160, 160, 160);
}
.react-calendar__month-view__weekdays__weekday > abbr {
  text-decoration: none;
}
.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: .75em;
  padding: calc(1em) calc(0.66666667em);
}
button.react-calendar__month-view__days__day--neighboringMonth {
  color: rgb(160, 160, 160);
}
.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
  padding: 8px 0;
}
.react-calendar__tile {
  max-width: 100%;
  text-align: center;
  padding: 8px 0;
  background: none;
}
button.react-calendar__tile[disabled] {
  background-color: #f0f0f0;
}
button.react-calendar__tile:not([disabled]):hover {
  background-color: #F0F5FB;
}
button.react-calendar__tile:not([disabled]):focus {
  outline: 1px dotted black;
  z-index: 1;
}
button.react-calendar__tile--hasActive {
  outline: 2px solid rgb(70, 70, 70);
  outline-offset: -1px;
  z-index: 1;
}
button.react-calendar__tile--active {
  outline: 2px solid rgb(70, 70, 70);
  outline-offset: -1px;
  z-index: 1;
}
button.react-calendar__tile--now > abbr {
  border-radius: 3px;
  padding: 2px 8px;
  background-color: rgb(120, 120, 120);
  color: white;
}
.react-calendar--selectRange .react-calendar__tile--hover {
  background-color: #e6e6e6;
}
