<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.ant-calendar-picker-input.ant-input {
  color: white !important;
}

.ant-calendar-picker-input.ant-input {
  height: 53px;
}

/* HELP POPUP ANIMATIONS */
.questionbox {
  animation-name: fade_in_1, fade_in_2;
  animation-duration: 0.8s, 0.3s;
  animation-timing-function: ease-out, cubic-bezier(.14,.18,.16,1.02);
  animation-fill-mode: forwards;
  will-change: opacity transform;
}

@keyframes fade_in_1 {
  from {
    opacity: 0;
    transform: translateY(5rem) scale(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fade_in_2 {
  from {
    opacity: 0.2;
    transform: translateY(-1rem) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animation-delay-0 {
  animation-delay: 0s, 0s;
}

.animation-delay-1 {
  animation-delay: 0.08s, 0.08s;
}

.animation-delay-2 {
  animation-delay: 0.16s, 0.16s;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .getbouns{
    font-size: 1.2rem;
  }
}
</pre></body></html>