/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 21 2026 | 16:27:03 */
.mes-fleches-lightbox {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999999;

    width: 60px;
    height: 80px;

    border: 0;
    background: rgba(0,0,0,0.25);
    color: white;

    font-size: 42px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.2s ease;
}

.mes-fleches-lightbox:hover {
    background: rgba(0,0,0,0.55);
}

.fleche-precedente {
    left: 20px;
}

.fleche-suivante {
    right: 20px;
}

@media (max-width: 767px) {

    .mes-fleches-lightbox {
        width: 45px;
        height: 65px;
        font-size: 32px;
    }

    .fleche-precedente {
        left: 5px;
    }

    .fleche-suivante {
        right: 5px;
    }

}