body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.control {
  background-color: #fff;
  margin-bottom: 0;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  min-height: 143px;
  max-width: 526px;
  align-items: center;
}

.mowpodPodcastEpisodeLogo-img {
  width: 100px;
}

.mowpodPodcastBody {
  margin-left: 20px;
}

.mowpodPodcastLogo-section {
  height: 14px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.mowpodPodcastLogo-img {
  width: 70px;
  margin-right: 5px;
}

.mowpodPodcastLogo-text {
  font-size: 8px;
  font-weight: 700;
  color: grey;
}

.mowpodPodcastTitle-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 18px;
}

.mowpodPodcastTitle-text {
  font-weight: 700;
  font-size: 10px;
  color: #000;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  min-height: 20px;
  line-height: 17px;
  font-family: 'HelveticaNeue';
  letter-spacing: 0.5px;
}

.controlPanelTimeline-time {
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -5px;
}

.controlPanelTimeline-container {
  width: 275px;
  margin-left: 10px;
  padding-bottom: 3px;
}

.mowpodPodcastTitle-subtext {
  font-weight: 600;
  font-size: 8px;
  color: #c641e5;
  line-height: 15px;
  font-family: 'HelveticaNeue';
  letter-spacing: 1px;
}

.controlPanel {
  width: 100%;
  height: 25px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.we-audio-controls__icon {
  display: block;
  width: 22px;
  height: 22px;
  fill: #7e51de;
}

.not-active {
  display: none;
}

.controlUndoBtn,
.controlRedoBtn,
.controlVolumeBtn {
  padding: 0;
  cursor: pointer;
}

.controlPlayBtn {
  cursor: pointer;
  padding: 0 2px;
}

.controlPlayBtn.paused {
  border-style: double;
  border-width: 0px 0 0px 17px;
  height: 16px;
}

.timeLeft,
.elapsedTime {
  text-align: center;
  font-size: 10px;
  color: #636366;
}

.timeLeft {
  padding-left: 5px;
}

.elapsedTime {
  padding-right: 5px;
}

.timeline {
  width: 100%;
}

input[type='range'] {
  -webkit-appearance: none;
  width: 100%;
  background-color: transparent;
}

input[type='range']:focus {
  outline: none;
}

input[type='range']::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: 100ms all ease;
  background: #97979794;
  border-radius: 5px;
}

input[type='range']::-webkit-slider-thumb {
  height: 13px;
  width: 13px;
  border-radius: 10px;
  background: #979797;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
}

/* input[type='range']:focus::-webkit-slider-runnable-track {
  background: #979797;
} */

input[type='range']::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animate: 0.2s;
  background: #979797;
  border-radius: 5px;
}

input[type='range']::-moz-range-thumb {
  height: 7px;
  width: 7px;
  border-radius: 10px;
  cursor: pointer;
}

input[type='range']::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type='range']::-ms-fill-lower {
  background: #979797;
  border-radius: 10px;
}

input[type='range']::-ms-fill-upper {
  background: #979797;
  border-radius: 10px;
}

input[type='range']::-ms-thumb {
  margin-top: 1px;
  height: 7px;
  width: 7px;
  border-radius: 10px;
  cursor: pointer;
}

input[type='range']:focus::-ms-fill-lower {
  background: #979797;
}

input[type='range']:focus::-ms-fill-upper {
  background: #979797;
}

.mowpodPodcastEpisodeLogo-section--mobile {
  display: none;
}

.controlPanelBtns-container {
  display: flex;
}

.controlsPlay-mobile {
  display: none;
}
.controlsPlay-desktop {
  display: block;
}

.mowpodPodcastEpisodeLogo-section {
  height: 111px;
  width: 100% !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  border-radius: 10px;
}

.player {
  box-shadow: 0 0 30px rgb(0 0 0 / 15%);
  border-radius: 15px;
}

@media screen and (max-width: 767px) {
  .controlsPlay-desktop {
    display: none;
  }

  .controlsPlay-mobile {
    display: block;
  }

  .control {
    min-height: 460px;
    height: max-content;
    width: 334px;
    border-radius: 15px;
    padding: 15px;
    justify-content: center;
  }

  .mowpodPodcastEpisodeLogo-section {
    display: none;
  }

  .mowpodPodcastBody {
    margin-left: 0;
    width: 100%;
    position: relative;
  }

  .controlPanel {
    flex-direction: column;
    min-height: 100px;
  }

  .controlPlayBtn svg {
    width: 40px;
    height: 40px;
  }

  .controlPlayBtn {
    padding: 0 10px;
  }

  .we-audio-controls__icon {
    width: 25px;
    height: 25px;
  }

  .we-audio-controls__icon.pause,
  .we-audio-controls__icon.play {
    width: 60px;
    height: 60px;
    box-shadow: 0 0 15px rgb(0 0 0 / 30%);
    border-radius: 50%;
  }

  .controlRedoBtn,
  .controlUndoBtn {
    padding-top: 17px;
  }

  .mowpodPodcastTitle-section {
    align-items: unset;
    text-align: center;
    margin: 20px 0;
    justify-content: center;
    height: max-content;
  }

  .mowpodPodcastTitle-text {
    -webkit-line-clamp: unset;
    display: block;
    -webkit-box-orient: unset;
    overflow: unset;
    max-width: 290px;
    margin: 0 auto;
    min-height: 20px;
    line-height: 16px;
  }

  .mowpodPodcastTitle-subtext {
    line-height: 16px;
    margin-top: 7px;
  }

  .mowpodPodcastEpisodeLogo-section--mobile {
    display: flex;
    text-align: center;
    height: 210px;
    width: 210px;
    margin: 0 auto;
    align-items: center;
    box-shadow: 0 0 24px rgb(0 0 0 / 30%);
    border-radius: 10px;
    overflow: hidden;
  }

  .mowpodPodcastEpisodeLogo-section--mobile img {
    width: 100%;
  }

  .controlPanelTimeline-container {
    width: 295px;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: -8px;
  }
}
