﻿#install-prompt {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    cursor: pointer;
}

    #install-prompt p {
        margin-bottom: 8px;
    }

    #install-prompt a {
        width: 240px;
        display: inline-block;
    }

#install-prompt-small {
    cursor: pointer;
}

    #install-prompt-small:hover > p {
        text-decoration: underline;
    }

    #install-prompt-small p {
        margin-bottom: 8px;
    }

    #install-prompt-small a {
        width: 240px;
        display: inline-block;
    }

.load-animation, .load-animation--success {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: var(--translucent-color);
    border-radius: 100px;
    animation: load-animation .85s ease-in-out infinite both alternate;
    opacity: 0.3;
}

.load-animation--success {
    background-color: rgba(var(--green-color--rgb), 0.3);
}

@keyframes load-animation {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}