* {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	user-select: none;

	box-sizing: border-box;
}

html, body {
	height: 100%;
	width: 100%;
}

body {
	/*
	background-color: #cbd5e1;
	*/
	background-color: hsl(220, 60%, 75%);
	margin: 0;
	display: flex;
	justify-content: center;
}

a,
a:link,
a:visited {
	color: inherit;
}

#ERR_dialog_container {
/* 	position: absolute; */
	width: 100%;
	height: 100%;
	z-index: 1002;
  	transition-delay: 0s;

	transition: all 0.3s;

	display: flex;
}

#ERR_dlg_wrap {
	font-size: 1.125rem;

	position: relative;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	margin: 0 auto;
	width: calc(100% - 4rem);
	max-width: 64em;
	max-height: calc(100% - 4rem);
	border-radius: 0.25rem;
	background: #fff;
	box-shadow: 0 1px 2px 0 var(--shadow-color, rgba(0, 0, 0, 0.05));
	overflow: hidden;
  	opacity: 1;
  	transition: all .3s;
	font-family: 'Inter', sans-serif;
  	align-self: center;
	padding: 2em;
}

/*
#ERR_dlg_wrap > *:first-child {
	padding-top: 2rem;
}

#ERR_dlg_wrap > * {
	padding: 0 2rem;
}

#ERR_dlg_wrap > *:last-child {
	padding-bottom: 2rem;
}
*/

#ERR_dlg_wrap header {
	text-transform: initial;
	margin: 0;
}

#ERR_dlg_wrap > * + main {
	margin-top: 3em;
}

#ERR_dlg_wrap > * + footer {
	margin-top: 3em;
}

#ERR_dlg_wrap footer {
	padding: 2em;
	background-color: #f8fafc;
	border-radius: 4px;
	font-size: 0.75em;
}

#ERR_dlg-header h3 {
	margin: 0;
	color: #334155;
}

#ERR_dlg-header p {
	margin: 1em 0 0;
	color: #64748b;
	line-height: 1.5;
}

#ERR_dlg-content div {
	text-align: left;
}

#ERR_dlg-licence-info table {
	width: 100%;
	font-size: 0.75em;
	text-align: left;
	border-spacing: 0.5em;
}

#ERR_dlg-licence-info table thead th {
	text-transform: uppercase;
	color: #94a3b8;
	font-weight: 600;
}

#ERR_dlg-licence-info table tbody td {
	color: #334155;
}

/* STATUS */
.status-container {
	display: flex;
	align-items: center;
}

.status {
	--color: #cbd5e1;

	width: 1em;
	height: 1em;
	border-radius: 9999px;
	display: inline-block;
	margin-right: 0.5em;
	background-color: var(--color);
}

.status.disabled {
	--color: #cbd5e1;
}

.status.missing {
	--color: #fca5a5;
}

.status.grace {
	--color: #6acdea;
}

.status.expired {
	--color: #fca5a5;
}

.status.limited {
	--color: #fdba74;
}

.status.active.trial {
	--color: #fdba74;
}

.status.active {
	--color: #6ee7b7;
}

/* FOOTER */
.ifResolved, .hasPhone, .hasEmail, .hasBoth {
	display: none;
}

.name, .phone, .email {
	font-weight: bold;
}

.partner-logo {
	display: block;
	width: 12em;
	max-width: 100%;
	max-height: 100%;
}

#ERR_dlg-partner-info,
#ERR_dlg-content {
	margin: 0 auto;
}

#ERR_dlg-content {
	margin: 1.25em auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.1em;
}

#ERR_dlg-content > * {
	display: flex;
	align-items: baseline;
}

#ERR_dlg-content p {
	margin: 0;
}

.partner-info {
	display: flex;
	flex-direction: column;
	gap: 0.25em;
}

.partner-contacts {
	gap: 2em;
}

.partner-contacts > p {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35em;
}

.partner-contacts > p > i {
	color: #334155;
}

.partner-contacts > p > a,
.partner-contacts > p > span {
	font-size: 0.75em;
	color: #64748b;
	text-decoration: none;
}

.partner-name {
	font-weight: 600;
	color: #334155;
	text-transform: uppercase;
}

.partner-vat {
	color: #64748b;
}

.ERR_dlg-btn {
  align-self: center;
  margin-top: 2rem;
  font-size: 1rem !important;
  padding: 0.5rem 1rem !important;
  height: auto !important;
}