/*
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 */
/* 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: #e6e6e6;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.badge-component .loader:not(.hidden):after {
    background: #333333;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.badge-component .badge {
    background: #e6e6e6;
    -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: #d16c55;
}

.badge-component .badge.badge-error {
    color: #f8e7ea;
    background: #ba122b;
}

.badge-component .badge.icon-result-ok::before {
    top: 3px;
    position: relative;
    color: blue;
}

.badge-component .badge-border {
    background: #e6e6e6;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 2px;
}

/*# sourceMappingURL=badge.css.map */