/*
color to filter: https://codepen.io/sosuke/pen/Pjoqqp
*/
:root{
    --cms-container-padding-x: min(8vw,140px);
    --container-padding-x:2.5vw;
    --container-max: 1680px;
    --header-height: 100px;
    --ancre-height: 100px;
    --appheight: 100vh;
    --nav-width:400px;
    --nav-anim-duration:0.85s;
    --white:#FFFFFF;
    --black:#000000;
}
html{
    margin: 0 0;
    padding: 0 0;
    width: 100%;
    height: 100%;
}
body{
    font-family: "Alegreya", Helvetica, Arial, sans-serif, serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 22px;

    /*color: #425369;*/
    color: var(--text-default) !important;
    background-color: #FFFFFF;

    margin: 0 auto;
    padding: 0 0;
    width: 100%;
}
/*
strong{
    font-weight: inherit;
}
*/
u{
    color: initial;
}
ul{
    margin: 0;
    padding: 0;
}
::-webkit-scrollbar {
    width: 12px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #FFF;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #000;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #666;
}

hr{
    height: 1px;
    background-color: #FFF;
    border: none;
}

.souligne{text-decoration: underline;}
.gras{font-weight: bold;}
.colorparent{color: inherit;}
.italic{font-style: italic;}

@-ms-viewport { width: device-width; }

*{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
:focus-visible {
    outline: none;
}
p{
    margin:0 0;
}
a{
    text-decoration: none;
}
a:focus{
    outline: none;
}
.prevent-select {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.noevent{
    cursor: default;
    pointer-events: none;
}

#cnil{
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #EFEFEF;
    margin: 0 auto;

    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 17px;
    color: #000;
    border: 1px solid #C5CBD2;
    /*max-width: 1429px;*/
}
#cnil label{
    color: inherit;
}
#cnil .configs{
    display: none;
}
#cnil .title{
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 15px;
}
#cnil .intro{
    margin-bottom: 15px;
}
#cnil .config{
    display: grid;
    grid-template-columns: auto 1fr;
    gap:20px;
    align-items: center;
    margin-bottom: 20px;
}
#cnil .inner{
    display: grid;
    grid-template-row: auto auto;
    grid-gap: 0px;
    margin: 20px;
    /*
    padding: 30px 50px;
    border: 1px solid #e30613;
     */
    align-items: center;
}
#cnil .infos{
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 20px;
    align-items: center;
}

#cnil a{
    text-decoration: underline;
}
#cnil .button{
    font-size: 12px;
    font-weight: normal;
    padding: 8px 12px;
}
#cnil .txt{
}
#cnil .txt a{
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
#cnil .btns{
    display: flex;
    gap: 12px;
    flex-flow: wrap;
    text-align: center;
}
#cnil .btns > div{
    cursor: pointer;
}

#cnil .baccept{
}
/*
#cnil input[type=radio],#cnil input[type=checkbox] {
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border: 1px solid #e30613;
}
#cnil input[type=radio]:checked,#cnil input[type=checkbox]:checked {
    background-color: #e30613;
}
*/

input.apple-switch {
    position: relative;
    -webkit-appearance: none;
    outline: none;
    width: 50px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #D9DADC;
    border-radius: 50px;
    box-shadow: inset -20px 0 0 0 #fff;
}

input.apple-switch:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    background: transparent;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
}

input.apple-switch:checked {
    box-shadow: inset 20px 0 0 0 #e8a9a9;
    border-color: #000000;
}

input.apple-switch:checked:after {
    left: 20px;
    box-shadow: -2px 4px 3px rgba(0,0,0,0.05);
}

input.apple-switch.noevent:checked {
    box-shadow: inset 20px 0 0 0 #CCCCCC;
}

.agddcarousel-nav svg{
    width: 100%;
}
.agddcarousel-nav{
    max-width: clamp(38px,3vw,50px);
}