#maps_container {
    position: relative;
    width: 100%; 
    max-width: 100vw; 
    height: 600px; 
    max-height: 75vh;
    border: 1px solid rgba(0,0,0, 0.334);
    border-left: 0px;
    border-right: 0px;
}
#map_cover {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: rgba(220,220,220, 0.667);
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#map_label {
    display: flex;
    flex-direction: column;
    font-size: 72px;
    color: white;
    justify-content: center;
    align-items: center;
    align-content: center;
    cursor: pointer;
}
#map_label span {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
    color: #282828;
}
#map_label > div {
    position: relative;
    width: 64px;
    height: 64px;
    background-image: url(https://maps.utahtech.edu/images/favicon_dark.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}