
:root {
    --primary-color: #294F42; 
    --secondary-color: #719D8E; 
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

* {
    margin: 0px;
    padding: 0px;
    font-family: Verdana, Arial, Helvetica,sans-serif;
}

.leaflet-marker-icon {
    cursor: grab;
}

.even {
    background: #eee !important;
}

html {
    background: #eee;
}


.header {
    width: 100%;
    //height: 110px;
    background: #fff;
    position: absolute;
    left: 0px;
    top: 0px;
}

.header > .head-left {
    position: absolute;
    top: 3px;
    left: 50%;
    margin-left: -165px;
    z-index: 1000;
    transition: 1000ms all ease-out;
}

.header > .head-logo {
    width: 100%;
    height: auto;
    max-width: 550px;
    cursor: pointer;
}

.header > .head-right {
    position: absolute;
    top: 0px;
    right: 0px;
    opacity: 0;
    transition: 1000ms all ease-out;
}

.header > .header-secondary {
    height: 34px;
    background: var(--secondary-color);
    width: 100%;
    margin-top: 55px;
    border-top: 1px solid #070503;
}

.header > .header-secondary > img {
    z-index: 1000;
}

.header > .header-primary {
    height: 36px;
    background: var(--primary-color);
    width: 100%;
    margin-top: 0px;
    //border-top: 1px solid #070503;
}

.content {
    width: calc(100vw - 60px);
    min-height: calc(100vh - 221px);
    background: #fff;
    margin-top: 110px;
    padding: 30px;
}

h1 {
    color: var(--primary-color);
    font-size: 20px;
    padding-bottom: 1em;
}

h2 {
    color: var(--primary-color);
    font-size: 20px;
}

.h2-main {
    font-size: 15px;
}

.hidden {
    display: none;
}

.only-desktop {
    display: none;
}

.only-mobile {
    display: block;
}

.input-select {
    background: #fff;
    border: 0px solid #000;
    padding: 5px;
    margin-bottom: 10px;
    font-size: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    /*text-overflow: ellipsis;*/
}

*:focus {
    outline: none;
}

.tab-buttons {
    width: 100%;
    border-top: 1px solid #e3e3e3;
    padding-top: 10px;
}

.tab-buttons > table {
    width: 100%;
}

.tab-button {
    font-size: 15px;
    background: var(--primary-color);
    border: none;
    padding: 4px;
    color: #fff;
    border-radius: 5px;
}

.input-slider {
    -webkit-appearance: none;
    width: 90%;
    height: 25px;
    outline: none;
    background: rgb(221,221,221);
    //background: linear-gradient(90deg, rgba(221,221,221,1) 0%, rgba(245,117,102,1) 50%, rgba(103,23,8,1) 100%);
    background: linear-gradient(90deg, rgba(0,255,29,1) 0%, rgba(232,245,102,1) 22%, rgba(255,0,0,1) 85%);
    margin-bottom: 10px;
}

.input-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    //background: url(arrow.png);
    background: #000;
    border-radius: 100px;
    padding: 4px;
    border: 5px solid #fff;
    cursor: pointer;
}

.input-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    //background: url(arrow.png);
    background: #000;
    border-radius: 100px;
    padding: 4px;
    border: 5px solid #fff;
    cursor: pointer;
}

.staerkebeschreibung {
    height: 5em;
}

.footer {
    width: calc(100% - 10px);
    //width: 100%;
    overflow: hidden;
    height: 50px;
    background: #719D8E;
    line-height: 50px;
    color: #000;
    padding-left: 10px;
    border-top: 1px solid #020000;
}

.footer > p > a {
    color: #000000;
    text-decoration: none;
}

@media only screen and (min-width: 585px) {
    .content {
        width: calc(100vw - 60px);
        min-height: calc(100vh - 221px);
        background: #fff;
        margin-top: 110px;
        padding: 30px;
    }
    h1 {
        color: var(--primary-color);
        font-size: 30px;
        padding-bottom: 1em;
    }

    .h2-main {
        font-size: 20px;
    }
}
@media only screen and (min-width: 660px) {
    .header > .head-right {
        opacity: 1;
    }

    .header > .head-left {
        position: absolute;
        top: 3px;
        left: 10px;
        margin-left: 0px;
        z-index: 1000;
    }

    .only-desktop {
        display: block;
    }

    .only-mobile {
        display: none;
    }
}

@media only screen and (min-width: 800px) {
    .content {
        width: 740px;
        margin-left: calc(50vw - 400px);
    }
}
