.hidden{
    display:none !important;
}

#gdpr-missing-consent-alert{
    color:red!important;
}

#post_class{
    display:none;
}

.label-stat{
    margin-left:5px;
    color:black!important;
    font-size: 18px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 18px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: red;
}

input:checked + .disabled {
    background-color: gray;
}

input:focus + .slider {
    box-shadow: 0 0 1px red;
}

input:checked + .slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.gdpr-switch{
    display: flex;
    margin: 10px;
    margin-bottom: 0px;
    margin-top: 5px;
    align-content:flex-start;
    align-items: center;
    margin-left:5px!important;
}

.gdpr-stat-checkbox{
    display: flex;
    margin: 10px;
    margin-bottom: 0px;
    margin-top: 5px;
    align-content:flex-start;
    align-items: center;
}

.gdpr-checkbox-row{
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

#gdpr-consent-form{
    /*display:none;*/
	position: fixed;
    bottom: 0px;
    left: 0px;
	/* MOD-FDC 17.11.2023 : Ajout du popup de noël */
    /*z-index: 99999999999999;*/
    z-index: 99999999;
    background-color: white;
    width: 100%;
    border-top:1px solid lightgray;
    margin-block-end:0px;
    padding-bottom: 0px;
}

#gdpr-consent-text {
    font-size:16px;
    width:98%;
    margin-bottom: 0px;
}

.gdpr-constent-checkbox{
    display:inline;
    margin: 10px;
    margin-bottom:0px;
    margin-top:5px;
}

.gdpr-constent-checkbox > label {
    font-size:16px;
}

.gdpr-app-button{
    font-size:12px !important;
}

.gdpr-consent-container{
    margin:15px;
    position: relative;
    margin-bottom:5px;
}

#gdpr-quit-form{
    position: absolute;
    top:-5px;
    right:0px;
    cursor: pointer;
}

#gdpr-app-button-appSelected{
    background-color: #DCDCDC;
    color: #567!important;
    padding:10px;
    font-size:10px!important;
}

#gdpr-app-button-appAll{
    background-color:green;
    padding:10px;
    font-size:10px!important;
}

/* small devices */
@media only screen and (max-width: 768px) {
    .gdpr-app-button-container{
        display:block;
        text-align: center;
    }

    .gdpr-constent-checkbox{
        display:block;
        margin:5px;
        margin-bottom:0px;
    }


    #gdpr-consent-text{
        font-size: 12px;
        margin-bottom: 0px;
    }

    .gdpr-constent-checkbox > label {
        font-size: 13px;
    }

    .gdpr-consent-container{
        margin-bottom: 5px;
    }

    .gdpr-app-button{
        font-size: 12px !important;
        width: 100%!important;
        margin-top: 5px;
    }

    .gdpr-checkbox-row{
        width:100%;
    }
}

/* medium devices */
@media only screen and (min-width: 768px) {
    .gdpr-checkbox-row{
        width:100%;
    }
}

/* Large devices */
@media only screen and (min-width: 992px) {
    .gdpr-checkbox-row{
        width:70%;
    }

    .gdpr-app-button-container{
        display:unset;
        position:absolute;
        text-align: center;
        bottom:0px;
        right:0px;
        margin-bottom:4px;
    }
}/* MOD-FDC 07.11.2024 : Mise à jour du rendu du lien */#gdpr-consent-text a {	color: var(--nv-secondary-accent) !important;}#gdpr-consent-text a:hover {	text-decoration: underline !important;}