.swiper-container {
    width: 100%;
height: 100%;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0px;
}

.day-buttons {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-around;
    justify-items: flex-start;
    width: 100%;
}

.day-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 18px;
}

.day-button span {
    display: block;
}

.day-button .day-btn-number {
    background-color: #f4f4f4;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;

}

.day-button.active .day-btn-number {
    background-color: #FF7356;
    color: white;
}

.day-button:hover {
    background-color: transparent;
}


.day-button:hover .day-btn-number {
    background-color: rgba(255, 115, 86, 0.5);
    color: white;
}


.day-button.active:hover .day-btn-number {
    background-color: #FF7356;
    color: black;
}

.day-content {
    width: 100%;
}

.swiper-slide {
    transition: .2s all;
    opacity: 0.25;
}

.swiper-slide.swiper-slide-active {
    opacity: 1;
}

#actividadesList {
    list-style-type: none;
    padding: 0;
  }

  #actividadesList li {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
  }

  #actividadesList img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  #configurador {
    display: none;
  }

  #configurador img {
    width: 100px;
    height: 100px;
  }

  #configurador button {
    margin: 5px;
  }

  #volverBtn {
    margin-top: 10px;
  }