/*
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 */
.absorbable {
  z-index: 1;
  border-radius: 0%;
  background: rgb(230, 230, 230);
  opacity: 0;
}
.absorbable.animate {
  transform: translateZ(0);
  transition-timing-function: cubic-bezier(0.2, 0.6, 1, 0.4);
  animation: absorbable-opacity 2s cubic-bezier(0.2, 0.6, 1, 0.4) 1;
}
@keyframes absorbable-opacity {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.3;
    border-radius: 20%;
  }
  60% {
    opacity: 0.9;
  }
  100% {
    border-radius: 50%;
  }
}
.absorbable .example {
  display: grid;
  transition: all 0.5s;
  -webkit-user-select: none;
          user-select: none;
  background: linear-gradient(to bottom, white, black);
}
/*# sourceMappingURL=absorb.css.map */