/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
hr,
.prev, 
.next,
.teaser i,
button,
.button,
.topmenu a,
.topmenu i,
#topfooter p,
#topfooter a,
#nav .menuitem i,
.bottommenu li a,
input[type=submit] {
    color: var(--white);
}

/* DARK */
#decline {
    color: var(--dark);
}

/* BLUE */
a,
.form h4,
#selection,
.middlemenu p {
    color: var(--blue);
}

/* BLACK */
h1,
h2,
h3,
h4,
p,
li i,
#selection,
.menuitem a,
.dropdown li a {
    color: var(--black);
} 

/* YELLOW */
#topfooter h3 {
    color: var(--yellow);
}

/* OTHER */
.alert i:nth-of-type(1) {
    color: green;
}
.scrollbar span {
    color: #FADE4A;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
input,
.teaser,
textarea,
.dropdown,
#teaserbox .box {
    background: var(--white);    
}

/* GREY */
body {
    background: var(--grey);
}

/* DARK */
button,
.button,
.topmenu,
.bottommenu,
input[type=submit],
#topfooter {
    background: var(--dark)
}

/* BLUE */
.scrollbar {
    background: var(--blue);
}

/* BLACK */
#burgermenu .burger .line {
    background: var(--black);
}

/* YELLOW */
.teaser i {
    background: var(--yellow);
}

#selection,
#burgermenu,
#decline {
    background: transparent;
}

/* OTHER */
#popup {
    background: #ffffff85;
}

button:hover,
.button:hover,
input[type=submit]:hover {
    background: #47484b;
}

/**** OUTLINE ****/
input:focus,
textarea:focus {
    outline: 1px solid var(--blue);
}
.button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible,
a:focus-visible {
    outline: .2rem solid var(--black);
}
#decline {
    outline: solid 1px var(--dark);
}
.menuitem a:hover {
    border: solid 2px var(--white);
}

/**** BOX SHADOW ****/
#popup {
    -webkit-backdrop-filter: blur(3rem);
    backdrop-filter: blur(3rem);
    box-shadow: var(--black) 0 0 10rem -4rem;
}

/**** TEXT DECORATION ****/
.menuitem a:hover {
    text-decoration: none;
}

/**** TRANSITIONS ****/
nav,
#more,
.all i,
button,
.button,
.dropdown,
.menuitem a,
.bottommenu nav,
#selection span,
input[type=submit] {
    transition: all linear 150ms;
}

#burgermenu {
    transition: all linear 200ms;
}

/**** FONTS ****/
@font-face {
    font-family: 'Albert Sans';
    src: url(../font/Albert_Sans/AlbertSans-VariableFont_wght.ttf);
}
* {
    font-family: 'Albert Sans';
    line-height: 1.5;
}

/**** ROOT ****/
:root {
    --white: #FFFFFF;
    --grey: #F6F6F6;
    --dark: #545558;
    --blue: #265AA3; 
    --yellow: #FFC500;
    --black: #333333;
}