@font-face {
  font-family: "icomoon";
  src: url("./fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot") format("embedded-opentype"),
    url("../fonts/icomoon.ttf") format("truetype"),
    url("../fonts/icomoon.woff") format("woff"),
    url("../fonts/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.size-inherit {
  font-size: inherit !important;
  line-height: inherit !important;
  height: unset !important;
  margin: unset !important;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-login:before {
  content: "\ea13";
}
.icon-logout:before {
  content: "\ea14";
}
.icon-pause:before {
  content: "\ea1d";
}
.icon-play:before {
  content: "\ea1c";
}
.icon-key:before {
  content: "\e98e";
}
.icon-cross:before {
  content: "\ea0f";
}
.icon-enter:before {
  content: "\ea15";
}
.icon-exit:before {
  content: "\ea16";
}
.icon-upload:before {
  content: "\f0ee";
}
.icon-check:before {
  content: "\f00c";
}
.icon-cog:before {
  content: "\f013";
}
.icon-gear:before {
  content: "\f013";
}
.icon-download:before {
  content: "\f019";
}
.icon-arrow-up:before {
  content: "\f062";
}
.icon-arrow-down:before {
  content: "\f063";
}
.icon-share:before {
  content: "\f064";
}
.icon-rotate-left:before {
  content: "\f0e2";
}
.icon-undo:before {
  content: "\f0e2";
}
.icon-doc:before {
  content: "\f0f6";
}

@keyframes anim-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinner {
  display: inline-block;
  font-size: 4em;
  height: 1em;
  line-height: 1;
  margin: 0.5em;
  animation: anim-rotate 2s infinite linear;
  color: #fff;
  text-shadow: 0 0 0.25em rgba(255, 255, 255, 0.3);
}
.spinner--steps {
  animation: anim-rotate 1s infinite steps(8);
}
.spinner--steps2 {
  animation: anim-rotate 1s infinite steps(12);
}
