@-webkit-keyframes shimmer {

0% {
  background-position: -100vw 0;
}
100% {
  background-position: 100vw 0;
}

}

@keyframes shimmer {

0% {
  background-position: -100vw 0;
}
100% {
  background-position: 100vw 0;
}

}

.shimmer {

position: relative;
background: linear-gradient(to right, #e2e2e2 2%, #b4b4b4 35%, #e2e2e2 40%);
background-size: 2800px 104px;
-webkit-animation: shimmer 1s linear infinite;
animation: shimmer 1s linear infinite;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;

} /*# sourceMappingURL=mekari-ui-shimmer.css.map */