/*Attributs globaux*/

/*Attributs globaux*/

/*Attributs globaux*/
html, body, h1, h2, h3, h4, h5, h6, ul,
li, a, p, span, nav, section, div, articlie,
main, img, header, button, input, textarea{
    margin: 0px;
    padding: 0px;
    font-family: "Lato", sans-serif;

    --color: #D4006B;
    --color-light: rgb(215, 47, 133);
    --fond: #FFF5FA;

    --progression: #F5F5F5;
    --italic: #6E6E6E;
    
}

html{
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
  min-height: 100vh;
}


li{
    list-style-type: none;
}

a{
    text-decoration: none;
}

button, input, select, textarea{
    border: none;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    cursor: pointer;
    resize: none;
}

input[type="date"]{
  text-transform: uppercase;
}

.logo{
    width: 200px;
}

.picto{
    position: absolute;
    left: 30px;
    width: 32px;
}

.display-no{
  display: none;
}

.display-yes{
  display: block;
}


.desactived{
  cursor: auto;
  opacity: 0.5;
}

.margin-15{
  margin-top: 15px !important;
}

.margin-30{
  margin-top: 30px !important;
}

.italic{
  color: var(--italic) !important;
  font-style: italic !important;
}

.color{
  color: var(--color);
  font-weight: 600;
}


/*Éléments de formulaire*/

/*Éléments de formulaire*/

/*Éléments de formulaire*/

.button{
    border-radius: 30px;
    background-color: var(--color);
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding: 15px 60px;
    margin: 30px 0px;
}

.button:disabled{
    background-color: var(--color-light);
}


/*Bouton jour*/
.day{
  width: 21%;
  height: 52.5px;
  background-color: white;
  border-radius: 5px;
  color: var(--color);
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0px 3px 6px #00000008;
  margin-top: 15px;
}

.day.checked{
  background-color: var(--color);
  color: white;
  font-weight: 600;
}

.work-day{
  font-size: 14px;
  text-align: left;
  padding-left: 12px;
}


/*Bouton retour de navigation*/
.return{
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: 30px;
    width: 15px;
    height: 19px;
    background: url('/img/left-arrow.png') center no-repeat;
}


/*Champ de formulaire*/
.input{
    background-color: white;
    box-shadow: 0px 3px 6px #00000008;
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    font-weight: 400;
    color: black;
    font-size: 16px;
    margin-top: 15px;
}

textarea.input
/*textarea.input::placeholder*/
{
  font-size: 14px;
  color: var(--italic);
  height: 120px;
  overflow: hidden;
  text-align: left;
  background-color: white;
}

.input.required{
  border: solid red 1px;
  background-color: rgba(255,0,0,0.05);
}

.corrected{
  border: solid limegreen 1px;
  background-color: rgba(0,255,0,0.05);
}

.input::placeholder{
    color: black;
    font-size: 16px;
}


.input-age{
  width: 56px;
  padding-right: 0px;
}



/*Checkbox*/
.checkbox-line{
  display: flex;
}

.checkbox-line .checkbox-container:first-child{
  margin-right: 30px;
}

.checkbox-container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-top: 15px;
}

.checkbox-container .text-fin,
.checkbox-container .text-classique{
  margin-left: 40px;
}

.checkbox{
  height: 25px;
  width: 25px;
  position: absolute;
  cursor: pointer;
  z-index: 10;
}

.checkbox-custom{
  position: absolute;
  left: 0px;
  height: 25px;
  width: 25px;
  background-color: white;
  box-shadow: 0px 3px 6px #00000008;
  border-radius: 5px;
}

.checkbox:checked ~ .checkbox-custom{
  background-color: white; 
}

.checkbox-custom:after{
  content: "";
  position: absolute;
  display: none;
}

.checkbox:checked ~ .checkbox-custom:after{
  display: block;
}

.checkbox-custom:after {
  left: 8px;
  top: 3px;
  width: 6px;
  height: 14px;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}





/*Select*/
.custom-select {
    position: relative;
    font-family: Arial;
    width: calc(100% -  30px);
    background-color: white;
    margin-top: 15px;
    border-radius: 5px;
  }
  
  .custom-select select {
    display: none; /*hide original SELECT element:*/
  }
  
  .select-selected {
    box-shadow: 0px 3px 6px #00000008;
    padding: 0px 15px;
    padding-bottom: 18px;
    padding-top: 12px;
    border-radius: 5px;
    font-weight: 400;
    color: #000000CC;
    font-size: 16px;
    margin: 0px;
    position: relative;
    max-height: 19px;
  }
  
  /*style the arrow inside the select element:*/
  .select-selected:after {
    position: absolute;
    content: "";
    right: 15px;
    bottom: 35%;
    width: 13px;
    border: 6px solid transparent;
    background: url('/img/down-arrow.png') no-repeat 0% white;
  }

  /*point the arrow upwards when the select box is open (active):*/
  .select-selected.select-arrow-active:after {
    transform: rotate(180deg);
  }
  .custom-select-middle-text {
      margin-right: 15px;
      margin-left: 15px;
  }
  
  /*style the items (options), including the selected item:*/
  .select-items div,.select-selected {
    overflow: hidden;
    color: black;
    font-weight: 400;
    line-height: 25px;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    width: 100%;
    background-color: white;
  }
  
  /*style items (options):*/
  .select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    box-shadow: 0px 3px 6px #00000008;
    padding: 15px;
    font-size: 16px;
    line-height: 25px;
  }
  
  /*hide the items when the select box is closed:*/
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: var(--fond);
  }






/*Éléments textuels*/

/*Éléments textuels*/

/*Éléments textuels*/

.title-content{
  font-size: 34px;
  font-weight: 700;
  color: black;
  display: none;
  margin-bottom: 30px;
  margin-top: 130px;
}

.text-titre{
    font-size: 18px;
    line-height: 25px;
    font-weight: 900;
    color: black;
    text-align: center;
}

.text-principe{
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #000000CC;
    letter-spacing: 0.5px;
}

.text-question{
    color: black;
    font-size: 16px;
    line-height: 25px;
    font-weight: 700;
    margin-top: 30px;
    width: 104%;
}

.text-classique{
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: black;
  width: 104%;
}

.text-fin{
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  color: black;
}

.text-fin.required{
  color: red;
}


/*Barre de progression*/
.progression-container{
    width: 100%;
    height: 10px;
    background: var(--progression);
    margin-bottom: 30px;
}

.progression-content{
    height: 10px;
    width: 0%;
    transition-duration: 500ms;
    transition-property: width;
    background-color: var(--color);
    position: relative;
}

.progression-data{
    font-size: 12px;
    font-weight: 400px;
    color: black;
    position: absolute;
    right: 0px;
    bottom: 10px;
    transition-duration: 500ms;
}

.content-10{
  width: 10%;
}

.content-20{
  width: 20%;
}

.content-30{
  width: 30%;
}

.content-40{
  width: 40%;
}

.content-60{
  width: 60%;
}

.content-80{
  width: 80%;
}

.content-90{
  width: 90%;
}

.content-95{
  width: 95%;
}

.content-full{
  width: 100%;
}


/*Blocs de contenu*/

/*Barre Latérale (Desktop)*/
aside{
  display: none;
  min-width: 360px;
  background-color: var(--fond);
  height: 100vh;
  position: fixed;
  top: 0px;
}

aside .vignet-rectangle-container{
  width: calc(240px - 30px);
  margin: 0px auto;
  margin-bottom: 30px;
  position: relative;
  background-color: white;
  box-shadow: 0px 3px 6px #00000008;
  opacity: 0.5;
}

aside .vignet-rectangle-container.done{
 opacity: 1;
}

aside .vignet-rectangle-container img{
  padding-right: 15px;
}

aside .vignet-rectangle-container .text-classique{
  text-align: left;
  width: 70%;
  position: absolute;
  left: 75px;
}


/*Navigation suppérieur mobile*/
header{
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 15px 0px;
  align-items: center;
}

.header-content{
  position: relative;
  width: 100%;
  padding: 15px 0px;
  display: flex;
  justify-content: center;
}


.content-container{
  margin: 0px 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
}

.form-container{
  background-color: var(--fond);
  padding: 0px 30px;
  padding-bottom: 45px;
  border-radius: 10px;
  width: 100%;
  min-width: 260px;
  
}

.form-container .vignet-edit-container:nth-child(2){
  margin-top: 5px;
}

.point-container{
  display: flex;
  align-items: start;
  margin-top: 30px;
  width: 100%;
}


.text-container,
.video-container{
  margin-top: 30px;
  width: 100%;
}


/*Bloc avantages/points de Fin*/
.point-container img{
  padding-right: 15px;
}


/*Module enfant*/
.children-line,
.children-new-line{
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.children-new-line.display-no{
  display: none;
}


.children-line .input,
.children-new-line .input{
  margin-right: 15px;
}

.more-children{
  min-width: 47px;
  height: 47px;
  border-radius: 5px;
  /*background: url('more.svg') center no-repeat var(--color);*/
}

.delete-children{
  min-width: 47px;
  height: 47px;
  border-radius: 5px;
  /*background: url('/img/delete.svg') center no-repeat;*/
}




/*Container des blocs carrés (côte à côte)*/
.carre-container{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


/*Container des horaires-jour*/
.day-hours-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}

.day-hours-container .text-fin{
  margin-top: 15px;
  text-align: center;
}

.day-hours-container .custom-select{
  width: 66px;
}

.day-hours-container .select-selected{
  padding: 5px;
  padding-bottom: 6px;
  padding-top: 1px;
  width: 66px;
}

.day-hours-container .select-items{
  width: 66px;
  padding: 5px;
}

.day-hours-container .select-selected:after{
  right: 0px;
  bottom: 23%;
}










/*Vignettes*/

/*Vignettes*/

/*Vignettes*/

/*Vignette rectangulaire*/
.vignet-rectangle-container{
  background-color: white;
  box-shadow: 0px 3px 6px #00000008;
  border-radius: 5px;
  padding: 0px 15px;
  height: 65px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 15px;
}

.vignet-rectangle-container img{
  padding-right: 30px;
}



/*Vignette carrée*/
.vignet-carre-container{
  padding: 0px 13px;
  width: 44%;
  padding-top: 17px;
  padding-bottom: 7px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0px 3px 6px #00000008;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  position: relative;
}

article.vignet-carre-container{
  text-align: center;
  width: 35%;
  cursor: pointer;
}

.vignet-carre-container.pending{
  background-color: var(--color);
}
.vignet-carre-container.checked{
  background-color: var(--color);
}

.vignet-carre-container.checked .text-classique{
  color: white;
}

.vignet-carre-container img{
  padding-bottom: 5px;
}

.vignet-carre-container .text-classique{
  font-size: 14px;
  line-height: 21px;
  width: 150%;
}


/*Bloc des talents*/

.talent-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.talent-content{
  width: 205%;
  padding: 15px;
  padding-right: 5px;
  background-color: white;
  position: absolute;
  top: 125px;
  left: 0%;
  z-index: 50;
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000017;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  cursor: default;
}

.talent-content.right{
  right: 0%;
  left: auto;
}

.talent-content.display-no{
  display: none;
}

.triangle-talent-content{
  position: absolute;
  top: -10px;
  left: 15%;
  width: 0px;
  height: 0px;
  border-left: solid 18px transparent;
  border-right: solid 18px transparent;
  border-bottom: solid 30px white;
  border-top: 0px;
}
.triangle-talent-content.inverse {
    left: auto;
    right: 15%;
}

.talent-content input{
  box-shadow: 0px 3px 6px #00000017;
}

.talent-content .input{
  margin-right: 10px;
  padding: 10px;
  padding-left: 15px;
  font-size: 14px;
}

.talent-content .input::placeholder{
  color: grey;
  font-size: 14px;
}

.talent-content .button{
  font-size: 16px;
  padding: 6px 12px;
  margin: 0px;
  margin-top: 15px;
}

.talent-content .edit{
  margin-top: 15px;
  margin-left: 15px;
}



.talent-content .text-fin{
  margin-left: 35px;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
}



/*Vignette de modification (Besoin de garde)*/
.vignet-edit-container{
  width: calc(100% + 30px);
  margin-left: -30px;
  padding: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0px 3px 6px #00000008;
  background-color: white;
  border-radius: 10px;
}

.vignet-edit-container div{
  margin-top: 0px;
}

.vignet-edit-container .text-classique{
  width: 105%;
}

.vignet-edit-container img{
  padding-right: 15px;
  padding-top: 5px;
}

.edit{
  font-size: 16px;
  color: var(--color);
  font-weight: 600;
}

.retour{
  display: none;
  margin-right: 30px;
  height: 174px;
}



/*Vignette fine*/
.vignet-thin-container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0px;
  padding-left: 10px;
  padding-right: 5px;
  box-shadow: 0px 3px 6px #00000008;
  margin-top: 15px;
  background-color: white;
  border-radius: 5px;
}

.vignet-thin-container img{
  padding-right: 15px;
}

.vignet-thin-container .text-classique{
  line-height: 21px;
}




/*Slider*/
.slider-container{
  width: 100%;
  margin-top: 15px;
  position: relative;
}


.end-data-slider{
  position: absolute;
  right: 0px;
}

.slider-input2{
  width: 100%;
  height: 5px;
  border-radius: 50px;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0px 3px 6px #0000000D;
  background-color: var(--color);
  z-index: 5;
  padding: 0px !important;
}

input[type=range]::-webkit-slider-thumb {
  border: none;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: var(--color);
  cursor: pointer;
  -webkit-appearance: none;
  position: relative;
  z-index: 10;
}


.slider-container .text-classique{
  margin-top: 30px;
}

.error-text {
    padding-left: 10px;
    color: red;
}

/*.vignet-rectangle-container:not(.done) {*/
    /*cursor: pointer;*/
/*}*/
.done:hover
{
    cursor: pointer;
}

.visible-xs {
    display: block;
    width: 100%;
    margin-top: 20px;
}
.parent-background {
    background-color: rgb(255,245,250) !important;
}

.parent-textarea {
    background-color: var(--fond) !important;
}