/*
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 */
.pulsable {
    z-index: 1;
    display: block;
    border-radius: 50%;
    position: absolute;
    background: #e6e6e6;
    width: 1px;
    height: 1px;
    top: 0px;
    left: 0px;
    box-shadow: 0 0 0 rgba(230, 230, 230, 0.6);
}

@keyframes pulsable-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 230, 230, 0.6);
    }
    50% {
        box-shadow: 0 0 0 200px rgba(230, 230, 230, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 230, 230, 0);
    }
}

.pulsable.animate {
    animation: pulsable-pulse 1s ease-out infinite;
}

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