/* Cintillo */
.contador-cintillo {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: transparent;*/
  background: #003445;
  color: #ffffff;
  font-family: 'Muli', sans-serif;
  text-align: center;
}

/* Contador */
#contador-sn {
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

/* ==========================================
       CONTENEDOR PRINCIPAL
========================================== */

.cintillo-sn {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003445;
  overflow: hidden;
  font-family: 'Muli', sans-serif;
}
.oculto {
  display: none;
}
/* ==========================================
       IMÁGENES LATERALES
========================================== */

.cintillo-sn .imagen {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 60px;
  object-fit: cover;
  z-index: 1;
}

/* Imagen izquierda */

.cintillo-sn .imagen-izquierda {
  left: 0;
}

/* Imagen derecha */

.cintillo-sn .imagen-derecha {
  right: 0;
}

@media (max-width: 1600px) {
  .contador-cintillo {
    height: 45px;
  }
  #contador-sn {
    font-size: 20px;
  }
}

@media (max-width: 1000px) {
  .contador-cintillo {
    height: 45px;
  }
  #contador-sn {
    font-size: 18px;
  }
}

@media (max-width: 800px) {
  .contador-cintillo {
    height: 45px;
  }
  #contador-sn {
    font-size: 16px;
  }
}

@media (max-width: 870px) {
  .cintillo-sn .imagen-izquierda {
    left: 3;
  }
  .cintillo-sn .imagen-derecha {
    right: 3;
  }
  .contador-cintillo {
    height: 45px;
  }
  #contador-sn {
    font-size: 13px;
  }
}

@media (max-width: 660px) {
  .cintillo-sn .imagen {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 40px;
    object-fit: cover;
    z-index: 1;
  }
  .contador-cintillo {
    height: 45px;
  }
  #contador-sn {
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 500px) {
  .cintillo-sn .imagen {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 30px;
    object-fit: cover;
    z-index: 1;
  }
  .contador-cintillo {
    height: 45px;
  }
  #contador-sn {
    font-size: 10px;
  }
}

@media (max-width: 400px) {
  #contador-sn {
    font-size: 8.5px;
    font-weight: bold;
  }
}

@media (max-width: 380px) {
  #contador-sn {
    font-size: 7px;
    font-weight: bold;
  }
}
