@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('/../imagenes/img_presentacion/AjaxLoader.gif') center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    top: calc(50% - 18px/2);
    /*margin-top: -10px;*/
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .0;
}

.slick-prev:before,
.slick-next:before{
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev{
    left: 16px;
}
[dir='rtl'] .slick-prev{
    right: 5px;
    left: auto;
}
.slick-prev:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    opacity: .5;
    background-repeat: no-repeat;
    background-image: url("../../../imagenes/svg/gris/icono-flecha-izquierda.svg");
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}
[dir='rtl'] .slick-prev:before
{
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    opacity: .5;
    background-repeat: no-repeat;
    background-image: url("../../../imagenes/svg/gris/icono-flecha-izquierda.svg");
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

.slick-next{
    right: 8px;
}

[dir='rtl'] .slick-next{
    right: auto;
    right: 22px;
}
.slick-next:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    opacity: .5;
    background-repeat: no-repeat;
    background-image: url("../../../imagenes/svg/gris/icono-flecha-derecha.svg");
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}
[dir='rtl'] .slick-next:before{
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    opacity: .5;
    background-repeat: no-repeat;
    background-image: url("../../../imagenes/svg/gris/icono-flecha-derecha.svg");
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

/* Dots */
.slick-slider{
    margin-bottom: 0px;
}

.slick-dots {
    position: absolute;
    bottom: 4px !important;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
	margin: 0px !important;
    right: 0px;
}

.slick-dots li{
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 0px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 6px;
    height: 6px;
    padding: 0px;
    cursor: pointer;
    border-radius: 50%;
    /*color: transparent;*/
    border: 0px solid #333333;
    outline: none;
    background: rgba(152, 152, 152, 0.2);
    margin: 2px;
    opacity: 0.5;
   filter: alpha(opacity=50);
    transition:all .2s;
    -ms-transition:all .2s;
	-moz-transition:all .2s;
	-webkit-transition:all .2s;
	
}
.slick-dots li button:hover,
.slick-dots li button:focus{
    outline: none;
    opacity: 1.0;
   filter: alpha(opacity=100);
    transition:all .2s;
    -ms-transition:all .2s;
	-moz-transition:all .2s;
	-webkit-transition:all .2s;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
    opacity: 1;
}
.slick-dots li button:before {
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    text-align: center;
    opacity: .25;
    color: black;
    background: transparent ;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before{
    opacity: 0.60;
    background-color: black;
}
.slick-dots li.slick-active button{
    opacity: 0.9;
    filter: alpha(opacity=90);
    background-color: #76b72a;
    width: 10px;
    height: 10px;
    margin: 0px;
}

.slick-dots li.slick-active button:hover{
    opacity: 1.0;
    filter: alpha(opacity=100);
}


