html,
body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  background-color: #ffff;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.custom-calendar {
  border: none !important;
  border-radius: 0 !important;
  /* background: none !important; */
}

.custom-calendar .react-datepicker__header.react-datepicker__header--custom {
  background: none !important;
  border: none !important;
}

.custom-calendar-day {
  width: 44px !important;
  margin: 0 !important;
  color: unset !important;
  background: none !important;
}

.custom-calendar .react-datepicker__day-names .react-datepicker__day-name {
  width: 40px !important;
}

@keyframes loading {
  0% {
    opacity: 0;
    transform: scale(0);
    -ms-transform: scale(0);
  }

  25% {
    opacity: 1;
    transform: scale(1);
    -ms-transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0);
    -ms-transform: scale(0);
  }
}

.btn-warning {
  color: #fff !important;
  background: #FF6E40 !important;
}

.btn-warning:hover {
  opacity: 0.5 !important;
}
