/* react-confirm-alert */
.avt-react-confirm-alert {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.react-confirm-alert-overlay {
  animation: none !important;
  opacity: 1 !important;
  z-index: 1000 !important;
}

.react-confirm-alert-blur {
  filter: none !important;
}

/* react-datepicker */
.react-datepicker__day--selected {
  background-color: #359279 !important;
}

@keyframes anvil {
  0% {
    transform: scale(1) translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
.popup-content {
  animation: anvil 0.2s forwards;
}
