/* overlay css promo fin d'année */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 5000000;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.overlay .big {
    border-radius: 8px;
    box-shadow: 1px 1px 20px 0px #595959;
}
.overlay .closeit {
    position: absolute;
    right : -15px;
    top: -15px;
    cursor: pointer;
    background: white;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.overlay .closeit:hover {
    cursor: pointer;
    transform: scale(1.2);
    transition: all 0.2s ease;
}

@media (max-width: 575.98px) { 
    .overlay .big {
        width: 100%;
        height: auto;
    }
}
/* fin de la fin d'année promo */