.hidden{
    display: none;
}

.transparent{
    opacity: 0;
}

.box{
    position: absolute;
    overflow: hidden;
    display: block;
    width: 90%;
    max-width:420px;
    height: auto;
    left: 5%;
    top: calc(50% - 125px);
    z-index: 20000;
    background-image: url(/files/img/background.png);
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 5px;
    padding-bottom: 30px;
}

#citySource{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: 3;
}
#splashCity{
    position: absolute;
    bottom: 0px;
    left:-30px;
    height: 60vh;
    opacity: 0.5;
}
#helioDiv{
    position: relative;
    width: 100%;
    height: 204px;
    overflow: hidden;
    margin-top: calc(30vh - 102px);
    z-index:5;
}

#topCity{
    position: absolute;
    top: 0px;
    left: -100px;
    width: auto;
    height: 50vh;
    opacity: 0;
    -webkit-transition: opacity 1s, width 1s, height 1s;
    -moz-transition: opacity 1s, width 1s, height 1s;
    -ms-transition: opacity 1s, width 1s, height 1s;
    -o-transition: opacity 1s, width 1s, height 1s;
    transition: opacity 1s, width 1s, height 1s;
}

#backButton{
    top: 15px;
    left: 0px;
    width: 95px;
    height: 33px;
    background-color: rgba(0,0,0,0.3);
    opacity: 1;
    position: fixed;
    z-index: 5;
    border-radius: 0px 30px 30px 0px;
    display:none;
}

#backButtonText{
    position: relative;
    overflow: hidden;
    color: white;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 12px;
    margin-left: 13px;
}
#backArrow{
    position: absolute;
    height: 13px;
    top: 10px;
    right: 17px;
}
#sharingFixedContainer{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 200000;
    display: none;
}
#nubesDiv{
    position:relative;
    height:100vh;
    width:auto;
    overflow:hidden;
    z-index:1;
}
.nube{
    position:absolute;
    opacity:0.9;
}
@media screen and (min-width:800px){
    .box{
        width:400px;
        left:calc(50% - 200px);
    }
}