@font-face {
    font-family: azoSansRegular;
    src: url(/assets/FONT/AzoSans-Regular.ttf) format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: azoSansBlack;
    src: url(/assets/FONT/AzoSans-Black.ttf) format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: azoSansThin;
    src: url(/assets/FONT/AzoSans-Thin.ttf) format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: azoSansMedium;
    src: url(/assets/FONT/AzoSans-Medium.ttf) format('truetype');
    font-weight: normal;
}

html {
    font-family: azoSansRegular;
    color: #909090;
    font-size: 12px;
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
}

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-appearance: none;
}

.background {
    overflow: hidden;
    z-index: -9999;
    position: fixed;
    top: 0px;
    height: 100vh;
    width: 100vw;
    color: white;
    background: url(/assets/PNGs/tuga-mountains-background.png) no-repeat center center fixed;
    background-size: cover;
}

.loadingpagecont {
    height: 100%;
    max-width: 750px;
    margin: auto;
}

.loadingcontainer {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -153.5px 0 0 -75px;
}

.loadinglogo {
    position: relative;
    height: 115px;
    margin: auto;
    text-align: center;
    display: block;
}

.loadingtext {
    position: relative;
    margin-top: 15px;
    font-family: azoSansThin;
    font-style: italic;
    font-size: 10px;
    position: relative;
    text-align: center;
    color: #CECECE;
}

.spinnercont {
    height: 55px;
    width: 55px;
    margin: auto;
    margin-top: 100px;
}

.spinnercont img {
    margin: auto;
    text-align: center;
    display: block;
}

.spincenter {
    position: relative;
    height: 54px;
    width: 54px;
    opacity: 0.2;
}

.spin {
    position: relative;
    top: -55px;
    height: 56px;
    width: 56px;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*Responsive Footer Section*/

app {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

#app {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.loadingpagewrapper {
    width: 100%;
    max-width: 750px;
    flex: 1 0 auto;
}

.loadingcopyright {
    font-family: azoSansRegular;
    color: white;
    font-size: 7px;
    flex-shrink: 0;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}

@media (max-width: 360px) {
    app {
        align-items: initial;
    }
    #app {
        align-items: initial;
    }
}


/*End Responsive Footer Section*/