/*SLider fid*/

.container-fid-img {
    position: relative;
    width: 650px;
    height: 650px;
    border: 2px solid white;
}
.container-fid-img .img-fid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-size: 900px 100%; */
}
.container-fid-img .fid-interface-background-img {
    background-image: url('../img/fonctionnalites/carte-de-fidelite/fid-interface-tablette2.webp');
    /* background-size: contain;
    background-repeat: no-repeat;
    background-position: center; */
}
.container-fid-img .fid-interface-foreground-img {
    background-image: url('../img/fonctionnalites/carte-de-fidelite/fid-interface-tablette.webp');
    width: 50%;
}

.slider {
    border-radius: 50px;
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 242, .3);
    outline: none;
    margin: 0;
    transition: all .2s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider::-moz-range-thumb{
    -moz-appearance: none;
    appearance: none;
    width: 6px;
    height: 600px;
    background: var(--light-grey);
    cursor: pointer;
}

.slider:hover {
  background: rgba(242, 242, 242, .1);
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 6px;
  height: 600px;
  background: var(--light-grey);
  cursor: pointer;
}

.slider-button {
    pointer-events: none;
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--light-grey);
    left: calc(50% - 18px);
    top: calc(50% - 18px);
    display: flex;
    justify-content: center;
    align-items: center;
}


.slider-button:after {
    content: '';
    padding: 3px;
    display: inline-block;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(-45deg);
}
.slider-button:before {
    content: '';
    padding: 3px;
    display: inline-block;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(135deg);
}

/*Espace d'affichage */

/* * {box-sizing:border-box} */

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    background-image: url("../img/fonctionnalites/carte-de-fidelite/slideBG.webp");
    background-size: contain;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
/* .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
} */

/* Number text (1/3 etc) */
/* .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0; 
}*/

/* The dots/bullets/indicators */
/* .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
} */

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
  /* transform: translate(100%,0); */
}

@-webkit-keyframes fade {
  from {
      opacity: .4;
      /* transform: translate(30px,0); */
    }
  to {
      opacity: 1;
      /* transform: translate(0,0); */
    }
}

@keyframes fade {
  from {
      opacity: .4;
      /* transform: translate(100%,0); */
    }
  to {
      opacity: 1;
      /* transform: translate(0,0); */
    }
}

/* column order on mobile*/
@media(max-width: 767px) { /* <== You can change this break point as per your  needs */
    .reverse-columns {
      flex-direction: column-reverse;
      display: flex;
    }
  }