:root {
	--table_borders: var(--test);
	--throbber-size: 1rem;
	--blue: rgb(20,87,137);
	--black: #282828;

	--main-color: #d91724;
	--main-color-trans: rgba(217, 23, 36, 0.8);
	--main-color-trans5: rgba(217, 23, 36, 0.5);
	--main-color-trans2: rgba(217, 23, 36, 0.1);
	--main-color-light: #ff4956;
	--main-color-dark: #a70000;

	--light-blue: rgb(220, 247, 255);
	--light-red: rgb(255, 232, 203);

	--test: rgb(170, 170, 170);
}


* {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-family: "Lato", sans-serif;
	font-size: 14px;
}

body, html {
	height: 100%;
}

button:disabled {
	cursor: not-allowed;
}

.center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.h-full {
	height: 100%;
}

.w-full {
	width: 100%;
}

.flex-col {
	flex-direction: column;
}

.red {
	color: red;
}

.title {
	font-size: 1rem;
	font-weight: bold;
	width: 100%;
}

.home > a {
	color: white;
	text-decoration: none;
}

.form_container > form {
	display: flex;
	max-height: 56rem;
	flex-direction: column;
	flex-grow: 1;
	gap: 1rem;
}

.form_container {
	display: flex;
	flex-direction: column;
	padding: 2rem 4rem;
	border: 1px solid var(--test);
	gap: 1rem;
	box-shadow: 5px 5px 5px var(--test);
	border-radius: 15px;
	max-width: 42rem;
	background-color: white;
}

.form_input_group {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.results {
	height: 16rem;
	overflow-y: scroll;
	scrollbar-width: thin;
}

.modal {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	justify-content: center;
	align-items: center;
	background-color: hsla(0, 0%, 50%, 0.7);
}

.modal_content {
	display: flex;
	flex-direction: column;
	width: 48rem;
	height: 32rem;
	background-color: white;
	border: 1px solid var(--test);
	padding: 1rem;
	overflow-y: scroll;
	scrollbar-width: thin;
	gap: 1rem;
}

.modal_content > table {
	border-collapse: collapse;
	width: 100%;
	max-height: 100%;
	overflow-y: scroll;
	overflow-x: scroll;
}

.browse_header > th {
	padding: 0.5ch;
	text-align: left;
}

.browse_row > td {
	text-align: left;
}

.browse_row > td {
	padding: 0.5ch;
	border: 1px solid var(--table_borders);
	border-right: 0px;
	border-left: 0px;
	user-select: none;
}

.browse_row > td:nth-child(1) {
	border-left: 1px solid var(--table_borders);
}

.browse_row > td:last-of-type {
	border-right: 1px solid var(--table_borders);
}

.browse_row:hover > td {
	background-color: lightblue;
}

.form_submit_container {
	display: flex;
	width: 100%;
	justify-content: center;
	padding: 1rem 0rem;
}

.form_submit_container > button {
	display: flex;
	height: fit-content;
	align-items: center;
}

.form_submit_container > button > svg {
	height: 1rem;
	aspect-ratio: 1/1;
}

.button {
	padding: 10px 20px;
	border-radius: 15px;
	border: 3px solid var(--black);
	background-color: white;
	transition-duration: 0.2s;
	width: fit-content;
}

.button:hover {
	border: 3px solid var(--black);
	background-color: var(--black);
	color: var(--main-color);
}

.container {
	max-width: 110rem;
	width: 100%;
}

.header {
	display: flex;
	justify-content: space-between;
}

.button-small {
	padding: 5px 10px;
	border-radius: 15px;
	border: 2px solid var(--test);
	background-color: white;
	transition-duration: 0.2s;
	width: fit-content;
}

.button-small:hover {
	border: 2px solid var(--test);
	background-color: var(--test);
	color: var(--main-color);
}

.hover-blue:hover {
	color: var(--blue);
}

.throbber {
	width: var(--throbber-size);
	height: var(--throbber-size);
	border-radius: 100%;
	border: calc( var(--throbber-size) / 2 ) solid rgb(43, 43, 43);
	border-top: calc( var(--throbber-size) / 2 ) solid var(--main-color);
	animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	0% { rotate: 360deg; }
	100% { rotate: 0deg; }
}

.content {
	display: flex;
	height: 100%;
}

.content > aside {
	background-color: rgb(245, 245, 245);
	width: 15%;
	padding-top: 2.5rem;
	display: flex;
	flex-direction: column;
}

.content > article {
	width: 85%;
}

.table {
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}

.table > thead > tr > th {
	padding-left: 1rem;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--main-color);
	color: var(--main-color);
	font-weight: bold;
}

.table > tbody > tr > td {
	padding: 1rem;
	line-height: 18px;
	background-color: var(--light-blue);
	cursor: pointer;
	user-select: none;
}


.table > tbody > tr.attention > td {
	background-color: var(--light-red);
}


/* Van: admin.velisoft.nl */
.content aside ul li {
	float: left;
	width: 100%;
	overflow-x: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.logo {
	float: left;
	width: 100%;
	text-align: center;
}

a {
	color: var(--main-color);
	text-decoration: none;
}

.logo img {
	width: 80%;
}

img {
	border: 0px;
}

main {
	width: 100%;
	padding: 1rem;
	background-color: white;
	box-sizing: border-box;
}

aside .active_li, aside ul a:hover {
	background-color: var(--main-color);
	color: white;
}

aside ul a {
	display: flex;
	float: left;
	width: 90%;
	list-style-type: none;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10%;
	color: #666;
	-webkit-transition: all ease 0.4s;
	-moz-transition: all ease 0.4s;
	transition: all ease 0.4s;
	align-items: center;
	gap: 0.5rem;
	font-size: 16px;
}

aside ul {
	flex: 1;
	display: flex;
	width: 100%;
	flex-direction: column;
}

aside ul a svg {
	height: 16px;
}

aside ul li:first-child {
	padding-top: 3rem;
}

aside ul li:last-child {
	padding-bottom: 2rem;
}

.bold {
	font-weight: bold;
	font-size: 16px;
}

.cloudpanel_link {
	display: flex;
	width: 7rem;
	background-color: rgb(1,120,212);
	color: white;
	aspect-ratio: 3/1;
	justify-content: center;
	align-items: center;
	padding: 0.2rem;
	align-self: flex-end;
}

.cloudpanel_link > div > img {
	width: 1rem;
}

.cloudpanel_link > div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0.2rem;
}

main {
	display: inline-flex;
	flex-direction: column;
	gap: 1rem;
}

.above-table {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
}

.align-right {
	text-align: right;
	align-self: right;
	float: right;
}

.svg-black {
	filter: invert(1) brightness(0);
}

.table_link {
	width: 1px;
}

.table_link a {
	display: block;
	position: relative;
}

.table_link > a > img {
	position: absolute;   
	top: 53%;
	left: 50%;
	transform: translate(-60%, -57%);
}

.relative {
	position: relative;
}

.list {
	list-style: none;
	max-height: 100%;
}

.right-above {
	display: flex;
	gap: 0.5rem;
}

#apt_update {
	display: flex;
	padding: 0.2rem;
	justify-content: center;
	align-items: center;
	background-color: var(--main-color-light);
	cursor: pointer;
	color: white;
}

.login {
	float: left;
	width: 88%;
	padding-left: 6%;
	padding-right: 6%;
	padding-bottom: 20px;
	text-decoration: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: white;
	box-shadow: 0 0 2px #636363;
	-moz-box-shadow: 0 0 5px #636363;
	-webkit-box-shadow: 0 0 5px #636363;
	margin-top: 70px;
}

.logo {
	float: left;
	width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
}

.veli-input {
	float: left;
	width: 100%;
	background-color: #E5E6E8;
	border: 0 none;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	color: #6F7278;
	padding-top: 30px;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 30px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-top-left-radius: 5px;
	-moz-border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-bottom-left-radius: 0;
	-moz-border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	margin: 0;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
	-webkit-transition: all 0.7s ease 0s;
	-moz-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
	-webkit-appearance: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.password {
	-webkit-border-top-left-radius: 0;
	-webkit-border-top-right-radius: 0;
	-moz-border-top-left-radius: 0;
	-moz-border-top-right-radius: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-bottom-left-radius: 5px;
	-moz-border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.veli-button {
	cursor: pointer;
	font-size: 30px;
	font-family: 'Lato', sans-serif;
	margin-top: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #ffffff;
	background-color: var(--main-color);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 2px;
	text-shadow: 3px 3px #ccc;
	text-align: center;
	outline: none;
	border: none;
	-webkit-appearance: none;
	cursor: pointer;
	-moz-box-shadow: 0px 0px 0px rgba(000,000,000,0.5), inset 0px 0px 0px rgba(087,087,087,0.7);
	-webkit-box-shadow: 0px 0px 0px rgba(000,000,000,0.5), inset 0px 0px 0px rgba(087,087,087,0.7);
	box-shadow: 0px 0px 0px rgba(000,000,000,0.5), inset 0px 0px 0px rgba(087,087,087,0.7);
	text-shadow: 0px -1px 0px rgba(0,0,0,0.2), 0px 1px 0px rgba(255,255,255,0.3);
}

.login_button {
	float: left;
	width: 100%;
	text-decoration: none;
}

.veli-container {
	margin: auto;
	width: 450px;
}

.error {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;

	height: 5rem;
	background-color: var(--main-color-trans);
	color: white;
	justify-content: center;
	align-items: center;

	transform: translateY(100%);
	animation: slideUp 4s ease-out forwards;
}

@keyframes slideUp {
	0% {
		transform: translateY(100%);
	}
	10%{
		transform: translateY(0);
	}
	90% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(100%);
	}
}

.sign_out {
	margin-top: auto;
	color: white;
}
.sign_out > a {
	background-color: var(--black);
	color: white;
}

#cloud_update {
	display: flex;
	padding: 0.2rem;
	justify-content: center;
	align-items: center;
	background-color: var(--main-color-light);
	cursor: pointer;
	color: white;
}
