.carrusel {
	position: relative;
}
.slick-track, .slick-slide {
	height: 100%;
}
.slick-prev,
.slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
	border: none;
	outline: none;
	z-index: 2;
	cursor: pointer;
	font-size: 0; /* Oculta el texto del botón */
	line-height: 0; /* Asegura que no se muestre el texto */
}

.slick-prev {
	left: 25px; /* Ajusta la posición del botón de la izquierda */
	background-image: url('../img/prev.svg'); /* Imagen del botón 'Previous' */
}

.slick-next {
	right: 25px; /* Ajusta la posición del botón de la derecha */
	background-image: url('../img/next.svg'); /* Imagen del botón 'Next' */
}

.flechas-negras .slick-prev,
.flechas-negras .slick-next {
	width: 20px;
	height: 20px;
}

.flechas-negras .slick-prev {
	left: 25px;
	background-image: url('../img/prev-n.svg');
}

.flechas-negras .slick-next {
	right: 25px;
	background-image: url('../img/next-n.svg');
}
.flechas-grises .slick-prev,
.flechas-grises .slick-next {
	width: 28px;
	height: 28px;
}

.flechas-grises .slick-prev {
	left: 25px;
	background-image: url('../img/prev-g.svg');
}

.flechas-grises .slick-next {
	right: 25px;
	background-image: url('../img/next-g.svg');
}

/* Oculta cualquier texto predeterminado */
.slick-prev:before, .slick-next:before {
	content: '';
}

/* Estilo de los dots */
.slick-dots {
	position: absolute;
	bottom: 10px; /* Ajusta la distancia del borde inferior */
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	padding: 0;
	margin: 0;
	list-style: none; /* Elimina los marcadores de la lista */
}

.slick-dots li {
	margin: 0 5px;
	list-style-type: none; /* Asegura que no haya estilo de lista */
}

/* Oculta cualquier marcador por defecto */
.slick-dots li::marker {
	content: none;
}

.slick-dots button {
	width: 15px;
	height: 3px;
	border-radius: 0;
	background-color: white;
	border: none;
	outline: none;
	cursor: pointer;
	font-size: 0; /* Oculta el texto del botón de dot */
	line-height: 0;
	transition: background-color 0.3s ease;
	opacity: .5;
	transition: all .3s;
}

.slick-dots .slick-active button {
	opacity: 1;
}