@keyframes bounce_small {

    0%,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -10px, 0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -10px, 0)
    }

    85% {
        transform: translate3d(0, -2px, 0)
    }
}

.bounce_small {
    animation-name: bounce_small;
    transform-origin: center bottom;
    animation-duration: 2s;
    animation-fill-mode: both
}

@keyframes bounce_small_infinite {

    0%,
    10%,
    26.5%,
    40%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }

    20%,
    21.5% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -10px, 0)
    }

    35% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -10px, 0)
    }

    42.5% {
        transform: translate3d(0, -2px, 0)
    }
}

.bounce_small_infinite {
    animation-name: bounce_small_infinite;
    transform-origin: center bottom;
    animation-duration: 4s;
    animation-fill-mode: both;
    animation-iteration-count: infinite
}

@keyframes jello_small {

    0%,
    11.1%,
    to {
        transform: translateZ(0)
    }

    22.2% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    33.3% {
        transform: skewX(3.125deg) skewY(3.125deg)
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello_small {
    animation-name: jello_small;
    transform-origin: center;
    animation-duration: 2s;
    animation-fill-mode: both
}

@keyframes jello_small_infinite {

    0%,
    5.55%,
    50% {
        transform: translateZ(0)
    }

    11.1% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    16.65% {
        transform: skewX(3.125deg) skewY(3.125deg)
    }

    22.2% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    27.75% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    33.3% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    38.85% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    44.4% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello_small_infinite {
    animation-name: jello_small_infinite;
    transform-origin: center;
    animation-duration: 4s;
    animation-fill-mode: both;
    animation-iteration-count: infinite
}

@keyframes pulse_small {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.pulse_small {
    animation-name: pulse_small;
    transform-origin: center;
    animation-duration: 2s;
    animation-fill-mode: both
}

@keyframes pulse_small_infinite {
    0% {
        transform: scaleX(1)
    }

    25% {
        transform: scale3d(1.05, 1.05, 1.05)
    }

    50% {
        transform: scaleX(1)
    }
}

.pulse_small_infinite {
    animation-name: pulse_small_infinite;
    transform-origin: center;
    animation-duration: 4s;
    animation-fill-mode: both;
    animation-iteration-count: infinite
}

@keyframes shake_small {

    0%,
    to {
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-5px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        transform: translate3d(5px, 0, 0)
    }
}

.shake_small {
    animation-name: shake_small;
    transform-origin: center;
    animation-duration: 2s;
    animation-fill-mode: both
}

@keyframes shake_small_infinite {

    0%,
    to {
        transform: translateZ(0)
    }

    15%,
    25%,
    35%,
    45%,
    5% {
        transform: translate3d(-5px, 0, 0)
    }

    10%,
    20%,
    30%,
    40% {
        transform: translate3d(5px, 0, 0)
    }

    50% {
        transform: translateZ(0)
    }
}

.shake_small_infinite {
    animation-name: shake_small_infinite;
    transform-origin: center;
    animation-duration: 4s;
    animation-fill-mode: both;
    animation-iteration-count: infinite
}

@keyframes tada_small {
    0% {
        transform: scaleX(1)
    }

    10%,
    20% {
        transform: scale3d(.95, .95, .95) rotate(-1.5deg)
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.05, 1.05, 1.05) rotate(1.5deg)
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.05, 1.05, 1.05) rotate(-1.5deg)
    }

    to {
        transform: scaleX(1)
    }
}

.tada_small {
    animation-name: tada_small;
    transform-origin: center;
    animation-duration: 2s;
    animation-fill-mode: both
}

@keyframes tada_small_infinite {
    0% {
        transform: scaleX(1)
    }

    10%,
    5% {
        transform: scale3d(.95, .95, .95) rotate(-1.5deg)
    }

    15%,
    25%,
    35%,
    45% {
        transform: scale3d(1.05, 1.05, 1.05) rotate(1.5deg)
    }

    20%,
    30%,
    40% {
        transform: scale3d(1.05, 1.05, 1.05) rotate(-1.5deg)
    }

    50% {
        transform: scaleX(1)
    }
}

.tada_small_infinite {
    animation-name: tada_small_infinite;
    transform-origin: center;
    animation-duration: 4s;
    animation-fill-mode: both;
    animation-iteration-count: infinite
}

@keyframes wobble_small {
    0% {
        transform: translateZ(0)
    }

    15% {
        transform: translate3d(-3%, 0, 0) rotate(-3deg)
    }

    30% {
        transform: translate3d(3%, 0, 0) rotate(3deg)
    }

    45% {
        transform: translate3d(-3%, 0, 0) rotate(-3deg)
    }

    60% {
        transform: translate3d(2%, 0, 0) rotate(2deg)
    }

    75% {
        transform: translate3d(-1%, 0, 0) rotate(-1deg)
    }

    to {
        transform: translateZ(0)
    }
}

.wobble_small {
    animation-name: wobble_small;
    animation-duration: 2s;
    animation-fill-mode: both
}

@keyframes wobble_small_infinite {
    0% {
        transform: translateZ(0)
    }

    7.5% {
        transform: translate3d(-3%, 0, 0) rotate(-5deg)
    }

    15% {
        transform: translate3d(3%, 0, 0) rotate(3deg)
    }

    22.5% {
        transform: translate3d(-3%, 0, 0) rotate(-3deg)
    }

    30% {
        transform: translate3d(2%, 0, 0) rotate(2deg)
    }

    37.5% {
        transform: translate3d(-1%, 0, 0) rotate(-1deg)
    }

    50% {
        transform: translateZ(0)
    }
}

.wobble_small_infinite {
    animation-name: wobble_small_infinite;
    animation-duration: 4s;
    animation-fill-mode: both;
    animation-iteration-count: infinite
}

@keyframes fadein {
    0% {
        opacity: 0
    }

    66% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.glowing-wrapper-button:after {
    background: radial-gradient(85% 120% at 50% 120%, hsla(0, 0%, 100%, .24) 0, hsla(0, 0%, 100%, 0) 100%);
    border-radius: 999px;
    content: "";
    height: calc(100% + 4px);
    left: -2px;
    opacity: 0;
    position: absolute;
    top: -2px;
    transition: all 1s;
    width: calc(100% + 4px)
}

.glowing-wrapper-button:hover:after {
    opacity: .7
}

.glowing-wrapper-active .glowing-wrapper-animations,
.glowing-wrapper-active .glowing-wrapper-borders-masker {
    opacity: 1
}

.glowing-wrapper-animations:before,
.glowing-wrapper-borders:before {
    content: "";
    float: left;
    padding-top: 100%
}

.glowing-wrapper-animations:after,
.glowing-wrapper-borders:after {
    clear: both;
    content: "";
    display: block
}

.glowing-wrapper-animations {
    pointer-events: none
}

.glowing-wrapper-animations * {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.glowing-wrapper-borders,
.glowing-wrapper-glow,
.glowing-wrapper-mask {
    animation: borderTurn 2.5s linear infinite;
    background-image: conic-gradient(from 0 at 50% 50%, hsla(0, 0%, 100%, .5) 0deg, hsla(0, 0%, 100%, 0) 60deg, hsla(0, 0%, 100%, 0) 310deg, hsla(0, 0%, 100%, .5) 1turn);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

.glowing-wrapper-mask-wrapper {
    -webkit-mask: url(data:image/svg%20xml;base64,PHN2ZyB3aWR0aD0nMjgnIGhlaWdodD0nMjQnIHZpZXdCb3g9JzAgMCAyOCAyNCcgZmlsbD0nbm9uZSc+PHJlY3Qgd2lkdGg9JzI4JyBoZWlnaHQ9JzI0JyBmaWxsPSdibGFjaycvPjwvc3ZnPgon);
    mask: url(data:image/svg%20xml;base64,PHN2ZyB3aWR0aD0nMjgnIGhlaWdodD0nMjQnIHZpZXdCb3g9JzAgMCAyOCAyNCcgZmlsbD0nbm9uZSc+PHJlY3Qgd2lkdGg9JzI4JyBoZWlnaHQ9JzI0JyBmaWxsPSdibGFjaycvPjwvc3ZnPgon);
    -webkit-mask-repeat: repeat;
    mask-repeat: repeat;
    -webkit-mask-size: auto;
    mask-size: auto
}

.glowing-wrapper-borders {
    animation-name: borderTurnWithTranslate
}

.glowing-wrapper-borders-masker {
    content: "";
    inset: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

@keyframes borderTurn {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes borderTurnWithTranslate {
    0% {
        transform: translate(-50%, -50%) rotate(0)
    }

    to {
        transform: translate(-50%, -50%) rotate(1turn)
    }
}

.glowing-wrapper {
    border-radius: 62.5rem;
    display: inline-block;
    position: relative;
    overflow: hidden
}

.glowing-wrapper.glowing-wrapper-active {
    transform: scaleX(1none);
    transform-style: preserve-3d
}

.glowing-wrapper-animations {
    width: 100%;
    opacity: 0;
    transition: opacity 1s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.glowing-wrapper-glow {
    opacity: .12;
    filter: blur(8px)
}

.glowing-wrapper-mask,
.glowing-wrapper-mask-wrapper {
    opacity: 1
}

.glowing-wrapper-borders-masker {
    width: 100%;
    opacity: 0;
    border-radius: 62.5rem;
    padding: .06rem;
    line-height: 100%;
    transition: opacity 1s;
    position: absolute;
    top: 0;
    left: 0
}

.glowing-wrapper-borders {
    width: 100%;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.glowing-wrapper-button {
    z-index: 1;
    grid-column-gap: .5rem;
    transform: scaleX(1none);
    color: #fff;
    letter-spacing: -.01em;
    transform-style: preserve-3d;
    background-color: transparent;
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 62.5rem;
    align-items: center;
    padding: .5rem .75rem;
    font-size: .88rem;
    line-height: 1.42;
    text-decoration: none;
    display: flex;
    position: relative
}