﻿#loading-spinner {
    display: none;
}

.LoadingSpinner-Label {
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto;
    margin-top: 10px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    font-family: Akkurat LL TT, Neue Helvetica W01, Helvetica Neue NT, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
}

.LoadingSpinnerDiv {
    display: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-direction: column;
    align-items: center;
    height: auto;
    margin-top: 10%;
}

.LoadingSpinner-Wrapper {
    min-width: 40%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.LoadingSpinner-Icon--dark {
    color: #666666;
}

.LoadingSpinner-Icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.LoadingSpinner-Label--dark {
    color: #666666;
}


@media (min-width: 768px) {
    .LoadingSpinner-Wrapper {
        min-width: 28%;
    }

    .LoadingSpinner-Label {
        font-size: 1.28571429rem;
    }
}
@keyframes spin {
    to {
      transform: rotate(1turn);
    }
  }
  
  :host {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  
  .LoadingSpinner {
    width: 64px;
    height: 64px;
    border: solid #E6E6E6 6px;
    border-radius: 50%;
    border-left-color: #0065F2;
    animation: spin 1s infinite linear;
  
    &:before,
    &:after {
      content: '';
      position: absolute;
      border-radius: 50%;
      background: #0065F2;
      left: 6px;
    }
  
    &:before {
      top: 3px;
      width: 6px;
      height: 6px;
    }
  
    &:after {
      bottom: 3px;
      width: 6px;
      height: 6px;
    }
  }  