@font-face {
	font-family: "helv";
	src: url("fonts/helv.woff") format('woff');
}

:root {
	--curr-bg: #FBFCFC;
	--curr-txt: #181A1B;
	--curr-bg-alt: #ddd;
	--curr-txt-alt: #090808;
	--light-bg: #FBFCFC;
	--light-txt: #181A1B;
	--dark-bg: #181A1B;
	--dark-txt: #FBFCFC;
	--main-green: #76ba43;
	--light-green: #50ff76;
	--dark-green: #65a744;
	--darker-green: #40711a;
	--light-main: #FBFCFC;
	--light-alt: #ddd;
	--dark-main: #181A1B;
	--dark-alt: #333333;
}

[hidden] {
    display: none !important;
}

html {
	background-color: var(--curr-bg);
	background: linear-gradient(180deg, rgb(118, 186, 67) 3%, rgb(80, 255, 118) 25%, var(--curr-bg) 80%) !important;
	background-repeat:no-repeat;
	background-attachment:fixed;
	height: 100vh;
}

body {
	margin: 0;
	overflow: hidden;
}

.body-corner-wrap {
	border-radius: 5vh;
	margin: 1vw;
	overflow: hidden;
}

.body-container {
	background: var(--curr-bg);    
	font-family: helv, sans-serif;
	border-radius: 5vh;
	height: 90vh;
	overflow-y: auto;
}

::-webkit-scrollbar {
	width: 10px;
}

  /* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

  /* Handle */
::-webkit-scrollbar-thumb {
	background: #888;
}

  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}

@media (max-width: 800px) {
	.input-w-label {
		margin-bottom: 1em;
	}
	.login-form {
		max-width: 90%;
	}
	.container {
		max-width: 95%;
	}
	.card-container {
		flex-direction: column;
	}
	.data-card p {
		opacity: 1;
	}
	.data-card {
		margin-bottom: 1em;
		margin-left: 0 !important;
	}
	.header-nav-button {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.card-separator {
		height: 0.2em !important;
		width: 12em !important;
	}
}

.container {
	max-width: 90%;
	margin: 0 auto;
	padding: 30px;
	text-align: center;
}

.back-button {
	position: absolute;
    top: 13%;
    left: 5%;
	z-index: 100;
}

.input-w-label {
	display: grid;
	grid-template-columns: max-content max-content;
	grid-column-gap: 1em;
	justify-content: center;
	align-items: center;
}

#logo_container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 0em;
	padding-bottom: 0em;
	/* background-image:url('logo.png');
	background-repeat: no-repeat;
	background-size: 120pt;
	background-position: center 0pt; */
	margin-bottom: -1.5vh;
}

#logo {
	max-height: 20vh;
}

.h1_container {
	padding-top: 0em;
	padding-bottom: 0em;
}

.h4_container {
	padding-top: 0em;
	padding-bottom: 0em;
	padding: 1em;
}

h1 {
	font-family: 'helv';
	color: var(--curr-txt);
}

h2 {
	font-family: 'helv';
	color: var(--curr-txt);
	font-weight: bold;
}

h3 {
	color: var(--curr-txt);
	font-weight: normal;
}

h4 {
	font-family: 'helv';
	color: var(--curr-txt);
	font-weight: 100;
	margin: 0;
}

label {
	color: var(--curr-txt);
}

input {
	border: 0;
	padding-top: 10pt;
	padding-bottom: 10pt;
	width: 100%;
	border-radius: 4pt;
	font-size: 18px;
	text-align: center;
	background-color: var(--curr-bg-alt);
	color: var(--curr-txt);
}

.login-input {
	margin-bottom: 1em;
}

input:disabled {
	color: #999;
	font-style: italic;
}

input:focus {
	outline: 0;
}

input:-webkit-autofill::first-line {
	font-size: 18px
}

button {
	border: 0;
	background: var(--main-green);
	color: #FBFCFC;
	text-shadow: 1px 1px 1px #181A1B;
	padding: 10px 20px;
	font-size: 18px;
	border-radius: 4px;
	font-weight: bold;
}

button:disabled {
	background:rgb(107, 107, 107);
	cursor: not-allowed;
	pointer-events: auto;
}

button:enabled:hover {
	background: var(--dark-green);
}

button:enabled:active {
	box-shadow: inset 0 0 15px var(--darker-green);
}

.page-button-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 1em;
}

.page-button {
	max-height: 2em;
	max-width: 12em;
	margin: auto;
}

img {
	object-fit: contain;
	height: 100%;
}

#darkmode-button-img {
	box-shadow: 0 0 5px var(--curr-bg);
	border-radius: 12em;
}

.radio-button {
	margin: 0.5em !important;
}

svg {
	color: inherit;
}

.no-content {
	width: 100%;
	justify-content: center;
	text-align: center;
}

.no-content h3 {
	color: tomato !important;
}
