.new-rfi {
    position: fixed;
    bottom: 1em;
    right: 1em;
    display: flex;
    justify-content: space-between;
    animation-name: float;
    animation-duration: 2s;
}
.new-rfi-button {
    background-color: #004159;
    color: white;
    text-transform: uppercase;
    padding: 1em;
    border-radius: 5px;
    margin: 5px;
}
#new-rfi a {
    color: white;
}
.new-rfi-close {
    display: none;
    font-size: 2em;
}
/* This broke stuff - don't re-enable unless you know what you're doing */
/* .sidebar-header {
    display: none;
} */
.location-contact {
    display: grid;
    grid-template-columns: 1fr;
    padding: 1em;
    background-color: #054d94;
}
.location-entry a:link {
    color: white;
}
div.location-entry h3 {
    color: white;
}
div.location-entry h4 {
    color: white;
}
.location-target iframe {
    width: 100%;
}
.left-locations h1 {
    margin: 0 0 15px;
    text-transform: none;
}
@keyframes float {
    from {
        margin-bottom: -100%;
    }
    to {
        margin-bottom: 0%;
    }
}
 @media only screen and (max-device-width: 480px) {
    .new-rfi {
        position: fixed;
        justify-content: space-around;
        bottom: 0;
        left: 0;
        background-color: #15654c;
        width: 100vw;
        font-weight: 600;
        display: flex;
        align-items: center;
    }
    .new-rfi-close {
        display: block;
    }
    .sidebar-header {
        display: block;
    }
    .location-contact {
        grid-template-columns: 1fr;
    }
 }