:root {
    --color-a: #05668d;
    --color-b: #028090;
    --color-c: #00a896;
    --color-d: #02c39a;
    --color-e: #f0f3bd;
}

* {
    font-family: "Courier New", Courier, monospace;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

#map {
    height: 100vh;
    width: 100vw;
}

#modal {
    visibility: hidden;
    position: fixed;
    flex-direction: row;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    background-color: var(--color-a);
    box-shadow: 12px 12px 0px 0px var(--color-c);
}

#modal {
    width: 500px;
    max-height: 545px;
}

@media (max-width: 768px) {
    #modal {
        width: 350px;
    }
}

#modal-title {
    font-size: 2.5em;
    margin-bottom: 7px;
    color: white;
}

#modal {
    display: flex;
    flex-direction: row;
    min-height: 0;
    padding: 15px;
    justify-content: space-between;
}

#modal-left {
}

#modal-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: right;
}

.link-btn {
    background-color: transparent;
    color: var(--color-e);
    border-width: 0px;
    margin-bottom: 15px;
}

.link-btn * {
    color: var(--color-e);
    font-size: 1.5em;
}

#close-btn {
    font-size: 1.5em;
    margin-bottom: 30px;
}

#modal-tags {
    margin-bottom: 8px;
}

.modal-tag {
    border: 1px solid var(--color-e);
    color: var(--color-e);
    padding: 2px 6px;
    margin: 0px 6px 0px 0px;
    display: inline-block;
}

#modal-table {
    color: white;
    margin-bottom: 10px;
}

#modal table td:first-child {
    text-align: left;
    padding-right: 10px;
}

#modal table td:last-child {
    text-align: left;
}

#modal-address {
    color: var(--color-e);
    margin-bottom: 10px;
}
#modal-address > a {
    color: var(--color-e);
    text-decoration: none;
}

#modal-quote {
    color: white;
    overflow-y: scroll;
    max-height: 80px;
    font-style: italic;
}

.map-tooltip {
    font-size: 10px;
    color: black;
    background: none;
    border: none;
    box-shadow: none;
}

#modal-url-btn-gp {
    display: flex;
    flex-shrink: 1;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: transparent;
    padding: 4px 8px;
    color: var(--color-e);
}

#toggle-tooltips {
    background-color: var(--color-c);
    
    font-size: 0.8em;
    border: 0px;
    color: white;
    padding: 10px 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2000;
}
