@import '~bootstrap/scss/bootstrap';
@import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap");
/* This pen */



.legende1{
  background-color:  rgba(255, 99, 132, 0.2);
  border: 1px solid rgba(255, 99, 132, 1);
  padding: 1rem;
  margin: 1rem;
}
.legende2{
  background-color:  rgba(54, 162, 235, 0.2);
  border: 1px solid rgba(54, 162, 235, 1);
  padding: 1rem;
  margin: 1rem;
}

.legende3{
  background-color:  rgba(255, 206, 86, 0.2);
  border: 1px solid rgba(255, 206, 86, 1);
  padding: 1rem;
  margin: 1rem;
}

.legende4{
  background-color:  rgba(15, 15, 167, 0.2);
  border: 1px solid rgba(15, 15, 167, 1);
  padding: 1rem;
  margin: 1rem;
}


.hover_text:hover{
  background-color: rgba(0, 0, 0, .05);
  
}
.glyphicongreen {
  color: rgba(55, 177, 75, 0.952);
}
.glyphiconred{
  color: rgba(189, 20, 11, 0.717);
}
.masthead{
  background-size: cover;
  height: 25vh;
  max-width: 100%;
  position: relative;
  color: white;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, .2);
}
.titleLogo{
  font-size: 4rem;
}
.color-overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}
@media (max-width: 768px) {
  .masthead{
    min-height: 30vh;
  }
  .titleLogo{
    font-size: calc(1.525rem + 3.3vw) ;
  }
}


.dark {
  background: #110f16;
}
.light {
  background: #f3f5f7;
}
a, a:hover {
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
#pageHeaderTitle {
  margin: 2rem 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
}
/* Cards */
.postcard {
  flex-wrap: wrap;
  display: flex;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  border-radius: 10px;
  margin: 0 0 2rem 0;
  overflow: hidden;
  position: relative;
  color: #ffffff;
}
.postcard.dark {
  background-color: #18151f;
}
.postcard.light {
  background-color: #e1e5ea;
}
.postcard .t-dark {
  color: #18151f;
}
.postcard a {
  color: inherit;
}
.postcard h1, .postcard .h1 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.postcard .small {
  font-size: 80%;
}
.postcard .postcard__title {
  font-size: 1.75rem;
}
.postcard .postcard__img {
  max-height: 180px;
  width: 100%;
  object-fit: cover;
  position: relative;
}
.postcard .postcard__img_link {
  display: contents;
}
.postcard .postcard__bar {
  width: 50px;
  height: 10px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: #424242;
  transition: width 0.2s ease;
}
.postcard .postcard__text {
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.postcard .postcard__preview-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  height: 100%;
}
.postcard .postcard__tagbox {
  display: flex;
  flex-flow: row wrap;
  font-size: 14px;
  margin: 20px 0 0 0;
  padding: 0;
  justify-content: center;
}
.postcard .postcard__tagbox .tag__item {
  display: inline-block;
  background: rgba(83, 83, 83, 0.4);
  border-radius: 3px;
  padding: 2.5px 10px;
  margin: 0 5px 5px 0;
  cursor: default;
  user-select: none;
  transition: background-color 0.3s;
}
.postcard .postcard__tagbox .tag__item:hover {
  background: rgba(83, 83, 83, 0.8);
}
.postcard:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-70deg, #424242, transparent 50%);
  opacity: 1;
  border-radius: 10px;
}
.postcard:hover .postcard__bar {
  width: 100px;
}
@media screen and (min-width: 769px) {
  .postcard {
    flex-wrap: inherit;
  }
  .postcard .postcard__title {
    font-size: 2rem;
  }
  .postcard .postcard__tagbox {
    justify-content: start;
  }
  .postcard .postcard__img {
    max-width: 300px;
    max-height: 100%;
    transition: transform 0.3s ease;
  }
  .postcard .postcard__text {
    padding: 3rem;
    width: 100%;
  }
  .postcard .media.postcard__text:before {
    content: "";
    position: absolute;
    display: block;
    background: #18151f;
    top: -20%;
    height: 130%;
    width: 55px;
  }
  .postcard:hover .postcard__img {
    transform: scale(1.1);
  }
  .postcard:nth-child(2n+1) {
    flex-direction: row;
  }
  .postcard:nth-child(2n+0) {
    flex-direction: row-reverse;
  }
  .postcard:nth-child(2n+1) .postcard__text::before {
    left: -12px !important;
    transform: rotate(4deg);
  }
  .postcard:nth-child(2n+0) .postcard__text::before {
    right: -12px !important;
    transform: rotate(-4deg);
  }
}
@media screen and (min-width: 1024px) {
  .postcard__text {
    padding: 2rem 3.5rem;
  }
  .postcard__text:before {
    content: "";
    position: absolute;
    display: block;
    top: -20%;
    height: 130%;
    width: 55px;
  }
  .postcard.dark .postcard__text:before {
    background: #18151f;
  }
  .postcard.light .postcard__text:before {
    background: #e1e5ea;
  }
}
/* COLORS */
.postcard .postcard__tagbox .green.play:hover {
  background: #79dd09;
  color: black;
}
.green .postcard__title:hover {
  color: #79dd09;
}
.green .postcard__bar {
  background-color: #79dd09;
}
.green::before {
  background-image: linear-gradient(-30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}
.green:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}
.postcard .postcard__tagbox .blue.play:hover {
  background: #0076bd;
}
.blue .postcard__title:hover {
  color: #0076bd;
}
.blue .postcard__bar {
  background-color: #0076bd;
}
.blue::before {
  background-image: linear-gradient(-30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}
.blue:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}
.postcard .postcard__tagbox .red.play:hover {
  background: #bd150b;
}
.red .postcard__title:hover {
  color: #bd150b;
}
.red .postcard__bar {
  background-color: #bd150b;
}
.red::before {
  background-image: linear-gradient(-30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}
.red:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}
.postcard .postcard__tagbox .yellow.play:hover {
  background: #bdbb49;
  color: black;
}
.yellow .postcard__title:hover {
  color: #bdbb49;
}
.yellow .postcard__bar {
  background-color: #bdbb49;
}
.yellow::before {
  background-image: linear-gradient(-30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}
.yellow:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}
@media screen and (min-width: 769px) {
  .green::before {
    background-image: linear-gradient(-80deg, rgba(121, 221, 9, 0.1), transparent 50%);
  }
  .green:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(121, 221, 9, 0.1), transparent 50%);
  }
  .blue::before {
    background-image: linear-gradient(-80deg, rgba(0, 118, 189, 0.1), transparent 50%);
  }
  .blue:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(0, 118, 189, 0.1), transparent 50%);
  }
  .red::before {
    background-image: linear-gradient(-80deg, rgba(189, 21, 11, 0.1), transparent 50%);
  }
  .red:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(189, 21, 11, 0.1), transparent 50%);
  }
  .yellow::before {
    background-image: linear-gradient(-80deg, rgba(189, 187, 73, 0.1), transparent 50%);
  }
  .yellow:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(189, 187, 73, 0.1), transparent 50%);
  }
}







body{
  background: #F4F7FD;
  margin-top:20px;
}

.card-margin {
  margin-bottom: 1.875rem;
}

.card {
  border: 0;
  box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
  -ms-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid #e6e4e9;
  border-radius: 8px;
}

.card .card-header.no-border {
  border: 0;
}
.card .card-header {
  background: none;
  padding: 0 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  min-height: 50px;
}
.card-header:first-child {
  border-radius: calc(8px - 1px) calc(8px - 1px) 0 0;
}

.widget-49 .widget-49-title-wrapper {
display: flex;
align-items: center;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-primary {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #edf1fc;
width: 4rem;
height: 4rem;
border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-primary .widget-49-date-day {
color: #4e73e5;
font-weight: 500;
font-size: 1.5rem;
line-height: 1;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-primary .widget-49-date-month {
color: #4e73e5;
line-height: 1;
font-size: 1rem;
text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-secondary {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #fcfcfd;
width: 4rem;
height: 4rem;
border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-secondary .widget-49-date-day {
color: #dde1e9;
font-weight: 500;
font-size: 1.5rem;
line-height: 1;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-secondary .widget-49-date-month {
color: #dde1e9;
line-height: 1;
font-size: 1rem;
text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-success {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #e8faf8;
width: 4rem;
height: 4rem;
border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-success .widget-49-date-day {
color: #17d1bd;
font-weight: 500;
font-size: 1.5rem;
line-height: 1;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-success .widget-49-date-month {
color: #17d1bd;
line-height: 1;
font-size: 1rem;
text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-info {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #ebf7ff;
width: 4rem;
height: 4rem;
border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-info .widget-49-date-day {
color: #36afff;
font-weight: 500;
font-size: 1.5rem;
line-height: 1;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-info .widget-49-date-month {
color: #36afff;
line-height: 1;
font-size: 1rem;
text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-warning {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: floralwhite;
width: 4rem;
height: 4rem;
border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-warning .widget-49-date-day {
color: #FFC868;
font-weight: 500;
font-size: 1.5rem;
line-height: 1;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-warning .widget-49-date-month {
color: #FFC868;
line-height: 1;
font-size: 1rem;
text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-danger {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #feeeef;
width: 4rem;
height: 4rem;
border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-danger .widget-49-date-day {
color: #F95062;
font-weight: 500;
font-size: 1.5rem;
line-height: 1;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-danger .widget-49-date-month {
color: #F95062;
line-height: 1;
font-size: 1rem;
text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-light {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #fefeff;
width: 4rem;
height: 4rem;
border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-light .widget-49-date-day {
color: #f7f9fa;
font-weight: 500;
font-size: 1.5rem;
line-height: 1;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-light .widget-49-date-month {
color: #f7f9fa;
line-height: 1;
font-size: 1rem;
text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-dark {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #ebedee;
width: 4rem;
height: 4rem;
border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-dark .widget-49-date-day {
color: #394856;
font-weight: 500;
font-size: 1.5rem;
line-height: 1;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-dark .widget-49-date-month {
color: #394856;
line-height: 1;
font-size: 1rem;
text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-base {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #f0fafb;
width: 4rem;
height: 4rem;
border-radius: 50%;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-base .widget-49-date-day {
color: #68CBD7;
font-weight: 500;
font-size: 1.5rem;
line-height: 1;
}

.widget-49 .widget-49-title-wrapper .widget-49-date-base .widget-49-date-month {
color: #68CBD7;
line-height: 1;
font-size: 1rem;
text-transform: uppercase;
}

.widget-49 .widget-49-title-wrapper .widget-49-meeting-info {
display: flex;
flex-direction: column;
margin-left: 1rem;
}

.widget-49 .widget-49-title-wrapper .widget-49-meeting-info .widget-49-pro-title {
color: #3c4142;
font-size: 14px;
}

.widget-49 .widget-49-title-wrapper .widget-49-meeting-info .widget-49-meeting-time {
color: #B1BAC5;
font-size: 13px;
}

.widget-49 .widget-49-meeting-points {
font-weight: 400;
font-size: 13px;
margin-top: .5rem;
}

.widget-49 .widget-49-meeting-points .widget-49-meeting-item {
display: list-item;
color: #727686;
}

.widget-49 .widget-49-meeting-points .widget-49-meeting-item span {
margin-left: .5rem;
}

.widget-49 .widget-49-meeting-action {
text-align: right;
}

.widget-49 .widget-49-meeting-action a {
text-transform: uppercase;
}
































































.ex1{
  width: 300px;
  height: 300px;
  border: 5px solid #333;
  margin: 0 auto;
  color: red;

}

.imgBackgroung{
  width: 200%;

}
.card {
  border: none;
  border-radius: 10px
}

.c-details span {
  font-weight: 300;
  font-size: 13px
}

.icon {
  width: 50px;
  height: 50px;
  background-color: #eee;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 39px
}

.badge span {
  background-color: #fffbec;
  width: 60px;
  height: 25px;
  padding-bottom: 3px;
  border-radius: 5px;
  display: flex;
  color: #524829;
  justify-content: center;
  align-items: center
}

.progress {
  height: 10px;
  border-radius: 10px
}

.progress div {
  background-color: #44446e;
}

.text1 {
  font-size: 14px;
  font-weight: 600
}

.text2 {
  color: #a5aec0
}
.name_titre{
  font-family: "Trebuchet MS", Verdana, Geneva, Arial;
  font-weight: normal;
  font-style: italic;
  margin-left: 1rem;
  font-size: 1.3em;
}
.second_titre{
  font-family: "Trebuchet MS", Verdana, Geneva, Arial;
  margin-left: 1rem;
  
}
.heading{
  font-family: 'Antic Slab', serif;
  font-size: 2em;
  font-weight: 600;
}
.button_commencer{
  display: flex;
  align-items: center;
}

.notation{
  font-weight: bold;
  text-transform: uppercase;
}


.systemeNotation{
  font-weight: lighter;
  padding: 1em;
}
.titreQ{
  font-size: 2em;
}
.titreBienvenu{
  font-size: 1rem;
}

/*
*/

.skill{
  width: 160px;
  height: 160px;
  /* background: cornflowerblue;*/
  position: relative;
}

.outer{
  height: 160px;
  width: 160px;
  border-radius: 50%;
  padding: 20px;
  box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15),
              -6px -6px 10px -1px rgba(255,255,255,0.7);
}

.inner{
  height: 120px;
  width: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 4px 4px 6px -1px rgba(0,0,0,0.2),
              inset -4px -4px 6px -1px rgba(255,255,255,0.7),
              -0.5px -0.5px 0px rgba(255,255,255,1),
              0.5px 0.5px 0px rgba(255,255,255,0.15),
              0px 12px 10px -10px rgba(255,255,255,0.5);
}

#number{
  font-weight: 600;
  color: #555;
}

#circle{
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 472;
  stroke-dashoffset: 472;
  animation: anim 2s linear forwards;
}

#svg{
  position: absolute;
  top: 0;
  left: 0;

}

@keyframes anim {
  100%{
    stroke-dashoffset: 165;
  }
}


.axe1{
  background-color:  rgba(255, 99, 132, 0.2);
  border: 1px solid rgba(255, 99, 132, 1);
  padding: 1rem;
  margin: 1rem;
}
.axe2{
  background-color:  rgba(54, 162, 235, 0.2);
  border: 1px solid rgba(54, 162, 235, 1);
  padding: 1rem;
  margin: 1rem;
}
.axe3{
  background-color:  rgba(255, 206, 86, 0.2);
  border: 1px solid rgba(255, 206, 86, 1);
  padding: 1rem;
  margin: 1rem;
}
.axe4{
  background-color:  rgba(75, 192, 192, 0.2);
  border: 1px solid rgba(75, 192, 192, 1);
  padding: 1rem;
  margin: 1rem;
}

#myChart {
  max-width: 800px;
  width: 100%;  /* Pour garantir qu'il prend la largeur totale jusqu'à 1200px */
}

.test{
  color: red;
  
}

.background-resul{
  background: transparent; /* Ceci est un dégradé linéaire qui commence par un bleu foncé et termine par un bleu clair. */
  border-radius: 5px; /* Ceci arrondit les bords de votre élément avec un rayon de 15 pixels. Vous pouvez ajuster ce nombre selon vos préférences. */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Ceci ajoute une ombre avec un décalage de 5px vers la droite, 5px vers le bas, un flou de 15px, et une couleur noire avec une opacité de 30%. Vous pouvez également ajuster ces valeurs selon vos besoins. */
  padding-top: 15px;
  padding-bottom: 15px;
}



.titre_result-vente{
  color: #42adf1;
  margin: 10px;
}

.titre_result-maturite{
  color: #63ae37;
  margin: 10px;
}

.tr-white-transparent:nth-child(even) {
  background-color: rgba(66, 173, 241, 0.1); /* Ceci est un bleu à 50% de transparence */
}



.btn-questions-maturite{
  background-color:  rgba(99, 174, 55, 0.2);
  border: 1px solid rgba(99, 174, 55, 1);
  padding: 1rem;
  margin: 1rem;
  text-align: center;
  justify-content: center;
  border-radius: 7px;
  transition: background-color 0.3s, color 0.3s; /* pour une transition douce */
}
.btn-questions-maturite:hover {
  background-color: rgba(99, 174, 55, 1);
  color: white; /* changez la couleur du texte ici si vous le souhaitez */
  cursor: pointer; /* pour indiquer que le bouton est cliquable */
}

.btn-questions-vente{
  background-color:  rgba(66, 173, 241, 0.2);
  border: 1px solid rgba(66, 173, 241, 1);
  padding: 1rem;
  margin: 1rem;
  text-align: center;
  justify-content: center;
  border-radius: 7px;
  transition: background-color 0.3s, color 0.3s; /* pour une transition douce */
}
.btn-questions-vente:hover {
  background-color: rgba(66, 173, 241, 1);
  color: white; /* changez la couleur du texte ici si vous le souhaitez */
  cursor: pointer; /* pour indiquer que le bouton est cliquable */
}


/* Pour les écrans de taille <= 768px (tablette et mobile) */
@media (max-width: 768px) {
  .btn-questions-maturite, .btn-questions-vente {
      padding: 0.25rem;   /* réduire le rembourrage */
      margin: 0.25rem;   /* réduire la marge */
      font-size: 0.9rem; /* réduire la taille du texte */
  }
}

/* Pour les écrans de taille <= 480px (principalement mobile) */
@media (max-width: 480px) {
  .btn-questions-maturite, .btn-questions-vente {
      padding: 0.15rem;    /* réduire encore plus le rembourrage */
      margin: 0.15rem;    /* réduire encore plus la marge */
      font-size: 0.8rem; /* réduire encore plus la taille du texte */
  }
}


.no-underline:hover {
  text-decoration: none;
  color: #42adf1;
}

.nav-item {
  position: relative;  /* Permet d'utiliser la position absolue pour les éléments enfants */
}

.icon-container {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;           /* Centre l'icône */
  justify-content: center; /* Centre horizontalement */
  align-items: center;     /* Centre verticalement */
  padding: 8px;            /* Ajoute de l'espace autour de l'icône. Ajustez selon vos besoins */

}
