.loader {
    position: fixed;
    top: 40%;
    left: 48%;
    transform: translateX(-50%);
    display: block;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    z-index: 1000;
}
.loader-text{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background-color: #fff;
    color:#000;
    z-index: 1000;
    padding: 5px;
    direction: rtl;
    text-align: center;
    border-radius: 10px;
}
.showOnLoad{
    display: none !important;
}
.showOnLoadPage{
    opacity: 0;
}
/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loaderA {
    cursor: pointer;
}
.spinner-box {
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
  }
  /* PULSE BUBBLES */

.pulse-container {
    width: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .pulse-bubble {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #3ff9dc;
  }
  
  .pulse-bubble-1 {
      animation: pulse .4s ease 0s infinite alternate;
  }
  .pulse-bubble-2 {
      animation: pulse .4s ease .2s infinite alternate;
  }
  .pulse-bubble-3 {
      animation: pulse .4s ease .4s infinite alternate;
  }
  @media only screen and (max-width: 500px){
    .loader-text{
        left: 37%;
    }
  }