/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: sans-serif;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


:root {
    /* Définition des couleurs principales */
    --main-color: linear-gradient(250.61deg, #129C10 40%, #0ee507 100%),linear-gradient(0deg, #FFFFFF, #FFFFFF);
    --main-color2: linear-gradient(250.61deg, #66FA63 40%, #FFCE51 100%);

    /* Définition des couleurs de texte */
    --text-color: #000000;
    --text-color-2: #FFFFFF;
    --text-color-3: #23CCC2;
    --text-color-4: #129C10;

    /* Définition des couleurs de texte avec faible opacité */
    --text-color-lowBlack: #333333;
    --text-color-lowWhite: #817e7e;
    --text-color-lowWhite2:rgb(174, 171, 171);
    --text-color-lowWhite3:rgb(233, 233, 233);

    /* Définition des couleurs de fond Radial */
    --background-radial : radial-gradient(61.62% 61.62% at 50% 100%, rgba(83, 198, 81, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    --background-night : #000000;
    
    --background-day : #FFFFFF;

}


/* rajoute un font face en dessous qui s'appelle clarity */
@font-face {
    font-family: 'clarity';
    src: url('../fonts/Clarika Geometric-normal-400-100.ttf');
}

@font-face {
    font-family: 'clarity_medium';
    src: url('../fontsClarika1 Geometric Medium-normal-500-100.ttf');
}

/* rajoute un font face en dessous qui s'appelle Poppins */
@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins-Medium.ttf');
}

@font-face {
    font-family: 'poppins_regular';
    src: url('../fonts/Poppins-Regular.ttf ');
}

@font-face {
    font-family: 'poppins_semiBold';
    src: url('../fonts/Poppins-SemiBold.woff2 ');
}

* {
    font-family: "clarity";
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "poppins_semiBold" !important;
}

/* Tailles pour les éléments HTML */
h1 {
    font-size: clamp(3.5rem, 5vw, 3.5rem);
    width: 100%;
    line-height: 1.3;
  }
  
  h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    line-height: 1.2;
  }
  
  h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.2;
  }
  
  h4 {
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
  }
  
  h5 {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    line-height: 1.2;
  }
  
  h6 {
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    line-height: 1.2;
  }
  
  p,
  a,
  button {
    font-size: clamp(0.94rem, 1.6vw, 1rem);
   
    line-height: 1.8;
  }
  
  span {
    font-size: clamp(0.7rem, 1.4vw, 0.9rem);
    line-height: 1.2;
  }
  
  
  input[type="text"],
  input[type="email"],
  input[type="password"],
  textarea {
    font-size: 16px;
    line-height: 1.5;
  }
  
    
.opacitiy-0{
    opacity: 0;
    transition: 0.20s;
}
.opacitiy-1{
    opacity: 1;
    transition: 0.20s;
}
  
  .svg_rotateAnimation {
    animation: rotate3 1.4s infinite;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
@keyframes rotate3 {
    0% {
        transform: rotate(0deg);

    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
    
}

.squeletAnim{
    animation: squeletAnim 1.5s infinite;
    animation-timing-function: cubic-bezier(0.4, 0, 1, 1);

}

@keyframes squeletAnim {
    0% {
        background-color: #2B2B2B;
    }

    50% {
        background-color: #202020;
    }

    100% {
        background-color: #2B2B2B;
    }
    
}

.appearAnimation{
    animation: appearAnimation 0.23s;
    animation-timing-function: cubic-bezier(0.4, 0, 1, 1);

}

@keyframes appearAnimation {
    0% {
        opacity: 0;
        transform: translateX(-5px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
    
}




#mob_burger_menu {
    height: 20px;
    width: 15px;
    background-color: #070707;
    border-radius: 4px;
    display: flex column;
    cursor: pointer;
}
#mob_header {
    position: fixed;
    top: 0;
    left: 0;
   border-radius: 10px;
    min-height: 100dvh !important;
    width: 80%;
    background-color: #181818;
    z-index: 3334;
    padding: 10px 0;
    left: -95%;
    transition : 0.20s all;
    
   
    background: #181818;
    border-right: 1px solid #202020;
    
            }



            #mob_header  .profil_menu {
             
    width: -webkit-fill-available !important;
    opacity: 1;
    transition: opacity 0.5s;
    visibility: visible;
    position: absolute;
    top: 130px;
    right: 0px;
    padding: 10px;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
    background: #262626;
    height: max-content;
    color: rgb(110, 110, 110);
    border-radius: 3px;
    border: 1px solid #2f2f2f;
    z-index: 33333 !important;
    transition: 0.2s;
    /* width: max-content !important; */
    box-shadow: 1px 2px 15px 0px #00000061;
   
    transition: 0.2s all;
    height: 100%;
width: -moz-available;

}


#mob_header a{
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 10px !important;
    padding-right: 10px;
    width: -webkit-fill-available !important;
    width: -moz-available !important;
}
#mob_header_backdrop{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw; 
    background-color: rgba(0, 0, 0, 0.51);
    z-index: 110;    
    visibility: hidden;
    backdrop-filter: blur(8px);    
    opacity: 0;
    transition: 0.20s;
}


.active_profil_menu{
    left: 0px !important;
}
.mob_header_backdrop_active{
opacity: 1 !important;
visibility: visible !important;

}
#mob_burger_menu span{
    background-color: white;
    height: 2px;
    width: 100%;
    display: block;
    margin-bottom: 4px;
    border-radius: 2px;
    
}

.logout_style{
    margin: 10px;
    position: fixed;
    bottom: 0px;
    margin-top: fixed;
    border-radius: 4px;
    
    border-bottom: 0px;
    color: #604f4f !important;
    background: #e8e8e8;
    max-width: 100px;
    box-shadow: 1px 2px 13px #00000033;
    margin-left: 20%;
    margin-bottom: 32px;

    padding-left : 10
}
.logout_style svg path{
    fill: #b52c2c !important;
}
.logout_style:hover{
    background: #ff00000d;
    border: 1px solid #31302c;
    color : #997373;
}
.smallPadding{
    padding: 4px !important;
    padding-left: 11px !important;
    padding-right: 11px !important;
}









/*COOKIE CSS */
.cookieConsentContainer {
    z-index: 999;
    width: 350px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 20px;
    background:radial-gradient(61.62% 61.62% at 50% 100%, rgb(92 103 91 / 88%) 0%, rgb(0 0 0 / 77%) 100%);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-top : 1px solid rgba(52, 52, 52, 0.308);
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    border-radius: 10px;
    box-shadow: 3px -2px 33px #141313c3;
    font-family: 'San Francisco', 'Helvetica Neue', Arial, sans-serif;
    color: #e9e9e9;
    z-index: 33333;
}

.cookieConsentContainer .cookieTitle a {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.4;
    display: block;
    font-weight: 600;
}

.cookieConsentContainer .cookieDesc p {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 8px;
    color : #b5b5b5;
    margin-bottom: 10px;
}

.cookieConsentContainer .cookieDesc a {
    color: #00cb29;
    text-decoration: underline;
}

.cookieConsentContainer .cookieButton a {
    display: inline-block;
    color: #f6f6f6;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    justify-content: flex-end;
    background: radial-gradient(61.62% 61.62% at 50% 100%, rgb(92 103 91 / 65%) 0%, rgba(0, 0, 0, 0) 100%);
    box-sizing: border-box; 
    border: 1px solid #00cb2929;
    padding: 3px 10px;
    margin-bottom: 10px;
  
    border-radius: 4px;
    transition: background 0.20s;
    text-decoration: none;
}

.cookieConsentContainer .cookieButton a:hover { 
    cursor: pointer;
    border: 1px solid rgb(72, 72, 72);
    transition: 0.20s;
    background: var(--main-color);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    outline: 4px solid rgb(4, 68, 39);

}
.cookieButton{
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 980px) {
    .cookieConsentContainer {
        bottom: 0px !important;
        left: 0px !important;
        width: 100%  !important;
        padding-bottom: 0px;
    }
}




