/*
 * ralewayFonts.css ya NO se importa acá: un @import obliga al navegador a esperar
 * a que site.css se descargue y parsee antes de siquiera pedir las fuentes
 * (cadena serial HTML -> site.css -> ralewayFonts.css -> woff2).
 * Cada página que use site.css debe enlazarlo por su cuenta ANTES que este archivo:
 *   <link rel="stylesheet" href="{ruta}/assets/css/ralewayFonts.css" />
 */

:root {
  --color-one: #ff402c;
  --color-two: #333333;
  --color-background-form: #333333cc;
  --color-three: #666666;
  --color-four: #b4b4b4;
  --color-four-clear: #e6e8eb;
  --color-five: #f1e4d4;
  --color-six: #c5bcae;
  --color-seven: #2d78f0;
  --color-eight: #225ab5;
  --color-nine: #f1f1f1;
}

* {
  font-family: 'Raleway', sans-serif;
}

/*
 * Iconos SVG inline, en reemplazo de FontAwesome.
 * width/height en `em` para que hereden el font-size del contexto (igual que un
 * glifo de fuente) y `fill: currentColor` para que respondan a la propiedad color.
 */
.ico {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

html {
  max-width: 1920px;
  margin: 0 auto;
}

.universal-loader-container {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 5000;
  display: none;
  background-color: black;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.universal-loader {
  background-color: black;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* PANTALLA ENTRE 1600PX Y 1920PX TODO EN 1 SATORI */
@media screen and (min-width: 1600px) and (max-width: 1920px) {
}

/* Evita el zoom automático de iOS Safari al enfocar un input en táctil */
@media (hover: none) and (pointer: coarse) {
  input,
  textarea,
  select {
    font-size: 16px !important;
  }
}
