.ovau-audio {
  display: flex;
  align-items: center;
  background-color: #FFF;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 150px;
  padding: 30px 50px;
}
@media screen and (max-width: 1024px) {
  .ovau-audio {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }
}
@media (max-width: 500px) {
  .ovau-audio {
    padding: 30px;
  }
}
.ovau-audio .ovau-player-left {
  height: 100%;
  width: 35%;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .ovau-audio .ovau-player-left {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .ovau-audio .ovau-player-left {
    margin-bottom: 0;
  }
}
.ovau-audio .ovau-player-left .control-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  min-width: 90px;
  height: 90px;
  background-color: var(--primary);
  border-radius: 50%;
  color: #FFF;
  font-size: 24px;
  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 .ovau-player-left .control-icon:hover {
  background-color: #FFF;
  border: 1px solid var(--primary);
  box-sizing: border-box;
  color: var(--primary);
}
.ovau-audio .ovau-player-left .title {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
.ovau-audio .ovau-player-left .title h2 {
  margin: 0;
  color: var(--heading);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.ovau-audio .ovau-player-left .title h2 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 .ovau-player-left .title h2 a:hover {
  color: var(--primary);
}
.ovau-audio .ovau-player-left .episode {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: var(--text);
}
.ovau-audio .ovau-player-left .episode .seperate {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.ovau-audio .ovau-player-left .episode a:hover {
  color: var(--heading);
}
.ovau-audio .ovau-player-right {
  width: 65%;
}
@media screen and (max-width: 1024px) {
  .ovau-audio .ovau-player-right {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .ovau-audio .ovau-player-right {
    display: none;
  }
}
.ovau-audio .ovau-player-right .ovau-player .ovamejs-container {
  height: 40px;
}
.ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-skip-back-button, .ovau-audio .ovau-player-right .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;
  margin: 0 5px;
}
.ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-skip-back-button > button, .ovau-audio .ovau-player-right .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 .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-skip-back-button > button:hover, .ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-jump-forward-button > button:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}
.ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time-rail .ovamejs-time-total {
  background-color: #000000;
  height: 2px;
  border-radius: 2px;
}
.ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time-rail .ovamejs-time-total .ovamejs-time-current {
  background-color: var(--primary);
}
.ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time-rail .ovamejs-time-total .ovamejs-time-loaded, .ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time-rail .ovamejs-time-total .ovamejs-time-current, .ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time-rail .ovamejs-time-total .ovamejs-time-hovered {
  height: 2px;
  border-radius: 2px;
}
.ovau-audio .ovau-player-right .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 .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time {
  display: flex;
  align-items: center;
  margin: 0 20px 0 0;
  padding: 0;
}
.ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time .seperate {
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button {
    display: block;
  }
}
.ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button.ovamejs-mute {
  width: 50px;
  min-width: 50px;
  height: 50px;
}
.ovau-audio .ovau-player-right .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 .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button > button:before {
  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 .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button > button:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}
.ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-volume-button > button:hover:before {
  color: #FFFFFF;
}
.ovau-audio.ovau-media-video .ovau-player-left {
  width: 100%;
}

.rtl .ovau-audio .ovau-player-right .ovau-player .ovamejs-container .ovamejs-controls .ovamejs-time {
  margin: 0 0 0 20px;
}