/****************************/

/******** BACKGROUND ********/

#background {
    z-index: 0;
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    overflow: hidden;
}

#background #overlay,
#background .bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#background .bg .bg-img {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
}

/* background sizings som skal 'tile' i original størrelse */
#background .bg.original .bg-img,
#background .bg.tile .bg-img,
#background .bg.repeat .bg-img {
    background-size: initial;
}

/* bruges kun til at chekke om billedet er loadet */
#background .bg img.preload {
    opacity: 0;
    position: absolute;
}

.svgfilter{
    position:absolute;
    display:none;
}



#background #overlay {
    /* default - bliver overskrevet i background */
    opacity: 0.5;
}





/* vignette ikke med i style themes v 1.12 */

#background #vignette {
    -webkit-transition: background 1s;
    -moz-transition: background 1s;
    -ms-transition: background 1s;
    -o-transition: background 1s;
    transition: background 1s;
}

#background #vignette.dark {
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, .8) 100%);
}

#background #vignette.light {
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, .6) 100%);
}

#background #vignette.none {
    background: none;
}