@charset "UTF-8";
@import "../../theme/variables";
@import "~@jereation/sass-helpers/_mixins";

.errorMessage {
  margin-top: 20px;
  padding: 10px;
  .fa {
    color: orange;
  }
}

.spinner {
  margin: 5px;
  padding-top: 20px;
  text-align: center;
  i {
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    border: 2px solid #5f6bff;
    border-radius: 50%;
    border-bottom-color: transparent;
    background-color: transparent;
    @include animation-fill-mode(both);
    @include animation(rotate 0.9s 0s linear infinite);
  }
}

@-webkit-keyframes rotate {
  0% {
    @include transform(rotate(0deg) scale(1));
  }

  50% {
    @include transform(rotate(180deg) scale(.8));
  }

  100% {
    @include transform(rotate(360deg) scale(1));
  }
}

@keyframes rotate {
  0% {
    @include transform(rotate(0deg) scale(1));
  }

  50% {
    @include transform(rotate(180deg) scale(.8));
  }

  100% {
    @include transform(rotate(360deg) scale(1));
  }
}
