:root {
    --foreground-color: #fff;
}


html,
body {
    background-color: #181a1b !important;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;

    color: var(--foreground-color);
}

#Debugmode {
    font-size: 2em;
    font-weight: 900;
    color: #f00;
    top: 0;
    position: sticky;
    text-align: center;
    animation: blinker 1.25s linear infinite;
    z-index: 9000;
    padding: 10px;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

p {
    margin: 0 0 15px 0;
}

a,
a:visited,
a:hover,
a:active {
    color: inherit;
}

footer {
    display: flex;
    justify-content: center;
    padding: 0 10px;
    margin-bottom: 20px;
}

footer>* {
    margin: 0 20px 0 0;
    font-size: 16px;
}

footer>*:last-child {
    margin-right: 0;
}

.content {
    padding: 0 10px;
    margin-bottom: 30px;
}



.ol-popup {
    background-color: darkgray;
}

#map {
    height: 800px;
    width: 100%;
}

.mapwrap {
    display: block;
    position: relative;
}

#sideinfo {
    position: absolute;
    display: block;
    top: 25%;
    left: 0;
    color: black;
    padding: 10px 20px;
    border-radius: 0 20px 20px 0;
    background: #181a1bac;
}

#sideinfo:empty {
    display: none;
}

#sideinfo>p {
    margin: 0;
}

.radGradient {
    display: block;
    width: 25px;
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 0, 0, 1) 0%, rgba(230, 230, 64, 1) 50%, rgba(0, 160, 0, 1) 100%);
    margin: 15px 0;
}

.DEBUG {
    display: flex;
    flex-flow: column;
}

.DEBUG_ITEM {
    margin-bottom: 15px;
}

.DEBUG .DEBUG_ITEM .Error,
.DEBUG .DEBUG_ITEM .Critical {
    color: #f00;
}

.DEBUG .DEBUG_ITEM .Waring {
    color: rgb(201, 255, 6);
}

.DEBUG_ITEM:last-child {
    margin-bottom: 0;
}


.topnavigation {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    padding: 10px 0;
    margin-bottom: 25px;
}

.topnavigation .usersection {
    display: flex;
    flex-flow: row;
    justify-content: left;
}

.topnavigation .usersection>* {
    margin: 0 15px 0 0;
}

.topnavigation .usersection>*:last-child {
    margin: 0;
}

.topnavigation .usersection>.userchoicewrapper {
    display: flex;
    flex-flow: column;
}

.topnavigation .usersection>.userchoicewrapper>* {
    margin: 0 0 0.5em 0;
}

.topnavigation .usersection>.userchoicewrapper>*:last-child {
    margin: 0;
}





.window {
    display: flex;
    justify-content: center;
}

.forgot p {
    margin: 0 0 10px 0;
}

.window>div {
    padding: 20px;
    border-radius: 20px;
    background: gray;
}

.forminput {
    display: flex;
    flex-flow: row;
    margin-bottom: 10px;
}

.login .forminput {
    justify-content: right;
}

.forgot .forminput {
    justify-content: left;
}

.reset .forminput {
    justify-content: space-between;
}

.mail p {
    margin: 0;
}

.forminput>label {
    margin-right: 10px;
}

.formFooter {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.messages {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-bottom: 50px;
}

.messages:empty {
    display: none;
}

.messages>.info {
    color: #fff;
}

.messages>.warning {
    color: #ff8800;
}

.messages>.error {
    color: #f00;
}

.messages>p {
    margin: 0 0 10px 0;
}

.messages>p:last-child {
    margin: 0;
}

.content-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: center;
    min-height: 100vh;
}