section.section-custom * {
    box-sizing: border-box;
}



:root {
    --dore: #dd9933;
}

a.absolute {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 14;
    top: 0;
    left: 0;
}

section.section-custom {
    padding: 0 0 50px;
}

.wrap {
    position: relative;
    width: 967px;
    margin: 0 auto;
    max-width: 95%;
    z-index: 3;
}

.dore {
    color: var(--dore);
}

.bkg-dore {
    background: var(--dore);
}

.clearboth {
    clear: both;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.display-table {
    display: table;
    vertical-align: middle;
    height: 100%;
    width: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%;
}

.blanc p,
p.blanc,
.blanc {
    color: #fff;
}

.bkg-cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.padding80 {
    padding: 80px;
}

.padding60 {
    padding: 60px;
}

.padding50 {
    padding: 50px;
}

.padding40 {
    padding: 40px;
}

.padding30 {
    padding: 30px;
}

.padding20 {
    padding: 20px;
}

.padding15 {
    padding: 15px;
}

.padding10 {
    padding: 10px;
}

.filet {
    width: 100%;
    height: 1px;
    margin: 15px 0;
}

.filet-epais {
    width: 100%;
    height: 6px;
    margin: 25px 0;
}

.container-flex {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-item-moitie {
    justify-content: space-between;
    width: 45%;
    position: relative;
}

.flex-item-quart {
    justify-content: space-between;
    width: 23%;
    position: relative;
}

.flex-item-trois-quart {
    justify-content: space-between;
    width: 70%;
    position: relative;
}

.flex-item-tiers {
    justify-content: space-between;
    width: 31%;
    position: relative;
}

.flex-item-deux-tiers {
    justify-content: space-between;
    width: 65%;
    position: relative;
}

.flex-item-auto {
    justify-content: space-between;
    position: relative;
}

.flex-item-full {
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.flex-item-cinq {
    justify-content: space-between;
    width: 18%;
    position: relative;
}

.flex-center {
    align-self: center;
}

.flex-base {
    align-self: flex-end;
}

.marginzero,
.margin-zero {
    margin: 0 !important;
}

paddingzero,
padding-zero {
    padding: 0 !important;
}

.borderradius,
.border-radius {
    border-radius: 6px;
}


.menu-compat a span {
    line-height: 1.5rem !important;
    padding: 12px 0 !important;
}


.modules-signes {
    margin-top: 40px;
}

.module-signe {
    border: 1px solid var(--dore);
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: .7rem !important;
    margin-bottom: 30px;
    border-radius: 8px;
    background: #fff;
    padding: 10px 10px;
    cursor: pointer;
    transition: all .3s;
}

.module-signe:not(.inactif, .actif):hover {
    border: 1px solid transparent;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.module-signe img {
    margin: 0 auto;
    max-width: 80% !important;
    height: auto;
    margin-bottom: 0;
    display: block;
}

.module-signe.inactif {
    opacity: .3;
    cursor: default;
    border-color: inherit;
}

a.inactif.bouton-test {
    opacity: .5;
    cursor: default;
    pointer-events: none;
}

.module-signe.actif {
    border: 6px solid var(--dore);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.popin-compat {
    background: #fff;
    border-radius: 8px;
    padding: 35px;
    margin: 20vh auto 0;
    position: relative;
    width: 600px;
    max-width: 90%;
    border: 2px solid var(--dore);
}

.popin-compat h4::after {
    content: '';
    display: block;
    margin-top: 20px;
    width: 100%;
    height: 2px;
    background: var(--dore);
}

.popin-compat p {
    font-size: 1rem;
    line-height: 1.4rem;
    margin-bottom: 12px;
    text-align: justify;
}

#ebo-spinner-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    z-index: 9999;
    text-align: center;
}

.container-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    border: 6px solid var(--dore);
    border-top: 6px solid #555;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}


/*------------------------------------------------------------*/
/* Responsive */
/*------------------------------------------------------------*/

@media only screen and (max-width: 967px) {
    
    .module-signe {
        width: 31%;    
    }
    
    a.bouton-test {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 300;
        border: 2px solid #fff !important;
        box-shadow: 0 0 15px rgba(0,0,0,0.15) !important;
    }
    
    .module-signe img {
        max-width: 70% !important;
    }
    
    
    
}


@media only screen and (max-width: 600px) {
    
    .module-signe {
        width: 48%;
    }
    
    .module-signe img {
        max-width: 70% !important;
    }
}


@media only screen and (max-width: 600px) {
    
    .flex-item-moitie {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .module-signe {
        width: 31%;
    }
    
    
}

