@charset "UTF-8";
/* CSS Document */

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  }

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  }

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
  }

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  }


/* CONTAINER */
.rslides_container {
    position: relative;
}

/* NAV WRAPPER (généré par plugin) */
.rslides_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    text-decoration: none;
}

/* POSITION */
.rslides_nav.prev {
    left: 10px;
}

.rslides_nav.next {
    right: 10px;
}

/* BOUTON */
.rslides-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);

    border-radius: 50%;
    color: #fff;

    transition: all 0.25s ease;
}

/* HOVER */
.rslides_nav:hover .rslides-arrow {
    background: rgba(0,0,0,0.7);
    transform: scale(1.1);
}

/* SVG */
.rslides-arrow svg {
    width: 20px;
    height: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .rslides-arrow {
        width: 36px;
        height: 36px;
    }
}

/* cacher sur mobile si tu veux */
@media (max-width: 768px){
    .rslides_nav {
        display: none;
    }
}
