.reflection-effect {
    animation: refresh 1.7s ease-out forwards;
    animation-delay: 1s;
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff 50%, hsla(0, 0%, 100%, 0));
    height: 400%;
    left: -25%;
    position: absolute;
    top: 0;
    width: 200px
}

@keyframes refresh {
    0% {
        left: -25%;
        opacity: .5;
        width: 100px
    }

    60%,
    to {
        left: 120%;
        opacity: .3;
        width: 500px
    }
}

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