.svv-wgt-modal-container,
#svv-wgt-app {
  .loading-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    top: 0;
    left: 0;

    .loading-overlay-inner {
      display: flex;
      height: 100%;
      justify-content: center;
      align-items: center;
    }
  }
  .loader-line {
    width: 200px;
    height: 3px;
    position: relative;
    overflow: hidden;
    background-color: $svv_white;
    margin: 100px auto;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }

  .loader-line:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 3px;
    width: 40%;
    background-color: $svv_blue_ultra_dark;
    -webkit-animation: lineAnim 1s linear infinite;
    -moz-animation: lineAnim 1s linear infinite;
    animation: lineAnim 1s linear infinite;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }

  @keyframes lineAnim {
    0% {
      left: -40%;
    }
    50% {
      left: 20%;
      width: 80%;
    }
    100% {
      left: 100%;
      width: 100%;
    }
  }
}
