:root {
    --primary-bg-color: rgb(48, 47, 46);
    --header-height: 5.2vh;
    --header-margin: 0.5em;
    --horizontal-divider-color: var(--primary-bg-color);
    --horizontal-divider-height: 1px;
}

.logo {
    height: var(--header-height);
    padding: 0;
    align-content: flex-start;
    min-height: 40px;
}

.colorDescriptionHeader {
    display: flex;
    align-content: flex-end;
}

.dot {
    margin: 0.25em 0;
    height: 1.5em;
    width: 1.5em;
    border-radius: 50%;
}

.color_dot_text {
    margin: 0.25em 0.5em 0 0.2em;
    color: white;
    font-size: 1em;
}

.header {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;

    background: var(--primary-bg-color);
    margin-bottom: var(--header-margin);
    width: 100%
}

.mapBackground {
    padding: 1em;
    background: var(--primary-bg-color);
}

.popupParkinglotInfo {
    display: flex;
    flex-flow: column;
    flex: 1;
    margin: auto;
}

.popupParkinglotInfoElement {
    display: flex;
    flex-flow: row;
    flex: 1;
    margin: auto;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}

.popupParkinglotInfoElementIcon {
    flex: 1;
    margin-top: auto;
    margin-left: auto;
    margin-right: 1em;
    margin-bottom: auto;
    max-width: 2em;
    min-width: 2em;
    width: 2em;
    height: 2em;
    max-height: 2em;
    min-height: 2em;
}

.popupParkinglotInfoElementTextHeadline {
    display: flex;
    flex-flow: column;
    flex: 0;
    margin: 0 auto 0.35em auto;
    white-space: nowrap;
    font-size: 1.5em;
}

.popupParkinglotInfoElementText {
    flex: 1;
    margin: auto;
    font-size: 1em;
}

.popupParkinglotInfoElementCount {
    margin: auto;
    text-align: right;
    min-width: 2em;
    font-size: 1em;
}


.horizontalDivider {
    max-height: 0;
    width: 100%;
    overflow: hidden;
    border-top: var(--horizontal-divider-height) solid var(--horizontal-divider-color);
    margin-top: 0.7em;
    margin-bottom: 0.7em;
}

html {
    scroll-behavior: smooth;
}

