.ng-spin-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5999; }
  .ng-spin-overlay.ng-spin-overlay-bg-white {
    background-color: rgba(255, 255, 255, 0.5); }
  .ng-spin-overlay.ng-spin-overlay-bg-black {
    background-color: rgba(0, 0, 0, 0.5); }
  .ng-spin-overlay.ng-spin-overlay-bg-transparent {
    background-color: transparent; }

.ng-spin {
  position: fixed;
  z-index: 6000; }
  .ng-spin.ng-spin-position-left-top {
    left: 20px;
    top: 20px; }
  .ng-spin.ng-spin-position-right-top {
    right: 20px;
    top: 20px; }
  .ng-spin.ng-spin-position-left-bottom {
    left: 20px;
    bottom: 20px; }
  .ng-spin.ng-spin-position-right-bottom {
    right: 20px;
    bottom: 20px; }
  .ng-spin.ng-spin-position-center {
    left: 50%;
    top: 50%; }
    .ng-spin.ng-spin-position-center:not(.ng-spin-binary) {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }

.ng-spin-bars {
  width: 500px;
  height: 400px;
  text-align: center;
  /****************************************/ }
  .ng-spin-bars > div {
    height: 100%;
    width: 7px;
    display: inline-block;
    margin-right: 3px;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out; }
  .ng-spin-bars.ng-spin-size-sm {
    width: 40px;
    height: 30px; }
    .ng-spin-bars.ng-spin-size-sm > div {
      width: 6px;
      margin-right: 2px; }
  .ng-spin-bars.ng-spin-size-xs {
    width: 30px;
    height: 20px; }
    .ng-spin-bars.ng-spin-size-xs > div {
      width: 5px;
      margin-right: 1px; }
  .ng-spin-bars .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s; }
  .ng-spin-bars .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s; }
  .ng-spin-bars .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s; }
  .ng-spin-bars .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s; }

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1); } }

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1); } }

.ng-spin-big-bang {
  width: 40px;
  height: 40px; }
  .ng-spin-big-bang .double-bounce1,
  .ng-spin-big-bang .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out; }
  .ng-spin-big-bang .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s; }
  .ng-spin-big-bang.ng-spin-size-sm {
    width: 30px;
    height: 30px; }
  .ng-spin-big-bang.ng-spin-size-xs {
    width: 20px;
    height: 20px; }

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

.ng-spin-binary {
  width: 40px;
  height: 40px;
  text-align: center;
  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;
  /********************************************/ }
  .ng-spin-binary.ng-spin-size-sm {
    width: 30px;
    height: 30px; }
  .ng-spin-binary.ng-spin-size-xs {
    width: 20px;
    height: 20px; }
  .ng-spin-binary .dot1,
  .ng-spin-binary .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out; }
  .ng-spin-binary .dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s; }

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

.ng-spin-cubes {
  width: 40px;
  height: 40px;
  /********************************************************/ }
  .ng-spin-cubes .cube1, .ng-spin-cubes .cube2 {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
    animation: sk-cubemove 1.8s infinite ease-in-out; }
  .ng-spin-cubes .cube2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s; }

@-webkit-keyframes sk-cubemove {
  25% {
    -webkit-transform: translateX(26px) rotate(-90deg) scale(0.5); }
  50% {
    -webkit-transform: translateX(26px) translateY(26px) rotate(-180deg); }
  75% {
    -webkit-transform: translateX(0px) translateY(26px) rotate(-270deg) scale(0.5); }
  100% {
    -webkit-transform: rotate(-360deg); } }

@keyframes sk-cubemove {
  25% {
    transform: translateX(26px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(26px) rotate(-90deg) scale(0.5); }
  50% {
    transform: translateX(26px) translateY(26px) rotate(-179deg);
    -webkit-transform: translateX(26px) translateY(26px) rotate(-179deg); }
  50.1% {
    transform: translateX(26px) translateY(26px) rotate(-180deg);
    -webkit-transform: translateX(26px) translateY(26px) rotate(-180deg); }
  75% {
    transform: translateX(0px) translateY(26px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(26px) rotate(-270deg) scale(0.5); }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg); } }

.ng-spin-flipboard {
  width: 40px;
  height: 40px;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  /***************************************************/ }
  .ng-spin-flipboard.ng-spin-size-sm {
    width: 30px;
    height: 30px; }
  .ng-spin-flipboard.ng-spin-size-xs {
    width: 20px;
    height: 20px; }
  .ng-spin-flipboard .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  .ng-spin-flipboard .sk-cube > span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%; }
  .ng-spin-flipboard .sk-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg); }
  .ng-spin-flipboard .sk-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg); }
  .ng-spin-flipboard .sk-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg); }
  .ng-spin-flipboard .sk-cube2 > span {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s; }
  .ng-spin-flipboard .sk-cube3 > span {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s; }
  .ng-spin-flipboard .sk-cube4 > span {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s; }

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0; } }

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0; } }

.ng-spin-ping {
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out; }
  .ng-spin-ping.ng-spin-size-sm {
    width: 30px;
    height: 30px; }
  .ng-spin-ping.ng-spin-size-xs {
    width: 20px;
    height: 20px; }

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    opacity: 0; } }

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }

.ng-spin-plane {
  width: 40px;
  height: 40px;
  background-color: #333;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out; }
  .ng-spin-plane.ng-spin-size-sm {
    width: 30px;
    height: 30px; }
  .ng-spin-plane.ng-spin-size-xs {
    width: 20px;
    height: 20px; }

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px); }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); } }

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }

.ng-spin-snake {
  width: 40px;
  height: 40px;
  /*******************************************/ }
  .ng-spin-snake.ng-spin-size-sm {
    width: 30px;
    height: 30px; }
  .ng-spin-snake.ng-spin-size-xs {
    width: 20px;
    height: 20px; }
  .ng-spin-snake .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }
  .ng-spin-snake .sk-circle > span {
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both; }
  .ng-spin-snake .sk-circle2 {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg); }
  .ng-spin-snake .sk-circle3 {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg); }
  .ng-spin-snake .sk-circle4 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  .ng-spin-snake .sk-circle5 {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg); }
  .ng-spin-snake .sk-circle6 {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg); }
  .ng-spin-snake .sk-circle7 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  .ng-spin-snake .sk-circle8 {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg); }
  .ng-spin-snake .sk-circle9 {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg); }
  .ng-spin-snake .sk-circle10 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg); }
  .ng-spin-snake .sk-circle11 {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg); }
  .ng-spin-snake .sk-circle12 {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg); }
  .ng-spin-snake .sk-circle2 > span {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s; }
  .ng-spin-snake .sk-circle3 > span {
    -webkit-animation-delay: -1s;
    animation-delay: -1s; }
  .ng-spin-snake .sk-circle4 > span {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s; }
  .ng-spin-snake .sk-circle5 > span {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s; }
  .ng-spin-snake .sk-circle6 > span {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s; }
  .ng-spin-snake .sk-circle7 > span {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s; }
  .ng-spin-snake .sk-circle8 > span {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s; }
  .ng-spin-snake .sk-circle9 > span {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s; }
  .ng-spin-snake .sk-circle10 > span {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s; }
  .ng-spin-snake .sk-circle11 > span {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s; }
  .ng-spin-snake .sk-circle12 > span {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s; }

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0; }
  40% {
    opacity: 1; } }

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0; }
  40% {
    opacity: 1; } }

.ng-spin-sos {
  text-align: center; }
  .ng-spin-sos > div {
    width: 18px;
    height: 18px;
    background-color: #333;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both; }
  .ng-spin-sos .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s; }
  .ng-spin-sos .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s; }
  .ng-spin-sos.ng-spin-size-sm > div {
    width: 15px;
    height: 15px; }
  .ng-spin-sos.ng-spin-size-xs > div {
    width: 12px;
    height: 12px; }

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.ng-spin-worm {
  width: 40px;
  height: 40px;
  /****************************************************/ }
  .ng-spin-worm.ng-spin-size-sm {
    width: 30px;
    height: 30px; }
  .ng-spin-worm.ng-spin-size-xs {
    width: 20px;
    height: 20px; }
  .ng-spin-worm .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }
  .ng-spin-worm .sk-child > span {
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both; }
  .ng-spin-worm .sk-circle2 {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg); }
  .ng-spin-worm .sk-circle3 {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg); }
  .ng-spin-worm .sk-circle4 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  .ng-spin-worm .sk-circle5 {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg); }
  .ng-spin-worm .sk-circle6 {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg); }
  .ng-spin-worm .sk-circle7 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  .ng-spin-worm .sk-circle8 {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg); }
  .ng-spin-worm .sk-circle9 {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg); }
  .ng-spin-worm .sk-circle10 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg); }
  .ng-spin-worm .sk-circle11 {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg); }
  .ng-spin-worm .sk-circle12 {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg); }
  .ng-spin-worm .sk-circle2 > span {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s; }
  .ng-spin-worm .sk-circle3 > span {
    -webkit-animation-delay: -1s;
    animation-delay: -1s; }
  .ng-spin-worm .sk-circle4 > span {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s; }
  .ng-spin-worm .sk-circle5 > span {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s; }
  .ng-spin-worm .sk-circle6 > span {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s; }
  .ng-spin-worm .sk-circle7 > span {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s; }
  .ng-spin-worm .sk-circle8 > span {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s; }
  .ng-spin-worm .sk-circle9 > span {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s; }
  .ng-spin-worm .sk-circle10 > span {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s; }
  .ng-spin-worm .sk-circle11 > span {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s; }
  .ng-spin-worm .sk-circle12 > span {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s; }

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
