.node--makerspace .makerspace-hours {
    display: inline-block;
}
.node--makerspace .loading {
    min-width: 10ch;
    background-color:#CDCDCD;
    opacity: 1;
    height: 1em;
    border-radius: .25rem;
    animation: pulse 1.25s ease-in-out infinite both;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: .25;
    }
    100% {
        opacity: 1;
    }
}