/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    font-family: arial;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* Global */

* {
    font-family: Arial, sans-serif;
}

a {
    font-family: Arial, sans-serif;
    text-decoration: none;
}

li a {
    color: #757575;
    font-size: 13px;
    text-align: center;
    vertical-align: middle;
    display: block;
    line-height: 30px;
}

li a:hover {
    text-decoration: underline;
}

/* ----------------- LOGIN ----------------- */

div#desktop {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index:1;
}

/* ----------------- DESKTOP ----------------- */

div.page {
    opacity: 0;
    z-index: 1;
    overflow-y: auto;
    background: #FFFFFF;
}

div.page.active {
    opacity: 1;
    transition: opacity 0.15s ease-in-out;
    z-index: 2;
}

div#page-1 {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
}

div#page-1 img {
    max-width: 1200px;
    margin: auto;
    display: block;
}

div#page-2 {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
}

div#page-2 img {
    max-width: 1200px;
    margin: auto;
    display: block;
    overflow-y: auto;
}

.link-1 {
    cursor: pointer;
}

#loading-bar-spinner.spinner {
    left: 50%;
    margin-left: -20px;
    top: 50%;
    margin-top: -20px;
    position: absolute;
    animation: loading-bar-spinner 800ms linear infinite;
    z-index: 0;
}

#loading-bar-spinner.spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border:  solid 4px transparent;
    border-top-color:  #2780aa !important;
    border-left-color: #2780aa !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
    0%   { transform: rotate(0deg);   transform: rotate(0deg); }
    100% { transform: rotate(360deg); transform: rotate(360deg); }
}



#page-1 .header {
    width: 100%;
    background: #eb3b16;
    display: flex;
    justify-content: space-between;
}

#page-1 .header img {
    margin:0;
    height:80px
}

#page-1 .body {
    padding-top: 40px;
}

#page-1 .body img {
    max-width: 90%;
}