#loader-set {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    position: fixed;
    letter-spacing: 1px;
  }
  
  .inner-loader-set {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.7);
  }
  
  .inner-loader {
    color: #111111;
    width:160px;
    font-size: 36px;
    font-weight: bold;
    position: relative;
  }
  
  .inner-loader::before {
    content: "";
    left: 27px;
    bottom: 12px;
    width: 25px;
    height: 25px;
    position: absolute;
    border-radius: 50%;
    border: 4px solid #e9e9e9;
    border-bottom-color: #55abf2;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
  }
  
  /* keyFrames */
  
  @-webkit-keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }