.range-slider {
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background: #989898;
  border-radius: 4px;
}
.range-slider[data-vertical] {
  height: 100%;
  width: 8px;
}
.range-slider[data-disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.range-slider .range-slider__thumb {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: grey;
  /* opacity: 0.5; */
}
.range-slider .range-slider__thumb:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 6px rgba(33, 150, 243, 0.5);
}
.range-slider[data-vertical] .range-slider__thumb {
  left: 50%;
}
.range-slider .range-slider__thumb[data-disabled] {
  z-index: 2;
}
.range-slider .range-slider__range {
  position: absolute;
  z-index: 1;
  transform: translate(0, -50%);
  top: 50%;
  width: 100%;
  height: 2px;
  background: white;
  opacity: 0.5;
}

.range-slider[data-vertical] .range-slider__range {
  left: 50%;
  transform: translate(-50%, 0);
}
.range-slider input[type='range'] {
  -webkit-appearance: none;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: transparent;
}
.range-slider input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
}
.range-slider input[type='range']::-moz-range-thumb {
  width: 0;
  height: 0;
  border: 0;
}
.range-slider input[type='range']:focus {
  outline: 0;
}

.react-calendar {
  width: 350px;
  max-width: 100%;
  background: black;
  border: 1px solid #a0a096;
  border-radius: 5px;
  padding: 3px;
  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--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;
  color: white;
}
.react-calendar__navigation {
  display: flex;
  /* height: 44px;
    margin-bottom: 1em; */
}

.react-calendar__navigation button {
  min-width: 44px;
  background: black;
  color: white;
  margin-bottom: 10px;
  padding-top: 10px;
}
.react-calendar__navigation button:disabled {
  color: white;
}
.react-calendar__navigation button:enabled:hover {
  color: white;
}
.react-calendar__navigation button:enabled:focus {
  color: white;
}
.react-calendar__month-view__days__day--neighboringMonth {
  color: #757575;
}

.react-calendar__month-view__weekdays {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75em;
  color: white;
}
.react-calendar__month-view__weekdays__weekday {
  /* padding: 0.5em; */
  color: white;
  opacity: 0.7;
  background: black;
}
.react-calendar__month-view__weekNumbers .react-calendar__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  font-weight: bold;
  color: white;
}
.react-calendar__month-view__days__day--weekend {
  color: white;
}

.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; */
  color: white;
}
.react-calendar__tile {
  color: white;
  padding: 15px;
  background: none;
  text-align: center;
  /* line-height: 16px; */
}
.react-calendar__tile:disabled {
  background-color: black;
  color: grey;
}
.react-calendar__tile:enabled:hover,
.react-calendar__tile:enabled:focus {
  background-color: grey;
  border-radius: 100%;
}
.react-calendar__tile--now {
  /* background: blue; */
  border-color: white;
  border-width: 2;
  border-radius: 100%;
  width: 20;
  height: 20;
}
.react-calendar__tile--now:enabled:hover,
.react-calendar__tile--now:enabled:focus {
  /* background: blue; */
  border-color: white;
  border-width: 2;
  width: 20;
  height: 20;
}
.react-calendar__tile--hasActive {
  border-color: white;
  border-width: 12;
  /* background: blue; */
  border-radius: 100%;
  width: 20;
  height: 20;
}
.highlighted {
  background: red;
  border-radius: 100%;
  width: 20;
  height: 20;
}
.react-calendar__tile--hasActive:enabled:hover,
.react-calendar__tile--hasActive:enabled:focus {
  background: #a9d4ff;
  width: 20;
  height: 20;
}
.react-calendar__tile--active {
  background: white;
  color: black;
  border-radius: 50%;
  width: 20;
  height: 20;
}
.react-calendar__tile--active:enabled:hover {
  background-color: gray;
  border-radius: 100%;
  color: white;
  width: 20;
  height: 20;
}
.react-calendar__tile--active:enabled:focus {
  background: grey;
  border-radius: 100%;
  color: white;
  width: 20;
  height: 20;
}
.react-calendar--selectRange .react-calendar__tile--hover {
  background-color: #e6e6e6;
}

