div.container-loader {
    background-color: transparent;

    position: absolute;
    left: 50%;
    top: 50%;
    height: 80px;
    transform: translate(-50%, -50%);
  }

  div.line-loader {
    position: relative;
    background-color: #67676780;
    display: inline-block;
    height: 0px;
    border-radius: 5px;
    width: 5px;
    margin: 5px;
    animation: line-loader  ease-in-out infinite 0.9s; 
  }
  @keyframes line-loader {
      0%, 100% {
          height: 0px;
          margin-top: 60px;
      }
      50% {
          height: 50px;
          margin-top: 10px;
      }
  }


  div.d1 {
    animation-delay: 0.15s;
  }
  div.d2 {
    animation-delay: 0.3s;
  }
  div.d3 {
    animation-delay: 0.45s;
  }
  div.d4 {
    animation-delay: 0.6s;
  }
  div.d5 {
    animation-delay: 0.75s;
  }
  div.d6 {
    animation-delay: 0.9s;
  }



  div.caption-loader {
    text-align: center;
    color: #67676790;
    font-family: "Noto Sans", sans-serif;
    font-weight: bold;
  }

  div.dot-loader {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    font-size: 3rem;
    animation: dot-loader 1s infinite linear;
  }

  div.dot-loader:nth-child(2) {
    animation-delay: 0.2s;
  }

  div.dot-loader:nth-child(3) {
    animation-delay: 0.4s;
  }

  @keyframes dot-loader {
    0%,
    100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }

  /* div.container-loader ::selection {
    background-color: transparent;
  } */