* {
	font-family: 'Inter', sans-serif;
}

@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	src: url(/MaterialIcons-Regular.ttf) format('truetype');
}

body {
	margin: 0;
}

h2 {
	font-weight: normal;
}

input[type='text'],
input[type='password'],
input[type='email'],
input[type='number'],
input[type='file'],
input[type='tel'],
select,
textarea {
	width: 100%;
	padding: 10px 8px;
	margin: 4px 0 12px 0;
	display: inline-block;
	border: 1px solid #000;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 0.875rem;
	background-color: white;
}

label {
	font-size: 0.875rem;
	color: black;
}

.material-icons {
	text-transform: lowercase;
	font-family: 'Material Icons';
	font-size: 1.3em;
}

.login-header {
	height: 80px;
	background-color: #fff;
	display: flex;
	align-items: center;
	position: relative;
}

.login-header img {
	max-height: 100%;
	height: 50px;
}

.login-page {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	box-sizing: border-box;
	padding-top: 40px;
}

.login-form {
	margin: 0 auto;
}

.selectContainer > input {
	box-sizing: border-box;
}

.icon-button {
	padding: 5px;
	color: #30465e;
	display: inline-block;
	width: 35px;
	text-align: center;
}

.icon-button:hover {
	cursor: pointer;
	color: #36577a;
}

.fileupload {
	width: 99%;
	height: 100px;
	border: black 1px dashed;
	border-radius: 5px;
}

.dialog-btn {
	float: right;
}

.link {
	text-decoration: none;
	color: #f7941d;
}

.link:hover {
	text-decoration: underline;
	cursor: pointer;
}

@media (max-width: 1800px) {
	.hide-large {
		display: none;
	}
}

@media (max-width: 1280px) {
	.hide-medium {
		display: none;
	}
}

@media (max-width: 600px) {
	.hide-mobile {
		display: none;
	}
}

.hidden {
	display: none;
}

input:disabled,
textarea:disabled,
div[data-disabled='true'] {
	background: #dddddd;
	pointer-events: none;
	opacity: 0.6;
}
