*{
	transition: .3s ease;
	font-family: "Inter", sans-serif;
}
body{
	margin: 0;
	padding: 0;
	font-family: monospace;
}

#root{
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
}

/* ===================== DASHBOARD MODAL DIALOG ===================== */
#root #modal-dialog{
	position: absolute;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
}
#root #modal-dialog.modal-dialog-visible{
	visibility: visible !important;
	opacity: 1 !important;
}
#root #modal-dialog .modal-cover{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0.4;
}
#root #modal-dialog form{
	position: relative;
	display: flex;
	flex-direction: column;
	background: #212121;
	max-width: 25vw;
	color: white;
	box-shadow: 0px 0px 12px rgba(154, 153, 150, 0.06);
}
#root #modal-dialog form .dialog-details{
	display: flex;
	flex-direction: column;
	gap: 0.2vw;
	padding: 1vw;
	border: 1px solid #363636;
}
#root #modal-dialog form .dialog-details span{
	font-size: 0.8vw;
}
#root #modal-dialog form .dialog-details small{
	font-size: 0.7vw;
	color: darkgrey;
	line-height: 1.2vw;
}
#root #modal-dialog form .dialog-actions{
	display: flex;
	border: 1px solid #363636;
	border-top: 0;
	background: #363636;
	gap: 1px;
}
#root #modal-dialog form .dialog-actions button{
	width: 100%;
	padding: 0.6vw 0;
	background: #212121;
	color: white;
	border: none;
	font-size: 0.7vw;
	cursor: pointer;
}
#root #modal-dialog form .dialog-actions button:hover{
	background: #363636;
}
/* ===================== DASHBOARD MODAL DIALOG ===================== */

/* ===================== DASHBOARD LOADING INDICATOR ===================== */
#root #loading-indicator{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
	margin-bottom: 5vw;
	display: flex;
	align-items: center;
	gap: 0.5vw;
	padding: 0.5vw;
	border-radius: 0.5vw;
	background: #454545;
	color: white;
	box-shadow: 0px 0px 12px rgba(154, 153, 150, 0.06);
	visibility: hidden;
	opacity: 0;
}
#root #loading-indicator.indicator-visible{
	visibility: visible;
	opacity: 1;
}
#root #loading-indicator i{
	aspect-ratio: 1/1;
}
#root #loading-indicator progress{
	height: 0.2vw;
	border: 1px solid #2b2b2b;
	border-radius: 0.2vw;
}
#root #loading-indicator progress::-moz-progress-bar{
	background: #2b2b2b;
	transition: 1s;
}
#root #loading-indicator progress::-webkit-progress-value{
	background: #2b2b2b;
	transition: 1s;
}
/* ===================== DASHBOARD LOADING INDICATOR ===================== */

/* ===================== DASHBOARD NOTIFICATION BANNER ===================== */
#root #notification-banner{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
	margin-top: 3vw;
	margin-right: 1vw;
	padding: 0.5vw;
	height: auto;
	display: flex;
	align-items: center;
	gap: 0.5vw;
	background: #454545;
	border-radius: 0.5vw;
	color: white;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0px 0px 12px rgba(154, 153, 150, 0.06);
}
#root .notification-visible{
	opacity: 1 !important;
	visibility: visible !important;
}
#root #notification-banner .notification-indicator{
	font-size: 1.2vw;
}
#root #notification-banner .notification-details{
	display: flex;
	flex-direction: column;
	min-width: 10vw;
}
#root #notification-banner .notification-details span{
	font-size: 0.8vw;
}
#root #notification-banner .notification-details small{
	margin-top: 0.2vw;
	font-size: 0.7vw;
	color: darkgrey;
}
#root #notification-banner button{
	border: none;
	color: white;
	background: none;
	font-size: 0.8vw;
	cursor: pointer;
}
/* ===================== DASHBOARD NOTIFICATION BANNER ===================== */

/* Authorization Route */
#root .auth-root{
	display: flex;
	flex-direction: column;
	align-items: center;
	height: calc(100vh - 8vh);
	padding: 4vh 0;
	width: 100vw;
	background: #191919;
}
#root .auth-root img{
	height: 1vw;
}
#root .auth-root form{
	margin-top: auto;
	color: white;
	display: flex;
	flex-direction: column;
	width: 16vw;
}
#root .auth-root form img{
	height: 3vw;
	margin-bottom: 0.5vw;
}
#root .auth-root form h1{
	font-weight: bold;
	font-size: 1.5vw;
	margin: 0;
	margin-bottom: 1.5vw;
	text-align: center;
}
#root .auth-root form input{
	width: calc(100% - 1vw);
	padding: 0.5vw;
	border: 1px solid #313338;
	border-radius: 0.5vw;
	background: transparent;
	margin-bottom: 0.5vw;
	color: white;
	font-size: 0.7vw;
}
#root .auth-root form input:focus{
	outline: none;
	border-color: grey;
}
#root .auth-root form font{
	margin-bottom: 0.5vw;
	font-size: 0.7vw;
	font-weight: bold;
	text-align: left;
	color: #B00020;
}
#root .auth-root form button{
	width: 100%;
	padding: 0.5vw;
	border: none;
	border-radius: 0.5vw;
	font-size: 0.7vw;
	font-weight: bold;
	background: white;
	cursor: pointer;
}
#root .auth-root form button:hover{
	background: #CCC;
}
#root .auth-root .auth-footer{
	width: 20vw;
	margin-top: auto;
	color: white;
	text-align: center;
}
#root .auth-root .auth-footer span{
	font-size: small;
	opacity: .7;
}
#root .auth-root .auth-footer span a{
	color: white;
}
#root .auth-root .auth-footer .auth-footer-meta{
	margin: 0 auto;
	margin-top: 1.5vw;
	display: flex;
	gap: 1vw;
	width: fit-content;
}
#root .auth-root form.tablet-form{
	width: 25vw;
}
#root .auth-root form.tablet-form img{
	height: 5vw;
}
#root .auth-root form.tablet-form h1{
	font-size: 1.8vw;
}
#root .auth-root form.tablet-form input{
	width: calc(100% - 4vw);
	padding: 1.2vw 2vw;
	font-size: 1.5vw;
}
#root .auth-root form.tablet-form button{
	padding: 1.2vw 2vw;
	font-size: 1.4vw;
}
/* Authorization Route */