@charset "UTF-8";
/*Font family*/
/* COLOR */
/* FONTS */
/* line 3, ../sass/vote.scss */
.vote {
  margin-top: 30px;
}
/* line 4, ../sass/vote.scss */
.vote .vote-header {
  text-align: center;
  margin-bottom: 2rem;
}
/* line 8, ../sass/vote.scss */
.vote .vote-header .vote-main-title {
  font-size: 1.8rem;
  font-family: 'Poppins';
  font-weight: 600;
  color: #2c3e50;
  margin: 0 auto;
  display: inline-block;
}
/* line 19, ../sass/vote.scss */
.vote #vote-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins';
}
/* line 30, ../sass/vote.scss */
.vote #vote-container .vote-step h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}
/* line 36, ../sass/vote.scss */
.vote #vote-container .vote-step form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
/* line 41, ../sass/vote.scss */
.vote #vote-container .vote-step form .form-group {
  display: flex;
  flex-direction: column;
}
/* line 45, ../sass/vote.scss */
.vote #vote-container .vote-step form .form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}
/* line 51, ../sass/vote.scss */
.vote #vote-container .vote-step form .form-group input[type="text"],
.vote #vote-container .vote-step form .form-group input[type="file"] {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
/* line 59, ../sass/vote.scss */
.vote #vote-container .vote-step form .form-group input[type="text"]:focus,
.vote #vote-container .vote-step form .form-group input[type="file"]:focus {
  border-color: #0073aa;
  outline: none;
}
/* line 66, ../sass/vote.scss */
.vote #vote-container .vote-step form .radio-group {
  display: flex;
  gap: 1.5rem;
}
/* line 70, ../sass/vote.scss */
.vote #vote-container .vote-step form .radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
}
/* line 77, ../sass/vote.scss */
.vote #vote-container .vote-step form .radio-group label input[type="radio"] {
  accent-color: #0073aa;
  transform: scale(1.2);
}
/* line 84, ../sass/vote.scss */
.vote #vote-container .vote-step form .submit-btn {
  background-color: #0073aa;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  font-weight: bold;
}
/* line 96, ../sass/vote.scss */
.vote #vote-container .vote-step form .submit-btn:hover {
  background-color: #005f8d;
}
/* line 104, ../sass/vote.scss */
.vote #vote-container .vote-step #vote-step-2-form {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
  font-family: 'Poppins';
}
/* line 110, ../sass/vote.scss */
.vote #vote-container .vote-step #vote-step-2-form .candidates-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
/* line 118, ../sass/vote.scss */
.vote #vote-container .vote-step #vote-step-2-form .candidate-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
/* line 123, ../sass/vote.scss */
.vote #vote-container .vote-step #vote-step-2-form .candidate-card input[type="radio"]:checked + label {
  border-color: #007cba;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.2);
  background-color: #f0faff;
}
/* line 130, ../sass/vote.scss */
.vote #vote-container .vote-step #vote-step-2-form .candidate-card label {
  display: block;
  cursor: pointer;
  border: 2px solid #e0e0e0;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fafafa;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
/* line 139, ../sass/vote.scss */
.vote #vote-container .vote-step #vote-step-2-form .candidate-card label .card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem;
}
/* line 145, ../sass/vote.scss */
.vote #vote-container .vote-step #vote-step-2-form .candidate-card label .card-inner .photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 3px solid #ddd;
}
/* line 153, ../sass/vote.scss */
.vote #vote-container .vote-step #vote-step-2-form .candidate-card label .card-inner .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* line 161, ../sass/vote.scss */
.vote #vote-container .vote-step #vote-step-2-form .candidate-card label .card-inner .info .name {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  color: #333;
}
/* line 170, ../sass/vote.scss */
.vote #vote-container .vote-step #vote-step-2-form .candidate-card label:hover {
  border-color: #007cba;
  background-color: #f0faff;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}
/* line 179, ../sass/vote.scss */
.vote #vote-container .vote-step #vote-step-2-form button[type="submit"] {
  display: block;
  margin: 0 auto;
  background-color: #007cba;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
/* line 192, ../sass/vote.scss */
.vote #vote-container .vote-step #vote-step-2-form button[type="submit"]:hover {
  background-color: #005a87;
}
/* line 198, ../sass/vote.scss */
.vote #vote-container .vote-step .vote-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
/* line 204, ../sass/vote.scss */
.vote #vote-container .vote-step .vote-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
/* line 211, ../sass/vote.scss */
.vote #vote-container .vote-step .vote-actions .btn.btn-secondary {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  color: #333;
}
/* line 216, ../sass/vote.scss */
.vote #vote-container .vote-step .vote-actions .btn.btn-secondary:hover {
  background-color: #e2e2e2;
}
/* line 221, ../sass/vote.scss */
.vote #vote-container .vote-step .vote-actions .btn.btn-primary {
  background-color: #005f8d !important;
  color: #fff;
  border: none;
}
/* line 226, ../sass/vote.scss */
.vote #vote-container .vote-step .vote-actions .btn.btn-primary:hover {
  background-color: #005d8c;
}
/* line 239, ../sass/vote.scss */
.vote #vote-container .vote-step-3 .candidate-card.confirm-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem auto;
  text-align: center;
  box-shadow: 0 0 0 1px #ddd, 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 400px;
}
/* line 248, ../sass/vote.scss */
.vote #vote-container .vote-step-3 .candidate-card.confirm-card .card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* line 253, ../sass/vote.scss */
.vote #vote-container .vote-step-3 .candidate-card.confirm-card .card-inner .photo {
  margin-bottom: 1rem;
}
/* line 256, ../sass/vote.scss */
.vote #vote-container .vote-step-3 .candidate-card.confirm-card .card-inner .photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eaeaea;
}
/* line 266, ../sass/vote.scss */
.vote #vote-container .vote-step-3 .candidate-card.confirm-card .card-inner .info .name {
  font-size: 1.3rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.3rem;
}
/* line 273, ../sass/vote.scss */
.vote #vote-container .vote-step-3 .candidate-card.confirm-card .card-inner .info .metier {
  font-size: 1rem;
  color: #777;
}
/* line 281, ../sass/vote.scss */
.vote #vote-container .vote-step-3 .vote-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
/* line 287, ../sass/vote.scss */
.vote #vote-container .vote-step-3 .vote-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
/* line 294, ../sass/vote.scss */
.vote #vote-container .vote-step-3 .vote-actions .btn.btn-secondary {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  color: #333;
}
/* line 299, ../sass/vote.scss */
.vote #vote-container .vote-step-3 .vote-actions .btn.btn-secondary:hover {
  background-color: #e2e2e2;
}
/* line 304, ../sass/vote.scss */
.vote #vote-container .vote-step-3 .vote-actions .btn.btn-primary {
  background-color: #005f8d !important;
  color: #fff;
  border: none;
}
/* line 309, ../sass/vote.scss */
.vote #vote-container .vote-step-3 .vote-actions .btn.btn-primary:hover {
  background-color: #005d8c;
}
/* line 320, ../sass/vote.scss */
.vote #vote-container .step-4 .final-message {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  margin: 3rem auto;
  text-align: center;
}
/* line 328, ../sass/vote.scss */
.vote #vote-container .step-4 .final-message h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #0073aa;
}
/* line 334, ../sass/vote.scss */
.vote #vote-container .step-4 .final-message p {
  font-size: 1.1rem;
  color: #444;
}
/* line 339, ../sass/vote.scss */
.vote #vote-container .step-4 .final-message .btn {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
/* line 347, ../sass/vote.scss */
.vote #vote-container .step-4 .final-message .btn.btn-secondary {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  color: #333;
}
/* line 352, ../sass/vote.scss */
.vote #vote-container .step-4 .final-message .btn.btn-secondary:hover {
  background-color: #e2e2e2;
}
/* line 360, ../sass/vote.scss */
.vote #vote-container .vote-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  min-height: 200px;
}
/* line 367, ../sass/vote.scss */
.vote #vote-container .vote-loading img {
  width: 100px;
  height: 100px;
}
/* line 373, ../sass/vote.scss */
.vote #vote-container .btn-loader {
  margin-left: 0.5rem;
  vertical-align: middle;
}
/* line 377, ../sass/vote.scss */
.vote #vote-container .btn-loader img {
  width: 20px;
  height: 20px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* line 399, ../sass/vote.scss */
.vote .vote-message {
  max-width: 600px;
  text-align: center;
}
/* line 405, ../sass/vote.scss */
.vote .vote-message .message {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: bold;
}
/* line 412, ../sass/vote.scss */
.vote .vote-message .message.error {
  background-color: #fdd;
  color: #a00;
  border: 1px solid #a00;
}
/* line 418, ../sass/vote.scss */
.vote .vote-message .message.success {
  background-color: #dfd;
  color: #080;
  border: 1px solid #080;
}

/* line 430, ../sass/vote.scss */
.vote-closed-box {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}
/* line 439, ../sass/vote.scss */
.vote-closed-box h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #cc0000;
}
/* line 445, ../sass/vote.scss */
.vote-closed-box p {
  font-size: 1rem;
  color: #333;
}
/* line 449, ../sass/vote.scss */
.vote-closed-box p strong {
  display: block;
  margin-top: 0.25rem;
  font-weight: 600;
  color: #222;
}

/* line 463, ../sass/vote.scss */
#resultats-container .vote-resultats {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins';
}
/* line 472, ../sass/vote.scss */
#resultats-container .vote-resultats__corps-metier {
  border: 1px solid #eee;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #f9f9f9;
  /* Couleur de fond de chaque bloc de corps de métier */
}
/* line 479, ../sass/vote.scss */
#resultats-container .vote-resultats__corps-metier--gagnant-global {
  border: 2px solid #28a745;
  /* Bordure plus épaisse pour le gagnant global */
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
  /* Ombre plus prononcée */
}
/* line 485, ../sass/vote.scss */
#resultats-container .vote-resultats__titre-corps-metier {
  color: #124F7D;
  margin-bottom: 10px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}
/* line 492, ../sass/vote.scss */
#resultats-container .vote-resultats__liste-candidats {
  list-style-type: none;
  padding-left: 0;
}
/* line 497, ../sass/vote.scss */
#resultats-container .vote-resultats__candidat {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dotted #ddd;
}
/* line 503, ../sass/vote.scss */
#resultats-container .vote-resultats__candidat:last-child {
  border-bottom: none;
}
/* line 507, ../sass/vote.scss */
#resultats-container .vote-resultats__candidat--gagnant {
  background-color: #fff;
  /* Couleur de fond différente pour le gagnant */
  border-left: 5px solid #28a745;
  padding-left: 13px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  /* Légère ombre pour le gagnant */
  margin: -8px 0;
  /* Ajuster la marge pour compenser le padding */
  padding: 10px 5px 10px 18px;
  /* Ajuster le padding */
}
/* line 508, ../sass/vote.scss */
#resultats-container .vote-resultats__candidat--gagnant .vote-resultats__nom-candidat {
  font-weight: bold;
}
/* line 512, ../sass/vote.scss */
#resultats-container .vote-resultats__candidat--gagnant .vote-resultats__votes-candidat {
  color: #28a745;
}
/* line 526, ../sass/vote.scss */
#resultats-container .vote-resultats__photo-candidat {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 5px;
  object-fit: cover;
}
/* line 535, ../sass/vote.scss */
#resultats-container .vote-resultats__nom-candidat {
  flex-grow: 1;
}
/* line 539, ../sass/vote.scss */
#resultats-container .vote-resultats__votes-candidat {
  margin-left: 10px;
  margin-right: 10px;
}
/* line 546, ../sass/vote.scss */
#resultats-container .vote-resultats__stats-corps-metier {
  margin-bottom: 15px;
  font-size: 0.9em;
  color: #555;
  background-color: #eee;
  /* Légère couleur de fond pour les stats */
  padding: 8px;
  border-radius: 3px;
}
/* line 550, ../sass/vote.scss */
#resultats-container .vote-resultats__stats-corps-metier strong {
  font-weight: bold;
}
/* line 558, ../sass/vote.scss */
#resultats-container .vote-resultats__aucun-candidat, #resultats-container .vote-resultats__aucun-corps-metier {
  font-style: italic;
  color: #6c757d;
}
/* line 565, ../sass/vote.scss */
#resultats-container .vote-impression__bouton {
  display: inline-flex;
  align-items: center;
  background-color: #28a745;
  /* Couleur de fond verte pour l'impression */
  color: #fff;
  /* Texte blanc */
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
/* line 576, ../sass/vote.scss */
margin-
#resultats-container .vote-impression__bouton:hover {
  background-color: #1e7e34;
  /* Assombrir au survol */
}
/* line 581, ../sass/vote.scss */
#resultats-container .vote-impression__bouton .vote-impression__icone {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: currentColor;
  /* Hérite de la couleur du texte */
}
/* line 588, ../sass/vote.scss */
#resultats-container .vote-impression__bouton .vote-impression__texte {
  white-space: nowrap;
}
/* line 593, ../sass/vote.scss */
#resultats-container .btn-print-resultat-vote {
  width: 100%;
  text-align: center;
  padding-bottom: 8px;
}
