@font-face { 
	font-family: "Oswald"; 
	src: url("../../../fonts/Oswald-VariableFont_wght.ttf"); 
}
@font-face { 
	font-family: "Open reg"; 
	src: url("../../../fonts/OpenSans-Regular.ttf"); 
}
@font-face { 
	font-family: "Open italic"; 
	src: url("../../../fonts/OpenSans-Italic.ttf"); 
}
@font-face { 
	font-family: "Open bold"; 
	src: url("../../../fonts/OpenSans-Bold.ttf"); 
}

:root {
	--blue: 21,103,156;
	--red: 234,12,12;
	--green: 6,216,21;
	--darkgreen: 10,97,43;
	--black: 0,0,0;
	--white: 255,255,255;
	--lightgrey: 245,245,245;
	--grey: 200,200,200;
	--darkgrey: 50,50,50;
	--orange: 174,108,4;
	--font: 22px;
	--fontcolor: 0,0,0;
}

body {
	font-size: 20px;
	background: #f3f3f4;
}
body * {
	color: inherit;
	text-decoration: inherit;
	font-size: inherit;
	list-style: inherit;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Open reg";
	font-weight: 300;
	line-height: 1.25em;
	outline: 0;
	z-index: 1;
} 
legend,
h1, h1 *, .h1, .h1 *,
h2, h2 *, .h2, .h2 *,
h3, h3 *, .h3, .h3 *,
h4, h4 *, .h4, .h4 *,
h5, h5 *, .h5, .h5 *,
h6, h6 *, .h6, .h6 * {
	font-family: "Oswald";
	font-weight: 700;
	margin-bottom: 1em;
	display: block;
}
h1, h1 *, .h1, .h1 * {
	font-size: 2.5rem;
}
h2, h2 *, .h2, .h2 * {
	font-size: 2rem;
}
h3, h3 *, .h3, .h3 * {
	font-size: 1.8rem;
}
h4, h4 *, .h4, .h4 * {
	font-size: 1.5rem;
}
h5, h5 *, .h5, .h5 * {
	font-size: 1.2rem;
}
h6, h6 *, .h6, .h6 * {
	font-size: 1rem;
	font-weight: 100;
}
small {
	font-size: 0.8rem;
	font-weight: 300;
}
ul {
	margin-left: 1.5rem;
}
strong {
	font-weight: 500;
	font-family: "Open bold";
}
em {
	font-family: "Open italic";
}
code {
	display: inline-block;
	padding: 1rem;
	line-height: 2rem;
	color: rgb(var(--red));
	background: rgba(var(--red),.25);
	border: .1rem solid rgb(var(--red));
}
p {
	-webkit-hyphens: auto;
	hyphens: auto;
	text-align: justify;
}
hr {
	margin: 1rem 0;
}

sup {
	font-size: .6em;
}

img {
	max-width: 100%;
	height: auto;
}
.dashboard.confirm figure,
.dashboard.index figure {
	display: grid;
	grid-template-columns: 8vw 1fr;
	grid-gap: 2rem;
	justify-content: center;
	align-content: center;
	align-items: center;
	margin-bottom: 1rem;
}
.dashboard.confirm figcaption,
.dashboard.index figcaption {
	font-size: 6vw;
	text-align: right;
}


nav {
	background: rgb(var(--black));
}
nav * {
	color: rgb(var(--blue));
	text-decoration: none;
}
nav .active *,
nav *:Hover {
	color: rgb(var(--white));
	text-decoration: none;
}
header{
	position: sticky;
	top: 0;
	z-index: 10;
}

header > nav {
	width: 100%;
	padding: 10px 20px;
	z-index: 3;
	display: flex;
}

header > nav > *{
	display: flex;
	flex-wrap: wrap;
	font-size: 1em;
	list-style: none;
	margin: 0;
	padding: 0;
}
header > nav > *:first-child{
	flex: 1 0 80%;
}
header > nav > *:last-child{
	justify-content: flex-end;
}
header > nav > *:last-child a{
	padding: 5px .5rem;
}
header > nav a {
	display: flex;
	align-content: center;
	justify-content: center;
	padding: 5px 2rem;
}
header nav a .fas {
	margin-right: .5rem;
	color: inherit;
}

.websites main,
.cookies main,
.support main {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: stretch;
}

main nav {
	display: none;
}
.websites main nav,
.cookies main nav,
.support main nav {
	padding: 40px 20px;
	display: flex;
	flex-direction: column;
	align-content: flex-start;
	min-height: calc(100vh - 50px);
}
main nav * {
	display: inline-block;
	color: rgb(var(--blue));
	font-size: 1em;
	list-style: none;
	margin: 0;
	padding: 0;
}
main nav a {
	white-space: nowrap;
	padding: 5px 10px;
}
.support main nav a {
	white-space: normal;
}
main nav a:Hover * {
	color: inherit;
}

main > div {
	padding: 40px;
}

.red {
	color: rgb(var(--red));
}
.green {
	color: rgb(var(--green));
}

progress {
	width: 100%;
	height: 2rem;
	margin: 2rem 0;
}

.input-group {
	display: flex;
	flex-direction: row;
}
.input-group > * {
	height: auto;
}

.btn {
	transition: .5s;
}
.btn:Hover {
	filter: brightness(175%);
	transition: .5s;
}

.btn-danger,
.alert-danger,
.badge-danger,
.bg-danger {
	background: rgb(var(--red));
	border-color: rgb(var(--red));
	color: #fff;
}
.table .bg-danger {
	background: rgba(var(--red),.8) !important;
	color: #fff;
}
.table .bg-danger:Hover {
	background: rgba(var(--red),.9) !important;
	color: #fff;
}
.alert-danger {
	background: rgba(var(--red),.75);
}
.btn-danger:Hover {
	background-color: rgb(var(--red));
	border-color: rgb(var(--red));
	color: #fff;
}
.btn-info,
.alert-info,
.badge-info,
.bg-info {
	background-color: rgb(var(--blue));
	border-color: rgb(var(--blue));
	color: #fff;
}
.btn-info:Hover {
	background-color: rgb(var(--blue));
	border-color: rgb(var(--blue));
	color: #fff;
}
.btn-success,
.alert-success,
.badge-success,
.bg-success {
	background-color: rgb(var(--green));
	border-color: rgb(var(--green));
	color: #fff;
}
.table .bg-success {
	background: rgba(var(--green),.8) !important;
	color: #fff;
}
.table .bg-success:Hover {
	background: rgba(var(--green),.9) !important;
	color: #fff;
}
.alert-success {
	background-color: rgba(var(--green),.75);
}
.btn-success:Hover {
	background-color: rgb(var(--green));
	border-color: rgb(var(--green));
	color: #fff;
	filter: brightness(105%) !important;
}
.btn-primary,
.alert-primary,
.badge-primary,
.bg-primary {
	background-color: rgb(var(--black));
	border-color: rgb(var(--black));
	color: #fff;
}
.btn-primary:Hover {
	background-color: rgb(var(--darkgrey));
	border-color: rgb(var(--darkgrey));
	color: #fff;
}
.btn-secondary,
.alert-secondary,
.badge-secondary,
.bg-secondary {
	background-color: rgb(var(--darkgreen));
	border-color: rgb(var(--darkgreen));
	color: #fff;
}
.btn-secondary:Hover {
	background-color: rgb(var(--darkgreen));
	border-color: rgb(var(--darkgreen));
	color: #fff;
}
.table-dark {
	background-color: rgb(var(--darkgrey));
}
.table-dark:Hover {
	background-color: rgb(var(--darkgrey)) !important;
}

.card {
	padding: 0;
}
.card > * {
	margin: 0;
}
.card label {
	font-size: 0.9em;
	font-weight: 100;
}
.card small.text-muted {
	display: inline-block;
	padding-left: calc(1.5rem + 1px);
}
.card img {
	max-width: 100%;
	height: auto !important;
}

.badge-outline {
	border: 2px solid red;
	border-color: inherit !important;
}

.alert {
	opacity: .75;
}
.alert .btn {
	margin-top: 1rem;
}

.storniert * {
	text-decoration: line-through;
}

form legend {
	margin-top: 2rem;
}
form legend:first-child {
	margin-top: 0;
}
form label {
	margin-bottom: .5rem;
}
.form-in-line {
	display: flex;
	margin: 0 -1rem;
}
.form-in-line > * {
	margin: 0 1rem;
	flex-grow: 1;
	height: auto;
}
.form-prepend {
	display: grid;
	grid-template-columns: auto 1fr;
}
.form-prepend * {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	height: 100%;
	margin: 0;
}
.form-prepend > *:first-child {
	padding: 0 1rem;
	background: rgb(var(--grey));
	border: 1px solid rgba(var(--black),.5);
	border-right: none;
}
.custom-checkbox *:before {
	background: rgba(var(--red),.9) !important;
	border-color: rgba(var(--red),1) !important;
}
.custom-control .custom-control-input:checked ~ .custom-control-label:before {
	background: rgba(var(--green),.9) !important;
	border-color: rgba(var(--green),1) !important;
}
.custom-control .custom-control-input:disabled ~ .custom-control-label:before {
	background: rgba(var(--grey),.9) !important;
	border-color: rgba(var(--grey),1) !important;
}

dl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 1.5rem;
}
dl dt {
	text-align: right;
	font-weight: 700;
	text-transform: capitalize;
}

footer {
	text-align: center;
}