

/* AJOUT */

.components-carousel
{
    display: flex;
}

/* Arrows */
.components-carousel .slick-prev,
.components-carousel .slick-next
{
    z-index: 140;
    border-radius: 25px;
    opacity: 1;

    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    width: 40px;
    height: 40px;
    font-size: 24px;
    color: var(--white);
    background: var(--main-dark-blue);
    border: none;
    outline: none;
}

.components-carousel .slick-prev:hover,
.components-carousel .slick-prev:focus,
.components-carousel .slick-next:hover,
.components-carousel .slick-next:focus
{

}

.components-carousel .slick-prev:before,
.components-carousel .slick-next:before
{
    font-family: 'icomoon';
    font-size: 20px;
    line-height: 1;

    opacity: 1;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.components-carousel .slick-arrow {
    z-index: 140;
    border-radius: 25px;
    opacity: 1;
}

.components-carousel .slick-prev {
    left: 10px;
}

.components-carousel .slick-next {
    right: 10px;
}

.components-carousel .slick-prev:before {
    content: '\e911' !important;
}

.components-carousel .slick-next:before {
    content: '\e910' !important;
}

.components-carousel .slick-slide {
    padding: 5px
}

.components-carousel .slick-slide > img {
    width: 100%;
}