:root{
  --CouleurPrimaire:#1f354d;
  --CouleurSecondaire:#03989e;
  --CouleurAccent:#FF8C42;
  --FontFamily:"Khand", sans-serif;
  --BoxShadow:rgb(163, 163, 163);
  --FontSizeREG:clamp(19px,1.3vw,30px);
  --FontSizeBIG:clamp(30px,7vw,42px);
}
*{
    scroll-snap-type:y proximity;
}
select option{
  color:black;
}
#PremiereVueL .FullScreen{
    position: relative;
    width:100%;
    height:50vh;
    object-fit: cover;
    object-position: 0px -70px;
    z-index: -1;
    margin-top: 0px;
}
#PremiereVueL h1{
  font-family: var(--FontFamily);
  font-size:var(--FontSizeBIG);
  line-height: var(--FontSizeBIG);
  font-weight: 600;
  text-align: left;
  margin-left: 100px;
  margin-top: -70px;
  z-index: +1;
  text-shadow:white 0px -5px 20px;
}

#PremiereVueL h2{
  font-family: var(--FontFamily);
  font-size:var(--FontSizeREG);
  line-height: var(--FontSizeREG);
  font-weight: 400;
  text-align: left;
  z-index: +1;
  margin-left: 100px;
}
#PremiereVueL #Text{
  margin-top: -70px;
  margin-left: 10px;
}
#PremiereVueL .icon{
  width:90px;
  height: auto;
}
.Filtre{
  align-items: center;
  display: flex;
  flex-direction: row;
  gap:clamp(5px,70vw,20px);
}
.Filtre select{
  padding:4px 8px 4px 8px;
  border-radius: 4px;
  border:none;
  background-color:#f0f0f0;
  font-size: calc(var(--FontSizeREG) - 2px);
  height: fit-content;
}
.Filtre .default{
  background-color: white;
  color:#c3c3c3;
}
.Toggle span{
  background-color: #ffffff;
  border-radius: 100%;
  padding:5px;
  color:var(--CouleurPrimaire);
  border:2px solid var(--CouleurPrimaire);
  font-size:calc(var(--FontSizeREG) + 7px);
}
.Toggle h3{
  background-color: #f0f0f062;
  margin-top: auto;
  margin-bottom: auto;
  padding-left:29px;
  margin-left: -25px;
  padding-right: 10px;
  z-index: -1;
  font-family: var(--FontFamily);
  font-size:var(--FontSizeREG);
  font-weight: 400;
}
.Toggle{
  cursor:pointer;
  transition:all 0.2s;
}
#Toggles{
  gap:clamp(5px,70vw,20px);
}
#Deroulant{
  gap:0px;
  display: none;
}
#MatièreForm{
    display:none;
    margin-bottom: 15px;
}
.active span{
  background-color: var(--CouleurPrimaire);
  color:white;
  font-weight: 400;
}
.active h3{
  background-color: #ffe60031;
}
@media only screen and (max-width: 630px){
  #AnneeMatiere{
    flex-direction: column;
  }
  #AnneeMatiere #Deroulant{
    width:100%;
    display: flex;
    justify-content:space-between;
  }
  #AnneeMatiere #Toggles{
    width:100%;
    display: flex;
    justify-content:space-between;
  }
  #PremiereVueL .FullScreen{
    width:200px;
    height:200px;
    border-radius: 100%;
    right:0px;
    position: absolute;
    object-position: 50% 50%;
    opacity: 50%;
  }
  #PremiereVueL .Horizontal{
    margin-top: 150px;
  }
}
/* HTML: <div id="loader"></div> */
#loader {
    margin-top: -4px;
    margin-left: -4.5px;
    display: none;
    position: relative;
    scale:0.5;
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: 
      radial-gradient(farthest-side,#ffa516 94%,#0000) top/8px 8px no-repeat,
      conic-gradient(#0000 30%,#ffa516);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
    animation: l13 1s infinite linear;
  }
  @keyframes l13{ 
    100%{transform: rotate(1turn)}
  }
  /*Tuteur*/
  #Tuteurs{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap:50px;
    column-gap: 10px;
  }
  #Tuteurs .tuteur{
    position: relative;
    width:clamp(100px,43vw,400px);
  }
  
  #Tuteurs .tuteur img{
    border-radius:100%;
    width:clamp(105px,15vw,140px);
    height:clamp(105px,15vw,140px);
    object-fit: cover;
    border:white solid 4px;
    box-shadow: var(--BoxShadow) 2px 2px 2px;
  }
  @media only screen and (max-width: 665px){
    #Tuteurs{
      width: min-content;
      margin-left: auto;
      margin-right: auto;
    }
    #Tuteurs .tuteur{
      width:400px;
      max-width: 92vw;
    }
    #NoResult{
      min-width:89vw;
      margin-left: auto;
      margin-right: auto;
    }
    }
  #Tuteurs .tuteur .infos{
    width:100%;
  }
  #Tuteurs .tuteur .infos .Nom{
    font-family: var(--FontFamily);
    font-weight: 500;
    font-size:calc(var(--FontSizeREG) + 10px);
  }
  #Tuteurs .tuteur .infos .Tarifs span{
    background-color: #ffffff;
    border-radius: 100%;
    padding:3px;
    color:var(--CouleurPrimaire);
    border:2px solid var(--CouleurPrimaire);
    font-size:calc(var(--FontSizeREG) + 5px);
  }
  #Tuteurs .tuteur .infos h4{
    font-family: var(--FontFamily);
    font-size:var(--FontSizeREG);
    font-weight: 400;
  }
  #Tuteurs .tuteur .infos .Tarifs{
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    height: fit-content;
    gap:clamp(5px,5%,20px);
    background-color: #F5F5F5;
    padding:5px 0px 5px 30px;
    margin-left: -20px;
    width:calc(100% - 10px);
    z-index: -1;
  }
  #Tuteurs .tuteur .infos .Tarifs .Domicile h4, #Tuteurs .tuteur .infos .Tarifs .Distance h4{
    align-self: center;
    margin-left: 3px;
  }
  #Tuteurs .tuteur .infos h5{
    font-family: var(--FontFamily);
    font-size:calc(var(--FontSizeREG) - 3px);
    font-weight: 400;
    margin-left: 5px;
  }
#Tuteurs .tuteur .CTATuteur,#Tuteurs .tuteur .INFOTuteur{
  font-family: var(--FontFamily);
  font-weight: 400;
  font-size: var(--FontSizeREG);
  background-color: var(--CouleurPrimaire);
  padding:2px 8px 2px 8px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.1s;
  height: min-content;
}
#Tuteurs .tuteur .INFOTuteur{
  background-color: #f0f0f0;
}
#Tuteurs .tuteur .INFOTuteur:hover{
  scale: 1.03;
}
#Tuteurs .tuteur .CTATuteur:hover{
  scale: 1.03;
}
#CTASTuteur{
  margin-left: 0px;
  margin-top: 10px;
  width:100%;
  justify-content:space-between;
}
.InfoSup{
  display: none;
  margin-top: 10px;
}
.InfoSup h3{
  text-align: justify;
  font-family: var(--FontFamily);
  font-weight: 300;
  font-size: calc(var(--FontSizeREG) - 2px);
}
#ContactTuteur h1{
  font-family: var(--FontFamily);
  font-size:calc(var(--FontSizeBIG) - 5px);
  font-weight: 500;
}

#ContactTuteur h2{
    font-family: var(--FontFamily);
    font-size:calc(var(--FontSizeREG) + 8px);
    font-weight: 400;
  }
#ContactTuteur #disponibilités table{
  border-spacing: 0px;
  border-radius: 10px;
  font-family: var(--FontFamily);
  width:100%;
}
#ContactTuteur table td{
  background-color:#f0f0f0;
  text-align: center;
  font-size:calc(var(--FontSizeREG) - 8px);
}
#ContactTuteur tr span{
  cursor: pointer;
  transition: all 0.1s;
}
#ContactTuteur tr span:hover{
  scale:1.1;
}
#ContactTuteur .ColonneGauche{
  text-align: right;
  width:50px;
  padding-right: 10px;
  background-color: white;
  border:none;
  font-size:var(--FontSizeREG);
}
#ContactTuteur .LigneHaut td{
font-size:var(--FontSizeREG);
}
#ContactTuteur #Legende{
  margin-top: 20px;
}
#ContactTuteur #Legende .Horizontal{
  margin-top: 5px;
}
#ContactTuteur #Legende h3{
  font-size: var(--FontSizeREG);
  font-family: var(--FontFamily);
  font-weight: 400;
  margin-left: 5px;
}

#ContactTuteur table td span:not(.ActiveSelect):not(.DispoTuteur){
  border-radius: 100%;
  color:#cacaca;
}
.Indispo, #Cancel span{
  color:rgba(255, 0, 0, 0.308);
}
#Dispos span{
  color:green;
}
#PopUpMessage{
  display: none;
  width:100vw;
  background-color: var(--CouleurPrimaire);
  height: fit-content;
  position:fixed;
  bottom:0px;
  left:0px;
  text-align: center;
  z-index: 100;
}
#PopUpMessage h2{
  font-family: var(--FontFamily);
  font-weight: 400;
  font-size: calc(var(--FontSizeREG) + 5px);
  color:black;
  position:relative;
  max-width: 1000px;
  z-index: 5;
  margin-left: auto;
  margin-right: auto;
}
#PopUpMessage h5{
  position: relative;
  color:var(--CouleurPrimaire);
  font-family: var(--FontFamily);
  font-size:var(--FontSizeREG);
  background-color: white;
  width:fit-content;
  margin-left: auto;
  margin-right: auto;
  padding:4px 8px 4px 8px;
  color:black;
  cursor:pointer;
  margin-bottom: 10px;
}
.ActiveSelect{
  border-radius: 100%;
  background-color: var(--CouleurPrimaire);
  color:black;
}
.DispoTuteur{
  color:green;
}
#Coordonnees,#Enfant{
  margin-top: 20px;
}
#ContactTuteur form input{
  outline:none;
  transition:all 0.2s;
}

#ContactTuteur form input:focus{
  scale:1.03;
}
#ContactTuteur h1{
  margin-top: 0px;
}
#ContactTuteur form .half{
  font-family: var(--FontFamily);
  font-size:var(--FontSizeREG);
  padding:4px 8px 4px 8px;
  border-radius:10px;
  border:none;
  box-shadow:var(--BoxShadow) 2px 2px 4px;
}
#ContactTuteur form .Horizontal{
  gap:10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

#ContactTuteur form #SEND h3{
  font-family: var(--FontFamily);
  font-size:var(--FontSizeREG);
  font-weight: 400;
  margin-top: auto;
  margin-bottom: auto;
  position:relative;
  padding-top: 5px;
}
#ContactTuteur form #SEND img{
  object-fit: cover;
  border:2px solid white;
  box-shadow: var(--BoxShadow) 2px 2px 4px;
  border-radius: 100%;
  width:125px;
  height:125px;
  position:relative;
}
#ContactTuteur form #SEND{
  margin-top: 20px;
}
#ContactTuteur form #SEND button{
  height:min-content;
  background-color: var(--CouleurPrimaire);
  color:white;
  border:none;
  border-radius:10px;
  position: relative;
  box-shadow: var(--BoxShadow) 2px 2px 4px;
  pointer-events:none;
}
#ContactTuteur form #SEND button span{
  font-size:40px;
  padding:5px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}
.FiltreActif span{
  color:black;
  background-color: var(--CouleurPrimaire);
}
.FiltreActif h3{
  background-color: #fffcde;
}
.FiltreActif{
  scale:1.1;
  margin-right: 5px;
}
#DisposNom{
  font-family: var(--FontFamily);
  font-size:var(--FontSizeREG);
  font-weight: 400;
  line-height: var(--FontSizeREG);
  margin-top: 10px;
}

@media only screen and (max-width: 565px){
  
  #ContactTuteur form input{
    width:fit-content;
  }
  #SEND{
    flex-direction: column;
  }
  
#ContactTuteur form #SEND button{
  margin-top: 0px;
  margin-left: 0px;
}

#ContactTuteur form #SEND h3{
  padding-top: 0px;
  margin-top: 25px;
}
#SEND img{
  margin-bottom: -40px;
}
}
#DisposNom{
  background-color: var(--CouleurPrimaire);
  padding:5px;
  width:fit-content;
}
#Matière, #MatièreForm, #NIV, #NIVForm {
  color: inherit;
}

#Matière:hover, #MatièreForm:hover, #NIV:hover, #NIVForm:hover,
#Matière:focus, #MatièreForm:focus, #NIV:focus, #NIVForm:focus,
#Matière:active, #MatièreForm:active, #NIV:active, #NIVForm:active {
  color: inherit;
}
* {
  color: inherit; /* Ou color: black; */
}
@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */ 
  form input{
    background-color: #f0f0f0;
    color:black;
  }
}
#Disponibilités,#TuteurDésiré,#CodePostal,#TypeTutorat{
  display: none;
}
#NoResult{
  display: none;
  width:100%;
  max-width: 92vw;
  border-radius: 10px;
  background-color: #f0f0f0;
  font-family: var(--FontFamily);
  text-align: center;
}
#NoResult h1{
  font-weight: 500;
}
#NoResult h2{
  font-weight: 400;
}
#NoResult h3{
  font-weight: 400;
  background-color: var(--CouleurPrimaire);
  color:#ff3939;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding:4px 7px 4px 7px;
  margin-top: 5px;
  margin-bottom: 5px;
}
#BlocDisposNom{
  height: min-content;
  display: flex;
  align-items: center;
}
#BlocDisposNom span{
  padding-top: 10px;
  cursor:pointer;
}
#CloseButton{
  display: none;
}
#PhotoTuteur{
  display:none;
}
#SENDBUTTON{
  cursor: pointer;
  width:fit-content;
  
}
#SelectMessage{
  display: none;
  font-family: var(--FontFamily);
  font-size:calc(var(--FontSizeREG) + 2px);
  font-weight:400;
  margin-top: 10px;
  color:rgb(0, 0, 0);
  font-style: italic;
}

.InputEmpty::placeholder{
  color: red;
  opacity: 1;
}

#ContactTUTEUR input:focus{
    border-color: #ffd74b;
}
#ContactTUTEUR input{
    transition: border-color 0.2s;
}
input[type="checkbox"]  {
    display: none;
 }
 .label{
    background-color: #ffd84b00;
    width:fit-content;
    border: 2px solid var(--CouleurSecondaire);
    border-radius: 5px;
    padding: 4px 7px 4px 7px;
    margin-bottom: 10px;
    font-family:"Khand", sans-serif;
    font-size: calc(var(--FontSizeREG) - 1px);
    cursor: pointer;
    transition: all 0.1s;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
 }
 .Checked{
    font-size:var(--FontSizeREG);
    border-color: var(--CouleurPrimaire);
    background-color: var(--CouleurPrimaire);
    color:white;
 }
 #CheckBoxGROUP{
    display:flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap:5px 10px;
    width:fit-content;
 }
 #fullTextInput {
  margin-top: 10px;
    font-family: var(--FontFamily);
    font-size: var(--FontSizeREG);
    border-radius: 4px;
    width: 500px;
    max-width: 82vw;
    padding: 10px;
    border: none;
    box-shadow: var(--BoxShadow) 2px 2px 4px;
    background-color: #f5f5f5;
    resize: none; /* Empêche le redimensionnement manuel */
    overflow-y: hidden; /* Cache la barre de défilement verticale */
}
#InputAutres{
    display: none;
}
.FormationState{
  margin-top: -15px!important;
  margin-bottom: 20px;
  height:min-content;
  position: relative;
  height:min-content;
  transition: all 0.2s;
}
.FormationState .or{
  margin-top: 17px;
  font-family: var(--FontFamily);
  font-size:var(--FontSizeREG);
}
.FormationState .Select .Type{
    height: min-content;
    font-family: var(--FontFamily);
    font-size:var(--FontSizeREG);
    margin-left: -5px;
}
.FormationState .Select{
  box-shadow: var(--BoxShadow) 2px 2px 4px;
  border-radius: 4px;
  padding:5px;
  cursor:pointer;
  transition: all 0.2s;
  height:min-content;
}

.FormationState .Select:hover{
  scale:1.05;
}
.FormationState .Select .icon{
  margin-top: 2px;
}
#FormationState4,#FormationState5,#FormationState6,#FormationState7{
  display: none;
}
#FormationsText,#URLredirect{
  display:none;
}
#termes_et_conditions {
  display: flex;
  align-items: center;
  margin-top: 50px;
}


#termes_et_conditions input[type="checkbox"] {
  display: inline-block; /* S'assurer qu'il est visible */
  width: 20px; /* Taille de la checkbox */
  height: 20px;
  accent-color: var(--CouleurPrimaire); /* Couleur de la checkbox */
  cursor: pointer; /* Curseur pour indiquer que c'est cliquable */
}

#termes_et_conditions span {
  font-family: var(--FontFamily);
  font-size: calc(var(--FontSizeREG) - 2px);
  color: #000;
}

#termes_et_conditions a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: all 0.2s ease;
}

#termes_et_conditions a:hover {
  color: var(--CouleurPrimaire);
  font-size: calc(var(--FontSizeREG) - 1px);
}
