:root {
  --flylondon: #702072;
  --asportuguesas: #000;
  --fredandfrederico: #086e6f;
  --softinos: #e96911;
}

/* Apply custom animations */
.animate-circle-keys {
  animation: circle-keys 2s ease-in-out infinite;
}
.animate-dot-keys {
  animation: dot-keys 2s ease-in-out infinite;
}
.animate-outline-keys {
  animation: outline-keys 2s ease-in-out infinite;
}
.animation-delay-300 {
  animation-delay: 0.3s;
}
.animation-delay-600 {
  animation-delay: 0.6s;
}
.animation-delay-900 {
  animation-delay: 0.9s;
}
.animation-delay-1200 {
  animation-delay: 1.2s;
}
.animation-delay-1500 {
  animation-delay: 1.5s;
}
.animation-delay-1800 {
  animation-delay: 1.8s;
}
.animation-delay-2100 {
  animation-delay: 2.1s;
}

/* Custom animations */
@keyframes circle-keys {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes dot-keys {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes outline-keys {
  0% {
    transform: scale(0) "var(--{{MyConfig.site}})";
    outline-offset: 0;
    opacity: 1;
  }
  100% {
    transform: scale(1);
    outline: solid 0 transparent;
    outline-offset: 20px;
    opacity: 0;
  }
}

/*** Hide arrow on input number */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/** show tooltip message if value is invalid*/
.tooltip {
  display: none;
}
input:invalid:not(:placeholder-shown) + .tooltip {
  display: block;
}

/* Para navegadores WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 6px; /* Largura da barra vertical */
  height: 6px; /* Altura da barra horizontal */
}

::-webkit-scrollbar-track {
  background: transparent; /* Fundo transparente */
}

::-webkit-scrollbar-thumb {
  background-color: "var(--{{MyConfig.site}})"; /* Cor da barra */
  border-radius: 3px; /* Bordas arredondadas */
}

/* Para Firefox */
* {
  scrollbar-width: thin; /* "auto" ou "thin" */
  scrollbar-color: "var(--{{MyConfig.site}})" transparent; /* thumb e track */
}

/* Para Internet Explorer (suporte limitado) */
body {
  scrollbar-base-color: "var(--{{MyConfig.site}})";
  scrollbar-face-color: "var(--{{MyConfig.site}})";
  scrollbar-3dlight-color: "var(--{{MyConfig.site}})";
  scrollbar-highlight-color: "var(--{{MyConfig.site}})";
  scrollbar-track-color: transparent;
  scrollbar-arrow-color: "var(--{{MyConfig.site}})";
  scrollbar-shadow-color: "var(--{{MyConfig.site}})";
  scrollbar-darkshadow-color: "var(--{{MyConfig.site}})";
}
