.mapBody {
    width: 100% !important;
    height: 100% !important;
	border: none;
	overflow-x: hidden;
	/* desativa a atualização de página ao puxar para baixo */
	overscroll-behavior-y: contain;
    display: flex;
}

.mapBodyContainer {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

#barTop {
    width: 100%;
    height: 60px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    color: var(--colorOrange);
    background-color: var(--colorWhite);
    flex: 0 0 auto;
}
    #textTitle {
        min-width: 0;
        flex: 1 1 auto;
    }

#mapView {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    z-index: 0;
}
    #floatingTopRight,
    #floatingBottomLeft {
        position: absolute;
        z-index: 1;
        padding: 4px;
    }
    #floatingTopRight {
        top: 0;
        right: 0;
        margin: 5px;
        /*min-width: 90px;*/
    }
        #navigatingLayout {
            display: flex;
            flex-flow: row nowrap;
            align-items: flex-start;
            justify-content: flex-end;
            background-color: rgba(255,255,255,.5);
            border-radius: 10px;
        }
            #buttonNavigatingStop {
                margin: 10px;
                gap: 10px;
            }
                #itineraryIcon {
                    margin: 10px;
                    font-size: 400%;
                }
                    #itineraryIcon i {
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        padding: 5px;
                    }
                #itineraryText {
                    margin: 10px 10px 10px 0;
                    font-size: 200%;
                    line-height: 110%;
                    font-family: monospace;
                }
    #floatingBottomLeft {
        bottom: 35px;
        left: 5px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
        #imageLogo {
            width: 90px;
            height: 90px;
        }
        #installContent {
            text-align: center;
        }

#barBottom {
    width: 100%;
    height: 60px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    flex: 0 0 auto;
    color: var(--colorOrange);
    background-color: var(--colorWhite);
}
    #clockAltitudeLayout {
        font-family: monospace;
        width: 100px;
        max-height: calc(100% - 20px);
        flex: 0 0 auto;
    }
        #clockTxt {
            font-size: 150%;
            line-height: 105%;
            text-align: center;
        }
        #altitudeTxt {
            text-align: center;
        }

@media (orientation: portrait) {
	
}