/*STYLE DE LA MODAL DE VERIFICATION DE L'AGE*/
.modal-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  /*   box-shadow: 0 0 0 4px #ccc; */
}

.modal-box .icon {
  font-size: 2rem;
  color: #374151;
  margin-bottom: 1rem;
}

.modal-box h2 {
  font-size: 1.3rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.modal-box p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.modal-buttons button {
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

/* Green Primary Button */
.btn-yes {
  background-color: #a3d635;
  color: white;
  border: none;
  font-weight: bold;
}

.btn-yes:hover {
  background-color: #8ac02d;
}

/* Outline Secondary Button */
.btn-no {
  background-color: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-no:hover {
  background-color: #f3f4f6;
}

.modal-note {
  font-size: 0.8rem;
  color: #6b7280;
}

.modal#ageValidation {
  padding-right: unset !important;
  padding: 0.5rem !important;
  width: 100vw;
}
.modal#ageValidation .modal-dialog {
  display: flex !important;
  justify-content: center;
  width: 100%;
  max-width: unset;
  height: 100%;
  margin: unset;
}
.modal#ageValidation .modal-dialog .modal-content.modal-age {
  align-items: center;
  justify-content: center;
  min-height: unset;
}
.modal#ageValidation .modal-dialog .modal-content.modal-age .modal-logo {
  margin-bottom: 3em;
}

/* Responsive */
@media (max-width: 480px) {
  .modal-box {
    padding: 1.5rem;
  }
  .modal-buttons button {
    font-size: 0.95rem;
  }
}

/*# sourceMappingURL=BJ-Style-General.css.map */
