* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Rubik Mono One', sans-serif;
    font-size: 20px;
}

body {
    overflow: hidden;
}

.map {
    position: relative;
    /* width: 90%; */
    height: 90vh;
    max-width: 1300px;
    margin: 1rem auto;
    border: 1rem solid #fff;
    border-radius: 1rem;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .3);
}

.map > svg {
    display: block;
    width: 100%;
    height: 90%;
    border-radius: .5rem;
    touch-action: none !important;
}

.map > .info {
    position: absolute;
    z-index: 1;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    min-height: 3rem;
    width: 80%;
    padding: 0 1rem;
    border-radius: 1rem 1rem 0 0;
    line-height: 3rem;
    font-size: 1rem;
    text-align: center;
    background: #fff;
    pointer-events: none;
}

.building {
    transition: opacity .3s ease-in-out;
}

.building:hover {
    cursor: pointer;
    opacity: .8 !important;
}

.building.-available {
    fill: #0f0 !important;
}

.building.-reserved {
    fill: #f00 !important;
}

.building.-service {
    fill: #fff !important;
}
