/* Custom font
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'GL Condensed';
    src:
        url('/fonts/GLCondensed-Light.woff2') format('woff2'),
        url('/fonts/GLCondensed-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GL Condensed';
    src:
        url('/fonts/GLCondensed-Regular.woff2') format('woff2'),
        url('/fonts/GLCondensed-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GL Condensed';
    src:
        url('/fonts/GLCondensed-Bold.woff2') format('woff2'),
        url('/fonts/GLCondensed-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GL';
    src:
        url('/fonts/GL-Light.woff2') format('woff2'),
        url('/fonts/GL-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* GL colors
   ========================================================================== */
/*    rgba(0, 0, 0, 1.0); /* Black */

/*    rgba(28, 34, 55, 1.0); /* GL Mørkeblå */
/*    rgba(203, 246, 248, 1.0); /* GL Turkis */
/*    rgba(250, 249, 245, 1.0); /* GL Sand */
/*    rgba(70, 22, 22, 1.0); /* GL Mørk Rød */
/*    rgba(243, 223, 255, 1.0); /* GL Lyserød */
/*    rgba(247, 253, 190, 1.0); /* GL Gul */

/* Base elements
   ========================================================================== */
html {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-feature-settings: 'liga' 1, 'calt' 1;
    font-variation-settings: 'slnt' 0;
    line-height: 1.6;

    background-color: transparent !important; /* iframe setting */
    color: rgba(28, 34, 55, 1.0); /* GL Mørkeblå */
}

body {
    position: relative; /* Required for overlay */
}

header {
    position: relative;
    width: 100%;
    height: 155px;

    text-align: center;

    background-image: url("/images/header_background.jpg");
    background-repeat: repeat-x;

    display: none; /* iframe setting */
}

header img {
    width: 1200px;
    height: auto;

    margin: 0 auto;  
}

main {
    width: 1200px;
    height: auto;

    padding: 0px;
    margin: 0 auto;
}


section {
    width: 100%;
    height: auto;

    margin-top: 75px;
}

section:first-of-type {
    margin-top: 0px;
}

.section_inner {
    margin-top: 25px;
}

article {
    width: 100%;
    height: auto;

    padding: 50px;

    background-color: rgba(250, 249, 245, 1.0); /* GL Sand */
}

.article_small {
    width: 820px;
    height: auto;

    margin: 0 auto;
}

footer {
    width: 100%;
    height: 50px;

    background-color: transparent

    /*display: none; /* iframe setting */
}

/* Navigation - Top
   ========================================================================== */
#navigation_bar {
    width: auto;
    height: auto;

    display: none;
}

/* Links
   ========================================================================== */
a, a:link, a:active, a:visited {
    color: rgba(28, 34, 55, 1.0); /* GL Mørkeblå */
	outline: none;

	text-decoration:none;
	-webkit-transition: color 0.25s ease;
	-moz-transition: color 0.25s ease;
	-o-transition: color 0.25s ease;
	transition: color 0.25s ease;
}

a:hover { 
	color: rgba(0, 0, 0, 1.0); /* Black */
}

/* Headlines
   ========================================================================== */
h1 {
    font-family: 'GL Condensed';
    font-size: 2.375em; /* 38 */
    font-weight: 700;

    margin: 0;
    margin-bottom: 25px;
    padding: 0;
}

h2 {
    font-family: 'GL';
    font-size: 2.375em; /* 38 */
    font-weight: 300;

    margin: 0;
    margin-bottom: 15px;
    padding: 0;
}

h3 {
    display: inline;

    font-family: 'GL Condensed';
    font-size: 1.75em; /* 28 */
    font-style: normal;
    font-weight: 400;

    margin: 0;
    padding: 0;
}

h4 {
    display: inline;

    font-family: 'GL Condensed';
    font-size: 1.75em; /* 28 */
    font-weight: 700;

    margin: 0;
    padding: 0;
}

h5 {
    display: inline;

    font-family: 'GL Condensed';
    font-size: 1.0em; /* 16 */
    font-weight: 400;

    margin: 0;
    padding: 0;
}

h6 {
    display: inline;

    font-family: 'GL Condensed';
    font-size: 1.0em; /* 16 */
    font-weight: 400;

    margin: 0;
    padding: 0;
}

/* Inputs
   ========================================================================== */
input {
    width: 175px;
    height: 45px;

	outline: none;
    padding: 7px 14px;

    border-style: solid;
    border-width: 1px;
    border-color: rgba(208, 208, 208, 1.0); /* Black 25% */

    border-radius: 6px;
}

select {
	outline: none;
    padding: 5px 35px 2px 8px;
    width: 100%;
    color: rgba(83, 97, 110, 1.0); /* Grey */
    background-color: rgba(255, 255, 255, 1.0) !important; /* White for iPhone6 */

    border-style: solid;
    border-width: 1px;
    border-color: rgba(208, 208, 208, 1.0); /* Black 25% */

    background-image: url('/images/select_arrow.png');
    background-position: right center;
    background-repeat: no-repeat;

    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select:focus::-ms-value {background-color: white; color:#000;} /* IE fix */

input[type="radio"], input[type="checkbox"] {
    width: auto;
}

input[type="text"], input[type="number"] {
    font-size: 16px; /* Prevent iphone scrolling */
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* Custom radio and labels */
input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + img {
    content: url('/images/radio_dot_on.png');
}

label img {
    position: relative;
    top: -2px;

    width: 24px;
    height: 24px;
}

label:hover {
    cursor: pointer;
}

/* Remove spin-buttons for numbers */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { 
    -webkit-appearance: none;       
    -o-appearance: none;    
    appearance: none;
}

textarea {
    width: 100%;
    min-height: 200px;

	outline: none;
    padding: 7px;

    resize: vertical;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 0.8em;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 0.8em;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 0.8em;
}

input:-o-input-placeholder, textarea:-o-input-placeholder {
    font-size: 0.8em;
}

::placeholder {
    color: rgba(157, 156, 161, 1.0); /* GL Grey */
}

/* Buttons
   ========================================================================== */
button {
    width: auto;
    height: 44px;

    padding: 0px 20px;
    margin-left: 15px;

	outline: none;
	border: 0px;
	text-decoration: none;

    font-family: 'GL Condensed';
    font-size: 1.125em; /* 18 */
    font-weight: 400;

	color: rgba(28, 34, 55, 1.0); /* GL Mørkeblå */
	background-color: rgba(203, 246, 248, 1.0); /* GL Turkis */

	transition: background-color 0.25s ease;
    border-radius: 6px;

    float: right;
}

button:hover {
	text-decoration: none;

	background-color: rgba(199, 225, 231, 1.0); /* GL Turkis Hover */
}

button:active {
	position: relative;
	top: 1px;
}

/* Miscellaneous
   ========================================================================== */
audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

fieldset, p {
    border: 0;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
}

b {
    font-weight: 700;
}

/* Allowing padding to be used as inner-padding */
div, aside, section, article, input, select, textarea {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

span {
    display: inline;
}

/* Ultra thin lines */
hr {
    height: 1px;
    border: 0;
    border-top: 1px solid ;
    color: rgba(198, 198, 198, 1.0); /* 30% black - Borders */
    margin: 0 auto;

    width: 100%;

    margin-bottom: 30px;
}

.printonly {
    display: none;
}

/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}