﻿@import url("app-variable.css");

/*http://aths.org/ custom font*/
@font-face {
	font-family: 'Bauer Bondoni';
	src: url('./fonts/tt0332m_.ttf') format('truetype');
}

@font-face {
	font-family: "Helvetica Neue";
	src: url('./fonts/HelveticaNeue-Roman.otf') format('opentype');
}

@font-face {
	font-family: "Helvetica Neue Bold";
	src: url('./fonts/Helvetica-Bold.ttf') format('opentype');
}

@font-face {
	font-family: "Helvetica Neue Regular";
	src: url('./fonts/HelveticaNeue-Medium.otf') format('opentype');
}


html > body {
	background-color: var(--main-background-color);
	height: 100vh;
	width: 100%;
	margin: 0;
	display: flex;
	flex-flow: column;
	font-family: "Helvetica Neue", Arial, sans-serif;
}

div.page-container {
	margin: 0;
	width: 100%;
}


/*Style for admin login page*/

div.login-page-wrap {
	height: 100%;
	display: flex;
	-o-justify-content: center;
	-webkit-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	-o-align-items: center;
	-webkit-align-items: center;
	align-items: center;
	background-color: #fafafa;
}

div.login-page-wrap > div {
		padding: 20px;
		width: 300px;
		background-color:
	}

	div.login-page-wrap .title {
		padding: 10px;
		background-color: var(--main-color);
		color: white;
	}

		div.login-page-wrap .title p {
			font-weight: 400;
		}

	div.login-page-wrap input {
		height: 30px;
		padding: 0 5px;
	}

		/* ReSharper disable once CssNotResolved */
		div.login-page-wrap input::placeholder {
			font-size: 14px;
		}

/*Field style*/
.field-wrap {
	display: flex;
	flex-direction: column;
	margin-top: 0.5rem;
}

	.field-wrap > input {
		padding: 1px 5px;
	}

		.field-wrap > input[type="date"] {
			border: 1px solid #9E9E9E;
			height: 30px;
		}

.field-no-wrap {
	display: flex;
	flex-direction: row;
}

	.field-no-wrap > input {
		padding: 1px 5px;
	}

		.field-no-wrap > input[type="date"] {
			border: 1px solid #9E9E9E;
			height: 30px;
		}

.award-icon {
	display: block;
	background-image: url(/icons/award-icon.svg);
	width: 30px;
	height: 30px;
}

.award-item {
	background-color: wheat;
	margin-right: 5px;
	margin-bottom: 5px;
	padding: 0 7px;
	border-radius: 5px;
	font-weight: bold;
}
