gorilla_button,
collect_button {
    background-color: rgb(230, 232, 231);
    color: white;
    position: relative;
    padding: 2em 1em 2em 1em;
    width: 100%;
    text-align: center;
    border-radius: 1em;
    font-weight: 900;
    display: block;
    border: 0;
    font-size: 0.7em;
    margin: 2em 2em 2em 2em;
}

gorilla_button text {
    display: inline-block;
    position: relative;
    margin-top: 2em;
    font-size: 1.8em;
}

collect_button:hover,
gorilla_button:hover {
    transform: scale(1.2);
}

#gorilla_view {
    display: none;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 999999;
}

#gorilla_shadow {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

#gorilla_popup {
    margin-top: 20%;
    margin-bottom: auto;
    position: relative;
    width: 90%;
    max-width: 50em;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    padding: 1em;
    border-radius: 1em;
    text-align: center;
    animation: scale-in 0.5s forwards;
}

@keyframes scale-in {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

g_logo {
    width: 100px;
    height: 100px;
    display: block;
}

g_share {
    background-color: blue;
    color: white;
    font-size: 2em;
    width: 2em;
    height: 2em;
    text-align: center;
    display: inline-block;
    border-radius: 2em;
    padding-top: 0.5em;
}

g_share:hover {
    background-color: rgb(52, 52, 248);
}

#gorilla_code {
    left: 0;
    top: 0;
    height: 100%;
    z-index: 999999;
    text-align: center;
}

gorilla_background {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    z-index: 99999;
    animation: hide-out 1s forwards;
    animation-delay: 1s;
}

#gorilla_code img {
    position: relative;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    width: 10em;
    border-radius: 1em;
    z-index: 99999;
    animation: scale-out 1s forwards;
    animation-delay: 1s;
    transform: scale(3);
}

@keyframes scale-out {
    from {
        transform: scale(3);
        margin-top: 4em;
    }

    to {
        transform: scale(1);
        margin-top: 0;
    }
}

@keyframes hide-out {
    0% {
        opacity: 1;
        height: 100%;
    }

    95% {
        opacity: 0;
        display: none;
    }

    100% {
        height: 0;
        opacity: 0;
        display: none;
    }
}

progress_bar value {
    display: block;
    width: 25%;
    height: 0.5em;
    border-radius: 1em;
    padding-top: 0.2em;
    font-weight: 500;
}

value.ac {
    background-color: blueviolet;
}

progress_bar {
    display: flex;
    background-color: gainsboro;
    width: 100%;
    height: 0.5em;
    border-radius: 1em;
}

progress_bar goal {
    height: 2.5em;
    width: 2.5em;
    border-radius: 2em;
    margin-top: -1.25em;
    margin-left: -1em;
    background-color: gainsboro;
    padding-top: 0.2em;
    color: rgb(87, 87, 87);
    font-weight: 700;
    display: block;
}

goal.ac {
    background-color: blueviolet;
    color: white;
}

off {
    position: absolute;
    background-color: blueviolet;
    color: white;
    font-size: 0.7em;
    margin-top: -0.5em;
    display: inline-flex;
    padding-left: 0.1em;
    padding-right: 0.1em;
    border-radius: 0.2em;
    margin-left: 0.5em;
}

.display-none {
    display: none;
}