/*
Usage:
- linear-gradient((color1, color2, color3)) - returns linear-gradient with evenly distributed colors,
   if 3 colors used then the position of each will be 33,33%
- linear-gradient((color1 0%, color2 30%, color3 80%)) - returns linear-gradient with manually distributed colors,
   first param - color, second - position. Also you can use px or other valid units for set position.
*/
/* based on "visually-hidden" mixin in LDS for accessibility goals */
/*
 * Every style defined here must be mirrored with `writing-mode-horizontal-tb` mixin.
   Because writing-mode can be defined on 2 levels: a) item, b) text block or interaction;
     so if there's a horizontal block inside vertical item, vertical styles should *not* be used for it.
 */
/* Do not edit */
.badge-component {
  position: relative;
}
.badge-component .loader:not(.hidden) {
  position: relative;
  top: -1px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  animation: badge-component-rotate 1.4s infinite linear;
  background: linear-gradient(left, #e6e6e6 10%, rgba(230, 230, 230, 0) 42%);
  transform: translateZ(0);
}
@keyframes badge-component-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.badge-component .loader:not(.hidden):before {
  width: 50%;
  height: 50%;
  background: rgb(230, 230, 230);
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.badge-component .loader:not(.hidden):after {
  background: rgb(51, 51, 51);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.badge-component .badge {
  background: rgb(230, 230, 230);
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-size: 12px;
  font-size: 1.2rem;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 3px;
  padding-top: 1px;
  text-align: center;
  display: inline-block;
}
.badge-component .badge.badge-info {
  color: #e7eff4;
  background: #3e7da7;
}
.badge-component .badge.badge-success {
  color: #e7f4ed;
  background: #3ea76f;
}
.badge-component .badge.badge-warning {
  color: #faf0ee;
  background: rgb(209, 108, 85);
}
.badge-component .badge.badge-error {
  color: #f8e7ea;
  background: rgb(186, 18, 43);
}
.badge-component .badge.icon-result-ok::before {
  top: 3px;
  position: relative;
  color: blue;
}
.badge-component .badge-border {
  background: rgb(230, 230, 230);
  width: 21px;
  height: 21px;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 2px;
}
/*# sourceMappingURL=badge.css.map */