.loader{min-height: 100vh;
  z-index: 9999 !important;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
    background: #1a183f;
}

.disppear{
  animation: vanish 1s forwards;
}
@keyframes vanish {
  100%{
    opacity: 0;
    visibility: hidden;
  }
}

          .container-loader{
          display: flex;
          flex-direction: row;
              position: absolute;
              top: 50%;
              left: 50%;
              justify-content: center;
  align-items: center;
              transform: translate(-50%, -50%);
            
}
          
          .linked{
              font-weight: 600;
              font-size: 64px;
              color: #2764ac;
              margin-top: -42px;
          }


          .preload{
              position: absolute;
              left: 50%;
              margin-top: 68px;
              transform: translate(-50%, -50%);
              height: 5px;
              width: 240px;
              background-color: lightgray;
          }
          
          
          .loading{
              background: #2764ac;
              width: 80px;
              height: 5px;
              animation: anim 1.8s infinite;
              z-index: 9999 !important;
              
          }
@keyframes anim{
    0%{
        transform: translate(0px);
    }
    50%{
        transform: translate(160px);
    }
    100%{
        transform: translate(0px);
    }
}