﻿.listeConfigs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.containerConfigs {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    height: 100%;
    justify-content: center;
    position: relative;
    gap: 50px;
    padding: 15px;
}

.show_shadow {
    height: 480px;
}

    .show_shadow::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: linear-gradient(to bottom, rgb(255 255 255 / 0%), rgb(0 0 0));
        pointer-events: none;
        z-index: 1;
    }

.btnSeeMore {
    display: flex;
    width: 100px;
    padding: 10px;
    color: var(--blanc);
    border: solid 1px var(--blanc);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .btnSeeMore:hover {
        color: #000000;
        background: #c91d1d;
        border: solid 1px #c91d1d;
    }