body {
  background-color: #f4f5f6;
  margin: 0;
  padding: 0;
  font-family: "Work Sans", sans-serif;
  color: #394040;
}

h1 {
  font-size: 96px;
  font-weight: 400;
  margin: 0;
}

h2 {
  font-size: 60px;
  font-weight: 700;
  margin: 0;
}

h3 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

h4 {
  font-size: 24px;
  font-weight: bold;
}

h5 {
  font-size: 22px;
  font-weight: bold;
}

h6 {
  font-size: 20px;
  font-weight: 500;
}

.subtitulo-1 {
  font-size: 16px;
  font-weight: normal;
}

.body-1 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  text-align: justify;
}

.body-2 {
  font-size: 14px;
  font-weight: 500;
}

.button {
  font-size: 14px;
  font-weight: 600;
}

button {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.caption {
  font-size: 12px;
  font-weight: 500;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.cursor-pointer {
  cursor: pointer;
}

.caja-resultado {
  width: 100%;
  background: #fff;
  position: relative;
  top: 10px;
  padding: 10px;
  box-sizing: border-box;
  margin: 5px 0;
}

/* Ripple effect */
.ripple {
  background-position: center;
  transition: background 0.8s;
}

.ripple:active {
  background-color: rgb(252, 189, 95);
  background-size: 100%;
  transition: background 0s;
}

.boton-principal {
  color: #1f271b;
  background-color: #f9aa33;
  border: 0;
  border-radius: 20px;
}

.loader {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #f9aa33;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}

.color-warn {
  color: red;
}

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

.contenedor-texto {
  width: 100%;
  max-height: 250px;
  margin-top: 15px;
  overflow: auto;
}

.caja-texto-contenedor {
  display: flex;
  align-items: center;
}

.caja-flecha {
  right: 0;
  position: absolute;
  padding: 0 10px;
}

.tabla-pasos {
  margin-top: 20px;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.tabla-cabecera th {
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
}

.tabla-fila {
  border-bottom: 1px solid #e1e1e1;
}

.tabla-fila td {
  padding: 10px 5px;
}

.alert {
  padding: 20px;
  background-color: #f44336; /* Red */
  color: white;
  margin-bottom: 15px;
}

/* index.html */
.contenedor {
  width: 840px;
  margin: 0 auto;
}

@media only screen and (max-width: 899px) {
  .contenedor {
      width: auto;
      padding: 0 10px;
  }
}
.separador-seccion {
  width: 100%;
  height: 20px;
}

#titulo {
  text-align: center;
}

.decorador-titulo {
  width: 120px;
  height: 5px;
  margin: 10px auto;
  background: #bfc3c8;
}

.codigo {
  margin: 15px 0;
}