@charset "UTF-8";

html {
    overflow-y: scroll;
}

body,
h1,
h2,
h3,
h4 {
    font-weight: 400;
    font-family: Open Sans, monospace;
    margin: 0;
    background-color: #fbfbfb;
}

b,
strong {
    font-weight: 600;
}

a,
a:hover {
    color: #333333;
}

a:hover {
    cursor: pointer;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000000;
    padding: 0.2em 0;
}

@-webkit-keyframes app-loading-pulse {
    0% {
        -webkit-transform: scale(1);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes app-loading-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes app-loading-spinner {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes app-loading-spinner {
    to {
        transform: rotate(360deg);
    }
}

.app-loading-container {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

.app-loading-container .app-loading-flex {
    display: flex;
    position: absolute;
    top: 20rem;
    left: 50%;
    transform: translate(-50%, -50%);
}

.app-loading-container .app-loading-flex .app-loading {
    display: flex;
    position: relative;
    margin: 0 auto;

    animation: app-loading-pulse 1s infinite;
    animation-direction: alternate;
    -webkit-animation-name: app-loading-pulse;
    animation-name: app-loading-pulse;
}

.app-loading-container .app-loading-flex .app-loading .app-loading-block {
    display: block;
    overflow: hidden;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.18);
    box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.18);
}

.app-loading-container .app-loading-flex .app-loading .app-loading-block:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 0;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border-top: 3px solid #a5be00;
    border-right: 3px solid transparent;
    animation: app-loading-spinner 0.6s linear infinite;
}

.app-loading-container .app-loading-flex .app-loading .app-loading-block div {
    display: block;
    width: 100px;
    height: 100px;
    background-image: url('../img/avatar.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 70px 70px;
    background-color: #ffffff;
}

.app-loading-error {
    position: relative;
    display: none;
    top: 26em;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}
