.ova-audio-category {
	padding: 30px;
	background-color: #FFFFFF;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);

	.ova-img {
		display: flex;
		position: relative;
		margin-bottom: 24px;
		overflow: hidden;

		img {
			width: 100%;
			height: auto;
		}

		.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;
		}
	}

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

	.items {
		margin: 0;
		padding: 0;
		list-style: none;

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

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

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

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

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

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

					i {
						color: #FFFFFF;
					}
				}

				.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;
						}
					}
				}
			}

			.ovau-content {
				.label {
					margin: 0;
					font-size: 16px;
					color: var(--text);
				}

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

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

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

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

	.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;
			@include transaction( all, 0.3s, ease );

			i {
				line-height: 1;
				vertical-align: middle;
				margin-left: 20px;
			}

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