 /*.modal-5g .modal-content {
   border-radius: 12px;
   border: none;
   padding: 1.5rem 2rem;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
 }

 .option-btn {
   border: 2px solid #d9d9d9;
   border-radius: 8px;
   padding: 10px 14px;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: space-between;
   color: #888;
   background-color: #fff;
   transition: 0.2s;
   cursor: pointer;
   margin-bottom: 10px;
   width: 100%;
 }

 .option-btn.active {
   color: #d80000;
   border-color: #d80000;
 }

 .option-btn input[type="radio"] {
   margin-left: 10px;
   accent-color: #d80000;
   transform: scale(1.3);
 }

 @media (min-width: 768px) {
   .options-row {
     display: flex;
     gap: 10px;
   }

   .option-btn {
     flex: 1;
     margin-bottom: 0;
   }
 }

 .form-row-inline {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 1.5rem;
 }

 .form-row-inline .form-control {
   flex: 1;
   border-radius: 8px;
   margin-right: 10px;
   height: 46px;
 }

 .btn-red {
   background-color: #d80000;
   border: none;
   color: #fff;
   font-weight: 600;
   border-radius: 30px;
   height: 46px;
   min-width: 180px;
 }

 .btn-red:hover {
   background-color: #b10000;
 }

 .success-box {
   background-color: #f8f9fa;
   border-radius: 8px;
   padding: 10px;
   font-size: 0.9rem;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .success-box span {
   color: green;
   font-weight: 600;
 }

 .cloudflare {
   font-size: 0.8rem;
   color: #6c757d;
   margin-left: 6px;
 }

 .cloudflare a {
   color: #6c757d;
   text-decoration: none;
 }

 .info-icon {
   color: #d80000;
   cursor: pointer;
   margin-left: 6px;
   font-size: 0.9rem;
 }

 @media (max-width: 576px) {
   .form-row-inline {
     flex-direction: column;
   }

   .form-row-inline .form-control {
     margin-right: 0;
     margin-bottom: 10px;
     width: 100%;
   }

   .btn-red {
     width: 100%;
   }
 }


 body {
   background-color: #f5f5f5;
   padding: 20px;
 }

 .modal-content {
   border-radius: 16px;
   border: none;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
 }

 .modal-header {
   border-bottom: none;
   padding: 20px 20px 0;
 }

 .modal-title {
   color: #e31e24;
   font-size: 28px;
   font-weight: 700;
   width: 100%;
   text-align: center;
 }

 .close {
   font-size: 32px;
   font-weight: 300;
   color: #333;
   opacity: 1;
   position: absolute;
   right: 15px;
   top: 10px;
 }

 .close:hover {
   color: #e31e24;
 }

 .modal-body {
   padding: 30px 40px 40px;
   text-align: center;
 }

 .checkmark-circle {
   width: 80px;
   height: 80px;
   background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 30px;
   box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
 }

 .checkmark {
   width: 35px;
   height: 20px;
   border: 4px solid white;
   border-top: none;
   border-right: none;
   transform: rotate(-45deg);
   margin-top: -8px;
 }

 .modal-message {
   color: #000;
   font-size: 18px;
   line-height: 1.6;
   margin-bottom: 35px;
   font-weight: 500;
 }

 .btn-custom-secondary {
   background: white;
   color: #e31e24;
   border: 2px solid #e31e24;
   border-radius: 50px;
   padding: 12px 30px;
   font-size: 16px;
   font-weight: 600;
   transition: all 0.3s ease;
 }

 .btn-custom-secondary:hover {
   background: #f9e6e7;
   color: #e31e24;
   border-color: #e31e24;
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
 }

 .btn-custom-primary {
   background: #e31e24;
   color: white;
   border: 2px solid #e31e24;
   border-radius: 50px;
   padding: 12px 30px;
   font-size: 16px;
   font-weight: 600;
   transition: all 0.3s ease;
 }

 .btn-custom-primary:hover {
   background: #c71a1f;
   color: white;
   border-color: #c71a1f;
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
 }

 .button-group {
   display: flex;
   gap: 15px;
   justify-content: center;
   flex-wrap: nowrap;
 }

 @media (max-width: 576px) {
   .modal-title {
     font-size: 24px;
   }

   .modal-message {
     font-size: 16px;
   }

   .modal-body {
     padding: 20px 15px 30px;
   }

   .btn-custom-secondary,
   .btn-custom-primary {
     padding: 12px 20px;
     font-size: 14px;
   }
 }
*/
 /* Bouton déclencheur pour la démo */
 /*.trigger-btn {
   margin: 50px auto;
   display: block;
 }

  .popover-content {
   background-color: #000;
   color: #FFFFFF;
   }

  .popover-title {
   background-color: #000;
   color: #FFFFFF;
 }
*/
 .modal-check-5g.modal.show {
   display: flex !important;
   align-items: center;
   justify-content: center;
   z-index: 1000000000000000000;
   background: rgb(0 0 0 / 10%);
 }

 .modal-check-5g.modal {
   position: fixed;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   z-index: 1050;
   display: none;
   overflow: hidden;
   outline: 0;
 }

 .modal-check-5g.modal .modal-content {
   position: relative;
   background-color: #fff;
   background-clip: padding-box;
   border: 1px solid rgba(0, 0, 0, 0.2);
   border-radius: 10px;
   outline: 0;
 }

 .modal-check-5g.modal .modal-content {
   border-radius: 16px;
   border: none;
   padding: 30px 40px;
 }

 .modal-check-5g.fade {
   opacity: 0;
   transition: opacity 0.15s linear;
 }

 .modal-open .modal-check-5g.modal {
   overflow-x: hidden;
   overflow-y: auto;
 }

 .modal-check-5g.fade.in {
   opacity: 1;
 }

 .modal-check-5g .modal-dialog {
   max-width: 570px;
 }

 .modal-check-5g .modal-content {
   border-radius: 16px;
   border: none;
   padding: 30px 40px;
 }

 .modal-check-5g .modal-header {
   border-bottom: none;
   padding: 0 0 20px 0;
   position: relative;
 }

 .modal-check-5g .modal-title {
   font-size: 24px;
   font-weight: 700;
   color: #000;
   text-align: center;
   width: 100%;
   line-height: 1.3;
 }

 .modal-check-5g .close {
   position: absolute;
   right: -10px;
   top: -10px;
   font-size: 28px;
   font-weight: 300;
   color: #000;
   opacity: 1;
 }

 .modal-check-5g button.close {
   padding: 0;
   cursor: pointer;
   background: transparent;
   border: 0;
   -webkit-appearance: none;
 }

 .modal-check-5g .modal-header .close {
   margin-top: -2px;
 }

 .modal-check-5g .close:hover {
   color: #e31e24;
 }

 .modal-check-5g .modal-body {
   padding: 0;
 }

 .modal-check-5g .modal-description {
   text-align: center;
   color: #000;
   font-size: 15px;
   margin-bottom: 30px;
   line-height: 1.5;
 }

 .modal-check-5g .section-title {
   font-size: 16px;
   font-weight: 600;
   color: #000;
   margin-bottom: 15px;
  display: block;
      text-align: center;
 }

 .modal-check-5g .radio-option {
   border: 2px solid #e0e0e0;
   border-radius: 8px;
   padding: 14px 18px;
   margin-bottom: 12px;
   cursor: pointer;
   transition: all 0.3s;
   position: relative;
 }

 .modal-check-5g .radio-option:hover {
   border-color: #e31e24;
 }

 .modal-check-5g .radio-option.active {
   border-color: #e31e24;
   background-color: #fff5f5;
 }

 .modal-check-5g .radio-option input[type="radio"] {
   margin-right: 12px;
   width: 20px;
   height: 20px;
   accent-color: #e31e24;
   cursor: pointer;
 }

 .modal-check-5g .radio-option label {
   margin: 0;
   cursor: pointer;
   font-size: 15px;
   font-weight: 500;
   color: #000;
   display: flex;
   align-items: center;
   width: 100%;
 }

 .modal-check-5g .info-icon {
   margin-left: auto;
   color: #000;
   font-size: 18px;
   cursor: pointer;
   width: 20px;
   height: 20px;
   border: 2px solid #000;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
   line-height: 1;
 }

 .modal-check-5g .info-icon:hover {
   background-color: #000;
   color: #fff;
 }

 .modal-check-5g .tooltip-custom {
   position: absolute;
   right: 0;
   top: 100%;
   margin-top: 10px;
   background-color: #2c2c2c;
   color: #fff;
   padding: 15px;
   border-radius: 8px;
   font-size: 13px;
   line-height: 1.5;
   width: 300px;
   z-index: 1000;
   display: none;
 }

 .modal-check-5g .tooltip-custom::before {
   content: '';
   position: absolute;
   top: -8px;
   right: 20px;
   width: 0;
   height: 0;
   border-left: 8px solid transparent;
   border-right: 8px solid transparent;
   border-bottom: 8px solid #2c2c2c;
 }

 .modal-check-5g .tooltip-custom.show {
   display: block;
 }

 .modal-check-5g .form-group {
   margin-bottom: 25px;
 }

 .modal-check-5g .form-control {
   height: 50px;
   border: 2px solid #e0e0e0;
   border-radius: 8px;
   padding: 12px 18px;
   font-size: 15px;
   transition: all 0.3s;
 }

 .modal-check-5g .form-control:focus {
   border-color: #e31e24;
   box-shadow: none;
 }

 .modal-check-5g .form-control::placeholder {
   color: #999;
 }

 .modal-check-5g .btn-validate {
   background-color: #e31e24;
   color: #fff;
   border: none;
   border-radius: 50px;
   padding: 14px;
   font-size: 16px;
   font-weight: 600;
   width: 100%;
   transition: all 0.3s;
 }

 .modal-check-5g .btn-validate:hover {
   background-color: #c71a1f;
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
 }

 .modal-check-5g .btn-validate:disabled {
   background-color: #ccc;
   cursor: not-allowed;
   transform: none;
 }

 

 .modal-check-5g .modal-title {
   font-size: 24px;
   font-weight: 700;
   color: #000;
   width: 100%;
   text-align: center;
   margin: 0;
 }

 .modal-check-5g .close {
   position: absolute;
   right: 20px;
   top: 20px;
   font-size: 28px;
   font-weight: 300;
   color: #000;
   opacity: 0.5;
   transition: opacity 0.3s;
 }

 .modal-check-5g .close:hover {
   opacity: 1;
 }

 .modal-check-5g .modal-body {
   padding: 20px 40px 40px;
   text-align: center;
 }

 .modal-check-5g .success-icon {
   width: 120px;
   height: 120px;
   margin: 0 auto 30px;
   position: relative;
 }

 .modal-check-5g .success-circle {
   width: 120px;
   height: 120px;
   background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   animation: scaleIn 0.5s ease-out;
 }

 .modal-check-5g .success-circle::before {
   content: '';
   position: absolute;
   width: 140px;
   height: 140px;
   background: rgba(56, 239, 125, 0.1);
   border-radius: 50%;
   animation: pulse 2s infinite;
 }

 .modal-check-5g .success-circle i {
   font-size: 60px;
   color: white;
   z-index: 1;
 }

 @keyframes scaleIn {
   0% {
     transform: scale(0);
     opacity: 0;
   }

   50% {
     transform: scale(1.1);
   }

   100% {
     transform: scale(1);
     opacity: 1;
   }
 }

 @keyframes pulse {

   0%,
   100% {
     opacity: 1;
     transform: scale(1);
   }

   50% {
     opacity: 0.5;
     transform: scale(1.2);
   }
 }

 .modal-check-5g .modal-text {
   font-size: 16px;
   line-height: 1.6;
   color: #333;
   margin-bottom: 30px;
 }

 .modal-check-5g .btn-primary-custom {
   background: #e31e24;
   border: none;
   border-radius: 50px;
   padding: 15px 40px;
   font-size: 16px;
   font-weight: 600;
   color: white;
   width: 100%;
   margin-bottom: 15px;
   transition: all 0.3s;
   box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
 }

 .modal-check-5g .btn-primary-custom:hover {
   background: #c51a1f;
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
 }

 .modal-check-5g .btn-secondary-custom {
   background: white;
   border: 2px solid #000;
   border-radius: 50px;
   padding: 13px 40px;
   font-size: 16px;
   font-weight: 600;
   color: #000;
   width: 100%;
   transition: all 0.3s;
 }

 .modal-check-5g .btn-secondary-custom:hover {
   background: #f8f9fa;
   transform: translateY(-2px);
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 /* Animation d'entrée de la modal */
 .modal-check-5g .modal.show .modal-dialog {
   animation: slideUp 0.4s ease-out;
 }

 @keyframes slideUp {
   from {
     opacity: 0;
     transform: translateY(50px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* Bouton de démo */
 .modal-check-5g .demo-btn {
   position: fixed;
   bottom: 30px;
   right: 30px;
   background: white;
   color: #667eea;
   border: none;
   border-radius: 50px;
   padding: 15px 30px;
   font-weight: 600;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
   z-index: 9999;
 }

 .modal-check-5g .demo-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
 }

 .modal-check-5g .circle {
   width: 105px;
   height: 105px;
   background: #fff;
   border-radius: 50%;
   margin: 1.5rem auto;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }
.modal-check-5g #inputNumber{
  width: 100%;
}
 @media (max-width: 576px) {
   .modal-check-5g .modal-content {
     padding: 20px;
   }

   .modal-check-5g .modal-title {
     font-size: 20px !important;
   }

   .modal-check-5g .tooltip-custom {
     width: 250px;
     right: -10px;
   }
   .modal-check-5g .modal-body {
      padding: 0px !important;
    }
 }


 #formVerification #alertContainer .close{
     display: none;
 }

 #formVerification #alertContainer {
     position: absolute;
     margin-block: 1.25rem;
     color: #ff4c4c;
     width: 100%;
     bottom: 0;
     /* left: 0; */
     margin-inline: unset;
     padding-inline: unset;
     left: 0;
 }

 .modal-check-5g .is-invalid{
     border-color: #ff4c4c;
 }
 @media (max-width: 576px) {
     #formVerification #alertContainer {
         position: unset;
         margin-block: 1.25rem;
         color: #ff4c4c;
         width: 100%;
         bottom: 0;
         margin-inline: unset;
         padding-inline: unset;
         left: 0;
         font-size: 80%;
         margin: unset;
         margin-top: -1rem;
     }
 }