/*
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 */
.tree-button-component .spinner-icon {
    font-size: 17px;
    font-size: 1.7rem;
    width: 17px;
    height: 17px;
    display: none;
    margin: 12px auto 4px;
}

.tree-button-component.started {
    background: #ddd;
    color: #666;
}

.tree-button-component.started .li-inner {
    cursor: progress;
}

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

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

.tree-button-component.started .start-icon {
    display: none !important;
}

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