.sliderlite-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.sliderlite-wrapper .slideshow-container {
  position: relative;
}

.sliderlite-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sliderlite-wrapper .mySlides {
  display: none;
  position: relative;
}

.sliderlite-wrapper .mySlides.active {
  display: block;
}

.sliderlite-wrapper picture,
.sliderlite-wrapper img {
  width: 100%;
  display: block;
  height: auto;
}

.sliderlite-wrapper .description {
  position: absolute;
  color: #fff;
  z-index: 5;
}

.sliderlite-title,
.sliderlite-subtitle {
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
	margin: 0 0 0.6rem 0;
	line-height: 1.25;
}
.sliderlite-title {
	font-size: 2rem;
	font-weight: 600;
}

.sliderlite-subtitle {
	font-size: 1.5rem;
	font-weight: 500;
}

.sliderlite-wrapper .description span {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 2rem;
  background: rgba(0,0,0,0.5);
  font-size: .9rem;
}

/* Fade animation */
.sliderlite-wrapper .slider-fade {
  -webkit-animation-name: sliderlite-fade;
  -webkit-animation-duration: .8s;
  animation-name: sliderlite-fade;
  animation-duration: .8s;
}

@-webkit-keyframes sliderlite-fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes sliderlite-fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Prev/next */
.sliderlite-wrapper .prev,
.sliderlite-wrapper .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 75px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 42px;
    font-weight: 300;

    color: rgba(255,255,255,0.8);
    background: none;
    border: none;

    cursor: pointer;
    z-index: 20;

    transition: all 0.2s ease;
}

/* Hover : léger zoom + opacité */
.sliderlite-wrapper .prev:hover,
.sliderlite-wrapper .next:hover {
    color: #ffffff;
    transform: translateY(-50%) scale(1.15);
}

/* Positionnement */
.sliderlite-wrapper .prev {
    left: 0.1rem;
}

.sliderlite-wrapper .next {
    right: 0.1rem;
}

/* Dots */
.sliderlite-wrapper .slide-dots {
  display:none;
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: .75rem;
  z-index: 12;

}

.sliderlite-wrapper .dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 3px;
  border-radius: 50%;
  display: inline-block;
  background-color: rgba(255,255,255,0.5);
}

.sliderlite-wrapper .dot.active,
.sliderlite-wrapper .dot:hover {
  background-color: rgba(255,255,255,0.9);
}

/* Full Width */
.sliderlite-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/*Zone de texte */
.sliderlite-zone {
    position: absolute;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.35); /* noir transparent */
    color: #fff;
    z-index: 8;
	display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

/*CTA*/
.sliderlite-zone .cta-btn {
    display: inline-block;
    background: #C47C53;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 25px 0;
    text-align: center;
    text-decoration: none;
	padding: 0.2rem;
    font-weight: 500;
    margin-top: 1rem;
	z-index: 8;
	line-height: 2;
	max-width:400px;
	width: 100%;
	white-space: nowrap;
}

@media (max-width: 768px) {
    .sliderlite-zone {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sliderlite-zone .cta-btn:hover {
    background: #2E765E;
}

.sliderlite-zone .sliderlite-text {
    display: flex;
    flex-direction: column;
}


/* Positions horizontales */
.sliderlite-left   { left: 0;  right: auto; }
.sliderlite-right  { right: 0; left: auto; }

/* Positions verticales */
.sliderlite-top    { top: 0; bottom: auto; }
.sliderlite-bottom { bottom: 0; top: auto; }

.slider-lite-h100 {height:100%}

.sliderlite-desktop-30 { width: 30%; }
.sliderlite-desktop-40 { width: 40%; }
.sliderlite-desktop-50 { width: 50%; }
.sliderlite-desktop-60 { width: 60%; }
.sliderlite-desktop-70 { width: 70%; }
.sliderlite-desktop-80 { width: 80%; }
.sliderlite-desktop-90 { width: 89%; }
.sliderlite-desktop-100 { width: 100%; }

/* Tablette */
@media (max-width: 992px) {
    .sliderlite-tablet-80 { width: 80% !important; }
    .sliderlite-tablet-70 { width: 70% !important; }
    .sliderlite-tablet-60 { width: 60% !important; }
    .sliderlite-tablet-50 { width: 50% !important; }
    .sliderlite-tablet-top { top: 5% !important; bottom: auto !important; }
    .sliderlite-tablet-bottom { bottom: 5% !important; top: auto !important; }
    .sliderlite-tablet-left { left: 5% !important; right: auto !important; }
    .sliderlite-tablet-right { right: 5% !important; left: auto !important; }
}

/* Mobile */
@media (max-width: 768px) {
	
	.sliderlite-mobile-100 { width: 100% !important; }
	.sliderlite-mobile-90 {  width: 90% !important; }
	.sliderlite-mobile-80 {  width: 80% !important; }
	.sliderlite-mobile-bottom { bottom: 0% !important; top: auto !important; }
	.sliderlite-mobile-top { top: 0% !important; bottom: auto !important; }
	.sliderlite-mobile-center { left: 50% !important; transform: translateX(-50%); }
	/*.sliderlite-wrapper .description {
		left: 5%;
		bottom: 10%;
		max-width: 90%;
	}
    */
	.sliderlite-title {
		font-size: 1.8rem;
	}

	.sliderlite-subtitle {
		font-size: 1.3rem;
	}

}