/* .cookiePolicyWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background-color: rgba(255,255,255,0.4);
    user-select: none;
} */

.cookiePolicyWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed; /* Remplace absolute par fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background-color: rgba(255,255,255,0.4);
    user-select: none;
}


/* Cookie premier message */
.cookiePolicyContainer {
    max-width: 700px;
    padding: 15px 20px;
    background-color: #EEE;
    border: 1px solid #555;
}

.cookiePolicyContainer h2 {
    text-transform: uppercase;
    color: #1D1D1D;
    margin-bottom: 15px;
}

.cookiePolicyContainer p {
    text-align: justify;
}

.btnContainer {
    display: flex;
    justify-content: center;
}

.acceptAll {
    border: 2px solid transparent;
    padding: 5px 10px;
    background-color: #b9a18d;
    color: white;
    font-weight: 600!important;
    margin-right: 10px;
}

.customize {
    border: 2px solid #b9a18d;
    padding: 5px 10px;
    color: #b9a18d;
    font-weight: 600!important;
    margin-left: 10px;
}

/* Cookie préférence */
.cookiePolicyPreferencies {
    width: 500px;
    /* height: 500px; */
    padding: 15px 20px;
    background-color: #EEE;
    border: 1px solid #555;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    overflow: auto;
    height: fit-content;
    max-height: 100%;
}

.cookiePolicyPreferencies h2 {
    text-transform: uppercase;
    color: #1D1D1D;
    margin-bottom: 15px;
}

.preferenciesContainer {
}

.cookieLine {
    margin-bottom: 15px;
    display: flex;

}

.cookieLineText {
    width: 341px;
}

.cookieLineText p {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.cookieLineText a, .redirectLink a {
    color: #212529!important;
    text-decoration: underline!important;
}


.cookieLineSelect {
    width: 113px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkboxCustom {
    border: 1px solid #555;
    width: 20px;
    height: 20px;
    /* width: 50px;
    height: 50px; */
    cursor: pointer;
    position: relative;
    user-select: none;
}

.unselectBox {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.selectBox {
    position: absolute;
    width: 100%;
    height: 100%;
    position: relative;
}

.selectBox p {
    position: absolute;
    margin: 0;
    padding: 0;
    line-height: 0.8;
    top: -1px;
    left: 0;
}





.confirmButton {
    border: 2px solid #b9a18d;
    padding: 5px 10px;
    color: #b9a18d;
    font-weight: 600!important;
    margin-left: 10px;
}

.redirectLink {
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.hideCookie {
    display: none;
}

@media (max-width : 720px) {
    .cookiePolicyContainer {
        max-width: 100%;
        margin: 0 100px;
    }

    .cookiePolicyContainer h2 {
        margin-bottom: 25px;
    }

    .btnContainer {
        margin-top: 25px;
    }

    .cookiePolicyPreferencies h2 {
        margin-bottom: 25px;
    }

    .cookieLineText {
        width: 545px;
    }

    .redirectLink {
        margin-top: 25px;
    }
}