@font-face {
  font-family: 'ouio-icons';
  src: url('./iconfont.woff') format('woff'),
    url('./iconfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

[class^="ouio-icon-"], [class*=" ouio-icon-"] {
  font-family: 'ouio-icons' !important;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: baseline;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.@{class-prefix} {
  &-icon-right:before {
    content: "\e7eb";
  }

  &-icon-left:before {
    content: "\e7ec";
  }

  &-icon-up:before {
    content: "\e7ed";
  }

  &-icon-down:before {
    content: "\e7ee";
  }

  &-icon-caret-down:before {
    content: "\e8ec";
  }

  &-icon-caret-up:before {
    content: "\e8ed";
  }

  &-icon-caret-right:before {
    content: "\e8ee";
  }

  &-icon-caret-left:before {
    content: "\e8ef";
  }

  &-icon-loading {
    animation: rotating 1s linear infinite;
    &:before {
      content: "\e72a";
    }
  }
}


@keyframes rotating {
  0% {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(1turn)
  }
}

