﻿:root {
	--padding-hlf: 8px;
	--padding-1: 16px;
	--padding-2: 26px;
	/* DIMENSIONS */
	--max-layout-width: 1080px;
	--max-width-container: 640px;
}



.hlm-logo {
	height: 56px;
/*	background-color: red;*/
	padding: 9px 0 6px 0;
}


#app-layout {
	height: 100dvh;
	position: relative;
	overflow: auto;
}

	#app-layout > .header-container {
		display: flex;
		align-items: center;
		position: sticky;
		top: 0;
		flex-direction: column;
		justify-content: center;
		padding: 0 var(--padding-1);
		min-height: 48px;
		color: #EEE;
		z-index: 12;
		background-color: #212121;
		box-shadow: 0px 1px 8px 0px rgb(95, 37, 159);
	}

	#app-layout > .main-container {
		display: flex;
		justify-content: center;
		padding: var(--padding-1);
		min-height: calc(100dvh - 48px);
	}

	#app-layout > .main-container-unauth {
		display: flex;
		justify-content: center;
		padding: var(--padding-1);
		min-height: 100dvh;
/*		background: linear-gradient(-45deg, #18FFFF, #FFFF00);
		background-size: 400% 400%;
		animation: gradientAni 48s ease infinite;*/
	}

/*@keyframes gradientAni {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}*/

	#app-layout > .footer-container {
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		gap: 100px;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		padding: 0 var(--padding-hlf);
		background-color: #212121;
		color: #FFF;
	}


.header-container > header {
	display: flex;
	width: 100%;
	justify-content: space-between;
	max-width: var(--max-layout-width);
	align-items: center;
}


header > #brand {
	display: flex;
	gap: 4px;
	font-size: 1rem;
	justify-content: stretch;
	align-content: stretch;
	font-weight: 600;
}

header > #navs {
}

.main-container > main {
	width: 100%;
	max-width: var(--max-layout-width);
	display: flex;
	justify-items: stretch;
	align-items: stretch;
}

.footer-container > footer {
	display: flex;
	width: 100%;
	justify-content: space-between;
	max-width: var(--max-layout-width);
	background-color: transparent;
	color: inherit;
}

.login-card {
	border-radius: 12px;
	width: 360px;
	height: auto;
	background-color: #212121;
	backdrop-filter: blur(12px);
	color: #EEE;
	padding: var(--padding-2);
	box-shadow: 0px 0px 32px 2px rgb(95, 37, 159);
	border: 0;
}

.list-flex {
	display: flex;
	flex-direction: column;
	row-gap: 6px;
	flex: 1;
}

/**/
.w-full {
	width: 100%;
}

.font-bold {
	font-weight: bold;
}

/**/
.order-detail-container {
	display: flex;
	gap: 10px;
	position: relative;
	transition: height 0.2s;
}

	.order-detail-container > .order-basic-detail {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		flex: 1;
	}

	.order-basic-detail > div > span {
		font-size: 1.2rem;
		font-weight: 600;
	}

	.order-detail-container > .order-stats-action {
	}

	.order-detail-container > .order-stats-action > fluent-card {
		height: 200px;
		width: 200px;
		display: flex;
		justify-content: stretch;
		flex-direction: column;
		align-items: stretch;
	}

.order-status-content {
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.order-list-item {
	cursor: pointer;
	transition: background 0.2s;
}

	.order-list-item:is(:hover) {
		background-color: #F5F5F5;
	}

.order-detail-loading {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	background-color: rgba(245, 245, 245, 0.1);
}
