.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) {
		padding: 30px;
	}

	.item-audio {
		display: flex;
		align-items: center;
		padding: 30px 0;
		border-bottom: 1px solid #e2e2e2;

		&:first-child {
			padding-top: 0;
		}

		&:last-child {
			padding-bottom: 0;
			border: none;
		}

		.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);
			margin-right: 20px;
			cursor: pointer;
			-webkit-tap-highlight-color: transparent;
			@include transaction( all, 0.3s, ease );

			.loader {
				display: none;
			}

			&.ovau-playing {
				background-color: var(--primary);
				overflow: hidden;

				.loader {
					display: flex;
					width: 100%;
					height: 100%;
					align-items: center;
    				justify-content: center;

					.stroke {
						position: relative;
						background-color: #FFFFFF;
						height: 20px;
						width: 5px;
						border-radius: 50px;
						margin: 0 2px;
						animation: playing 1s linear infinite;

						&:nth-child(1) {
							animation-delay: 0s;
						}

						&:nth-child(2) {
							animation-delay: 0.3s;
						}

						&:nth-child(3) {
							animation-delay: 0.6s;
						}

						&:nth-child(4) {
							animation-delay: 0.3s;
						}

						&:nth-child(5) {
							animation-delay: 0s;
						}

					}

					@keyframes playing {
						50% {
	    					height: 5px;
						}
						100% {
						    height: 20px;
						}
					}
				}

				i {
					display: none;
				}

				&:hover {
					.loader {
						display: none;
					}

					i {
						display: block;
					}
				}
			}

			i {
				font-size: 14px;
				color: #FFFFFF;
				@include transaction( all, 0.3s, ease );
			}

			&:hover {
				background-color: var(--primary);
			}
		}

		.ovau-content {
			.episode {
				font-size: 16px;
				color: var(--text);

				.seperate {
					font-size: 20px;
					line-height: 1;
    				font-weight: bold;
				}

				.ovau-categories {
					a {
						color: var(--text);
						@include transaction( all, 0.3s, ease );

						&:hover {
							color: var(--primary);
						}
					}
				}
				.ovau-host {
					color: var(--text);
					@include transaction( all, 0.3s, ease );

					&:hover {
						color: var(--primary);
					}
				}
			}

			.title {
				font-size: 20px;
				font-weight: bold;
				color: var(--heading);
				margin: 0;

				a {
					font-size: 20px;
					font-weight: bold;
					color: var(--heading);
					@include transaction( all, 0.3s, ease );

					&:hover {
						color: var(--primary);
					}
				}
			}
		}
	}
}