/* CSS Document */

@font-face {
    font-family: UTMAvo;
    src: url(../fonts/UTM-Avo.ttf);
}

@font-face {
    font-family: UTMAvo;
    src: url(../fonts/UTM-AvoBold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: UTMAvo;
    src: url(../fonts/UTM-AvoItalic.ttf);
    font-style: italic;
}

@font-face {
    font-family: UTMAvo;
    src: url(../fonts/UTM-AvoItalic.ttf);
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: 'UTMAvo';
    font-size: 13px;
    color: #fff;
    background-color: #333333 !important;
}

.center-screen {
    width: 100%;
    height: 100vh;
    position: relative;
}

a {
    color: #00abe5;
}

.lds-center {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lds-center div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 8px;
    background: #fff;
    animation: lds-center 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-center div:nth-child(1) {
    left: 8px;
    animation-delay: -0.40s;
}

.lds-center div:nth-child(2) {
    left: 32px;
    animation-delay: -0.30s;
}

.lds-center div:nth-child(3) {
    left: 56px;
    animation-delay: -0.20s;
}

.lds-center div:nth-child(4) {
    left: 80px;
    animation-delay: -0.10s;
}

.lds-center div:nth-child(5) {
    left: 104px;
    animation-delay: 0;
}

@keyframes lds-center {
    0% {
        top: 8px;
        height: 64px;
    }
    50% {
        top: 16px;
        height: 41px;
    }
    100% {
        top: 24px;
        height: 32px;
    }
}