.v-ripple__container {
  z-index: 0;
  width: 100%;
  height: 100%;
  contain: strict;
  margin: 0 !important;
  border-radius: inherit;
  &, .v-ripple__animation {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: inherit;
    pointer-events: none;
  }
  .v-ripple__animation {
    border-radius: 50%;
    opacity: 0;
    background: currentColor;
    will-change: transform,opacity;
    &.v-ripple__animation--enter {
      transition: none;
    }
    &.v-ripple__animation--in {
      transition: transform .25s cubic-bezier(.4,0,.2,1),opacity .1s cubic-bezier(.4,0,.2,1);
    }
    &.v-ripple__animation--out {
      transition: opacity .3s cubic-bezier(.4,0,.2,1);
    }
  }
}
