#us_map {
    display: none;
}

/* The Modal (background) */ 
.modal-map {
    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    padding-top: 200px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: #cccccc; /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    text-align: center;
    position: relative;
    box-shadow: 5px 5px 15px black;
}
@media (min-width: 479px) {
    .modal-content {
        width: 500px;
    }
}
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
    }
}

/* Modal Header */
.modal-header {
    background-color: #6484a0;
    position: relative;
}
.modal-body {
    padding: 20px 10px;
    font-size: smaller;
    line-height: 1.2;    
}
.modal-body img {
    width: 95%;  
}

/* The Close Button */
.close {
    color: #cccccc;
    font-size: 2em;
    font-weight: bold;
    /* padding: 12px; */
    position: absolute;
    right: 20px;
    top: 17px;
}

.close:hover,
.close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

@media (min-width: 479px) {
    #usmapwrapper-ii,
    #usmapbase-ii {
        width: 400px;
        height: 250px;
    }
}
@media (max-width: 480px) {
    #usmapwrapper-ii,
    #usmapbase-ii {
        width: 350px;
        height: 218px;
    }
}
.modal-message {
    position: absolute;
    top: 150px;
    right: 0;
    left: 0;
    display: inline-block;
    font-size: x-large;
    opacity: 0;
}
.modal-message #message-value {
    width: fit-content;
    margin: auto;
    padding: 8px 10px 5px 10px;
    background-image: linear-gradient(to bottom, #ffffff 0%, #cdd7d6 50%, #cdd7d6 100%);
    border-radius: 5px;
    border: 1px solid lightgrey;
    font-size: xx-large;
    font-weight: 700;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}