.ova-audio-slider-2 {

	.slide-audio-2 {
		position: relative;

		.owl-dots{
			text-align: center;
			margin-top: 55px;
			@media (max-width: 767px) {
				margin-top: 20px;
			}
			.owl-dot{
				outline: none;
				span{
					width: 10px;
					height: 10px;
					margin: 5px;
					background: rgba(0,0,0,0.3);
					border-radius: 50%;
					display: block;
					-webkit-backface-visibility: visible;
					transition: opacity .2s ease;
				}
				&.active{
					span{
						background: var(--primary);
					}
				}
			}
		}
		.owl-nav {
			position: absolute;
			top: -100px;
			right: 10px;
			button {
				&.owl-prev, &.owl-next {
	                transition: all 0.3s ease;
				    -moz-transition: all 0.3s ease;
				    -webkit-transition: all 0.3s ease;
				    -o-transition: all 0.3s ease;
				    width: 50px;
				    height: 50px;
				    display: inline-flex;
				    justify-content: center;
				    align-items: center;
				    background: #f5f5f5;
				    border-radius: 50%;
				    margin: 0 5px;
				    &:hover {
				    	transition: all 0.3s ease;
					    -moz-transition: all 0.3s ease;
					    -webkit-transition: all 0.3s ease;
					    -o-transition: all 0.3s ease;
					    background-color: var(--primary);
					    i {
			                color: #fff;
					    }
				    }
				    i {
				    	color: var(--heading);
					    font-size: 20px;
					    display: inline-flex;
				    }
				}
			}
		}

	}
}