html {
    width: 100%;
    height:100%
}

.transitionContainer {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: var(--cell);
}

/* From /Heimeside/style.css */

body {
    margin: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--primary);
}

h1 {
    font-size: 36px;
    margin: 0;
}

p,
li {
    font-size: 20px;
}

.primEM {
    font-size: 1.5em;
    color: var(--label);
}

.subEM {
    font-size: 1em;
    color: var(--secondaryLabel);
}



.separator {
    border-bottom: 1px solid var(--border);
    height: 1px;
    width: 100%;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#logo {
    cursor: pointer;
    text-decoration: none;
    color: var(--primary);
    font-size: 36px;
    font-weight: bold;
    font-family: 'IBM Plex Sans';
    transition: 300ms;
}

#logo:hover {
    color: var(--knappHover);
}

.subnav {
    background: var(--secondary);
    padding: 8px 8px 8px 28px;
    color: white;
    display: flex;
    flex-direction: row;
}

.navSelect {
    font-weight: bold !important;
    color: var(--barKnappColor) !important;
}

a {
	color: var(--primary);
}

.logg-inn-button {
    cursor: pointer;
    color: var(--primary);
    background-color: transparent;
    text-decoration: none;
    border: 2px solid var(--primary);
    text-align: center;
    display: inline-block;
    font-size: 18px;
    border-radius: 8px;
    padding: 8px 20px;
    margin-right: 8px;
    transition: 300ms;
}

.logg-inn-button:hover {
    border-color: var(--knappHover);
    color: var(--knappHover);
}

.ny-brukar-button {
    cursor: pointer;
    background-color: var(--primary);
    text-decoration: none;
    color: var(--background);
    text-align: center;
    display: inline-block;
    font-size: 18px;
    border-radius: 8px;
    padding: 10px 28px;
    transition: 300ms;
}

.ny-brukar-button:hover {
    background-color: var(--knappHover);
}

#header {
    width: 100%;
    position: fixed;
    z-index: 10;
	top: 0px;
}

#nav-bar {
    display: flex;
    height: 67px;
    padding: 12px;
    box-shadow: 0px 4px 18px -2px var(--skugge);
    background: var(--background);
    vertical-align: middle;
    align-items: center;
    z-index: 20;
    position: relative;
}

#button-container {
    display: flex;
    justify-content: right;
    align-items: center;
    height: auto;
    margin: auto 12px auto auto;
}

#nav-links-container {
    vertical-align: middle;
    height: auto;
    margin: auto auto auto 8px;
    padding: 8px;
}

#nav-links-container>a {
    cursor: pointer;
    margin-left: 24px;
    transition: 300ms;
}

.heim-nav:hover,
.stol-nav:hover {
    color: var(--knappHover);
}

.footer {
    position: relative;
    z-index: 7;
    height: auto;
    padding: 12px !important;
    box-shadow: 0px 5px 18px 1px var(--skugge);
    background-color: var(--background);
    color: white;
}

.copyright {
    margin-bottom: 18px;
    margin-top: 18px;
    width: 100%;
    height: 100%;
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 3;
    color: var(--primary);
}

.container {
    padding: 28px 28px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: transparent;
}

picture.background {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    filter: blur(3px);
    opacity: 0.1;
    z-index: 0;
    overflow: hidden;
}

picture.background>img {
    margin: 0;
}

.content-white {
    margin-right: 12px;
    line-height: 28px;
    width: 50%;
    padding: 28px;
    color: white;
    position: relative;
    z-index: 1;
}

.content-green {
    margin-right: 12px;
    line-height: 28px;
    width: 50%;
    padding: 28px;
    color: var(--label);
    position: relative;
    z-index: 1;
}

.image-right {
    margin-top: 10px;
    margin-right: 12px;
    margin-left: 12px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 3px 3px 18px 2px var(--svakSkugge);
}

picture {
    width: 50%;
}

.reklame-nummer {
    font-size: 4em;
    margin: 0;
    margin-right: 0.2em;
    text-align: left;
    font-weight: normal;
    text-decoration: none;
}

.reklame-celle-tekst {
    color: var(--label);
    line-height: 1.25;
}

.reklame-celle {
    justify-content: center;
    align-items: center;
    display: flex;
    flex: none;
    padding: 8px;
    box-shadow: 3px 3px 10px 2px var(--svakSkugge);
    background-color: var(--cell);
    height: 100px;
    min-width: 250px;
    margin: 10px;
    border-radius: 12px;
    text-align: center;
    transition-duration: 300ms;
    overflow: hidden;
	position: relative;
	z-index: 4;
}

.reklame-celle:hover {
    transform: translateY(-3px) scale(1.005);
    box-shadow: 0 24px 26px var(--svakSkugge),
        0 24px 36px var(--svakSkugge);
    overflow: hidden;
}

.reklame-bobler {
    border-radius: 18px 18px 0 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding: 24px;
}

.app-links {
    justify-content: center;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: auto;
}

.boble {
    background-color: var(--background);
    margin: 24px;
    border-radius: 24px;
    box-shadow: 3px 3px 10px 2px var(--skugge);
	position: relative;
	display: inline-block;
}

@media screen and (min-width: 1548px) {
    .boble {
        margin: 24px auto;
        width: 1500px;
    }
}

.opne-sidebar {
    margin-right: 12px;
    font-size: 32px;
    display: none;
    cursor: pointer;
}

#sidebar {
    margin-top: 67px;
    height: 100%;
    width: 300px;
    position: fixed;
    z-index: 6;
    top: 0;
    left: 0;
    border-radius: 0 12px 12px 12px;
    background-color: var(--background);
    overflow-x: hidden;
    padding-top: 32px;
}

.lukk {
    cursor: pointer;
    position: absolute;
    top: 4px;
    right: 8px;
    font-size: 32px;
    margin-left: 50px;
}

.sidebar-links {
    margin: 0 0 12px;
    font-size: 20px;
    border-bottom: 1px solid;
    padding-bottom: 2px;
}

.sidebar-links:hover {
    cursor: pointer;
}

#blur {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
    background: var(--skugge);
    z-index: 5;
}

/* MOBIL */

@media screen and (max-width: 1200px) {

    .boble {
        margin: 24px;
        border-radius: 24px;
    }

    .p {
        margin: 0;
    }

    .container {
        flex-direction: column;
        padding: 28px;
    }

    .content-green,
    .content-white {
        width: 100%;
        padding: 0px;
        margin: 0;
    }

    #nav-links-container {
        display: none;
    }

    .opne-sidebar {
        display: block;
    }

    .image-right {
        width: 100%;
        margin: 0;
    }

    picture {
        width: 100%;
    }

    .sidebar {
        display: initial !important;
    }
}

@media screen and (max-width: 700px) {

    #button-container {
        display: none;
    }

    .boble {
        margin: 12px;
        border-radius: 12px;
    }

    .p {
        margin: 0;
    }

    .container {
        padding: 12px;
    }

    .content-green,
    .content-white {
        padding: 12px;
    }
}

.showOnVerySmallScreen {
    display: none;
}

@media screen and (max-width: 400px) {

    .boble {
        border-radius: 0px;
        margin: 0px;
    }
}

@media screen and (max-width: 350px) {
    .showOnVerySmallScreen {
        display: initial;
    }
}