.image-button, .secondary-button, .primary-button {
  cursor: pointer;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
}

.button-large, .button-medium, .button-small {
  border-radius: 10px;
}

.button-small {
  padding: 5px 10px;
}

.button-medium {
  padding: 10px 20px;
}

.button-large {
  padding: 15px 25px;
}

.primary-button {
  background-color: #8932db;
  color: #ffffff;
  border: none;
}
.primary-button:hover {
  background-color: #9852da;
}

.secondary-button {
  background-color: #ffffff;
  border: #8932db solid 2px;
  color: #8932db;
}
.secondary-button:hover {
  background-color: #9852da;
  color: #ffffff;
}

.image-button {
  border: none;
  background: none;
}
.image-button:hover {
  transform: scale(1.1);
}

.topbar {
  position: fixed;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
  background-color: #fdfdfd;
  box-shadow: 1px 1px 5px #3f3f3f;
  z-index: 3;
}

.mobile-menu-button {
  display: none;
  align-self: end;
}
@media screen and (max-width: 900px) {
  .mobile-menu-button {
    display: block;
  }
}

.topbar-actions {
  display: flex;
  flex-direction: column;
  padding: 5px 15px;
}

.topbar-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .topbar-buttons {
    flex-direction: column;
    display: none;
    margin-top: 5px;
  }
}
.topbar-buttons .topbar-button {
  margin: 2px 5px;
  align-content: center;
}
@media screen and (max-width: 900px) {
  .topbar-buttons .topbar-button {
    margin: 2px 0;
  }
}
@media screen and (max-width: 900px) {
  .topbar-buttons .topbar-button-item {
    display: none;
  }
}

.logo {
  padding: 10px;
}
.logo img:hover {
  box-shadow: none;
}

.podcast-platform-button {
  margin: 5px;
}

.season-tag {
  width: fit-content;
  height: fit-content;
  border-radius: 15px;
  color: #ffffff;
  padding: 5px 10px;
  text-align: center;
}

.episode-content-card {
  height: fit-content;
}
.episode-content-card .episode-description a {
  color: #3aacee;
}
.episode-content-card .episode-description a:hover {
  color: #215f83;
}
.episode-content-card .episode-details {
  text-align: center;
  flex: 0 0 250px;
}
.episode-content-card .episode-details .episode-detail {
  margin: 5px 0;
}
.episode-content-card .episode-details .episode-runtime, .episode-content-card .episode-details .episode-number {
  font-weight: bold;
}
.episode-content-card .episode-details .podcast-platform-button {
  margin: 2px 0;
}
.episode-content-card .episode-details .tags {
  justify-content: center;
}
.episode-content-card .episode-details .tags .season-tag {
  margin: 2px;
}
.episode-content-card .episode-details .episode-cover-art {
  width: 150px;
}
.episode-content-card .episode-extras {
  box-shadow: 1px 1px 5px #989898;
  padding: 5px;
  margin: 5px;
  max-width: max-content;
  display: inline-block;
}
.episode-content-card .episode-extras .episode-extras-header {
  font-weight: bold;
}
.episode-content-card .episode-extras .download-button {
  margin: 2px;
}
.episode-content-card .episode-content {
  flex: 1 1 auto;
  margin: 0 15px 0 0;
  padding: 0 15px 0 0;
  border-right: 1px dashed #3f3f3f;
}
@media screen and (max-width: 1200px) {
  .episode-content-card .episode-content {
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-right: none;
    border-bottom: 1px dashed #3f3f3f;
  }
}

.episode-list-container-card {
  max-height: 650px;
  width: fit-content;
}

.episode-list-container {
  min-height: 400px;
  height: 100%;
}

.episode-list {
  height: 100%;
}
.episode-list .height-fill {
  height: calc(100% - 120px);
}
@media screen and (max-width: 1200px) {
  .episode-list {
    height: 650px;
  }
}

.episode-list-item-container {
  width: 100%;
}

.episode-list-item {
  background-color: #ffffff;
  border: #000000 solid 2px;
  margin: 5px 0;
  border-radius: 7px;
}
.episode-list-item:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}
.episode-list-item .episode-title {
  padding: 5px 8px;
}
.episode-list-item .episode-number {
  padding: 5px;
  font-weight: lighter;
}
.episode-list-item .episode-runtime, .episode-list-item .episode-trailer-icon {
  padding: 5px;
  font-weight: lighter;
}
.episode-list-item .episode-cover-art {
  padding: 5px;
  width: 70px;
  object-fit: contain;
}
.episode-list-item .season-tag {
  margin: 0 5px 5px 5px;
}

.search-bar input {
  width: 100%;
  width: -moz-available; /* WebKit-based browsers will ignore this. */
  width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
  width: fill-available;
  border-radius: 6px;
  border: 2px solid #8932db;
  box-shadow: 1px 1px 5px #989898;
  font-size: 16px;
  padding: 5px;
}

.dropdown {
  width: 100%;
  width: -moz-available; /* WebKit-based browsers will ignore this. */
  width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
  width: fill-available;
  border-radius: 6px;
  border: 2px solid #8932db;
  box-shadow: 1px 1px 5px #989898;
  font-size: 16px;
  padding: 5px;
  background-color: #ffffff;
}

.isotope-filter {
  margin: 5px 0 0 0;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  text-shadow: 0px 1px 1px rgba(193, 193, 193, 0.39);
  background-color: #f5f5f5;
  height: 100%;
}

h2 {
  text-align: center;
  margin: 0;
}

h3 {
  margin: 0;
}

a {
  text-decoration: none;
}

.logo {
  display: inline-block;
}
.logo:hover {
  transform: none;
}

.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-fit-content {
  width: fit-content;
  height: fit-content;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.justify-between {
  justify-content: space-between;
}

.card-container {
  background-color: #fdfdfd;
  border: #000000 solid 2px;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 1px 1px 5px #3f3f3f;
  margin: 10px;
}

.scroll-area-y {
  overflow-y: scroll;
}

.height-inherit {
  height: inherit;
}

.height-fill {
  height: 100%;
}

.max-height-large {
  max-height: 400px;
}

.dividing-line {
  border: #989898 solid 1px;
  margin: 6px 0;
}

.width-medium {
  width: 270px;
}

.max-width-x-large {
  max-width: 700px;
}

.min-height-medium {
  min-height: 300px;
}

.overflow-hidden {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 1200px) {
  .flex-adapt-row-large {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 900px) {
  .flex-adapt-row {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 700px) {
  .flex-adapt-row-small {
    flex-direction: column;
    align-items: center;
  }
}

.empty-list-container {
  width: 100%;
  display: flex;
  justify-content: center;
  color: #3f3f3f;
  font-weight: bold;
  margin: 15px 0 0 0;
}

.about a {
  color: #3aacee;
}
.about a:hover {
  color: #215f83;
}

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