/*
 * -----------------------------------------------------------------------------
 *  Lucom Interaction Platform
 *  (C) Lucom GmbH, Erkrath. All rights reserved.
 * -----------------------------------------------------------------------------
 */

.requestViewStats.header {
	--padding: 30px;

	--max-height: 80px;
	--font: 'Open Sans', 'sans serif';
	--font-size: 14px;
	--font-color: #424242;
	--font-weight: 700;
	--bottom-border-width: 1px;

	--font: Open Sans, Verdana, Arial, Helvetica, sans-serif;
	--font-size: 14px;
	--font-color: #1A181B;
	--font-weight: normal;
	--bottom-border-width: 1px;
	--max-height: 80px;
	background-color: #FFFFFF;
}

.requestViewStats.header {
	display: flex;
	font-family: var(--font);
	font-size: var(--font-size);
	font-weight: var(--font-weight);
	color: var(--font-color);
	white-space: nowrap;
	border-bottom-style: solid;
	min-height: var(--max-height);
	padding: 0 var(--padding);
	border-bottom-width: var(--bottom-border-width);

	border-bottom-color: #004291;
}

.requestViewStats.header svg {
	fill: var(--font-color);
}

.requestViewStats.header .invisible {
	display: none;
	position: absolute;
	height: 10px;
	width: 10px;
	overflow: hidden;
	left: -2000px;
	top: -2000px;
}

.requestViewStats.header .product-wrapper {
	margin: 0 20px;
}

.requestViewStats.header .product {
	font-weight: 700;
	min-width: 46px;
	height: 46px;
	padding: 10px 5px 10px 10px;
	margin-right: 5px;
}

.requestViewStats.header.collapsed .requestViewStats.header {
	flex-direction: column;
	align-items: flex-start;
	min-height: auto;
}

.requestViewStats.header .logo {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}

.requestViewStats.header .logo a,
.requestViewStats.header .logo img {
	max-height: calc(var(--max-height) - var(--bottom-border-width));
	margin-bottom: 4px;
}

.main-content.contentPanel {
	align-items: center;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	height: 100%;
	overflow: hidden;
	width: 100%;

	background: #ededed;
}

.requestViewStats.content.hidden,
.requestViewStats.content .hidden {
	display: none;
}

.requestViewStats.titleWrapper {
	width: 100%;
	max-width: 1000px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	padding: 40px 40px 0 0;
	margin-top: 20px;
}

.requestViewStats.titleWrapper .logo {
	width: 75px;
	height: 75px;
	margin-right: 11px;
	margin-left: 80px;
}

.requestViewStats.titleWrapper .title {
	margin-top: 26px;
	margin-left: 11px;
	height: 49px;
	width: 100%;
}

.requestViewStats.content {
	font-size: 11pt;
	padding: 20px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;

	width: 100%;
	max-width: 1000px;
	height: calc(100vh - 44px);
	margin-top: 44px;
	box-shadow: rgba(7, 21, 41, 0.1) 0 12px 32px 0;

	font-family: Open Sans, Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
}

.requestViewStats.content.hidden ~ .requestViewStats.content {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding-top: 20px;
	${color:logon.requestClientCaps.border:"border-top-color: #;"}
}

.skeleton .box {
	background: #e2e2e1;
	color: transparent;
	position: relative;
	overflow: hidden;
	height: 39px;

}

.skeleton .form-text.box {
	margin-left: 40px;
	margin-top: 46px;
	margin-right: 40px;
}

.skeleton .box.small-size {
	width: min(30vw, 900px);
}

.skeleton .box.medium-size {
	width: min(45vw, 900px);
}

.skeleton .box.large-size {
	width: min(60vw, 900px);
}

.skeleton .box::before {
	content: "";
	height: 100%;
	width: 50px;
	position: absolute;
	filter: blur(4px);
	background: linear-gradient(to right, #e2e2e1 25%, #d5d5d4 50%, #e2e2e1 100%);
	animation-iteration-count: infinite;
	animation-name: skeleton-animation;
	animation-duration: 2s;
}

@keyframes skeleton-animation {
	from {
		left: 0%;
	}
	to {
		left: 100%;
	}
}
