/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
hr,
h1,
.prev, 
.next,
button,
.button,
.teaser p,
.teaser h3,
#teaserbox p,
button:hover,
.button:hover,
input[type=submit],
#bottomfooter p,
#bottomfooter a,
#topfooter p {
    color: var(--white);
}

/* GRAY */ 
.menuitem i,
.menuitem a,
#bottomfooter p {
    color: var(--gray);
}

/* GREEN */
a:hover,
.form h4,
#decline,
#selection,
.menuitem a:hover,
#bottomfooter a:hover {
    color: var(--green);
}

/* LIME */
#bottomfooter a,
.teaser i,
a {
    color: var(--lime);
}

/* BLACK */
h2,
h3,
h4,
p,
li i,
#popup h3,
#selection,
#topfooter a {
    color: var(--black);
} 

/* OTHER */
.alert i:nth-of-type(1) {
    color: green;
}

#topfooter p {
    color: #eaeaec;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
body,
.teaser i,
.bottommenu nav,
.bottommenu,
.dropdown {
    background: var(--white);    
}

/* GREY */
input,
textarea,
.topmenu,
#topfooter {
    background: var(--gray);
}

/* GREEN */
button:hover,
.button:hover,
.teaser .button,
input[type=submit],
#burgermenu .burger .line {
    background: var(--green);
}

/* LIME */
button,
.button,
.teaser {
    background: var(--lime);
}

/* OTHER */
#selection,
#burgermenu,
#decline {
    background: transparent;
}

#popup {
    background: #ffffff85;
}

#topfooter {
    background: #58595b;
}
#bottomfooter {
    background: #050709;
}

/**** OUTLINE ****/
#decline,
input:focus,
textarea:focus {
    outline: 1px solid var(--green);
}
.button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible,
a:focus-visible {
    outline: .2rem solid var(--black);
}

/**** BOX SHADOW ****/
#popup {
    -webkit-backdrop-filter: blur(3rem);
    backdrop-filter: blur(3rem);
    box-shadow: var(--black) 0 0 10rem -4rem;
}
header.scroll {
    box-shadow: 0px 10px 20px rgba(44, 62, 80, 0.03)
}

/**** TEXT DECORATION ****/
.menuitem a:hover {
    text-decoration: none;
}
#popup a,
#bottomfooter a {
    text-decoration: underline;
}

/**** TRANSITIONS ****/
a,
nav,
#more,
.all i,
button,
.button,
.dropdown,
.menuitem a,
.bottommenu nav,
#selection span {
    transition: all linear 100ms;
}

#burgermenu {
    transition: all linear 200ms;
}

/**** FONTS ****/
@font-face {
    font-family: 'Text';
    src: url(../font/Open_Sans/OpenSans-VariableFont_wdth\,wght.ttf);
}
* {
    font-family: 'Text';
    font-weight: 500;
    line-height: 1.5;
}
* p {
    font-weight: 400;
}

/**** ROOT ****/
:root {
    --white: #FFFFFF;
    --gray: #999999;
    --lime: #accf6e;
    --green: #009541; 
    --black: #111518;
}