
body {
    font-family: Arial, sans-serif;

    overflow: hidden;

    margin: 0;
    padding: 0;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    color: #fff;
    outline: none;
    background-color: #ccc;

    -webkit-touch-callout: none;
     -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* mobile webkit */
}
button,
input {
    padding: 0;

    border-style: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
}
button {
    cursor: pointer;
}
* {
    /* Prevents pinch to zoom on things other than the canvas on touchscreen */
    touch-action: pan-x pan-y;
}


.loading__screen {
    position: absolute;
    z-index: 10;

    width: 100%;
    height: 100%;

    transition: 0.3s;

    background-color: #ccc;
}
.loading__screen__background {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;

    animation: pulse 2s infinite;

    border-radius: 50%;
    background-color: #999;
    background-image: url("/img/icons/icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}
.loading__screen__logo {
    position: absolute;
    top: 10%;
    left: 50%;

    width: 30%;
    margin-left: -15%;
}
.loading__screen__progress {
    position: absolute;
    bottom: 4em;
    width: 100%;
}
.loading__screen__progress__bar {
    width: 50%;
    height: 1em;
    margin: auto;
    border-radius: .33em;
    background-color: #999;
}
.loading__screen__progress__bar > div {
    width: 0%;
    height: 1em;
    border-radius: 3px;
    background-color: #4caf50;;
    display: block;
}
.loading__screen__text {
    text-align: center;
    color: #888;
}
.loading__screen__text > a {
    text-decoration: none;
    color: #f44336;
}

@keyframes pulse {
    0%   { opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 0; transform: scale(1.5, 1.5); }
    100% { opacity: 0; transform: scale(1.5, 1.5); }
}
