#modalGlobalWindow{
    top : 0!important;
    position: absolute;
    width: 100%;
    height: 100%;
    background : rgba(160, 154, 154, 0.29);
    z-index: 9999;
}


#appointmentModal {

    position: absolute; 
    top: 0; 
    bottom: 0; 
    right: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh; 
    z-index: 9999; 
    background-color: white;
    
}
.flip-in-ver-left {
	-webkit-animation: flip-in-ver-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: flip-in-ver-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-2-4 15:38:0
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation flip-in-ver-left
 * ----------------------------------------
 */
 @-webkit-keyframes flip-in-ver-left {
    0% {
      -webkit-transform: rotateY(80deg);
              transform: rotateY(80deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateY(0);
              transform: rotateY(0);
      opacity: 1;
    }
  }
  @keyframes flip-in-ver-left {
    0% {
      -webkit-transform: rotateY(80deg);
              transform: rotateY(80deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateY(0);
              transform: rotateY(0);
      opacity: 1;
    }
  }


  /* ------------------- loading animation ------------------- */

  .loadingElement {
    
   /*  position: relative; */
    /* opacity: 0.8; */
    pointer-events: none !important;
    cursor: default !important;

  }
  
  .loadingElement::before {

    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: white;
    /* border-radius: 10px; */
    box-shadow: 0 0 5px gray;

  }
  
  .loadingElement::after {

    content: "\f110";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999999;
    font-size: 3rem;
    animation: spin 1s linear infinite;

  }
  
  /* ------------------- loading animation ------------------- */


  /* ------------------- spinner animation ------------------- */

  .spinnerPrint {
  
    /*  position: relative; */
      /* opacity: 0.5; */
      pointer-events: none !important;
      cursor: default !important;
  
    }
    
    .spinnerPrint::before {
      
      content: ""; 
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 999;
      background-color: white;
      box-shadow: 0 0 5px gray;
  
    }
    
    .spinnerPrint::after {
  
      content: "En cours d'impression \00A0\f02f"; 
      font-family: "Font Awesome 5 Free";
      font-size: medium;
      font-weight: bold;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      text-align: center;
      transform: translate(-50%, -50%);
      z-index: 1000;
      padding: 5px;
      animation: colorAnim 1s infinite ease-in-out;

    }
    

    /* ------------------- spinner animation ------------------- */
  
     
    @keyframes spin {
      0% { transform: translate(-50%, -50%) rotate(0deg); }
      100% { transform: translate(-50%, -50%) rotate(360deg); }
    }

    @keyframes colorAnim {
      0% {
          color: black;
      }
      50% {
          color: white;
      }
      100% {
          color: black;
      }
  }
  

  .bottom-button-right {
    position: fixed; /* Fixe le bouton par rapport à la fenêtre d'affichage */
    bottom: 20px;
    right: 20px;
    color: #fff;
    border-radius: 60px;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    z-index: 1000; /* Assure que le bouton est au-dessus d'autres éléments */
  }

  .bottom-button-left {
    position: fixed; /* Fixe le bouton par rapport à la fenêtre d'affichage */
    bottom: 20px;
    left: 20px;
    color: #fff;
    border-radius: 60px;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    z-index: 1000; /* Assure que le bouton est au-dessus d'autres éléments */
  }



  .btnDisabled{

    opacity: 0.5;
    pointer-events: none;

  }

.bg_custom {
   
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg_custom::before {

  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;

}



.El-disabled{

  pointer-events: none;

}