@charset "UTF-8";
/* CSS Document */

.infoforgal{
    position: absolute;
    z-index: +10;
    top:50px;
    left:50px;
    width: auto;
    min-width: 150px;
    min-height: 100px;

    background-color: aquamarine;
}

#gallery{
    margin: 0px;
    padding:0px;

    font-size:15px;
	line-height: 19px;

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;

    width: 100vw;
    height: calc( 100vh - 45px );

    position: absolute;
    z-index: +10;
    top:-40px;
    bottom:0;
    left:0px;
    right:0px;

    overflow:hidden;
    overflow-x:scroll;

    white-space: nowrap;

    display: inline-block;
}
#gallery .cont{
    position: relative;

    width:9000px;
    height: 100%;
    display: inline-block;
}

#gallery .img{
    float: left;
    position: relative;
    text-align: center;
    width: 100vw;
    height: 100%;
    min-height: 100%;

    display: flex;
    justify-content: space-around;
    align-items: center;
}



#gallery img{
    object-fit: cover;
    max-width:100%;
    max-height: 100%;
}
