.route-viewing-popup {
    display: grid;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0px;
    background-color: #ffffffba;
    z-index: 999;
    overflow: hidden;
}

#route-viewing-target {
    position: relative;
}

.route-viewing-frame {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: #ffffffba;
    display: flex;
    justify-content: center;
}

.route-viewing-message {
    font-size: 2em;
    line-height: 1.5em;
    text-align: center;
    place-self: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fe9600 -16.8%, #ff3c00 138.64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
