/**
 * These styles are used while the application is initializing.
 */
.loader {
  opacity: 1;
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 2;
}

.loader__svg {
  display: block;
  box-sizing: inherit;
}

.loader__rotate {
  width: 150px;
  height: 150px;
  color: #2196F3;
  -webkit-tap-highlight-color: transparent;
  -webkit-animation: rotateAnim 1.4s linear infinite;
  animation: rotateAnim 1.4s linear infinite;
}

.loader__circle {
  box-sizing: inherit;
  stroke: currentColor;
  stroke-dasharray: 80px,200px;
  stroke-dashoffset: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-animation: circleAnim 1.4s ease-in-out infinite;
  animation: circleAnim 1.4s ease-in-out infinite;
  color: #2196F3;
}

@keyframes rotateAnim {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


@keyframes circleAnim {
  0% {
    stroke-dasharray: 1px,200px;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100px,200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px,200px;
    stroke-dashoffset: -125px;
  }
}
