@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Oranienbaum&display=swap');

:root {
    --body-text: #000;
    --body-bg: #fff;
}

@keyframes backgroundAnimation {
    0% {
        background-size: 120%;
        opacity: 1;
    }
    50% {
        background-size: 160%;
        opacity: .6;
    }
    100% {
        background-size: 130%;
        opacity: 1;
    }
}

html,
body {
    overflow: hidden;
    height: 100vh;
}

body {
    position: fixed;
    width: 100vw;
    min-height: 100vh;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-size: 1rem;
    font-style: normal;
    color: var(--body-text);
    margin: 0;
    padding: 0;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgb(168, 204, 230), rgb(194, 201, 207), rgb(231, 154, 154));
        background-size: cover;
        animation: backgroundAnimation 10s infinite alternate;
    }

    input,
    button {
        font-family: "Jost", sans-serif;
    }

    * {
        transition-duration: .3s;

        &:focus,
        &:hover {
            transition-duration: .3s;
        }
    }
}

.select-container,
input {
    background-color: rgba(255, 255, 255, .5);
    color: var(--body-text);
    border: 1px solid rgba(0, 0, 0, .5);
    padding: 1rem;
    outline: 0;
    border-radius: 1rem 0 1rem 0;
    font-size: 1.5rem;
    width: 100%;
    text-transform: uppercase;

    &::placeholder {
        color: var(--body-text);
    }

    &:focus {
        box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .3);
        background-color: var(--body-bg);
    }

    &:-webkit-autofill,
    &:-webkit-autofill:hover,
    &:-webkit-autofill:focus {
        background-color: transparent !important;
    }

    @media (max-width: 768px) {
        width: auto;
    }
}

.select-container {
    width: 100%;
    box-sizing: border-box;

    select {
        font-size: 1.2rem;
        background-color: transparent;
        border: 0;
        outline: 0;
    }
}


#email {
    text-transform: none;

    @media (min-width: 768px) {
        width: 50%;
    }
}

button,
button:after {
    cursor: pointer;
    text-transform: uppercase;
    width: 200px;
    height: 76px;
    line-height: 78px;
    font-size: 20px;
    font-family: 'Bebas Neue', sans-serif;
    background: linear-gradient(45deg, transparent 5%, #FF013C 5%);
    border: 0;
    color: #fff;
    letter-spacing: 3px;
    box-shadow: 6px 0px 0px #00E6F6;
    outline: transparent;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

button:after {
    --slice-0: inset(50% 50% 50% 50%);
    --slice-1: inset(80% -6px 0 0);
    --slice-2: inset(50% -6px 30% 0);
    --slice-3: inset(10% -6px 85% 0);
    --slice-4: inset(40% -6px 43% 0);
    --slice-5: inset(80% -6px 5% 0);

    content: 'Start now';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 3%, #00E6F6 3%, #00E6F6 5%, #FF013C 5%);
    text-shadow: -3px -3px 0px #F8F005, 3px 3px 0px #00E6F6;
    clip-path: var(--slice-0);
}

button:hover:after {
    animation: 1s glitch;
    animation-timing-function: steps(2, end);
}

@keyframes glitch {
    0% {
        clip-path: var(--slice-1);
        transform: translate(-20px, -10px);
    }
    10% {
        clip-path: var(--slice-3);
        transform: translate(10px, 10px);
    }
    20% {
        clip-path: var(--slice-1);
        transform: translate(-10px, 10px);
    }
    30% {
        clip-path: var(--slice-3);
        transform: translate(0px, 5px);
    }
    40% {
        clip-path: var(--slice-2);
        transform: translate(-5px, 0px);
    }
    50% {
        clip-path: var(--slice-3);
        transform: translate(5px, 0px);
    }
    60% {
        clip-path: var(--slice-4);
        transform: translate(5px, 10px);
    }
    70% {
        clip-path: var(--slice-2);
        transform: translate(-10px, 10px);
    }
    80% {
        clip-path: var(--slice-5);
        transform: translate(20px, -10px);
    }
    90% {
        clip-path: var(--slice-1);
        transform: translate(-10px, 0px);
    }
    100% {
        clip-path: var(--slice-1);
        transform: translate(0);
    }
}

@media (min-width: 768px) {
    button,
    button:after {
        width: 200px;
        height: 86px;
        line-height: 88px;
    }
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2rem;

    @media (max-width: 768px) {
        display: block;
    }
}

.form-group__append {
    padding-left: 1rem;
    font-size: 1.5rem;
    color: var(--body-bg);
    text-shadow: 1px 1px 2px var(--body-text),
    0 0 1em var(--body-bg),
    0 0 0.2em var(--body-text);

    @media (max-width: 768px) {
        padding-left: 0;
        padding-top: 1rem;
    }
}

canvas {
    background-color: rgba(255, 255, 255, 0.05);
    display: block;
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 400;
}

footer {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;

    .title {
        font-family: "Oranienbaum", serif;
        font-size: 3rem;
        letter-spacing: -2px;

        span {
            font-style: italic;
        }
    }

    @media (max-width: 768px) {
        bottom: 3rem;

        .title {
            font-size: 2rem;
            letter-spacing: 0;
        }
    }
}

body.tryout-in-progress {
    background: linear-gradient(135deg, rgb(168, 204, 230), rgb(194, 201, 207), rgb(231, 154, 154));
    background-size: cover;


    &::before {
        display: none;
    }

    footer {
        display: block;

        @media (max-width: 768px) {
            bottom: 3rem;
        }
    }

    #precision-container {
        display: block;
    }

    #show-result,
    #user-form-container {
        display: none;
    }
}

body.tryout-finished {
    background-image: url("images/home.png");
    background-size: cover;
    background-position: center;
    animation: backgroundAnimation 60s infinite alternate;

    &::before {
        opacity: 0 !important;
        transition-duration: 1s;
    }

    canvas {
        filter: blur(.8rem);
        transition-duration: 1s;
    }

    #show-result {
        display: flex;
    }

    #user-form-container,
    #results-container,
    #precision-container,
    #tryout-number,
    #calculating {
        display: none !important;
    }

    @media (max-width: 768px) {
        background-image: url("images/home-m.png");
    }
}

#precision-container {
    display: none;
    position: fixed;
    top: 0;
    left: 1rem;
    right: 1rem;
    text-align: center;
    color: var(--body-text);
    padding: 10px;
    border-radius: 8px;
}

#progress-bar {
    position: relative;
    height: .2rem;
    width: 100%;
    background-color: #ddd;
    overflow: hidden;
    margin-top: 5px;
}

#progress-bar-fill {
    height: 100%;
    width: 0;
    background-color: red; /* Default color */
    border-radius: 10px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.match-percent {
    font-size: 4.5rem;
    font-family: "Oranienbaum", serif;
    letter-spacing: -2px;
    font-weight: bold;
    color: var(--body-text);
    margin: 0 0 .5rem;

    @media (max-width: 768px) {
        font-size: 2rem;
        letter-spacing: 0;

    }
}

h1 {
    text-align: center;
    color: var(--body-bg);
    text-shadow: 1px 1px 2px var(--body-text),
    0 0 1em var(--body-bg);
    margin-bottom: 2rem;
}

#user-form-container {
    position: fixed;
    top: 3rem;
    right: 3rem;
    left: 3rem;
    bottom: 3rem;
    color: var(--body-text);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 1rem;
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, .5);
    overflow: hidden;

    &::before {
        transition-duration: .3s;
        content: "";
        position: absolute;
        top: -3rem;
        right: -3rem;
        left: -3rem;
        bottom: -3rem;
        background-image: url("images/body.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
        opacity: 1;

        @media (max-width: 768px) {
            background-image: url("images/body-m.png");
        }
    }

    &::after {
        position: absolute;
        top: -3rem;
        right: -3rem;
        left: -3rem;
        bottom: -3rem;
        z-index: 400;
    }

    &:hover {
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        border-color: rgba(0, 0, 0, 0);
        border-width: .5rem;
        border-radius: 0;

        &::before {
            transition-duration: .3s;
            background-position: top center;
            opacity: .9;
            border-radius: 1rem;
            animation: backgroundAnimation 60s infinite alternate;
        }
    }

    form {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    @media (max-width: 768px) {
        top: 0;
        right: 0;
        left: 0;
        bottom: 2.6rem;
        padding: .5rem;
        border-radius: 0;

        form {
            align-items: center;
        }
    }
}

#results-container {
    position: fixed;
    top: 8.8rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--body-text);
    padding: 0 .7rem;
    display: flex;
    flex-direction: column;
    background-color: var(--body-bg);
    height: 1.2rem;
    border-radius: .5rem;

    .counts {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        margin-top: -.65rem;
    }

    p {
        display: flex;
    }

    .result-container {
        display: none;
        align-items: center;
        margin: 0 1rem 0 0;
    }

    .result-container:last-child {
        margin-right: 0;
    }
}

#user-name {
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;

    @media (max-width: 768px) {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.result {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 .3rem;
    font-weight: bold;
}

.results-count {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #00E6F6;
    border: 4px solid var(--body-bg);
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

#show-result {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 500;
    color: var(--body-text);
    padding: 20px;
    border-radius: 8px;
    flex-direction: column;

    @media (max-width: 768px) {
        padding-bottom: 4rem;
        flex-direction: column;
        justify-content: space-between;
        height: 100vh;
        box-sizing: border-box;

        * {
            box-sizing: border-box;
        }
    }
}

#save-message {
    font-size: 2rem;
    line-height: 1.2rem;
    font-weight: bold;
    text-align: center;
    max-width: 60rem;
    display: block;
    margin: 0 auto;

    span {
        text-transform: uppercase;
        color: var(--body-text);
    }

    div {
        padding-top: 1rem;
        font-size: 1rem;
    }

    @media (max-width: 768px) {
        font-size: 1rem;

        div {
            font-size: .8rem;
        }
    }
}

#top-entries-container {
    background-color: var(--body-bg);
    margin: 2rem auto;
    padding: 0 0 2rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 60rem;

    @media (max-width: 768px) {
        min-width: 75%;
        padding-bottom: 0;
        margin-bottom: 0;
        height: calc(100vh - 14rem);
    }
}

#top-entries {

    @media (max-width: 768px) {
        overflow: hidden;
        position: relative;
        top: -18px;
    }
}

#top-entries-title {
    font-family: "Oranienbaum", serif;
    font-size: 2rem;
    text-shadow: 3px 3px 0 var(--body-bg),
    -1px -1px 0 var(--body-bg),
    1px -1px 0 var(--body-bg),
    -1px 1px 0 var(--body-bg),
    1px 1px 0 var(--body-bg);
    margin: 0;
    text-align: center;
    position: relative;
    top: -1.2rem;
}

#congratulations-message {
    animation: fadeInOut 2s ease-in-out;
}

@keyframes pulsate {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(10);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(100);
        opacity: 0;
    }
}

#tryout-number {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--body-text);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
}

#tryout-text {
    z-index: 1;
    user-select: none;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    color: #FF013C;
    animation: pulsate 1s 1;
}

#calculating {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    z-index: 400;

    p {
        margin: 0;
    }
}

@keyframes progress {
    0% {
        content: 'Calculating';
    }
    33% {
        content: 'Calculating..';
    }
    66% {
        content: 'Calculating...';
    }
    100% {
        content: 'Calculating.';
    }
}

#calculating p::after {
    content: 'Calculating';
    animation: progress 1s infinite;
}

.logo {
    position: fixed;
    bottom: 5rem;
    left: 0;
    z-index: 9999;
    width: 7rem;
    background-color: var(--body-bg);
    padding: .5rem .8rem .1rem 5rem;

    img {
        width: 100%;
        height: auto;
    }

    @media (max-width: 1421px) and (min-width: 1178px) {
        bottom: 0;
        transform: rotate(-90deg);
        left: -3rem;
    }

    @media (max-width: 1179px) {
        bottom: 0;
        right: 0;
        width: auto;
        text-align: center;
        padding-left: .5rem;

        img {
            width: 3.5rem;
        }
    }
}

#top-list {
    margin: 0;
    overflow: auto;
    height: 65vh;
    padding: 0;

    li {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: .5rem 2rem;
        border-bottom: 1px dotted var(--body-text);

        &:hover {
            background-color: #efefef;
        }

        &:last-child {
            border-bottom: 0;
        }

        @media (max-width: 768px) {
            padding: .5rem;
        }

        .list-item--container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;

            .user {
                display: flex;
                align-items: flex-start;
                max-width: 77%;
            }

            .name {
                text-transform: capitalize;
                line-height: 1.1;
            }

            .email {
                text-transform: lowercase;
                display: block;
                font-size: .7rem;
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
            }

            .score {
                text-overflow: unset;
            }
        }

        div {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;

            .counter {
                color: #FF013C;
                font-weight: bold;
                padding-right: .5rem;
                line-height: 1.2;
            }
        }
    }
}

#loader-container {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #00E6F6;
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader:after {
    color: #FF013C;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {
    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }
    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }
    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }
    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }
    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }
    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

#error-message {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: var(--body-text);
    color: var(--body-bg);
    padding: .3rem 1rem;
}

#first-place {
    text-align: center;

    span {
        text-transform: uppercase;
        color: #FF013C;
    }

    @media (max-width: 768px) {
        font-size: 1.2rem;
    }
}

.position {
    font-size: 1rem;
    padding-top: .7rem;
    padding-bottom: .2rem;
    display: block;
    margin: auto;
}

.pyro {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
    display: none;
}

.pyro.active {
    display: block;
}

.pyro > .before, .pyro > .after {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff;
    -moz-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
    -webkit-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
    -o-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
    -ms-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
    animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
}

.pyro > .after {
    -moz-animation-delay: 1.25s, 1.25s, 1.25s;
    -webkit-animation-delay: 1.25s, 1.25s, 1.25s;
    -o-animation-delay: 1.25s, 1.25s, 1.25s;
    -ms-animation-delay: 1.25s, 1.25s, 1.25s;
    animation-delay: 1.25s, 1.25s, 1.25s;
    -moz-animation-duration: 1.25s, 1.25s, 6.25s;
    -webkit-animation-duration: 1.25s, 1.25s, 6.25s;
    -o-animation-duration: 1.25s, 1.25s, 6.25s;
    -ms-animation-duration: 1.25s, 1.25s, 6.25s;
    animation-duration: 1.25s, 1.25s, 6.25s;
}

@-webkit-keyframes bang {
    to {
        box-shadow: -59px 59.6666666667px #9900ff, -342px -554.3333333333px #00ddff, 207px -556.3333333333px #ff004d, -123px 70.6666666667px #d900ff, -104px 81.6666666667px #d500ff, 34px -417.3333333333px #5e00ff, 82px -346.3333333333px #0048ff, -160px -117.3333333333px #ff0099, 309px -102.3333333333px #ff0037, 153px -374.3333333333px #cc00ff, -240px -408.3333333333px #ff8000, 18px -108.3333333333px #ff0080, -241px -46.3333333333px #ff0011, -270px -561.3333333333px #ff1500, -65px -509.3333333333px #0900ff, -101px -483.3333333333px #0048ff, 239px -211.3333333333px #ff008c, 211px 0.6666666667px #00eaff, -239px -445.3333333333px #0d00ff, -8px -338.3333333333px #0033ff, -314px -450.3333333333px #ff0009, -310px -465.3333333333px #99ff00, 201px 112.6666666667px #15ff00, -81px 52.6666666667px #0015ff, -163px -334.3333333333px #eeff00, 295px -220.3333333333px #ff0015, 126px -258.3333333333px #3300ff, 94px -489.3333333333px #ff00e6, -57px -396.3333333333px #ff003c, 74px -291.3333333333px #a600ff, -123px -535.3333333333px #ffa200, -9px -0.3333333333px #aeff00, 200px 108.6666666667px #ff7b00, -39px -302.3333333333px red, 332px 26.6666666667px #0077ff, -120px 12.6666666667px #00ff09, 289px -268.3333333333px #2fff00, 236px -10.3333333333px #ffe600, 273px -341.3333333333px #9900ff, 132px -552.3333333333px #00ff80, -341px -201.3333333333px #ff1a00, 94px -278.3333333333px #91ff00, 226px -371.3333333333px #ffa600, -51px -546.3333333333px #99ff00, 348px -97.3333333333px aqua, 68px 32.6666666667px #ff7700, 342px -539.3333333333px #7300ff, 64px 18.6666666667px #ff00b7, 229px -229.3333333333px #b3ff00, -104px 4.6666666667px #1aff00, -146px -547.3333333333px red, 227px -7.3333333333px #00ff6a, -167px -31.3333333333px #0040ff, -196px -67.3333333333px #00ff77, 178px 6.6666666667px #b300ff, -131px -16.3333333333px #ff6f00, 325px -267.3333333333px #00ccff, 121px -332.3333333333px #00fff2, -141px 42.6666666667px #0037ff, -218px -239.3333333333px #00ff51, -117px -19.3333333333px #40ff00;
    }
}

@-moz-keyframes bang {
    to {
        box-shadow: -59px 59.6666666667px #9900ff, -342px -554.3333333333px #00ddff, 207px -556.3333333333px #ff004d, -123px 70.6666666667px #d900ff, -104px 81.6666666667px #d500ff, 34px -417.3333333333px #5e00ff, 82px -346.3333333333px #0048ff, -160px -117.3333333333px #ff0099, 309px -102.3333333333px #ff0037, 153px -374.3333333333px #cc00ff, -240px -408.3333333333px #ff8000, 18px -108.3333333333px #ff0080, -241px -46.3333333333px #ff0011, -270px -561.3333333333px #ff1500, -65px -509.3333333333px #0900ff, -101px -483.3333333333px #0048ff, 239px -211.3333333333px #ff008c, 211px 0.6666666667px #00eaff, -239px -445.3333333333px #0d00ff, -8px -338.3333333333px #0033ff, -314px -450.3333333333px #ff0009, -310px -465.3333333333px #99ff00, 201px 112.6666666667px #15ff00, -81px 52.6666666667px #0015ff, -163px -334.3333333333px #eeff00, 295px -220.3333333333px #ff0015, 126px -258.3333333333px #3300ff, 94px -489.3333333333px #ff00e6, -57px -396.3333333333px #ff003c, 74px -291.3333333333px #a600ff, -123px -535.3333333333px #ffa200, -9px -0.3333333333px #aeff00, 200px 108.6666666667px #ff7b00, -39px -302.3333333333px red, 332px 26.6666666667px #0077ff, -120px 12.6666666667px #00ff09, 289px -268.3333333333px #2fff00, 236px -10.3333333333px #ffe600, 273px -341.3333333333px #9900ff, 132px -552.3333333333px #00ff80, -341px -201.3333333333px #ff1a00, 94px -278.3333333333px #91ff00, 226px -371.3333333333px #ffa600, -51px -546.3333333333px #99ff00, 348px -97.3333333333px aqua, 68px 32.6666666667px #ff7700, 342px -539.3333333333px #7300ff, 64px 18.6666666667px #ff00b7, 229px -229.3333333333px #b3ff00, -104px 4.6666666667px #1aff00, -146px -547.3333333333px red, 227px -7.3333333333px #00ff6a, -167px -31.3333333333px #0040ff, -196px -67.3333333333px #00ff77, 178px 6.6666666667px #b300ff, -131px -16.3333333333px #ff6f00, 325px -267.3333333333px #00ccff, 121px -332.3333333333px #00fff2, -141px 42.6666666667px #0037ff, -218px -239.3333333333px #00ff51, -117px -19.3333333333px #40ff00;
    }
}

@-o-keyframes bang {
    to {
        box-shadow: -59px 59.6666666667px #9900ff, -342px -554.3333333333px #00ddff, 207px -556.3333333333px #ff004d, -123px 70.6666666667px #d900ff, -104px 81.6666666667px #d500ff, 34px -417.3333333333px #5e00ff, 82px -346.3333333333px #0048ff, -160px -117.3333333333px #ff0099, 309px -102.3333333333px #ff0037, 153px -374.3333333333px #cc00ff, -240px -408.3333333333px #ff8000, 18px -108.3333333333px #ff0080, -241px -46.3333333333px #ff0011, -270px -561.3333333333px #ff1500, -65px -509.3333333333px #0900ff, -101px -483.3333333333px #0048ff, 239px -211.3333333333px #ff008c, 211px 0.6666666667px #00eaff, -239px -445.3333333333px #0d00ff, -8px -338.3333333333px #0033ff, -314px -450.3333333333px #ff0009, -310px -465.3333333333px #99ff00, 201px 112.6666666667px #15ff00, -81px 52.6666666667px #0015ff, -163px -334.3333333333px #eeff00, 295px -220.3333333333px #ff0015, 126px -258.3333333333px #3300ff, 94px -489.3333333333px #ff00e6, -57px -396.3333333333px #ff003c, 74px -291.3333333333px #a600ff, -123px -535.3333333333px #ffa200, -9px -0.3333333333px #aeff00, 200px 108.6666666667px #ff7b00, -39px -302.3333333333px red, 332px 26.6666666667px #0077ff, -120px 12.6666666667px #00ff09, 289px -268.3333333333px #2fff00, 236px -10.3333333333px #ffe600, 273px -341.3333333333px #9900ff, 132px -552.3333333333px #00ff80, -341px -201.3333333333px #ff1a00, 94px -278.3333333333px #91ff00, 226px -371.3333333333px #ffa600, -51px -546.3333333333px #99ff00, 348px -97.3333333333px aqua, 68px 32.6666666667px #ff7700, 342px -539.3333333333px #7300ff, 64px 18.6666666667px #ff00b7, 229px -229.3333333333px #b3ff00, -104px 4.6666666667px #1aff00, -146px -547.3333333333px red, 227px -7.3333333333px #00ff6a, -167px -31.3333333333px #0040ff, -196px -67.3333333333px #00ff77, 178px 6.6666666667px #b300ff, -131px -16.3333333333px #ff6f00, 325px -267.3333333333px #00ccff, 121px -332.3333333333px #00fff2, -141px 42.6666666667px #0037ff, -218px -239.3333333333px #00ff51, -117px -19.3333333333px #40ff00;
    }
}

@-ms-keyframes bang {
    to {
        box-shadow: -59px 59.6666666667px #9900ff, -342px -554.3333333333px #00ddff, 207px -556.3333333333px #ff004d, -123px 70.6666666667px #d900ff, -104px 81.6666666667px #d500ff, 34px -417.3333333333px #5e00ff, 82px -346.3333333333px #0048ff, -160px -117.3333333333px #ff0099, 309px -102.3333333333px #ff0037, 153px -374.3333333333px #cc00ff, -240px -408.3333333333px #ff8000, 18px -108.3333333333px #ff0080, -241px -46.3333333333px #ff0011, -270px -561.3333333333px #ff1500, -65px -509.3333333333px #0900ff, -101px -483.3333333333px #0048ff, 239px -211.3333333333px #ff008c, 211px 0.6666666667px #00eaff, -239px -445.3333333333px #0d00ff, -8px -338.3333333333px #0033ff, -314px -450.3333333333px #ff0009, -310px -465.3333333333px #99ff00, 201px 112.6666666667px #15ff00, -81px 52.6666666667px #0015ff, -163px -334.3333333333px #eeff00, 295px -220.3333333333px #ff0015, 126px -258.3333333333px #3300ff, 94px -489.3333333333px #ff00e6, -57px -396.3333333333px #ff003c, 74px -291.3333333333px #a600ff, -123px -535.3333333333px #ffa200, -9px -0.3333333333px #aeff00, 200px 108.6666666667px #ff7b00, -39px -302.3333333333px red, 332px 26.6666666667px #0077ff, -120px 12.6666666667px #00ff09, 289px -268.3333333333px #2fff00, 236px -10.3333333333px #ffe600, 273px -341.3333333333px #9900ff, 132px -552.3333333333px #00ff80, -341px -201.3333333333px #ff1a00, 94px -278.3333333333px #91ff00, 226px -371.3333333333px #ffa600, -51px -546.3333333333px #99ff00, 348px -97.3333333333px aqua, 68px 32.6666666667px #ff7700, 342px -539.3333333333px #7300ff, 64px 18.6666666667px #ff00b7, 229px -229.3333333333px #b3ff00, -104px 4.6666666667px #1aff00, -146px -547.3333333333px red, 227px -7.3333333333px #00ff6a, -167px -31.3333333333px #0040ff, -196px -67.3333333333px #00ff77, 178px 6.6666666667px #b300ff, -131px -16.3333333333px #ff6f00, 325px -267.3333333333px #00ccff, 121px -332.3333333333px #00fff2, -141px 42.6666666667px #0037ff, -218px -239.3333333333px #00ff51, -117px -19.3333333333px #40ff00;
    }
}

@keyframes bang {
    to {
        box-shadow: -59px 59.6666666667px #9900ff, -342px -554.3333333333px #00ddff, 207px -556.3333333333px #ff004d, -123px 70.6666666667px #d900ff, -104px 81.6666666667px #d500ff, 34px -417.3333333333px #5e00ff, 82px -346.3333333333px #0048ff, -160px -117.3333333333px #ff0099, 309px -102.3333333333px #ff0037, 153px -374.3333333333px #cc00ff, -240px -408.3333333333px #ff8000, 18px -108.3333333333px #ff0080, -241px -46.3333333333px #ff0011, -270px -561.3333333333px #ff1500, -65px -509.3333333333px #0900ff, -101px -483.3333333333px #0048ff, 239px -211.3333333333px #ff008c, 211px 0.6666666667px #00eaff, -239px -445.3333333333px #0d00ff, -8px -338.3333333333px #0033ff, -314px -450.3333333333px #ff0009, -310px -465.3333333333px #99ff00, 201px 112.6666666667px #15ff00, -81px 52.6666666667px #0015ff, -163px -334.3333333333px #eeff00, 295px -220.3333333333px #ff0015, 126px -258.3333333333px #3300ff, 94px -489.3333333333px #ff00e6, -57px -396.3333333333px #ff003c, 74px -291.3333333333px #a600ff, -123px -535.3333333333px #ffa200, -9px -0.3333333333px #aeff00, 200px 108.6666666667px #ff7b00, -39px -302.3333333333px red, 332px 26.6666666667px #0077ff, -120px 12.6666666667px #00ff09, 289px -268.3333333333px #2fff00, 236px -10.3333333333px #ffe600, 273px -341.3333333333px #9900ff, 132px -552.3333333333px #00ff80, -341px -201.3333333333px #ff1a00, 94px -278.3333333333px #91ff00, 226px -371.3333333333px #ffa600, -51px -546.3333333333px #99ff00, 348px -97.3333333333px aqua, 68px 32.6666666667px #ff7700, 342px -539.3333333333px #7300ff, 64px 18.6666666667px #ff00b7, 229px -229.3333333333px #b3ff00, -104px 4.6666666667px #1aff00, -146px -547.3333333333px red, 227px -7.3333333333px #00ff6a, -167px -31.3333333333px #0040ff, -196px -67.3333333333px #00ff77, 178px 6.6666666667px #b300ff, -131px -16.3333333333px #ff6f00, 325px -267.3333333333px #00ccff, 121px -332.3333333333px #00fff2, -141px 42.6666666667px #0037ff, -218px -239.3333333333px #00ff51, -117px -19.3333333333px #40ff00;
    }
}

@-webkit-keyframes gravity {
    to {
        transform: translateY(200px);
        -moz-transform: translateY(200px);
        -webkit-transform: translateY(200px);
        -o-transform: translateY(200px);
        -ms-transform: translateY(200px);
        opacity: 0;
    }
}

@-moz-keyframes gravity {
    to {
        transform: translateY(200px);
        -moz-transform: translateY(200px);
        -webkit-transform: translateY(200px);
        -o-transform: translateY(200px);
        -ms-transform: translateY(200px);
        opacity: 0;
    }
}

@-o-keyframes gravity {
    to {
        transform: translateY(200px);
        -moz-transform: translateY(200px);
        -webkit-transform: translateY(200px);
        -o-transform: translateY(200px);
        -ms-transform: translateY(200px);
        opacity: 0;
    }
}

@-ms-keyframes gravity {
    to {
        transform: translateY(200px);
        -moz-transform: translateY(200px);
        -webkit-transform: translateY(200px);
        -o-transform: translateY(200px);
        -ms-transform: translateY(200px);
        opacity: 0;
    }
}

@keyframes gravity {
    to {
        transform: translateY(200px);
        -moz-transform: translateY(200px);
        -webkit-transform: translateY(200px);
        -o-transform: translateY(200px);
        -ms-transform: translateY(200px);
        opacity: 0;
    }
}

@-webkit-keyframes position {
    0%, 19.9% {
        margin-top: 10%;
        margin-left: 40%;
    }
    20%, 39.9% {
        margin-top: 40%;
        margin-left: 30%;
    }
    40%, 59.9% {
        margin-top: 20%;
        margin-left: 70%;
    }
    60%, 79.9% {
        margin-top: 30%;
        margin-left: 20%;
    }
    80%, 99.9% {
        margin-top: 30%;
        margin-left: 80%;
    }
}

@-moz-keyframes position {
    0%, 19.9% {
        margin-top: 10%;
        margin-left: 40%;
    }
    20%, 39.9% {
        margin-top: 40%;
        margin-left: 30%;
    }
    40%, 59.9% {
        margin-top: 20%;
        margin-left: 70%;
    }
    60%, 79.9% {
        margin-top: 30%;
        margin-left: 20%;
    }
    80%, 99.9% {
        margin-top: 30%;
        margin-left: 80%;
    }
}

@-o-keyframes position {
    0%, 19.9% {
        margin-top: 10%;
        margin-left: 40%;
    }
    20%, 39.9% {
        margin-top: 40%;
        margin-left: 30%;
    }
    40%, 59.9% {
        margin-top: 20%;
        margin-left: 70%;
    }
    60%, 79.9% {
        margin-top: 30%;
        margin-left: 20%;
    }
    80%, 99.9% {
        margin-top: 30%;
        margin-left: 80%;
    }
}

@-ms-keyframes position {
    0%, 19.9% {
        margin-top: 10%;
        margin-left: 40%;
    }
    20%, 39.9% {
        margin-top: 40%;
        margin-left: 30%;
    }
    40%, 59.9% {
        margin-top: 20%;
        margin-left: 70%;
    }
    60%, 79.9% {
        margin-top: 30%;
        margin-left: 20%;
    }
    80%, 99.9% {
        margin-top: 30%;
        margin-left: 80%;
    }
}

@keyframes position {
    0%, 19.9% {
        margin-top: 10%;
        margin-left: 40%;
    }
    20%, 39.9% {
        margin-top: 40%;
        margin-left: 30%;
    }
    40%, 59.9% {
        margin-top: 20%;
        margin-left: 70%;
    }
    60%, 79.9% {
        margin-top: 30%;
        margin-left: 20%;
    }
    80%, 99.9% {
        margin-top: 30%;
        margin-left: 80%;
    }
}
