html {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #FFF;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

body {
    min-height: 100%;
}


.relative {
    position: relative;
}

img {
	width: auto;
	max-width: 100%;
	height: auto;
}

/*------------------------------------*\
    Heading
\*------------------------------------*/
h1 {
    font-size: 25px;
    text-transform: uppercase;
    margin: 0 0 1em;
}

h2 {
    font-size: 20px;
    margin: 0 0 0.5em;
}

h3, h4, h5, h6 {
    font-size: inherit;
    margin: 0 0 0.3em;
}

/*------------------------------------*\
    Text
\*------------------------------------*/
p {
    margin: 0 0 1em;
}

a {
    text-decoration: none;
    color: #0055A4;
    transition: color 0.125s ease;
}

a:hover {
    color: #000;
}

/*------------------------------------*\
    Formular
\*------------------------------------*/
input:not([type="radio"]):not([type="checkbox"]),
textarea {
    background: #F2F2F2;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    padding: 5px;
    transition: background 0.2s ease;
	-webkit-appearance: none;
	
}

input:not([type="radio"]):not([type="checkbox"]):focus,
textarea:focus {
    background-color: #E6E6E6;
}

textarea {
    min-height: 120px;
}