/* CONTENEDOR DEL MAPA */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 680px;
  background: url('/img/maps/mapa-mundi.jpg') no-repeat center/cover;
  border-radius: 12px;
  overflow: hidden;
}

/* LÍNEA EN EL MAPA */
.time-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #00d1ff;
  z-index: 5;
  transition: left 0.5s linear;
}

.time-tooltip {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  white-space: nowrap;
}

/* BANDERAS */
.flags .flag {
  position: absolute;
  width: 24px;
  height: 24px;
}
.flags img {
  width: 100%;
}

/* BARRA DE HORAS */
.hour-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
  height: 30px;
}

.hour-bar span {
  flex: 1;
  text-align: center;
  font-size: 14px;
  color: #ccc;
  position: relative;
  z-index: 1;
}

.hour-bar span.active {
  color: #00d1ff;
  font-weight: bold;
}

.hour-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #00d1ff;
  z-index: 2;
  transition: left 0.5s linear;
}

/* TEXTO INFORMATIVO */
.hint {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}
