@font-face {
	font-family: Heijmans;
	src: url('../fonts/Heijmans-Normal.ttf') format('OpenType');
	font-weight: 400;
}

@font-face {
	font-family: Heijmans;
	src: url('../fonts/Heijmans-Light.otf') format('OpenType');	
	font-weight: 200;
}

@font-face {
	font-family: Heijmans;
	src: url('../fonts/Heijmans-BoldCon.otf') format('OpenType');
	font-weight: 600;
}

@font-face {
	font-family: Heijmans;
	src: url('../fonts/Heijmans-BlackCon.otf') format('OpenType');
	font-weight: 800;
}

html {
	height: 100vh;
    scroll-behavior: smooth;
}

body {
	font-family: 'Heijmans', "Heijmans-light", sans-serif;
    font-size: 1em;
    font-style: normal;
    width: 100%;
    height: 100%;
    margin: 0;
    color: #003366;
    display: flex;
    flex-direction: column;
}

form {
    padding: 0;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form a {
    font-size: 1.2em;
}

tbody {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ui-menu {
    padding: 0;
    margin: 0;
}

td {
    display: flex;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
}

#wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.ui-outputlabel {
    font-size: 1.3em;
}

.ui-inputfield {
    border-radius: 5px;
    border: 1px solid #E6E6E5;
    padding: 0.5em 1em 0.5em 0.3em !important;
    margin: 0.5em !important;
    font-size: 1.1em;
    width: 20em;
    -webkit-transition: 0.3Ss;
}

.column-in {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
    margin-top: 10vh;
    width: 15vw;
    max-width: 20em;
    min-width: 13em;
}

button {
    border: none !important;
    padding: 0.4em 3em !important;
    background-color: #FEB900 !important;
    color: white !important;
    font-size: 1.3em !important;
    border-radius: 5px !important;
    margin: 1.5em !important;
    max-width: 20em;
}

button:hover {
    opacity: 0.9;
}

button:active {
    opacity: 0.7;
}

.ui-button:disabled {
    background-color: #003366;
    color: #E6E6E5;
}

/* Styles for focused input */
p:focus {
    border-color: blue;
    box-shadow: 0px 0px 5px blue;
}

/* Styles for active input */
.ui-state-active {
    background-color: #E6E6FA;
}

form {
    color: #003366;
}

.ui-inputfield:focus {
    border: 1px solid #FEB900 !important;
    color: #003366;
    background-color: none;
}

.ui-button-disabled {
    color: #E6E6E5;
    background-color: #003366;
} 

.ui-button-active {
    color: white;
    background-color: #FEB900;
}

footer {
    background-color: #FEB900;
    color: #003366;
    width: 100%;
    margin-top: auto;
    line-height: 1.6em;
}

footer > * {
    font-size: 0.7em;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
}

.grid .with-separator {
    border-color: #979797;
    border-style: solid;
    border-width: 0 0 1px 0;
}

@media (min-width: 48em) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid .with-separator {
        border-width: 0 1px 0 0;
    }

    .hide-desktop {
        display: none;
    }
}

@media (min-width: 70em) {
    #hamburger tbody {
        display: flex;
    }
    
    #menu a {
        display: block;
        margin-right: 1.5em;
        text-decoration: none;
        font-weight: 600;
    }

    #hamburger input {
        display: none;
    }

    tr a {
        padding: 4em;
    }
}

.showOnTouchDevice {
    display: none;
}

@media (pointer:coarse) {
    .showOnTouchDevice {
        display: block;
    }

    span.showOnTouchDevice {
        display: inline;
    }
}
