.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;
    transition: border 0.25s ease, padding 0.15s ease;
}
    .mapBodyContainer.drag-over {
        width: calc(100% - 20px - 4px);
	    height: calc(100% - 20px - 4px);
        margin: 5px;
        padding: 5px;
        border: 2px dashed var(--colorOrange);
        transition: border 0.5s ease, padding 0.15s ease;
    }

#barTop,
#barTopTrailDrawer {
    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%;
    font-size: 100%;
    flex: 1 1 auto;
    z-index: 0;
}
    #floatingTopRight,
    #floatingCenterRight,
    #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: 225%;
                }
                    #itineraryIcon i {
                        width: 40px;
                        height: 40px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        padding: 10px;
                    }
                #itineraryText {
                    margin: 10px 10px 10px 0;
                    font-size: 180%;
                    line-height: 110%;
                    font-family: monospace;
                    font-weight: bold;
                }
        #containerChartAnimating {
            width: 100%;
            width: 300px;
            max-width: calc(100vw - 50px);
            padding: 2px;
            border-radius: 10px;
            background-color: rgba(255,255,255,.75);
        }
            #itineraryChartAnimating {
                padding: 0 5px;
                width: calc(100% - 10px);
                color: var(--colorGrayDark);
                display: flex;
                flex-flow: row nowrap;
                justify-content: flex-start;
                align-items: center;
                gap: 10px;
            }
                #itineraryChartAnimating i {
                    width: 30px;
                    height: 30px;
                    padding: 5px;
                    font-size: 125%;
                    border-radius: 50%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                }
            #canvasChartAnimating {
                display: block;
                width: 100%;
                height: 100px;
            }
            #dataChartAnimating {
                padding: 0 5px;
                width: calc(100% - 10px);
                color: var(--colorGrayDark);
                display: flex;
                flex-flow: row nowrap;
                justify-content: space-between;
                align-items: center;
                gap: 20px;
            }
    #floatingCenterRight {
        top: 50%;
        right: 0;
        margin: 5px;
    }
    #floatingBottomLeft {
        bottom: 35px;
        left: 5px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
        #imageLogo {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 90px;
            height: 90px;
        }
            #imageLogo > div {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                font-family: monospace;
                font-weight: bold;
                color: var(--colorOrangePattern);
                background-color: var(--colorWhite);
                width: 70px;
                height: 70px;
                font-size: 200%;
                border-radius: 50%;
                flex: 0 0 auto;
            }
        #installContent {
            text-align: center;
        }

#barBottom,
#barBottomTrailDrawer {
    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: 85px;
        max-height: calc(100% - 20px);
        flex: 0 0 auto;
    }
        #clockTxt {
            font-size: 150%;
            line-height: 105%;
            text-align: center;
        }
        #altitudeTxt {
            text-align: center;
        }

#mapillary {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: var(--colorWhite);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    transition: opacity 200ms ease;
}
    #mapillary i {
		position: absolute;
		top: 0;
		right: 0;
		padding: 5px 10px;
		border-radius: 0 0 0 16px;
		color: var(--colorWhite);
		background-color: var(--colorRed);
		cursor: pointer;
		transition: all .25s linear;
        z-index: 4;
	}
		#mapillary i:hover {
            color: var(--colorRed);
			background-color: var(--colorWhite);
			transition: all .25s linear;
		}

@media (orientation: portrait) {
	#mapillary {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 40%;
    }
}