@keyframes spin {
    0% {
      transform: rotate(0deg)
    }
    100% {
      transform: rotate(359deg)
    }
  }
  
  .ltr-SvgIcon {
    fill: currentColor
  }
  
  .ltr-SvgIcon.is-disabled {
    color: #afbacc !important
  }
  
  .ltr-SvgIcon--spin {
    animation: spin 2s infinite linear
  }
  
  .ltr-SvgIcon--gear,
  .ltr-SvgIcon--help,
  .ltr-SvgIcon--feedback {
    color: #707a8a
  }
  
  .ltr-SvgIcon--taskInProgress,
  .ltr-SvgIcon--taskBlocked,
  .ltr-SvgIcon--taskCompleted {
    position: absolute;
    left: 0;
    top: 0
  }
  
  svg,
  path,
  g,
  desc,
  title {
    pointer-events: none
  }
  
  .ltr-pageLoader {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0;
    display: flex;
    color: #58606e;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    z-index: 999;
    display: none;
  }
  
  .ltr-pageLoader-box {
    background-color: #fff;
    border-radius: 0.2rem;
    left: auto;
    max-width: 85%;
    padding: 0.5rem;
    position: absolute;
    right: auto;
    top: auto;
    box-shadow: 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 40%);
  }
  
  .ltr-SvgIcon {
    fill: currentColor;
  }
  
  .ltr-LoadingIndicator {
    animation-name: spin;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    color: #11b232;
  }
  
  .ltr-pageLoader-box .ltr-LoadingIndicator {
    margin-right: 0.5rem;
    vertical-align: middle;
  }
  
  .ltr-pageLoader-message {
    font-size: 1.2rem;
    vertical-align: middle;
  }