main > .schedule-container {
  max-width: 1033px;
  width: 80%;
  margin: 50px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 50px 30px;
}
main > .schedule-container .schedule-labels-container {
  max-width: 300px;
  margin: 0 auto 30px;
}
main > .schedule-container .schedule-labels-container .schedule-labels-title {
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 440px) {
  main > .schedule-container .schedule-labels-container .schedule-labels-title {
    font-size: 1rem;
  }
}
main > .schedule-container .schedule-labels-container .schedule-labels {
  list-style: none;
  text-align: center;
  border: 2px dashed #999;
}
main > .schedule-container .schedule-labels-container .schedule-labels li {
  margin: 5px auto;
}
main > .schedule-container .schedule-labels-container .schedule-labels li span {
  color: #666;
  transition: 0.3s;
  cursor: pointer;
  display: inline-block;
  position: relative;
  user-select: none;
}
main > .schedule-container .schedule-labels-container .schedule-labels li span::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #3af;
  transition: 0.5s;
  z-index: 2;
}
main > .schedule-container .schedule-labels-container .schedule-labels li span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #ccc;
  transition: 0.2s;
  z-index: 1;
}
main > .schedule-container .schedule-labels-container .schedule-labels li:hover > span::before {
  left: -10%;
  width: 120%;
}
main > .schedule-container .schedule-labels-container .schedule-labels li.selected span {
  color: #333;
}
main > .schedule-container .schedule-labels-container .schedule-labels li.selected span::after {
  left: -10%;
  width: 120%;
}
main > .schedule-container .schedule-labels-container .schedule-labels li.selected span::before {
  left: -10%;
  width: 120%;
}
main > .schedule-container .schedule-frames {
  width: 100%;
  position: relative;
}
main > .schedule-container .schedule-frames .schedule-frame {
  opacity: 0;
  display: none;
  transition: 0.5s;
}
main > .schedule-container .schedule-frames .schedule-frame.selected {
  display: block;
  opacity: 1;
}
main > .schedule-container .schedule-frames .schedule-frame.hiding {
  opacity: 0;
  display: block;
}
main > .schedule-container .schedule-frames .schedule-frame img {
  width: 100%;
}
main > .schedule-container .schedule-frames i.schedule-full-open {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  color: #000;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: 0.3s;
  font-family: "Material Symbols Outlined";
  font-style: normal;
  text-align: center;
  border-radius: 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  display: inline-block;
  vertical-align: middle;
}
main > .schedule-container .schedule-frames i.schedule-full-open:hover {
  opacity: 0.8;
}
main > .schedule-container .schedule-frames i.schedule-full-open::after {
  content: "\e8ff";
}
main > .schedule-container .schedule-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6666666667);
  z-index: 200;
  display: none;
  opacity: 0;
  transition: 0.5s;
}
main > .schedule-container .schedule-fullscreen.show {
  display: block;
  opacity: 1;
}
main > .schedule-container .schedule-fullscreen .schedule-full-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  color: #000;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Material Symbols Outlined";
  font-style: normal;
  text-align: center;
  border-radius: 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  display: inline-block;
  vertical-align: middle;
  z-index: 201;
}
main > .schedule-container .schedule-fullscreen .schedule-full-close:hover {
  opacity: 0.8;
}
main > .schedule-container .schedule-fullscreen .schedule-full-close::after {
  content: "\e5cd";
}
main > .schedule-container .schedule-fullscreen .schedule-fullscreen-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  width: 100vw;
  object-fit: contain;
}

/*# sourceMappingURL=schedule.css.map */
