#map{
    border: 5px solid #fff;
}
.modal-wrapper {
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}
#modal {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s linear, left 0.4s ease-out;
    -moz-transition: opacity 0.4s linear, left 0.4s ease-out;
    -o-transition: opacity 0.4s linear, left 0.4s ease-out;
    transition: opacity 0.4s linear, left 0.4s ease-out;
}
#modal:target {
    opacity: 1;
    visibility: visible;
}
#modal:target .modal-body {
    opacity: 1;
    transform: translateY(1);
}

.modal-body {
    width: 400px;
    max-width: 400px;
    top: 0;
    opacity: 0;
    transform: translateY(-100px);

    z-index: 1;
}

.outside-trigger {
    bottom: 0;
    cursor: default;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}
