.episodes-page__toggle {
  aspect-ratio: 1;
  margin: 0.4rem;
  border-style: none;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0);
  font-size: x-large;
  color: black;
}
.episodes-page__toggle > i {
  aspect-ratio: 1;
  padding: 0.2rem;
}
@media (hover: hover) {
  .episodes-page__toggle {
    cursor: pointer;
    transition: background-color 0.4s;
  }
  .episodes-page__toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.episodes-page__options {
  text-align: right;
}
.episodes-page__filter__label {
  box-sizing: border-box;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (orientation: portrait) {
  .episodes-page__filter__label {
    display: inline-block;
    width: 30%;
    margin: 2%;
    text-align: left;
  }
}
.episodes-page__filter__input-select {
  box-sizing: border-box;
  padding: 0.5rem;
  margin: 1rem;
  border-style: solid;
  border-width: 2px;
  border-radius: 2px;
  border-color: gray;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  background-color: white;
}
@media screen and (orientation: portrait) {
  .episodes-page__filter__input-select {
    display: inline-block;
    width: 60%;
    margin: 2%;
  }
}
.episodes-page__filter__apply-button {
  box-sizing: border-box;
  width: 10rem;
  aspect-ratio: 4/1;
  padding: 0;
  margin: 2%;
  border-style: none;
  border-radius: 16px;
  background-color: lightgray;
  font-family: inherit;
  font-size: 1rem;
  font-weight: bold;
}
@media (hover: hover) {
  .episodes-page__filter__apply-button {
    transition: background-color 0.2s, transform 0.2s;
  }
  .episodes-page__filter__apply-button:enabled {
    cursor: pointer;
  }
  .episodes-page__filter__apply-button:enabled:active {
    background-color: tomato;
  }
  .episodes-page__filter__apply-button:enabled:hover {
    background-color: tomato;
    transform: translate(0, -2px);
  }
}
.episodes-page__filter {
  box-sizing: border-box;
  width: 98%;
  padding: 0;
  margin: 2% 1%;
  border-style: solid;
  border-width: 2px;
  border-radius: 4px;
  border-color: gray;
  text-align: center;
  background-color: whitesmoke;
  overflow: hidden;
  transition: 0.4s ease-in-out;
}
.episodes-page__filter[hidden] {
  display: block;
  opacity: 0;
  max-height: 0px;
}
.episodes-page__filter:not([hidden]) {
  opacity: 1;
  max-height: 500px;
}
.episode-card {
  box-sizing: border-box;
  margin: 4%;
}
.episodes-page__cards {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  width: 100%;
}
@media screen and (orientation: portrait) {
  .episodes-page__cards {
    grid-template-columns: 50% 50%;
  }
}
/*# sourceMappingURL=episodes-page.css.map */