@keyframes containerOn{
    0%{
    opacity: 0;
    }
    100%{
    opacity: 1;
    }
}

.fullscreen-container{
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    z-index: 10000000000;
    background-image:url('../../images/uovo-bg-new.svg');
    background-repeat: repeat;
	background-position: bottom left;
    background-attachment: fixed;
	background-color:#FFF;
    background-size: 200px;
    }

.fullscreen-container.on{
    display: block;
    animation: containerOn 300ms 1 forwards;
    }



.fullscreen-img{
    position: relative;
    display: block;
    opacity: 1;
    background-size: contain!important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    height: 100vh !important;
    }
.floorplan{
    height: calc(100vh - 48px) !important;
    margin-top: 24px;
    }
/*
.fullscreen-img.on{
    opacity: 1 !important;
    }
*/
.fullscreen-img .text{
    position: fixed;
    left: 0px;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: flex-start;
    bottom: 12px;
    padding: 6px 9px 6px 16px;
    background-image:url('../../images/uovo-bg-new.svg');
    background-repeat: repeat;
	background-position: bottom 88px left;
    background-attachment: fixed;
    background-size: 200px;
    cursor: pointer;
}
.fullscreen-img .text .close{
   font-size: 21px;
    line-height: 1em;
}
.fullscreen-img .text .description{
    font-size: 21px;
    line-height: 1em;
}