html {
    height: 100%;
    overflow:auto;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}
body { height: 100%; }

#map {
    height: 100%;
    min-height: 500px;
    max-height: 750px;
}

.custom-div-icon {
    background: transparent;
    color: black;
    font-size: 12px;
    font-weight: bold;
    margin-left: 13px;
    margin-top: -10px;
}

.cardTitle {
    margin-top: 0;
}

dl dt{
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
dl dd{
    display: inline-block;
    margin: 0px 10px;
    padding-bottom: 0;
    vertical-align: middle;
}
dl dt.green{
    background: #00c41d;
}
dl dt.orange{
    background: #e08700;
}
dl dt.red{
    background: #ff0000;
}

th, td {
    padding: 15px;
}

.onoffswitch {
    position: relative;
    width: 80px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
    margin: auto
}
.onoffswitch-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    height: 36px; padding: 0; line-height: 36px;
    border: 2px solid #E3E3E3; border-radius: 36px;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease-in;
}
.onoffswitch-label:before {
    content: "";
    display: block; width: 36px; margin: 0;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 42px;
    border: 2px solid #E3E3E3; border-radius: 36px;
    transition: all 0.3s ease-in 0s;
}
.onoffswitch-checkbox.green:checked + .onoffswitch-label {
    background-color: #00c41d;
}
.onoffswitch-checkbox.green:checked + .onoffswitch-label, .onoffswitch-checkbox.green:checked + .onoffswitch-label:before {
    border-color: #00c41d;
}
.onoffswitch-checkbox.orange:checked + .onoffswitch-label {
    background-color: #e08700;
}
.onoffswitch-checkbox.orange:checked + .onoffswitch-label, .onoffswitch-checkbox.orange:checked + .onoffswitch-label:before {
    border-color: #e08700;
}
.onoffswitch-checkbox.red:checked + .onoffswitch-label {
    background-color: #ff0000;
}
.onoffswitch-checkbox.red:checked + .onoffswitch-label, .onoffswitch-checkbox.red:checked + .onoffswitch-label:before {
    border-color: #ff0000;
}
.onoffswitch-checkbox:checked + .onoffswitch-label {
    background-color: #a0a0a0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
    border-color: #a0a0a0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
    right: 0;
}


.mdl-cell {
    min-height: 200px;
    background: #ffffff;
    padding: 10px;
}

.mdl-grid.center-items {
    justify-content: center;
}


h6 {
    margin-top: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 45em) {
    td {
        padding: 15px;
    }
}

.wrapper {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
#one {
    flex: 300px;
}
#two {
    flex: 300px;
}
.spacer {
    width: 10px;
}

ul {
    list-style: none;
    margin: 0;
}


.container {
    max-width: 100%;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.flex-item {
    flex-basis: calc(33.33% - 20px); /* 33.33% Breite für jede Spalte, minus 20px Abstand */
    padding: 10px; /* optional: Abstand zwischen den Spalten */
    align-self: flex-end;
}

@media screen and (max-width: 710px) {
    .flex-item {
        flex-basis: 100%; /* 33.33% Breite für jede Spalte, minus 20px Abstand */
    }
}