.ova-audio-category {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
}
.ova-audio-category .ova-img {
  margin-bottom: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 55px;
}
.ova-audio-category .ova-img img {
  width: 100%;
  height: auto;
}
.ova-audio-category .ova-img .category-name {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--primary);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 20px 30px;
}
.ova-audio-category .title {
  font-size: 30px;
  font-weight: bold;
  color: var(--heading);
  margin: 0 0 25px;
}
.ova-audio-category .items {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ova-audio-category .items .ovau-item-category {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #e5e5e5;
}
.ova-audio-category .items .ovau-item-category:first-child {
  padding-top: 0;
}
.ova-audio-category .items .ovau-item-category:last-child {
  border-bottom: none;
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f5f5f5;
  font-size: 14px;
  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-category .items .ovau-item-category .ovau-btn-play i {
  font-size: 14px;
  line-height: 1;
  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;
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play:hover {
  background-color: var(--primary);
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play:hover i {
  color: #FFFFFF;
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play .loader {
  display: none;
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play.ovau-playing {
  background-color: var(--primary);
  overflow: hidden;
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play.ovau-playing .loader {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.ova-audio-category .items .ovau-item-category .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-category .items .ovau-item-category .ovau-btn-play.ovau-playing .loader .stroke:nth-child(1) {
  animation-delay: 0s;
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play.ovau-playing .loader .stroke:nth-child(2) {
  animation-delay: 0.3s;
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play.ovau-playing .loader .stroke:nth-child(3) {
  animation-delay: 0.6s;
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play.ovau-playing .loader .stroke:nth-child(4) {
  animation-delay: 0.3s;
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play.ovau-playing .loader .stroke:nth-child(5) {
  animation-delay: 0s;
}
@keyframes playing {
  50% {
    height: 5px;
  }
  100% {
    height: 20px;
  }
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play.ovau-playing i {
  display: none;
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play.ovau-playing:hover .loader {
  display: none;
}
.ova-audio-category .items .ovau-item-category .ovau-btn-play.ovau-playing:hover i {
  display: block;
}
.ova-audio-category .items .ovau-item-category .ovau-content .label {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}
.ova-audio-category .items .ovau-item-category .ovau-content a:hover {
  color: var(--primary);
}
.ova-audio-category .items .ovau-item-category .ovau-content .title {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: var(--heading);
}
.ova-audio-category .items .ovau-item-category .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-category .items .ovau-item-category .ovau-content .title a:hover {
  color: var(--primary);
}
.ova-audio-category .view-all a {
  display: block;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  letter-spacing: 1px;
  word-spacing: 2px;
  background-color: #f5f5f5;
  padding: 26px 30px;
  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-category .view-all a i {
  line-height: 1;
  vertical-align: middle;
  margin-left: 20px;
}
.ova-audio-category .view-all a:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}