/* Custom fonts
   ========================================================================== */
@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) */
    /* rgba(243, 243, 244, 1.0); /* Bupl Background */
    /* rgba(242, 233, 236, 1.0); /* Bupl Background pink */

/* 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;  
}

main {
    display: flex;
    justify-content: space-between; /* H */
    flex-wrap: wrap;

	width: 1325px;
	height: auto;

    /*margin: 50px auto; /* iframe setting */
    margin: 0px auto 25px;
}

section {
    display: block;

    width: calc(50% - 25px);
    height: auto;
}

article {
    width: 100%;
    height: auto;

    padding: 50px;
    margin-bottom: 10px;

    background-color: rgba(243, 243, 244, 1.0); /* Bupl Background */

    border-radius: 8px;
}

.article_slim {
    padding: 25px 50px;
}

.article_button_main, .article_button_responsive {
    padding: 0;
    background-color: transparent; 
}

.article_button_responsive {
    display: none;
}

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 */

    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;

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

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

    margin: 0;
    padding: 0;
}

/* Form - Select and input
   ========================================================================== */
input {
    width: 100%;
    height: 50px;
    
	outline: none;
	border: 0px;
    padding: 1px 15px 0px 15px;

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

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

    border-radius: 4px;
}

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

	outline: none;
	border: 0px;
    padding: 4px 15px 0px 15px;

    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;
    background-color: rgba(255, 255, 255, 1.0) !important; /* White background, mobileview fix */

    border-radius: 4px;

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

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

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

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"] {
    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;       
    appearance: none;
}

::-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: 0px 25px 0px 25px;
    margin-top: 10px;
    border: 0;

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

    border-radius: 25px;

    transition: background-color 0.25s ease-out, color 0.25s ease-out;
}

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

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

.button_add {
    float: left;

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

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

.button_add:hover {
    color: rgba(117, 20, 53, 1.0); /* Bupl Bordeaux Hover */
    border-color: rgba(117, 20, 53, 1.0); /* Bupl Bordeaux Hover */
    background-color: rgba(255, 255, 255, 1.0); /* White */
}

/* Tables
   ========================================================================== */
table {
    width: 100%;
    height: auto;

    font-size: 0.9em;
    line-height: 1.5;
    text-align: right;

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

    border-style: solid;
    border-width: 0px;
    border-color: rgba(112, 111, 111, 0.25); /* Black 70% */
}

tr:nth-child(even) {
    background-color: rgba(242, 233, 236, 0.50); /* Bupl Background pink @ 50% */
}

tr:nth-child(odd) {
    background-color: rgba(242, 233, 236, 1.0); /* Bupl Background pink */
}

th {
    padding: 10px;
    width: auto%;

    background-color: rgba(255, 255, 255, 1.0); /* White */

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

td {
    padding: 10px;
    width: auto%;
}

th:first-child , td:first-child {
    text-align: left;
}

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

label:hover {
    cursor: pointer;
}

img {
    width: 100%;
}

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

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

form {
    flex: 0 0 auto;
}

/* 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 {
    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: transparent;
    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;
}