/* Custom font
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

@font-face {
    font-family: 'Klavika Bd';
    src: url('/fonts/Klavika-Bold.eot');
    src: url('/fonts/Klavika-Bold.eot?#iefix') format('embedded-opentype'),
        url('/fonts/Klavika-Bold.woff2') format('woff2'),
        url('/fonts/Klavika-Bold.woff') format('woff'),
        url('/fonts/Klavika-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

    /* rgba(196, 17, 48, 1.0); /* DFT Red */
    /* rgba(222, 185, 44, 1.0); /* DFT Yellow */
    /* rgba(132, 117, 78, 1.0); /* DFT Gold */
    /* rgba(168, 190, 196, 1.0); /* DFT Blue Grey */
    /* rgba(206, 199, 191, 1.0); /* DFT Blue Warm */
    /* rgba(191, 191, 191, 1.0); /* DFT Blue Cold */

    /* rgba(51, 51, 51, 1.0); /* DFT Headline */
    /* rgba(100, 100, 100, 1.0); /* DFT Text */
    /* rgba(175, 0, 34, 1.0); /* DFT Red Dropdown */
    /* rgba(149, 0, 18, 1.0); /* DFT Red Search */
    /* rgba(98, 0, 12, 1.0); /* DFT Red Search Input */
    /* rgba(232, 232, 232, 1.0); /* DFT Grey Box */
    /* rgba(52, 57, 61, 1.0); /* DFT Black box tab / footer */
    /* rgba(42, 46, 49, 1.0); /* DFT Black box / footer bottom */
    /* rgba(245, 243, 240, 1.0); /* DFT Background */

/* Base elements
   ========================================================================== */
html {
    /*background-color: rgba(246, 246, 246, 1.0); /* 5% Black */

    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;

    color: rgba(100, 100, 100, 1.0); /* DFT Text */
}

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

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

    margin-bottom: 75px;

    background-image: url("/images/header.jpg");
    background-repeat: no-repeat;
    background-position: top center;

    display: none; /* iframe setting */
}

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

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

section {
    position: relative;

    width: 100%;
    height: auto;
}

.button_section {
    margin-top: 25px;
}

article {
    position: relative; /* required */

    width: 770px;
    height: auto;

    padding: 50px;

    background-color: rgba(245, 243, 240, 1.0); /* DFT Background */
}

.transparent_article {
    padding: 0px;
    background-color: transparent;
}

aside {
    float: right;

    width: calc(100% - 700px);
    height: auto;
}

footer {
    width: 100%;
    height: auto;

    padding: 50px;
    margin-top: 50px;

    background-color: rgba(42, 46, 49, 1.0); /* DFT Black box / footer bottom */

    display: none; /* iframe setting */
}

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

    margin: 0 auto;

    text-align: left;

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

#navigation_bar img {
    width: 200px;
    height: auto;

    margin-top: 5px;
    margin-bottom: 5px;
}

/* Links
   ========================================================================== */
a, a:link, a:active, a:visited {
    color: rgba(196, 17, 48, 1.0); /* DFT Red */
	outline: none;
	text-decoration: none;

    font-weight: 600;

	-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(149, 0, 18, 1.0); /* DFT Red Search */
}

aside a, aside a:link, aside a:active, aside a:visited {
    color: rgba(196, 17, 48, 1.0); /* DFT Red */
}

aside a:hover { 
	color: rgba(149, 0, 18, 1.0); /* DFT Red Search */
}

/* Headlines
   ========================================================================== */
h1 {
    font-family: 'Klavika Bd';
    font-weight: bold;
    font-size: 3.625em;

    word-break: break-word;

    color: rgba(51, 51, 51, 1.0); /* DFT Headline */

    margin: 0;
    padding: 0;
}

h2 {
    font-family: 'Klavika Bd';
    font-weight: bold;
    font-size: 1.25em;
    line-height: 1.2;
    word-break: break-word;

    color: rgba(51, 51, 51, 1.0); /* DFT Headline */

    margin: 0px 0px 12.5px;
    padding: 0;
}

.h2_clean {
    margin-bottom: 0px;
}

h3 {
    /*font-family: 'Klavika Bd';*/
    font-weight: bold;
    font-size: 1.125em;
    line-height: 1.2;
    word-break: break-word;

    color: rgba(51, 51, 51, 1.0); /* DFT Headline */

    margin: 0px 0px 12.5px;
    padding: 0;
}

h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.2em;

    margin: 0;
    padding: 0;
}

h5 {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.0em;

    margin: 0;
    padding: 0;
}

h6 {
    /* Overlay headline */
    color: rgba(196, 17, 48, 1.0); /* DFT Red */

    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 2em;
    line-height: 1.0em;

    margin: 0;
    padding: 0;
}

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

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

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

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

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

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

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

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

/* Custom dot color in radio */
input[type="radio"]:checked:before {
    position: relative;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;

    content: "";
    display: block;

    border-radius: 50%;
    background-color: rgba(196, 17, 48, 1.0); /* DFT Red */
}

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[readonly] {

}

input::-webkit-input-placeholder {
    font-size: 1em;
}

input::-moz-placeholder {
    font-size: 1em;
}

input:-ms-input-placeholder {
    font-size: 1em;
}

input:-o-input-placeholder {
    font-size: 1em;
}

textarea {
    resize: vertical;
}

/* Form - Buttons
   ========================================================================== */
button {
    width: auto;
    height: 50px;
	outline: none;
	border: 0px;

    padding: 0px 35px 0px 35px;
    margin-top: 00px;

	color: rgba(255, 255, 255, 1.0); /* White */
	text-decoration: none;
    font-weight: 600;
    text-align: center;

	background-color: rgba(196, 17, 48, 1.0); /* DFT Red */

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

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

button:hover {
	text-decoration: none;

    background-color: rgba(149, 0, 18, 1.0); /* DFT Red Search */
}

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

button:disabled {
    background-color: rgba(196, 17, 48, 0.33); /* DFT Red */
}

.button_back {
    color: rgba(196, 17, 48, 1.0); /* DFT Red */
    background-color: rgba(255, 255, 255, 1.0); /* White */

    border-style: solid;
    border-width: 1px;
    border-color: rgba(196, 17, 48, 1.0); /* DFT Red */
}

.button_back:hover {
    color: rgba(149, 0, 18, 1.0); /* DFT Red Search */
    background-color: rgba(255, 255, 255, 1.0); /* White */

    border-style: solid;
    border-width: 1px;
    border-color: rgba(149, 0, 18, 1.0); /* DFT Red Search */
}

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

    line-height: 1.5;

    border-style: solid;
    border-width: 1px;
    border-color: rgba(100, 100, 100, 0.25); /* DFT Text */
}

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

    vertical-align: top;

    border-style: solid;
    border-width: 1px;
    border-color: rgba(100, 100, 100, 0.25); /* DFT Text */
}

table tr td:first-child {
    vertical-align: top;
}

table tr:first-child {
    /* border-bottom: 2px solid black;*/
}

/* Miscellaneous
   ========================================================================== */
img {
    width: 100%;
}

section img {
    width: auto;
}

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, footer {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

b {
    font-weight: 600;
    color: rgba(51, 51, 51, 1.0); /* DFT Headline */
}

ul {
    margin: 0;
    padding: 0px 0px 0px 16px;

    /*list-style: none; /* Remove default black dot */
    /* list-style-image: url("/images/custom_li_bullet.png");*/
}

/* Ultra thin lines */
hr {
    height: 1px;
    border: 0;
    border-top: 1px solid;
    color: rgba(245, 243, 240, 1.0); /* DFT Background */
    margin: 0px;
}

.printonly {
    display: none;
}

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