/* popup link size  and color */
.modal-content a,
.modal-content a:visited {
    color: white;
    font-size:16px;
}
/* background-color*/
.modal-content {
    background-color: black;
}

.modal ul > li {
    display: inline-block;
    padding: 5px;
    width: 25%; /* 4 links per row */
}

/* other stuff */

.modal ul {
    list-style: none;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {

    margin: 6% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */

}

#cities .modal-content {
    width: 60%; /* Could be more or less, depending on screen size */

}

.modal-body {
    max-height: 65vh;
    overflow-y: auto;
}

.leftmodaltitle, .rightmodaltitle {
    display: inline-block;
    width: 100%;
    color: black;
    font-size: 30px;
    text-align: center;
}

.modal-content input {
    font-size: 20px;
    width: 50%;
}



/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

