/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 20 2025 | 16:18:42 */
.owl-carousel.owl-loaded {
	display: flex !important;
    flex-direction: column !important;
	overflow: hidden;
}
.owl-carousel .owl-nav {
	display: flex;
    justify-content: flex-end;
	position: relative;	
    width: auto;
	order: 0;
	gap: 20px;
	padding-right: 20px;
}
.owl-prev,
.owl-next {
	background-color: transparent !important;
	background-repeat: no-repeat !important;
	background-size: 100% !important;
	color: transparent !important;
	height: 50px;
	width: 50px;
}
.owl-prev {
	background-image: url("/wp-content/uploads/fletxa-prev.png") !important;
}
.owl-next {
	background-image: url("/wp-content/uploads/fletxa-next.png") !important;
}
.owl-prev:hover,
.owl-next:hover {
	animation-name: wobble;
	animation-duration: 0.8s;      /* quant dura */
	animation-timing-function: ease-in-out; /* opcional, suavitzat */
}
.owl-prev.disabled,
.owl-next.disabled {
	opacity: .3;
	pointer-events: none;
}
.owl-carousel .owl-stage-outer {
    order: 1;
}
.owl-carousel .owl-dots {
    align-items: center;
	display: flex;
    justify-content: center;
	position: relative;
	margin: 40px 0;
	order: 2;
}
.owl-carousel button.owl-dot {
	background-color: var(--contrast) !important;
	border: 1px solid var(--contrast) !important;
	height: 6px;
	margin: 0 8px;
	width: 14px;
	transition: all .5s ease;
}
.owl-carousel button.owl-dot:hover,
.owl-carousel button.owl-dot.active {
	background-color: var(--accent) !important;
	border-color: var(--accent) !important;
}
.owl-carousel button.owl-dot.active {
	width: 34px;
}

/* HEADER SLIDER */
.owl-carousel.header-slider .owl-nav .owl-next,
.owl-carousel.header-slider .owl-nav .owl-prev {
	font-size: 40px !important;
	line-height: 26px !important;
	padding: 10px !important;
}
.owl-carousel.header-slider button.owl-dot {
	background-color: var(--base) !important;
	border: 1px solid var(--base) !important;
}
.owl-carousel.header-slider button.owl-dot:hover {
	background-color: var(--contrast) !important;
	border-color: var(--base-3) !important;
}
/* Opcio CAPTION */
.owl-carousel.header-slider.caption .owl-dots {
    top: -40px;
    justify-content: start;
    left: 19%;
	top: -56px;
}
@media (min-width: 768px) {
	.owl-carousel.header-slider.caption .owl-dots {
		left: 42%;
		top: -14vh;
	}
}
@media (min-width: 1200px) {
	.owl-carousel.header-slider.caption .owl-dots {
		left: 57%;
		top: -14vh;
	}
}


/* BODY CAROUSEL */
.owl-carousel.body-carousel .owl-stage {
	margin: auto;
	margin-left: 0; /* Elimino espaiat a l'esquerra primer item */
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.owl-carousel.body-carousel .owl-stage-outer {
  overflow: unset; /* Desborda els items del container */	
}