/* Color Variables -  Named how they are in figma */
/* Formatting Variables */
/* Container Variables */
/* Font-size Variables */
/* Extendables */
/* For limiting all containers to same width.*/
.podcast_container {
  width: 100%;
  min-height: 21.42rem;
  position: relative;
  z-index: 9;
}
.podcast_container .podcast_content {
  margin-top: 3rem;
  margin-bottom: 4.28rem;
  min-height: 21.42rem;
}
.podcast_container .podcast_content .podcast_content_bg {
  background-color: #576674;
  min-height: 17.14rem;
  max-height: 17.14rem;
  width: 100%;
  position: absolute;
  z-index: -1;
  margin-top: 30px;
  box-shadow: -5px 0px 1.07rem 1px rgba(155, 155, 155, 0.3);
}
.podcast_container .podcast_content .podcast_content_sizing {
  display: flex;
  flex-direction: row;
  margin: auto;
  max-width: 71.42rem;
  position: relative;
}
.podcast_container .podcast_content .podcast_content_image {
  min-height: 21.42rem;
  min-width: 21.42rem;
  height: 21.42rem;
  width: 21.42rem;
  box-shadow: -5px 0px 1.07rem 1px rgba(155, 155, 155, 0.3);
}
.podcast_container .podcast_content .podcast_content_player {
  display: flex;
  align-items: center;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: 86%;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_player_heading {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  font-family: "Gotham";
  padding-bottom: 2.5rem;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_media .podcast_content_buttons {
  display: flex;
  margin-top: 1.42rem;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_media .podcast_content_buttons .podcast_content_play_icon {
  width: 1.78rem;
  height: auto;
  margin-right: 0.6rem;
  border-width: 10px 0px 10px 16px;
  border-style: solid;
  align-self: flex-end;
  border-color: transparent transparent transparent #fff;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_media .podcast_content_buttons .podcast_content_play_icon:hover {
  cursor: pointer;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_media .podcast_content_buttons .podcast_content_play_icon_selected {
  border-color: transparent transparent transparent #17d9a3;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_media .podcast_content_buttons .podcast_content_pause_icon {
  width: 2.5rem;
  height: 1.42rem;
  border-style: double;
  border-width: 0px 0px 0px 1.42rem;
  align-self: flex-end;
  border-color: transparent transparent transparent #fff;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_media .podcast_content_buttons .podcast_content_pause_icon:hover {
  cursor: pointer;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_media .podcast_content_buttons .podcast_content_pause_icon_selected {
  border-color: transparent transparent transparent #17d9a3;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_media .podcast_content_buttons .podcast_content_text {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  height: 1.85rem;
  line-height: 2.35rem;
  align-self: flex-end;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_media .podcast_content_buttons .podcast_content_text:hover {
  cursor: pointer;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 80%;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking .podcast_content_tracking_text {
  color: #fff;
  min-width: 3.21rem;
  line-height: 0.78rem;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range] {
  position: relative;
  -webkit-appearance: none;
  width: 80%;
  outline: none;
  background-color: #fff;
  padding-bottom: 2px;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.21rem;
  cursor: pointer;
  background: #fff;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  padding-right: 2px;
  width: var(--seek-before-width);
  height: 0.85rem;
  background-color: #17d9a3;
  cursor: pointer;
  z-index: 1;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  padding-right: 2px;
  width: var(--buffered-width);
  height: 0.85rem;
  background-color: #1a8366;
  cursor: pointer;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]::-webkit-slider-thumb {
  position: relative;
  -webkit-appearance: none;
  box-sizing: content-box;
  border: 1px solid #17d9a3;
  height: 1.42rem;
  width: 1.42rem;
  border-radius: 50%;
  background-color: #17d9a3;
  cursor: pointer;
  margin: -8px 0 0 0;
  z-index: 1;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]:active::-webkit-slider-thumb {
  transform: scale(1.2);
  background: #1a8366;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]::-moz-range-track {
  width: 100%;
  height: 0.21rem;
  cursor: pointer;
  background: #fff;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]::-moz-range-progress {
  background-color: #17d9a3;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]::-moz-focus-outer {
  border: 0;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]::-moz-range-thumb {
  box-sizing: content-box;
  border: 1px solid #17d9a3;
  height: 1.07rem;
  width: 1.07rem;
  border-radius: 50%;
  background-color: #17d9a3;
  cursor: pointer;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]:active::-moz-range-thumb {
  transform: scale(1.2);
  background: #1a8366;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]::-ms-track {
  width: 100%;
  height: 0.21rem;
  cursor: pointer;
  background: transparent;
  border: solid transparent;
  color: transparent;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]::-ms-fill-lower {
  background-color: #17d9a3;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]::-ms-fill-upper {
  background: #17d9a3;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]::-ms-thumb {
  box-sizing: content-box;
  border: 1px solid #17d9a3;
  height: 1.07rem;
  width: 1.07rem;
  border-radius: 50%;
  background-color: #17d9a3;
  cursor: pointer;
}
.podcast_container .podcast_content .podcast_content_player .podcast_content_tracking input[type=range]:active::-ms-thumb {
  transform: scale(1.2);
  background: #1a8366;
}

@media (max-width: 900px) {
  .podcast_container .podcast_content .podcast_content_image {
    display: none;
  }
  .podcast_container .podcast_content .podcast_content_player {
    background-position-y: 100%;
    background-position-x: center;
  }
  .podcast_container .podcast_content .podcast_content_player .podcast_content_player_heading {
    padding: 10px;
    text-align: center;
  }
  .podcast_container .podcast_content_sizing {
    width: 100%;
    height: 21.42rem;
  }
  .podcast_container .podcast_content_sizing .podcast_content_bg {
    margin-top: 0;
    max-height: 21.42rem;
    min-height: 21.42rem;
  }
}
@media (max-width: 500px) {
  .podcast_container {
    margin-top: 0px !important;
  }
}
