/* OWL CAROUSEL */

.skip-link, .screen-reader-text, .offscreen {
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}

.owl-controls {
position: absolute;
bottom: 12px;
right: 0;
display: flex;
justify-content: flex-end;
}

.carousel-play,
.carousel-stop {
width: 20px;
height: 12px;
margin: 0 4px;
background-position: center center;
background-repeat: no-repeat;
text-indent: -999em;
display: block;
background-size: contain;
transition: opacity 0.3s;
z-index: 999;
}

.carousel-play {
background-image: url(img/ico_play.svg);
}

.carousel-stop {
background-image: url(img/ico_pause.svg);
}

.carousel-play:hover,
.carousel-stop:hover {
cursor: pointer;
opacity: 0.5;
transition: opacity 0.3s;
}
