/* loader */
.loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #c3f6ff;
    display:flex;
    justify-content: center;
    align-items: center;
    z-index: 2147483647;
  }

  .loader img{
    content: " ";
    position: fixed;
    top: 40%;
    left: 50%;
    width: 120px;
    height: 120px;
    animation: loader 2s ease-in-out infinite;
    transform: translate(-50%, 0); 
  }
  
  .loader-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00bcd4;
    text-align: center;
    margin-top: 180px;
  }

  @keyframes loader {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }