/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
hr,
.prev, 
.next,
button,
.button,
input[type=submit] {
    color: var(--white);
}

/* RED */
a,
h1,
h2,
h3,
#decline,
#popup h3,
#selection,
.menuitem a:hover {
    color: var(--red);
}

/* BLACK */
h4,
li i,
.form h3,
#selection,
.menuitem a {
    color: var(--black);
}

/* LIGHT BLACK */
#bottomfooter p,
#teaserbox p,
#topfooter p,
#topfooter a,
.teaser i {
    color: var(--light-black);
}

/* OTHER */
.alert i:nth-of-type(1) {
    color: green;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
body,
#topfooter,
.bottommenu nav,
.bottommenu,
.dropdown {
    background: var(--white);    
}

/* GREY */
input,
#hero,
#popup,
.teaser,
textarea,
.topmenu,
#bottomfooter,
#teaserbox .box {
    background: var(--grey);
}

/* RED */
button,
.button,
#topfooter::before,
input[type=submit],
#burgermenu .burger .line {
    background: var(--red);
}

#selection,
#burgermenu,
#decline {
    background: transparent;
}

/**** OUTLINE ****/
#decline,
input:focus,
textarea:focus {
    outline: 1px solid var(--red);
}
.button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible,
a:focus-visible {
    outline: .2rem solid var(--black);
}

/**** TEXT DECORATION ****/
.menuitem a:hover {
    text-decoration: none;
}
#popup a,
#bottomfooter a,
#linkblock a:hover {
    text-decoration: underline;
}

/**** TRANSITIONS ****/
nav,
#more,
.all i,
.dropdown,
.menuitem a,
.bottommenu nav,
#selection span {
    transition: all linear 100ms;
}

#burgermenu {
    transition: all linear 200ms;
}

/**** FONTS ****/
@font-face {
    font-family: 'Korb';
    src: url('../font/korb/35A4DA_0_0.eot?#iefix') format('embedded-opentype'), 
         url('../font/korb/35A4DA_0_0.woff2') format('woff2'), 
         url('../font/korb/35A4DA_0_0.woff') format('woff'),
         url('../font/korb/35A4DA_0_0.ttf') format('truetype');
}
* {
    font-family: 'Korb', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/**** ROOT ****/
:root {
    --white: rgb(255, 255, 255);
    --grey: rgb(236, 236, 236);
    --red: rgb(255, 0, 0);
    --black: rgb(52, 52, 52);
    --light-black: rgb(120, 120, 120);
}

/**** TYPOGRAPHY ****/
body {
    font-size: 1.25rem;
    color: var(--light-black);
}
p {
    margin: 0 0 1rem;
}
h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 0 0 1rem;
}
h2 {
    font-size: 2.35rem;
    line-height: 1.2;
    margin: 0 0 1rem;
}
h3 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 2.5rem 0 .75rem;
}
h4 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin: 0 0 .5rem;
}