#modalMap {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.766);
    z-index: 999;
    top: 0;
    left: 0;
    backdrop-filter: blur(2px);
}

.modalMap-content {
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: auto;
    background-color: #fff;
    border-radius: 0.6rem;
}

.modalMap-head {
    display: flex;
    justify-content: space-between;
    padding: 5vw;
    font-size: 1.2em;
}

.modalMap-head h2 {
    font-size: 1.1em;
}

.modalMap-head h3 {
    font-size: 0.9em;
    font-weight: normal;
}

.modalMap-body {
    text-align: center;
}

@media screen AND (min-width: 900px) {

    #modalMap {
        justify-content: center;
        align-items: center;
    }

    #modalMap form {
        width: fit-content;
        margin: auto;
    }

    .modalMap-content {
        width: 60%;
        height: auto;
    }

    .modalMap-head {
        padding: 3vw;
    }
}