#imprint {
    scroll-margin-top: 5rem;
}

#disclaimer {
    scroll-margin-top: 5rem;
}

#privacy {
    scroll-margin-top: 5rem;
}

#overlay {
    position: fixed;
    /* Sit on top of the page content */
    display: block;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    z-index: 2;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}

@media only screen and (max-width: 800px) {
    .mobile-no-margin {
        margin-top: 0px !important;
    }
    .w3-row-padding {
        padding: 0 0px !important;
    }
}

.w3-theme-l2,
.w3-theme-l3,
.w3-theme-l4,
.w3-theme-l5 {
    color: #000 !important
}

.w3-border-theme,
.w3-hover-border-theme:hover {
    border-color: #607d8b !important
}

.w3-theme-l5 {
    background-color: #f5f7f8 !important
}

.w3-theme-l4 {
    background-color: #dfe5e8 !important
}

.w3-theme-l3 {
    background-color: #becbd2 !important
}

.w3-theme-l2 {
    background-color: #9eb1bb !important
}

.w3-theme-d1,
.w3-theme-d2,
.w3-theme-d3,
.w3-theme-d4,
.w3-theme-d5,
.w3-theme-l1 {
    color: #fff !important
}

.w3-theme-l1 {
    background-color: #7d97a5 !important
}

.w3-theme-d1 {
    background-color: #57707d !important
}

.w3-theme-d2 {
    background-color: #4d636f !important
}

.w3-theme-d3 {
    background-color: #435761 !important
}

.w3-theme-d4 {
    background-color: #3a4b53 !important
}

.w3-theme-d5 {
    background-color: #303e45 !important
}

.w3-theme-light {
    color: #000 !important;
    background-color: #f5f7f8 !important
}

.w3-theme-action,
.w3-theme-dark {
    color: #fff !important;
    background-color: #303e45 !important
}

.w3-hover-theme:hover,
.w3-theme {
    background-color: #607d8b !important
}

.w3-theme {
    color: #fff !important
}

.w3-text-theme {
    color: #607d8b !important
}

.w3-hover-theme:hover {
    color: #fff !important
}

.w3-hover-text-theme:hover {
    color: #607d8b !important
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 5px;
    border-radius: 6px;
    bottom: 100%;
    left: 50%;
    margin-left: -100px;
    /* Use half of the width (120/2 = 60), to center the tooltip */

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.75s;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%;
    /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}