/*
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 */
.loading-button [class^="icon-"], .loading-button [class*=" icon-"] {
    padding: 0;
}

.loading-button .action-label, .loading-button .terminated-label {
    margin-left: 9px;
}

.loading-button .spinner-icon, .loading-button .terminated-label {
    display: none;
}

.loading-button.started {
    cursor: default;
    opacity: 0.5;
}

.loading-button.started .spinner-icon {
    display: inline-block;
    transform: translateZ(0);
    transform-origin: 50% 50%;
    animation: loading-button-rotate 1.4s infinite linear;
}

@keyframes loading-button-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-button.started .start-icon {
    display: none;
}

.loading-button.terminated .action-label {
    display: none;
}

.loading-button.terminated .terminated-label {
    display: inline-block;
}

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