@import "tailwindcss";


@layer base {
  html {
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }
}

/* touch-action: manipulation disables double-tap to zoom but allows other interactions like scroll and tap */
html {
  touch-action: manipulation;
  -ms-touch-action: manipulation; /* for older IE */
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#toast.show {
    display: block;
    opacity: 1;
}

#toast.hide {
    opacity: 0;
    transition: opacity 0.5s ease;
}

@keyframes drop {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .animate-drop {
    animation: drop 0.3s ease-out;
  }

.text-s4s-color {
    color: #00bda9 !important;
}

.bg-s4s-color {
    background-color: #00bda9 !important;
}

.fill-s4s-color {
    fill: #00bda9 !important;
}

.bg-s4s-service-blu {
    background-color: rgb(237 240 244) !important;
}

.bg-red-50 {
    background-color: var(--color-red-100) !important;
}

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #d2d6da;
    border-radius: .5rem;
    color: #495057;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4rem;
    padding: 1rem;
    transition: box-shadow .15s ease, border-color .15s ease;
    width: 100%;
}

.form-control:focus {
    box-shadow: 0 0 0 2px #00bda9;
}

.form-control:focus {
    border-color: #00bda9;
}

.logo-position {
    top: -200px;
    left : calc(50% - 50px);
}

.flash-screen-logo-position {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 189 169 / 20%) !important;
}

.logo-height-width {
    height: 100px !important;
    width: 100px !important;
}

.animate-bounce {
-webkit-animation: bounce 1s infinite;
animation: bounce 1s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    5% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* HTML: <div class="dot-loader"></div> */
.dot-loader {
  width: 60px;
  aspect-ratio: 4;
  background: radial-gradient(circle closest-side,#6a7282 90%,#0000) 0/calc(100%/3) 100% space;
  clip-path: inset(0 100% 0 0);
  animation: l1 1s steps(4) infinite;
}

@keyframes l1 {to{clip-path: inset(0 -34% 0 0)}}