/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
	position: absolute;
	width: 100%;
	height: auto;
	text-align: center;
	margin-top: 10px;
/*	-webkit-tap-highlight-color: transparent;*/
	z-index: 400;
	top: 30%;
}
 
.owl-theme .owl-nav .owl-prev {
	float: left;
    display: inline-block;
    cursor: pointer;
    appearance: none;
    border: none;
    margin-left: -3%;
    width: 22px;
    height: 22px;
    background: transparent;
	background-image: url(../images/flecha-izq-rosa.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

	transition:All 0.5s ease;
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
	
}
 
.owl-theme .owl-nav .owl-prev:hover {
    margin-left: -3.5%;
    width: 22px;
    height: 22px;
    background: transparent;
	background-image: url(../images/flecha-izq-violeta.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.owl-theme .owl-nav .owl-next {
	float: right;
    display: inline-block;
    cursor: pointer;
    appearance: none;
    border: none;
	margin-right: -3%;
    width: 22px;
    height: 22px;
    background: transparent;
	background-image: url(../images/flecha-der-rosa.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

	transition:All 0.5s ease;
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
	
	
}
 
.owl-theme .owl-nav .owl-next:hover {
	margin-right: -3.5%;
    width: 22px;
    height: 22px;
    background: transparent;
	background-image: url(../images/flecha-der-violeta.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
      
.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled .owl-dots {

}

.owl-theme .owl-dots {
	text-align: right;
	-webkit-tap-highlight-color: transparent;
    appearance: none;
	margin-top: 20px;
	
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    display: inline;
    appearance: none;
    border: none;
    background: transparent;
}

.owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 0px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #c06faf;
}

@media only screen and (max-width: 690px) {
	.owl-dots {
		display: none;
	}
}
