#content {
    main {
        height: 100%;
        position: relative;

        #map {
            border: none;
            width: 100%;
            height: 100%;
        }

        #daySelector {
            position: absolute;
            top: 2%;
            left: 2%;
            background-color: var(--base);
            padding: 2.5%;
            border: 2px solid var(--primary);
            border-radius: 5px;
            width: 33%;
            display: flex;
            align-items: center;
            justify-content: space-between;

            p {
                font-weight: bold;
            }

            img {
                aspect-ratio: 1/1;
                width: 20%;
                rotate: 90deg;
            }
        }


        #legenda-title {
            position: absolute;
            bottom: 0;
            width: 100%;
            z-index: 2;

            background-color: var(--base);
            padding: 3%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 10%;

            p {
                font-weight: bold;
                font-size: 1.2rem;
            }

            #legenda-openclose-icon {
                aspect-ratio: 1/1;
                width: 6%;
                position: relative;
                transition: .25s ease;

                span {
                    display: inline-block;
                    background-color: var(--primary);
                    width: 75%;
                    height: 10%;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }

                .vertical {
                    width: 10%;
                    height: 75%;
                }
            }
        }

        #legenda-modal {
            position: absolute;
            bottom: 10%;
            width: 100%;
            height: 0;
            background-color: #00000050;
            z-index: 2;
            padding: 0%;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            overflow: hidden;
            transition: .25s ease;

            #legenda-content {
                max-height: 90%;
                width: 100%;
                border-radius: 5px;
                border: 2px solid var(--primary);
                background-color: var(--base);
                padding: 2.5%;
                margin: 2.5%;
                overflow-y: scroll;

                &::-webkit-scrollbar {
                    display: none;
                }


                .legenda-item {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    margin: 1.75% 0;

                    &:first-child {
                        margin-top: 0 !important;
                    }

                    &:last-child {
                        margin-bottom: 0 !important;
                    }

                    .li-icon {
                        aspect-ratio: 1/1;
                        width: 10%;
                        /*background-color: red;*/
                        margin-right: 5%;
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        img {
                            aspect-ratio: 1/1;
                            width: 95%;
                        }

                        p {
                            font-family: din-pro, sensation;
                            font-weight: bold;
                            font-size: 1.2rem;
                        }
                    }

                    p {
                        font-size: 1.15rem;
                        font-weight: bold;
                    }
                }
            }
        }

        .lm-open {
            height: 90% !important;
            /*padding: 2.5% !important;*/
        }

    }
}

#stageInfoModal {
    background-color: var(--base);
    position: fixed;
    width: 100%;
    height: 90%;
    top: 100%;
    border-top: 2px solid #FFFFFF;
    z-index: 1000;
    transition: .25s ease;

    #sim-top {
        background-color: #000000;
        width: 100%;
        height: 6%;
        display: flex;
        align-items: center;
        justify-content: right;
        padding: 5%;

        img {
            aspect-ratio: 1/1;
            width: 5%;
            opacity: .65;
        }
    }

    #sim-titleDiv {
        width: 100%;
        height: 12%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        p {
            color: #FFFFFF;
        }

        #sim-title {
            font-weight: bold;
            font-size: 1.5rem;
            margin-bottom: 2.5%;
        }
    }

    #sim-timetable {
        height: 82%;
        padding: 0 2.5%;
        overflow-y: scroll;

        &::-webkit-scrollbar {
            display: none;
        }

        &:nth-child(1) {
            margin-top: 10% !important;
        }

        &:last-child {
            margin-bottom: 10% !important;
        }

        .sim-timeTableItem {
            width: 100%;
            border: 2px solid var(--primary);
            border-radius: 5px;
            margin: 2.5% 0;
            padding: 5% 2.5%;
            background-color: #505050;

            p {
                color: #FFFFFF;
            }

            .tti-title {
                font-weight: bold;
                font-size: 1.25rem;
                margin-bottom: 1.5%;
            }
        }
    }
}

#footer {
    display: none;
}