/* fonts */

@font-face {
	font-family: 'Gelasio';
	src: url('_fonts/Gelasio-VariableFont_wght.ttf') format('truetype');
	font-display: swap;
	font-style: normal;
	font-weight: 400 700;
}

@font-face {
	font-family: 'Varta';
	src: url('_fonts/Varta-VariableFont_wght.ttf') format('truetype');
	font-display: swap;
	font-style: normal;
	font-weight: 300 700;
}


/* html tags */

html,body {
	margin: 0;
	padding: 0;
	background-color: #fafafa;
	color: #222222;
	font-family: "Varta", sans-serif;
	font-optical-sizing: auto;
}

a {
	cursor: pointer;
	text-decoration: none;
	color: #0a51a3;
}

a:hover {
	color: #04254a;
}

h1,h2,h3,h4,h5,h6 {
	color: #444444;
	font-family: "Varta", sans-serif;
	font-optical-sizing: auto;
}

h1 {
	font-family: "Gelasio", serif;
	color: #031a34 !important;
	font-weight: 200;
	font-size: 2.75em;
}

hr {
	display: block;
	border: none;
	overflow: visible;
	border-top: 2px dotted #666666;
	width: 5vw;
	margin-left: auto;
	margin-right: auto;
}


/* elements */

.button {
	font-size: 1.125em;
	color: #fff;
	padding: 1em;
	border: 0;
	border-radius: 0.5em;
	text-shadow: inset 0px 1px 0px #263666;
	/*
	background: linear-gradient(#2dabf9, #0688fa);
	*/
	background: linear-gradient(#073d7b, #04254a);
	display: inline-flex;
	gap: 0.75em;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 2px solid #ffffff;
	box-shadow: rgba(128, 128, 128, 0.3) 0px 2px 8px 0px;
	font-family: "Gelasio", serif;
}

.button:hover {
	/*
	background: linear-gradient(#0688fa, #2dabf9);
	*/
	color: #fff;
	background: linear-gradient(#084a94, #063163);
}

.button > img {
	height: 1.75em !important;
	margin: 0 !important;
}

.button > span {
}

.smallbutton {
	cursor: pointer;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.25em;
	padding-left: 0.5em;
	padding-right: 0.5em;
	background-color: #444444;
	border-radius: 0.5em;
	padding-top: 0.25em;
	color: #ffffff;
	box-sizing: border-box;
	font-size: 0.9em;
	border: 0;
}

.smallbutton > img {
	height: 1.5em;
}

.smallbutton > span {
	padding-top: 0.25em;
}

.smallbutton:hover {
	color: #ffffff;
	background-color: #222222;
}

.input_textarea {
    padding: 0.5em 0.6em;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    vertical-align: middle;
	box-sizing: border-box;
	color: #000000;
	background-color: #ffffff;
	height: 10em;
	font-size: 0.9rem;
}

.input_textarea-fw {
    padding: 0.5em 0.6em;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    vertical-align: middle;
	box-sizing: border-box;
	width: 100%;
	color: #000000;
	background-color: #ffffff;
	height: 10em;
	font-size: 0.9rem;
}

.input_text {
    padding: 0.5em 0.6em;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
	box-sizing: border-box;
	color: #000000;
	background-color: #ffffff;
	font-size: 0.9rem;
	margin-bottom: 0;
}

.input_text-fw {
    padding: 0.5em 0.6em;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
	box-sizing: border-box;
	width: 100%;
	color: #000000;
	background-color: #ffffff;
	font-size: 0.9rem;
	margin-bottom: 0;
}

@keyframes spin {
	from { transform: rotate(0turn); }
	to   { transform: rotate(1turn); }
}

.spinner {
	animation: spin 1s linear infinite;
}