/*************************
NICO'S Viewer v.1
by smartmedia
*************************/


/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');

body, html{
    padding: 0;
    margin: 0;    
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;    
}

body{
    display: none;
}

.logo {
    margin: auto;
    text-align: center;
    display: block;
    width: 6em;
}

#ham{
    color: #464646;
    font-size: 2em;
    position: absolute;
    top: 15px;
    right: 15px;
    display: none;
}

#galeria{
    position: absolute;
    width: auto;
    bottom: 2em;
    right: 2em;
}

#galeria img{
    width: 10em;
    border: 2px solid #dfe1ee;
    border-radius: 6px 6px 0em 0em;
    margin: auto;
    transition: width 0.5s ease, height 0.5s ease;
}

#galeria a{
    text-decoration: none;
    margin-right: 1em;
}
/* TAGS GALERIA */

#galeria span{
    font-size: 0.8em;
    color: #fff;
    text-align: center;        
    background-color: #001f45;
    padding: 0.5em 0em;
    box-sizing: border-box;
    border-radius: 0px 0px 5px 5px;
}

#galeria div{
    display: inline-grid;
}

#viewer{
    display: block;
    min-width: 100vw;
    min-height: 100vh;    
    background: #001f45;
}

#viewercontent{
    position: relative;    
    height: 100vh;
    width: 100vw;
    border: 0px solid #fff;
    box-sizing: border-box;
    display: block;    
}

#viewer_bottom, #viewer_top{
    position: absolute;
    top: 0;
    left: 0;
    display: block;    
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

#viewercontent img{    
    width: 100%;
    object-fit: cover;
    height: 100%;
}

#navigation_menu{
    position: absolute;
    bottom: 2em;
    z-index: 2;
    padding: 1em 2em;
    background-color: #0000007d;
    background-color: #ffffff7d;
    box-sizing: border-box;
    border-radius: 5px;
    left: 2em;
    height: fit-content;
}

#navigation_menu a{
    color: #fff;
    text-decoration: none;
}

.titulo {
    font-size: 1em;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0;
    padding-top: 1em;
    margin: 0;
    margin-bottom: 0.5em;
    padding-bottom: 0.3em;
    border-bottom: 2px solid #095ea7;
}

.botonnav{
    background-color: #001f45;
    text-align: center;
    width: 100%;
    padding: 0.5em 1em;
    padding: 0.5em 3em;
    box-sizing: border-box;
    margin-bottom: 0.5em;
    border-radius: 4px;    
    cursor: pointer;   
    -webkit-transition: background-color 0.25s ease-out, filter 0.25s ease-out;
    -ms-transition: background-color 0.25s ease-out, filter 0.25s ease-out;
    transition: background-color 0.25s ease-out, filter 0.25s ease-out;    
}

.botonnav:hover{
    background-color: #000;    
    -webkit-transition: background-color 0.25s ease-out, filter 0.25s ease-out;
    -ms-transition: background-color 0.25s ease-out, filter 0.25s ease-out;
    transition: background-color 0.25s ease-out, filter 0.25s ease-out;      
    filter: invert(1);
}

.disableclick{
    pointer-events: none;
}

.camera{
    position: absolute;
}

.camerawhite{        
    display: block;
    width: 4em;    
    height: 4em;
    background-position: top;
    background-color: transparent;
    background-image: url(../gui/camera_white.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    
}



@media only screen and (max-width: 1560px) {
    #galeria img {
        width: 8em;
        transition: width 0.5s ease, height 0.5s ease;
    }
}


@media only screen and (max-width: 1350px) {
    #galeria img {
        width: 6em;
        height: 7em;
        object-fit: cover;
        transition: width 0.5s ease, height 0.5s ease;
    }
}

@media only screen and (max-width: 1120px) {
    #galeria img {
        width: 5em;
        height: 7em;
        object-fit: cover;
        transition: width 0.5s ease, height 0.5s ease;
    }
}





@media only screen and (max-width: 480px) {
    #navigation_menu {
        position: absolute;
        top: 1em;
        z-index: 2;
        padding: 1em 2em;        
        box-sizing: border-box;
        border-radius: 5px;
        left: 2em;
        padding-top: 2em;
        height: fit-content;
    }

    #galeria img {
        width: 5em;
        border: 2px solid #fff;
        border-radius: 4px;
        margin-right: 0.5em;
    }
    #ham{
        color: #464646;
        font-size: 2em;
        position: absolute;
        top: 15px;
        right: 15px;
        display: block;
    }
    
  }

