:root {
    --orange-color: #FFA600;

    /* NEW */
    --border-container: 1px solid rgba(255, 255, 255, 0.5);
    --border-radius-container: 10px;
    --box-sadow-container: 0 5px 45px rgba(0, 0, 0, 0.1);
    --backdrop-filter-container: brightness(40%);
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Nunito';
}

.orangeColor {
    color: var(--orange-color);
}

.baseContainer {
    border: var(--border-container);
    border-radius: var(--border-radius-container);
    padding: 10px;
    margin: 0;
    /* box-shadow: var(--box-sadow-container); */
    backdrop-filter: var(--backdrop-filter-container);
    box-sizing: border-box;
    overflow: hidden;
    transition: border-color .5s ease;
}

.pageTitle {
    font-size: 24px;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    margin-top: 25px;
    padding: 8px;
    border: var(--border-container);
    backdrop-filter: var(--backdrop-filter-container);
    border-radius: var(--border-radius-container);
    box-shadow: var(--box-sadow-container);
    text-align: center;
    color: #fff;
    
    /* TODO: Bug graphique backdrop-filter */
    /* width: 1050px;
    box-sizing: border-box; */
}







/* OLD ? */
.title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem auto 0.5rem auto;
    padding: 0.5rem;
    border: 1px solid rgba(255,255,255,0.5);
    /* backdrop-filter: brightness(40%); */
    backdrop-filter: brightness(40%);
    border-radius: 10px;
    box-shadow: 0 5px 45px rgba(0,0,0,0.1);
    display: inline-block;
    text-align: center;
}


.hidden, .cache {
    display: none;
}

.page {
    width: 100%;
    height: auto;
    min-height: 100vh;
    /* position: relative; */
    /* background: url(''); */
    /* background: url(../img/FondDegrade.png); */
    background-position: center;
    background-repeat:  no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}

.container {
    width: 100%;
    height: auto;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 16px;

    position: relative;
    color: #fff;
    font-family: "Quicksand", sans-serif;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.subContainer {
    display: flex;
    justify-content:space-between;
}

/* POPUP */
.divPopup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    font-family: "Quicksand", sans-serif;
}

.divContainerPopup {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: left;
    margin: 15% auto;
    padding: 20px 100px;
    border: 2px solid rgb(255, 217, 0);
    border-radius: 10px;
    width: 70%;
}

.spanClosePopup {
    text-align: center;
    color: #aaa;
    font-size: 34px;
    font-weight: bold;
}

.imagePopup {
    display: inline-block;
    width: 254px;
    height: 254px;
    margin-right: 5px;
    margin-bottom: 20px;
}

.textePopup {
    font-size: 20px;
    font-weight: bold;
    padding: 0.5rem;
    text-align: justify;
}

.containerPro {
    display: none;
    width: 1050px;
    height: 80px;
    /* width: 1050px;
    aspect-ratio: 10 / 1; */
    border: 1px solid rgba(255,255,255,0.5);
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 10px;
}

.containerPro img {
    width: 100%;
    height: 100%;
}


.buttonLabel {
    display: inline-block;
    padding: 8px 8px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    border-radius: 24px;
    transition: 0.3s;
    user-select: none;
}
.radioLabel:checked + .buttonLabel {
    background: #ffa600;
    color: #efefef;
}
.buttonLabelStage {
    display: inline-block;
    padding: 8px 8px;
    cursor: pointer;
    color: #fff;
    border: var(--border-width) var(--border-style) var(--border-color);
    border-radius: 7px;
}
.radioLabelStage:checked + .buttonLabelStage {
    border-color: var(--border-color-check);
    color: var(--border-color-check);
}

.linkContainer {
    display: block;
    margin: -25px 0;
    padding: 25px 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
}

@media screen and (max-width: 1100px) and (min-width: 800px){

    .containerPro {
        width: 100%;
    }
}

@media screen and (max-width: 799px) {
    .container {
        width: 100%;
    }

    /* POPUP */
    .divContainerPopup {
        margin: 2% auto;
        padding: 10px;
        width: 90%;
    }

    .textePopup {
        font-size: 16px;
    }

    .containerPro {
        width: 100%;
    }
} 