.ovau-audio-2 {
  display: flex;
  align-items: center;
  column-gap: 35px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .ovau-audio-2 {
    flex-direction: column;
  }
}
.ovau-audio-2 .avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  min-width: 160px;
  height: 160px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .ovau-audio-2 .avatar {
    margin-bottom: 30px;
  }
}
.ovau-audio-2 .avatar .loader {
  display: none;
}
.ovau-audio-2 .avatar img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ovau-audio-2 .avatar.playing img {
  -webkit-animation: avatarRotate 10s linear infinite;
  -moz-animation: avatarRotate 10s linear infinite;
  animation: avatarRotate 10s linear infinite;
}
.ovau-audio-2 .avatar.playing .loader {
  position: absolute;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.ovau-audio-2 .avatar.playing .loader .stroke {
  position: relative;
  background-color: var(--primary);
  height: 20px;
  width: 5px;
  border-radius: 50px;
  margin: 0 2px;
  animation: playing 1s linear infinite;
}
.ovau-audio-2 .avatar.playing .loader .stroke:nth-child(1) {
  animation-delay: 0s;
}
.ovau-audio-2 .avatar.playing .loader .stroke:nth-child(2) {
  animation-delay: 0.3s;
}
.ovau-audio-2 .avatar.playing .loader .stroke:nth-child(3) {
  animation-delay: 0.6s;
}
.ovau-audio-2 .avatar.playing .loader .stroke:nth-child(4) {
  animation-delay: 0.3s;
}
.ovau-audio-2 .avatar.playing .loader .stroke:nth-child(5) {
  animation-delay: 0s;
}
@keyframes playing {
  50% {
    height: 5px;
  }
  100% {
    height: 20px;
  }
}
@keyframes avatarRotate {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-animation: rotate(360deg);
    transform: rotate(360deg);
  }
}
.ovau-audio-2 .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.ovau-audio-2 .content .ovau-player-top {
  display: flex;
  align-items: center;
  column-gap: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .ovau-audio-2 .content .ovau-player-top {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.ovau-audio-2 .content .ovau-player-top .ovau-controls {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
@media screen and (max-width: 768px) {
  .ovau-audio-2 .content .ovau-player-top .ovau-controls {
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
  }
}
.ovau-audio-2 .content .ovau-player-top .ovau-controls .skip-back, .ovau-audio-2 .content .ovau-player-top .ovau-controls .jump-forward {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #000000;
  font-size: 10px;
  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;
}
.ovau-audio-2 .content .ovau-player-top .ovau-controls .skip-back:hover, .ovau-audio-2 .content .ovau-player-top .ovau-controls .jump-forward:hover {
  color: #FFFFFF;
  background-color: var(--primary);
}
.ovau-audio-2 .content .ovau-player-top .ovau-controls .play-pause {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  font-size: 16px;
  background-color: #000000;
  color: #FFFFFF;
  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;
}
.ovau-audio-2 .content .ovau-player-top .ovau-controls .play-pause i {
  display: inline-flex;
}
.ovau-audio-2 .content .ovau-player-top .ovau-controls .play-pause:hover {
  background-color: var(--primary);
}
.ovau-audio-2 .content .ovau-player-top .ovau-controls .play-pause.playing {
  background-color: var(--primary);
}
.ovau-audio-2 .content .ovau-player-top .title-episode {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .ovau-audio-2 .content .ovau-player-top .title-episode {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
.ovau-audio-2 .content .ovau-player-top .title-episode .title {
  margin: 0;
  color: var(--heading);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.ovau-audio-2 .content .ovau-player-top .title-episode .title a {
  color: var(--heading);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ovau-audio-2 .content .ovau-player-top .title-episode .title a:hover {
  color: var(--primary);
}
.ovau-audio-2 .content .ovau-player-top .title-episode .episode {
  color: var(--text);
  font-size: 16px;
}
.ovau-audio-2 .content .ovau-player-top .title-episode .episode .seperate {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.ovau-audio-2 .content .ovau-player-top .title-episode .episode a:hover {
  color: var(--heading);
}
.ovau-audio-2 .content .ovau-player-top .detail-link {
  width: 200px;
}
.ovau-audio-2 .content .ovau-player-top .detail-link a {
  display: flex;
  justify-content: flex-end;
  column-gap: 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--primary);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ovau-audio-2 .content .ovau-player-top .detail-link a i {
  line-height: 1;
  vertical-align: middle;
}
.ovau-audio-2 .content .ovau-player-top .detail-link a:hover {
  color: var(--heading);
}
@media screen and (max-width: 768px) {
  .ovau-audio-2 .content .ovau-player-top .detail-link {
    width: 100%;
  }
  .ovau-audio-2 .content .ovau-player-top .detail-link a {
    justify-content: center;
  }
}
.ovau-audio-2 .content .ovau-player-view {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player {
  width: 100%;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container {
  height: 40px;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-skip-back-button, .ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-jump-forward-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-skip-back-button:first-child, .ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-jump-forward-button:first-child {
  margin-right: 10px;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-skip-back-button > button, .ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-jump-forward-button > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border-radius: 50%;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-skip-back-button > button:hover, .ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-jump-forward-button > button:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time-rail .ovamejs-time-total {
  background-color: #000000;
  height: 2px;
  border-radius: 2px;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time-rail .ovamejs-time-total .ovamejs-time-current {
  background-color: var(--primary);
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time-rail .ovamejs-time-total .ovamejs-time-loaded, .ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time-rail .ovamejs-time-total .ovamejs-time-current, .ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time-rail .ovamejs-time-total .ovamejs-time-hovered {
  height: 2px;
  border-radius: 2px;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time-rail .ovamejs-time-total .ovamejs-time-handle .ovamejs-time-handle-content {
  top: -9px;
  border-color: var(--primary);
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time {
  display: flex;
  align-items: center;
  padding: 0;
  min-width: 40px;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time .seperate {
  margin: 0 10px;
}
@media screen and (max-width: 500px) {
  .ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time .ovamejs-duration {
    display: block;
  }
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button {
  margin-left: 45px;
}
@media screen and (max-width: 768px) {
  .ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button {
    display: block;
    margin-left: 15px;
  }
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button.ovamejs-mute {
  width: 50px;
  min-width: 50px;
  height: 50px;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button > button {
  width: 50px;
  min-width: 50px;
  height: 50px;
  background-color: #f5f5f5;
  border-radius: 50%;
  color: #000000;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button > button:before {
  font-size: 24px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button > button:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}
.ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button > button:hover:before {
  color: #FFFFFF;
}
.ovau-audio-2.ovau-media-video .content .ovau-player-top {
  margin: 0;
}

.rtl .ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button {
  margin-left: 0;
  margin-right: 45px;
}
@media screen and (max-width: 768px) {
  .rtl .ovau-audio-2 .content .ovau-player-view .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button {
    margin-right: 15px;
  }
}
.rtl .ovau-audio-2 .content .ovau-controls .skip-back, .rtl .ovau-audio-2 .content .ovau-controls .jump-forward {
  transform: rotateY(180deg);
}
.rtl .ovau-audio-2 .content .ovau-player-top .detail-link i {
  transform: rotateY(180deg);
}