.ova-audio-list {
  background-color: #FFFFFF;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--primary);
  padding: 60px;
}
@media screen and (max-width: 500px) {
  .ova-audio-list {
    padding: 30px;
  }
}
.ova-audio-list .item-audio {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #e2e2e2;
}
.ova-audio-list .item-audio:first-child {
  padding-top: 0;
}
.ova-audio-list .item-audio:last-child {
  padding-bottom: 0;
  border: none;
}
.ova-audio-list .item-audio .ovau-btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background-color: #000000;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-audio-list .item-audio .ovau-btn-play .loader {
  display: none;
}
.ova-audio-list .item-audio .ovau-btn-play.ovau-playing {
  background-color: var(--primary);
  overflow: hidden;
}
.ova-audio-list .item-audio .ovau-btn-play.ovau-playing .loader {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.ova-audio-list .item-audio .ovau-btn-play.ovau-playing .loader .stroke {
  position: relative;
  background-color: #FFFFFF;
  height: 20px;
  width: 5px;
  border-radius: 50px;
  margin: 0 2px;
  animation: playing 1s linear infinite;
}
.ova-audio-list .item-audio .ovau-btn-play.ovau-playing .loader .stroke:nth-child(1) {
  animation-delay: 0s;
}
.ova-audio-list .item-audio .ovau-btn-play.ovau-playing .loader .stroke:nth-child(2) {
  animation-delay: 0.3s;
}
.ova-audio-list .item-audio .ovau-btn-play.ovau-playing .loader .stroke:nth-child(3) {
  animation-delay: 0.6s;
}
.ova-audio-list .item-audio .ovau-btn-play.ovau-playing .loader .stroke:nth-child(4) {
  animation-delay: 0.3s;
}
.ova-audio-list .item-audio .ovau-btn-play.ovau-playing .loader .stroke:nth-child(5) {
  animation-delay: 0s;
}
@keyframes playing {
  50% {
    height: 5px;
  }
  100% {
    height: 20px;
  }
}
.ova-audio-list .item-audio .ovau-btn-play.ovau-playing i {
  display: none;
}
.ova-audio-list .item-audio .ovau-btn-play.ovau-playing:hover .loader {
  display: none;
}
.ova-audio-list .item-audio .ovau-btn-play.ovau-playing:hover i {
  display: block;
}
.ova-audio-list .item-audio .ovau-btn-play i {
  font-size: 14px;
  line-height: 1;
  color: #FFFFFF;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-audio-list .item-audio .ovau-btn-play:hover {
  background-color: var(--primary);
}
.ova-audio-list .item-audio .ovau-content .episode {
  font-size: 16px;
  color: var(--text);
}
.ova-audio-list .item-audio .ovau-content .episode .seperate {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
}
.ova-audio-list .item-audio .ovau-content .episode .ovau-categories a {
  color: var(--text);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-audio-list .item-audio .ovau-content .episode .ovau-categories a:hover {
  color: var(--primary);
}
.ova-audio-list .item-audio .ovau-content .episode .ovau-host {
  color: var(--text);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-audio-list .item-audio .ovau-content .episode .ovau-host:hover {
  color: var(--primary);
}
.ova-audio-list .item-audio .ovau-content .title {
  font-size: 20px;
  font-weight: bold;
  color: var(--heading);
  margin: 0;
}
.ova-audio-list .item-audio .ovau-content .title a {
  font-size: 20px;
  font-weight: bold;
  color: var(--heading);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-audio-list .item-audio .ovau-content .title a:hover {
  color: var(--primary);
}