/* Custom font
   ========================================================================== */
@import url("https://use.typekit.net/olx0gdq.css");

/* Brand colors
   ========================================================================== */

    /* rgba(139, 31, 66, 1.0); /* Bupl Bordeaux */
    /* rgba(229, 0, 125, 1.0); /* Bupl Magenta */

    /* rgba(0, 174, 181, 1.0); /* Bupl Sekundær Turkis */
    /* rgba(242, 141, 48, 1.0); /* Bupl Sekundær Orange */
    /* rgba(13, 63, 104, 1.0); /* Bupl Sekundær Blå */
    /* rgba(197, 218, 232, 1.0); /* Bupl Sekundær Blå Lys */

    /* rgba(73, 21, 92, 1.0); /* Bupl Tertiær Lilla */
    /* rgba(186, 102, 37, 1.0); /* Bupl Tertiær Sepia */
    /* rgba(255, 229, 171, 1.0); /* Bupl Tertiær Gul */
    /* rgba(0, 74, 35, 1.0); /* Bupl Tertiær Grøn */

    /* rgba(16, 24, 32, 1.0); /* Bupl Sekundær Sort (Text) */

/* Base elements
   ========================================================================== */
html {
    font-family: "quatro-slab", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    
    color: rgba(16, 24, 32, 1.0); /* Bupl Sekundær Sort (Text) */
}

body {

}

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

    text-align: center;

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

    display: none; /* iframe setting */
}

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

    margin: 0 auto;  
}

#wrapper {
	width: 768px;
	height: auto;

    margin: 0 auto;
    margin-bottom: 4vw;
}

section {
    width: 100%;
    height: auto;
}

.section_button {
    margin: 25px 0px;
}

article {
    width: 100%;
    height: auto;

    padding: 50px;

    background-color: rgba(139, 31, 66, 0.10); /* Bupl Bordeaux */

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.article_slim {
    padding: 25px 50px;
}

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

    display: none; /* iframe setting */
}

/* Navigation
   ========================================================================== */
#navigation_bar {
    width: 1440px;
    height: auto;

    margin: 0 auto;

    display: none; /* Hidden due to header image */
}

/* Links
   ========================================================================== */
a, a:link, a:active, a:visited {
    outline: none;
    text-decoration:none;

    color: rgba(139, 31, 66, 1.0); /* Bupl Bordeaux */

    -webkit-transition: color 0.25s ease-out;
    -moz-transition: color 0.25s ease-out;
    -o-transition: color 0.25s ease-out;
    transition: color 0.25s ease-out;
}

a:hover { 
	color: rgba(117, 20, 53, 1.0); /* Bupl Bordeaux Hover */
}

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

/* Headlines
   ========================================================================== */
h1 {
    font-family: "quatro-slab", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3em;

    line-height: 1.2;

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

h2 {
    font-family: "quatro-slab", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
}

h3 {
    font-family: "quatro-slab", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;

    margin: 0;
    padding: 0;
}

/* Form - Select and input
   ========================================================================== */
select, input {
	outline: none;
	border: 0px;
    padding: 4px 15px 0px 15px;

    background-color: rgba(255, 255, 255, 1.0) !important; /* White background, mobileview fix */
}

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

    border-style: solid;
    border-width: 1px;
    border-color: rgba(139, 31, 66, 1.0); /* Bupl Bordeaux */

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

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;

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

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

select option:disabled {
    /*font-weight: bold;
    color: #212121;*/
}

input {
    width: 50%;
    height: 50px;
}

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

/* Custom dot color in radio */
input[type="radio"]:checked:before {
    content: "";
    display: block;
    position: relative;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(139, 31, 66, 1.0); /* Bupl Bordeaux */
}

input[type="radio"] {
    -webkit-transform: scale(1.25); /* Chrome, Safari, Opera */
    -moz-transform: scale(1.25); /* Mozilla, Firefox */
    -ms-transform: scale(1.25); /* IE 9 */
    -o-transform: scale(1.25); /* Opera */
    transform: scale(1.25);
}

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

input[type=number], input[type=text] {
    height: 40px;
    width: 100px;
}

::-webkit-input-placeholder {
    font-size: 14px;
    color: rgba(119, 120, 123, 1.0); /* Black 65% */
}

::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 14px;
    color: rgba(119, 120, 123, 1.0); /* Black 65% */
}

:-moz-placeholder {
    /* Firefox 18- */
    font-size: 14px;
    color: rgba(119, 120, 123, 1.0); /* Black 65% */
}

:-ms-input-placeholder {
    font-size: 14px;
    color: rgba(119, 120, 123, 1.0); /* Black 65% */
}

:-o-input-placeholder {
    font-size: 14px;
    color: rgba(119, 120, 123, 1.0); /* Black 65% */
}

textarea {
    resize: vertical;
}

/* Form - Buttons
   ========================================================================== */
button {
    float: right;

	outline: none;
    width: auto;
    height: 50px;

	padding: 4px 25px 0px 25px;
    border: 0;

 	color: rgba(255, 255, 255, 1.0); /* White */
    text-transform: uppercase;
	background-color: rgba(139, 31, 66, 1.0); /* Bupl Bordeaux */

    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}

button:hover {
	background-color: rgba(117, 20, 53, 1.0); /* Bupl Bordeaux Hover */
}

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

button img {
    position: relative;
    top: -1px;

    width: 25px;
    height: auto;

    margin-left: 5px;
}

#button_back {
    float: left;
}

#button_back img {
    float: left;

    margin-left: 0px;
    margin-right: 5px;
}

/* Miscellaneous
   ========================================================================== */
.printonly {
    display: none;
}

img {
    width: 100%;
}

audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

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

/* Remove focus border */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

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

b {
    font-family: "quatro-slab", serif;
    font-weight: 600;
    font-style: normal;
}

/* Ultra thin lines */
hr {
    height: 1px;
    border: 0;
    border-top: 1px solid ;
    color: rgba(236, 236, 236, 1.0); /* 10% black */
    background-color: rgba(227, 227, 226, 1.0); /* 20% black */
}

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