.main-programacion {
  color: white;
  background-image: linear-gradient(160deg, #272727 60%, #111 40%);
}

.container__programacion {
  margin-top: 90px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.titulo {
  padding: 45px 0px;
  background-color: #111;
  margin-bottom: 25px;
}

.titulo__programacion {
  font-family: 'Montserrat';
  font-weight: 500;
}

.container_titulo {
  display: flex;
  justify-content: center;
}

.programacion_seleccionar-dia {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.programacion {
  padding-bottom: 25px;
}



.programacion__item {
  width: 100%;
  display: none;
  padding: 10px 00px 10px 00px;
  border-radius: 0px 0px 7px 7px;
}

.programacion_dia {
  cursor: pointer;
  width: 100%;
  background-color: #353535;
  padding: 25px 20px;
  font-weight: bold;
  opacity: 0.5;
  color: var(--color-title-media);
}

.programacion_nombre-programa {
  font-weight: bold;
  font-size: 18px;
}

.programacion_programa {
  min-height: 100px;
  margin-bottom: 10px;
  border-radius: 7px;
  padding: 10px;
  background-color: #353535;
}

.programacion_programa:hover {
    background-color: #35353580;
  }

.programacion_conductores {
  min-height: 25px;
  font-size: 12px;
  display: none;
}

.programacion_hora-programa {
  color: lightgray;
}

.opacity {
  opacity: 1;
}

.programa {
  display: none;
  width: 50%;
  position: sticky;
  top: 0px;
  bottom: 0px;
  height: 750px;
  overflow: hidden;
}

.programa__nombre-programa {
  padding-top: 10px;
  height: 45px;
  margin-bottom: 30px;
  font-weight: bold;
}

.programa__dias {
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.programa__item {
  padding: 10px 10px 0px 0px;
  font-size: 12px;
}

.programa__dia {
  font-weight: bold;
}

.programa__hora {
  font-size: 13px;
  background-color: var(--color-live);
  padding: 0px 5px;
  width: 100px;
  border-radius: 3px;
}

.programa__container-imagen {
  margin: auto;
  position: relative;
  background-color: white;
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  opacity: 0.9;
}

.programa__imagen {
  position: absolute;
  bottom: 0;
}

.programa__informacion {
  border-radius: 7px;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.programa__media {
  display: flex;
  gap: 10px;
}

.active {
  display: block;
}

.ahora {
  background-color: var(--color-live);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  border-radius: 5px;
}

@media screen and (max-width: 998px) {
  .container__programacion {
    flex-direction: column;
  }

  .programa {
    width: 100%;
    position: relative;
  }

  .programa__nombre-programa {
    padding-top: 0px;
  }
}

/* arrowUp*/
.arrowUp {
  position: fixed;
  bottom: 26px;
  right: 16px;
  z-index: 9999;
  font-size: 25px;
  color: var(--color-dark);
  height: 50px;
  width: 50px;
  border-radius: 8px;
  box-shadow: 1px 1px 15px -5px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 1px 1px 15px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 1px 15px -5px rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light);
  transition: 0.2s;
}

.arrowUp:hover {
  color: var(--scale);
  scale: 1.05;
}
