

.evaluat.Categorie {
    display: flex;
    flex-direction: column; /* Pour empiler les catégories verticalement */
}

.category-item {
    display: flex;
    justify-content: space-between; /* Espace entre la catégorie et la sous-catégorie */
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc; /* Bordure pour le rectangle */
    border-radius: 5px; /* Coins arrondis */
}

.category-name {
    font-weight: bold; /* Mettre en gras le nom de la catégorie */
}

.subcategory-name {
    color: #777; /* Couleur grise pour la sous-catégorie */
}

		/* Container des boutons */
		.button-container {
			padding: 20px 0;
			margin-bottom: 20px;
		}
	
		/* Style général des boutons */
		.mybtn1 {
			padding: 12px 35px;
			margin: 0 10px;
			font-size: 16px;
			font-weight: 500;
			border: 2px solid #1e3c72;
			border-radius: 30px;
			cursor: pointer;
			transition: all 0.3s ease;
			background: white;
			color: #1e3c72;
			box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
		}
	
		/* Style du bouton actif */
		.mybtn1.active {
			background: #1e3c72;
			color: white;
			box-shadow: 0 5px 15px rgba(30, 60, 114, 0.2);
		}
	
		/* Effet hover sur les boutons */
		.mybtn1:hover {
			transform: translateY(-2px);
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
		
		}
	
		/* Animation au clic */
		.mybtn1:active {
			transform: translateY(1px);
		}
	
		/* Style pour les écrans mobiles */
		@media (max-width: 768px) {
			.mybtn1 {
				padding: 10px 25px;
				margin: 5px;
				font-size: 14px;
			}
		}
	
		/* Maintenir les styles existants pour les champs select */
		.input-field select {
			width: 100%;
			height: 50px;
			padding: 0 20px;
			border: 1px solid #ddd;
			border-radius: 3px;
		}
	
    /* Style pour les options de genre */
    .gender-options {
        display: flex;
        align-items: center;
        gap: 30px;
        padding: 15px 0;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .gender-option {
        display: flex;
        align-items: center;
        position: relative;
    }

    .gender-option input[type="radio"] {
        position: relative;
        appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #ddd;
        border-radius: 50%;
        margin-right: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .gender-option input[type="radio"]:checked {
        border-color: #1e3c72;
    }

    .gender-option input[type="radio"]:checked::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background: #1e3c72;
        border-radius: 50%;
    }

    .gender-option label {
        display: flex;
        align-items: center;
        cursor: pointer;
        font-weight: 500;
        color: #666;
    }

    .gender-option i {
        margin-right: 8px;
        font-size: 20px;
    }

    .gender-option .fa-female {
        color: #FF4081;
    }

    .gender-option .fa-male {
        color: #2196F3;
    }
	#iconContainer {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

#iconContainer i {
    font-size: 45px;
	padding-bottom: 20px;
    color: #296aab;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

#iconContainer i.selected {
    color: #28a745;
    transform: scale(1.2);
}
.itemcategorie{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 20px; /* Ajuster le padding pour occuper toute la largeur */
    margin: 15px 0; /* Espacement réduit entre les éléments */
    background-color: #fbfbfb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;

    color: #333;
}
.itemcategorie.filled-category {
    background-color: #d1e7dd; /* Vert clair pour indiquer que c'est rempli */
    color: #0f5132; /* Texte en vert foncé */
   
}


** Contact Us  Area Start
---------------------------*/

.contact-us {
  padding: 100px 0px 100px;
}

.contact-us .header-area {
  text-align: center;
  margin-bottom: 28px;
}

.contact-us .header-area .title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
}

.contact-us .left-area .contact-form {
  padding: 30px 30px 30px;
  box-shadow: rgba(36, 37, 38, 0.15) 4px 4px 30px 0px;
  border-radius: 10px;
  background: #fff;
}

.contact-us .left-area .contact-form ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

.contact-us .left-area .contact-form ul li {
  list-style: none;
}

.contact-us .left-area .contact-form ul li .input-field {
  margin-bottom: 20px;
  background: none;
  border-radius: 3px;
  padding: 0px 20px;
  border: 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-us .left-area .contact-form ul li .input-field:focus {
  border: 1px solid #296aab;
}

.contact-us .left-area .contact-form ul li .input-field.textarea {
  margin-bottom: 15px;
  padding-top: 15px;
  border-radius: 3px;
}

.contact-us .left-area .contact-form .submit-btn {
  width: 180px;
  height: 50px;
  padding: 0px;
  background: #296aab;
  color: #fff;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  border: 0px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.contact-us .left-area .contact-form .submit-btn:hover {
  border: 1px solid #296aab;
  background: #fff;
  color: #296aab;
}

.contact-us .right-area .contact-info {
  margin-bottom: 30px;
  transition: all 0.3s ease-in;
  display: flex;
  background: #fff;
  overflow: hidden;
  box-shadow: rgba(36, 37, 38, 0.15) 4px 4px 30px 0px;
  border-radius: 10px;
  background: #fff;
  padding: 23px 30px 28px;
}

.contact-us .right-area .contact-info .left {
  position: relative;
  align-self: center;
}

.contact-us .right-area .contact-info .left .icon {
  align-self: center;
  width: 50px;
  text-align: center;
  margin-right: 20px;
  transition: all 0.3s ease-in;
  z-index: 9;
  text-align: center;
  display: block;
  font-size: 34px;
}

.contact-us .right-area .contact-info .left .icon img {
  display: inline-block;
}

.contact-us .right-area .contact-info .content {
  flex: 1;
}

.contact-us .right-area .contact-info .content .title {
  font-size: 21px;
  line-height: 31px;
  font-weight: 600;
  display: block;
}

.contact-us .right-area .contact-info .content a {
  display: block;
  margin-bottom: 0px;
}

.contact-us .right-area .social-links {
  padding-top: 20px;
}

.contact-us .right-area .social-links .title {
  font-size: 21px;
  line-height: 31px;
  font-weight: 600;
  color: #222;
  margin-top: -5px;
  margin-bottom: 18px;
}

.contact-us .right-area .social-links ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

.contact-us .right-area .social-links ul li {
  display: inline-block;
}

.contact-us .right-area .social-links ul li a {
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin: 0px 3px;
  background: #fff;
  color: #296aab;
  box-shadow: rgba(36, 37, 38, 0.15) 4px 4px 30px 0px;
  border: 0px;
  transition: 0.3s ease-in;
}

.contact-us .right-area .social-links ul li a:hover {
  background: #296aab;
  color: #fff;
  border: 0px !important;
}



.contact-us {
    padding: 100px 0px 100px;
  }
  
  .contact-us .header-area {
    text-align: center;
    margin-bottom: 28px;
  }
  
  .contact-us .header-area .title {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
  }
  
  .contact-us .left-area .contact-form {
    padding: 30px 30px 30px;
    box-shadow: rgba(36, 37, 38, 0.15) 4px 4px 30px 0px;
    border-radius: 10px;
    background: #fff;
  }
  
  .contact-us .left-area .contact-form ul {
    padding-left: 0px;
    margin-bottom: 0px;
  }
  
  .contact-us .left-area .contact-form ul li {
    list-style: none;
  }
  
  .contact-us .left-area .contact-form ul li .input-field {
    margin-bottom: 20px;
    background: none;
    border-radius: 3px;
    padding: 0px 20px;
    border: 0px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .contact-us .left-area .contact-form ul li .input-field:focus {
    border: 1px solid #296aab;
  }
  
  .contact-us .left-area .contact-form ul li .input-field.textarea {
    margin-bottom: 15px;
    padding-top: 15px;
    border-radius: 3px;
  }
  
  .contact-us .left-area .contact-form .submit-btn {
    width: 180px;
    height: 50px;
    padding: 0px;
    background: #296aab;
    color: #fff;
    font-size: 16px;
    line-height: 50px;
    text-align: center;
    border: 0px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in;
  }
  
  .contact-us .left-area .contact-form .submit-btn:hover {
    border: 1px solid #296aab;
    background: #fff;
    color: #296aab;
  }
  
  .contact-us .right-area .contact-info {
    margin-bottom: 30px;
    transition: all 0.3s ease-in;
    display: flex;
    background: #fff;
    overflow: hidden;
    box-shadow: rgba(36, 37, 38, 0.15) 4px 4px 30px 0px;
    border-radius: 10px;
    background: #fff;
    padding: 23px 30px 28px;
  }
  
  .contact-us .right-area .contact-info .left {
    position: relative;
    align-self: center;
  }
  
  .contact-us .right-area .contact-info .left .icon {
    align-self: center;
    width: 50px;
    text-align: center;
    margin-right: 20px;
    transition: all 0.3s ease-in;
    z-index: 9;
    text-align: center;
    display: block;
    font-size: 34px;
  }
  
  .contact-us .right-area .contact-info .left .icon img {
    display: inline-block;
  }
  
  .contact-us .right-area .contact-info .content {
    flex: 1;
  }
  
  .contact-us .right-area .contact-info .content .title {
    font-size: 21px;
    line-height: 31px;
    font-weight: 600;
    display: block;
  }
  
  .contact-us .right-area .contact-info .content a {
    display: block;
    margin-bottom: 0px;
  }
  
  .contact-us .right-area .social-links {
    padding-top: 20px;
  }
  
  .contact-us .right-area .social-links .title {
    font-size: 21px;
    line-height: 31px;
    font-weight: 600;
    color: #222;
    margin-top: -5px;
    margin-bottom: 18px;
  }
  
  .contact-us .right-area .social-links ul {
    padding-left: 0px;
    margin-bottom: 0px;
  }
  
  .contact-us .right-area .social-links ul li {
    display: inline-block;
  }
  
  .contact-us .right-area .social-links ul li a {
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0px 3px;
    background: #fff;
    color: #296aab;
    box-shadow: rgba(36, 37, 38, 0.15) 4px 4px 30px 0px;
    border: 0px;
    transition: 0.3s ease-in;
  }
  
  .contact-us .right-area .social-links ul li a:hover {
    background: #296aab;
    color: #fff;
    border: 0px !important;
  }
  
  
  /* Style du champ OTP */
  /* Style moderne pour le groupe input-email et bouton OTP */
  .mb-3 .input-group {
      display: flex;
      align-items: center;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .mb-3 .form-control {
      flex: 1;
      padding: 12px;
      font-size: 16px;
      border: none;
      border-right: 1px solid #ddd;
      border-radius: 0;
      outline: none;
      transition: background-color 0.3s ease;
      outline: none;
      box-shadow: none;
      border-color: #ddd;
  }
  
  .mb-3 .form-control:focus {
      background-color: #ffffff; /* Couleur de fond blanche au focus */
      border-color: #ccc; 
     
  }
  
  #sendOtpButton {
      background-color: #de6b1f;
      color: white;
      padding: 12px 20px;
      font-size: 16px;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  #sendOtpButton:hover {
      background-color: #0056b3;
      transform: scale(1.05);
  }
  
  
  .text-danger {
      color: #e3342f;
      font-size: 14px;
      margin-top: 5px;
      padding-left: 5px;
  }
  
  
  
  
  
  /* Style du champ OTP */
  #otpField {
      position: relative; /* Pour positionner l'icône par rapport à l'input */
  }
  
  #otpField input {
      background-color: #f4f6fa; /* Couleur de fond gris clair */
      border: 2px solid #e0e6ed; /* Bordure de couleur gris clair */
      border-radius: 6px; /* Coins arrondis */
      padding: 10px;
      width: 100%;
      font-size: 16px;
      color: #344767; /* Couleur du texte */
      box-sizing: border-box;
      transition: border-color 0.3s ease-in-out;
      padding-right: 30px; /* Espacement pour l'icône */
  }
  
  /* Icône de vérification */
  .check-icon {
      position: absolute;
      right: 10px; /* Espacement à droite */
      top: 40%; /* Centrer verticalement */
      transform: translateY(-50%); /* Centrer verticalement */
      color: #4CAF50; /* Couleur verte pour l'icône */
      font-size: 20px; /* Ajuster la taille de l'icône */
      display: none; /* Masquer par défaut */
  }
  
  /* Afficher l'icône lorsque l'OTP est validé */
  #otpField input.validated + .check-icon {
      display: block; /* Afficher l'icône si l'input est validé */
  }
  
  .card{
  
      border: none;
  }
  