<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.owl-carousel {
position: relative;
}

.owl-prev, .owl-next {opacity: 0.5 !important;font-size:30px;}



.owl-prev,
.owl-next {
position: absolute;
top: 40%;
margin-top: -10px; // Half of the prev/next buttons height here in negatives to center them perfectly
}
.owl-prev {
left: 2px!important;
}
.owl-next {
right: -11px!important;
}

.grow { transition: all .1s ease-in-out; }
.grow:hover { transform: scale(1.05); }
.grow:hover .play { display:block;transition: all .5s ease-in-out;}
.owl-stage-outer {
    padding: 10px;
}

.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
   display: none;
}

.profile-pic:hover .play {
	display: block;
}

.play {
	position: absolute;
	 left:50%;
    top: 50%;
     transform: translate(-50%, -50%);
	display: none;
    opacity: 0.75 !important;
    font-size:40px;
}</pre></body></html>