
/* #region PageHeader */
.page-header
{
	padding: 20px;
	margin-bottom: 36px;
	background-color: var(--c-panel-background);
	box-shadow: 0 .15rem 1.75rem 0 rgba(58,59,69,.15);
	border-left-color: var(--c-page-title-mark);
	border-left-style: solid;
	border-radius: var(--f-radius);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	min-height: 75px;
}

.page-header > .title
{
	font-weight: 400;
	font-size: 22px;
	line-height: 1.2;
	padding-top: 5px;
}

.page-header > .title > .subtitle
{
	color: var(--c-page-subtitle);
	font-size: 0.75rem;
	display: block;
	padding-left: 0.1rem;
	padding-top: 0.1rem;
}

.page-header > .title > .subtitle > .icon
{
	margin-right: 0.25rem;
}

.page-header > .title > .subtitle > :is(.icon, .text)
{
	display: inline-block;
}

.panel table a,
.page-header > .title > a
{
	color: var(--c-link-text);
	transition: var(--t-transition);
}

.panel table a:hover,
.page-header > .title > a:hover
{
	color: var(--c-primary-background-hover);
	transition: var(--t-transition);
}
/* #endregion */