* {
    font-size: 11px;
}

body {
    margin: 0;
}

h2 {
    margin-top: 0;
    font-size: 16px;
}

button,
input {
    font-size: 11px;
}

#legend {
    left: 10px;
    position: fixed;
    top: 10px;
    z-index: 10;
    border: 2px solid gray;
    width: 35vw;
    min-width: 200px;
    max-width: 300px;
}

#thanks {
    margin-top: 100px;
    width: 100%
}

#app {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Avenir, Helvetica, Arial, sans-serif;
    font-size: 11px;
    text-align: center;
}

#map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

#mapbox {
    height: 100vh;
    overflow: scroll;
    position: relative;
    width: 75vw
}

#mapbox img {
    left: 0;
    position: absolute
}

#mapbox .spot {
    border: 2px solid;
    font-size: 11px;
    font-weight: 700;
    height: 22px;
    line-height: 22px;
    position: absolute;
    width: 22px;
    opacity: 0.7;
}

#mapbox .spot.free {
    background: rgba(80, 200, 80, 1);
    cursor: pointer;
}

#mapbox .spot.reserved {
    background: rgba(255, 200, 120, 1);
}

#mapbox .spot.occupied {
    background: rgba(250, 100, 100, 1);
}

#mapbox .spot.special {
    background: rgba(50, 150, 255, 1);
}

#mapbox .spot.active {
    opacity: 1;
    box-shadow: 0px 0px 3px 1px #333333;
}

#formbox {
    padding: 10px 10px 10px 3px;
    width: 25vw;
    min-width: 140px;
}

#formbox div {
    width: 100%
}

#formbox label {
    display: block;
    font-size: 11px;
    margin-top: 5px;
    text-align: left;
}

#formbox input[name="accept"] {
    display: inline;
    margin-right: 10px;
    width: auto;
    position: relative;
    top: 2px;
}

#formbox input {
    width: 100%
}

#formbox .error {
    color: #d00;
}

span.error {
    font-size: 9px;
}

#formbox .errorContainer {
    font-size: 9px;
    height: 1em;
    text-align: left;
}

.tooltip {
    background: #333;
    color: #fff;
    font-family: Avenir, Helvetica, Arial, sans-serif;
    margin-right: 12px;
    max-width: 200px;
    padding: 20px;
    z-index: 20
}

.tooltip:after {
    -webkit-transform: translateY(50%) rotate(45deg);
    background: #333;
    bottom: 50%;
    content: "";
    display: block;
    height: 20px;
    position: absolute;
    right: -10px;
    transform: translateY(50%) rotate(45deg);
    width: 20px
}

.tooltip .state {
    font-weight: 700;
    padding-bottom: 0
}

.tooltip .frei {
    color: rgba(80, 200, 80, 1);
}

.tooltip .reserviert {
    color: rgba(255, 200, 120, 1);
}

.tooltip .belegt {
    color: rgba(250, 100, 100, 1);
}

.tooltip .Sonderplatz {
    color: rgba(50, 150, 255, 1);
}

.pickedSpots {
    font-weight: 700;
    margin: 0 10px;
    display: inline-block;
    margin-top: 10px;
}

.hint {
    font-size: 9px;
    text-align: left;
    margin-bottom: 20px;
}

.copyright {
    font-size: 9px;
    margin-top: 40px;
}