@font-face {
	font-family: 'Montserrat';
	src: url(./fonts/montserrat/Montserrat-VariableFont_wght.ttf);
}
@font-face {
	font-family: 'Montserrat-Regular';
	src: url(./fonts/montserrat/Montserrat-Regular.ttf);
}
@font-face {
	font-family: 'Montserrat-Black';
	src: url(./fonts/montserrat/Montserrat-Black.ttf);
}
@font-face {
	font-family: 'Montserrat-Light';
	src: url(./fonts/montserrat/Montserrat-Light.ttf);
}
@font-face {
	font-family: 'Montserrat-Thin';
	src: url(./fonts/montserrat/Montserrat-Thin.ttf);
}
@font-face {
	font-family: 'Montserrat-Medium';
	src: url(./fonts/montserrat/Montserrat-Medium.ttf);
}
@font-face {
	font-family: 'Montserrat-SemiBold';
	src: url(./fonts/montserrat/Montserrat-SemiBold.ttf);
}
@font-face {
	font-family: 'Montserrat-Bold';
	src: url(./fonts/montserrat/Montserrat-Bold.ttf);
}
@font-face {
	font-family: 'Montserrat-ExtraBold';
	src: url(./fonts/montserrat/Montserrat-ExtraBold.ttf);
}
html,
body {
	/* background-color: #f4f4f4; */
	color: #000000;
	font-family: 'Montserrat', 'Montserrat-Regular', sans-serif;
	padding-bottom: 0;
	margin: 0;
	height: 100%;
	position: relative;
	overflow: hidden;
}

body * {
	font-family: 'Montserrat', 'Montserrat-Regular', sans-serif;
	box-sizing: border-box;
}
.font-bold,
.font-bold * {
	font-family: 'Montserrat-Bold' !important;
}
.font-medium,
.font-medium * {
	font-family: 'Montserrat-Medium' !important;
}
.font-semi-bold,
.font-semi-bold * {
	font-family: 'Montserrat-SemiBold' !important;
}
.typo-semibold * {
	font-family: 'Montserrat-SemiBold';
}
.grayscaleimage {
	-webkit-filter: grayscale(70%);
	/* Safari 6.0 - 9.0 */
	filter: grayscale(70%);
}

::-webkit-scrollbar {
	width: 20px;
	height: 4px;
}

::-webkit-scrollbar:horizontal {
	width: 4px;
	height: 20px;
}

::-webkit-scrollbar-button {
	width: 0px;
	height: 0px;
}

/*

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.7);
    background-clip: padding-box;
    border: 0px solid rgba(0, 0, 0, 0);
    border-left-width: 8px;
    border-right-width: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.9);
    background-clip: padding-box;
    border: 0px solid rgba(0, 0, 0, 0);
    border-left-width: 6px;
    border-right-width: 6px;
}

::-webkit-scrollbar-thumb:active {
    background: rgba(255, 255, 255, 0.9);
    background-clip: padding-box;
    border: 0px solid rgba(0, 0, 0, 0);
    border-left-width: 6px;
    border-right-width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: 0px solid rgba(0, 0, 0, 0);
    border-left-width: 8px;
    border-right-width: 8px;
}
*/
::-webkit-scrollbar-corner {
	background: transparent;
}

/* app-scroll */
::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	background-clip: padding-box;
	border: 0px solid rgba(0, 0, 0, 0);
	border-left-width: 8px;
	border-right-width: 8px;
	border-top-width: 8px;
	border-bottom-width: 8px;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.3);
	background-clip: padding-box;
	border: 0px solid rgba(0, 0, 0, 0);
	border-left-width: 7px;
	border-right-width: 7px;
	border-top-width: 8px;
	border-bottom-width: 8px;
}

::-webkit-scrollbar-thumb:active {
	background: rgba(0, 0, 0, 0.3);
	background-clip: padding-box;
	border: 0px solid rgba(0, 0, 0, 0);
	border-left-width: 7px;
	border-right-width: 7px;
	border-top-width: 8px;
	border-bottom-width: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
	background-clip: padding-box;
	border: 0px solid rgba(0, 0, 0, 0);
	border-left-width: 8px;
	border-right-width: 8px;
	border-top-width: 8px;
	border-bottom-width: 8px;
}

.modal {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	/* background-color: rgba(0, 0, 0, 0.5); */
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	height: 80vh;
	width: 60vw;
	background-color: #ffffff;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px 0;
}

.modal-header,
.modal-footer {
	padding: 10px;
}

.modal-body {
	padding: 10px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	height: calc(100% - 123px);
	/*leider ohne scss nur mit calc möglich */
	box-sizing: border-box;
	display: flex;
	justify-content: center;
}

.videoanleitung {
	border: none;
	background-color: transparent;
	color: #fff;
	cursor: pointer;
	font-size: 1rem;
}

.videoanleitung:hover,
.videoanleitung:focus {
	outline: none;
	border-bottom: 1px solid #fff;
}

video {
	height: 100%;
	box-sizing: border-box;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px 0;
}

/* app-scroll */

.inverted-scroll::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.7);
	background-clip: padding-box;
	border: 0px solid rgba(0, 0, 0, 0);
	border-left-width: 8px;
	border-right-width: 8px;
}

.inverted-scroll::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.9);
	background-clip: padding-box;
	border: 0px solid rgba(0, 0, 0, 0);
	border-left-width: 6px;
	border-right-width: 6px;
}

.inverted-scroll::-webkit-scrollbar-thumb:active {
	background: rgba(255, 255, 255, 0.9);
	background-clip: padding-box;
	border: 0px solid rgba(0, 0, 0, 0);
	border-left-width: 6px;
	border-right-width: 6px;
}

.inverted-scroll::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.3);
	background-clip: padding-box;
	border: 0px solid rgba(0, 0, 0, 0);
	border-left-width: 8px;
	border-right-width: 8px;
}

a,
a:hover,
a:active,
a:visited,
a:focus {
	text-decoration: none;
	color: #5592f7;
}

.loading {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #2962ff;
}

.loading-padding {
	height: 40%;
}

.loading-title {
	position: relative;
	text-align: center;
	font-size: 48px;
	color: rgba(255, 255, 255, 0.87);
}

.loading-bar {
	margin-top: 10px;
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	height: 4px;
	overflow: hidden;
}

@keyframes loading {
	0% {
		opacity: 0;
		left: 0;
		width: 0;
	}

	50% {
		opacity: 1;
		left: 0;
		width: 100%;
	}

	100% {
		opacity: 0;
		left: 100%;
		width: 0;
	}
}

.loading-bar-inner {
	background-color: rgba(255, 255, 255, 0.87);
	width: 0;
	height: 4px;
	animation-duration: 2s;
	animation-name: loading;
	animation-iteration-count: infinite;
	position: relative;
}

.loading-icon {
	font-size: 48px;
	color: rgba(255, 255, 255, 0.87);
	text-align: center;
}

.menu-item.active {
	background-color: #e5e5e5 !important;
}

.menu-item.active .material-icons {
	color: #0068b3 !important;
}

.offline {
	opacity: 0.3;
}

.auto-height {
	height: auto !important;
}

.text-right {
	text-align: right;
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}

.row {
	overflow: hidden;
	padding: 0px;
}

.row + .row {
	padding-top: 0;
}

[class*='col-'] {
	float: left;
	box-sizing: border-box;
	padding: 8px;
}

[class*='col-'] + [class*='col-'] {
}

[class*='col-'].right {
	float: right;
}

.col-1-4 {
	width: 25%;
}

.col-1-3 {
	width: 33.3333%;
}

.col-2-3 {
	width: 66.6666%;
}

.col-1-2 {
	width: 50%;
}

.col-1-1 {
	width: 100%;
}

.app-left,
.app-right {
	float: left;
	box-sizing: border-box;
	overflow: hidden;
	overflow-y: scroll;
	padding: 16px;
	height: calc(100% - 85px);
}

.app-left {
	width: 75%;
}

.app-right {
	width: 25%;
	padding-left: 0;
}

.app-left.collapsed {
	width: 100%;
}

.app-right.collapsed {
	display: none;
}

.app-toggle {
	position: fixed;
	cursor: pointer;
	z-index: 1400;
	top: 0;
	right: 16px;
	margin: 4px;
	padding: 16px;
	color: #ffffff;
}

@media (max-width: 1300px) and (min-width: 800px) {
	.col-1-4,
	.col-1-3,
	.col-2-3 {
		width: 50%;
	}

	.col-1-4:nth-child(3),
	.col-1-3:nth-child(3) {
		clear: left;
	}

	.app-left {
		width: 100%;
		padding-left: 336px;
		margin-left: -320px;
	}

	.app-left.collapsed {
		padding-left: 16px;
		margin-left: 0;
	}

	.app-right {
		width: 320px;
	}
}

@media (max-width: 800px) {
	.col-1-4,
	.col-1-3,
	.col-2-3,
	.col-1-2 {
		width: 100%;
		clear: left;
	}

	.app-left {
		padding: 16px;
		width: 50%;
	}

	.app-right {
		width: 50%;
	}
}

.dsb-title {
	font-size: 24px;
	color: rgba(0, 0, 0, 0.6);
	padding-bottom: 16px;
}

.dsb-subtitle {
	font-size: 14px;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.5);
}

.dsb-title + .dsb-subtitle {
	padding-top: 6px;
}

.dsb-highlight {
	overflow: visible;
	z-index: 1000;
	padding-top: 0px;
}

a > .dsb-highlight {
	padding-top: 8px;
}

a:first-child > .dsb-highlight {
	padding-top: 0px;
}

.dsb-highlight + .dsb-highlight {
	padding-top: 8px;
}

.dsb-highlight-head {
	height: 100px;
	overflow: hidden;
	/* cursor: pointer; */
	z-index: 1100;
	position: relative;
}

.dsb-highlight-body {
	position: relative;
	z-index: 1000;
	margin-top: 0;
}

.dsb-highlight-body.animated {
	transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}

.arrow-5 {
	/* more triangle */
	position: relative;
	height: 0px;
	width: 0px;
	border: 20px solid;
	border-color: #5592f7 #5592f7 transparent transparent;
	transform: rotate(45deg);
}

.arrow-5:before {
	content: '';
	position: absolute;
	top: 0px;
	right: 0px;
	display: block;
	height: 20px;
	width: 20px;
	background-color: #5592f7;
	transform: rotate(-45deg) translate(2px, 1px);
}

.dsb-highlight-left {
	float: left;
	width: 45%;
	height: 100%;
}

.dsb-highlight-chart {
	background-color: rgba(0, 0, 0, 0.1);
}

.dsb-highlight-chart > div {
	margin: 16px;
}

.dsb-highlight-chart .highcharts-container {
	overflow: visible !important;
}

.dsb-highlight-chart svg {
	overflow: visible;
}

.dsb-highlight-right {
	float: left;
	width: 55%;
	height: 100%;
}

.dsb-highlight-title,
.dsb-highlight-value {
	position: relative;
	padding-left: 16px;
	padding-right: 16px;
	color: rgba(255, 255, 255, 0.87);
	text-overflow: ellipsis;
	overflow: hidden;
}

.dsb-highlight-title {
	padding-top: 24px;
	font-size: 14px;
	white-space: nowrap;
}

.dsb-highlight-value {
	padding-top: 9px;
	font-size: 24px;
}

.dsb-highlight-delta {
	padding-top: 14px;
	text-align: center;
	color: rgba(255, 255, 255, 0.87);
	font-size: 36px;
}

.dsb-highlight-item {
	overflow: hidden;
	height: 86px;
	display: block;
	background-color: #fff;
}

.dsb-highlight-item:hover {
	background-color: #f5f5f5;
}

.dsb-highlight-item + .dsb-highlight-item {
	border-top: 1px solid #e5e5e5;
}

.dsb-highlight-item .dsb-highlight-chart {
	background-color: rgba(0, 0, 0, 0);
}

.dsb-highlight-item .dsb-highlight-delta {
	padding-top: 11px;
	color: rgba(0, 0, 0, 0.53);
	font-size: 24px;
}

.dsb-highlight-item .dsb-highlight-title,
.dsb-highlight-item .dsb-highlight-value {
	color: rgba(0, 0, 0, 0.87);
}

.dsb-highlight-item .dsb-highlight-title {
	padding-top: 14px;
	font-size: 14px;
}

.dsb-highlight-item .dsb-highlight-value {
	padding-top: 6px;
	font-size: 14px;
	font-weight: bold;
	color: #505050;
	height: 20px;
}

.dsb-highlight-item .dsb-highlight-derivative {
	vertical-align: middle;
	font-size: 11px;
	float: right;
	padding-top: 3px;
}

.dsb-highlight-item .dsb-highlight-chart > div {
	margin-top: 8px;
	margin-bottom: 18px;
}

.dsb-highlight-overall {
	float: right;
	width: 10%;
}

.dsb-highlight-overall > div {
	margin: 8px;
	margin-left: 0;
}

.unselectable {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.no-height {
	height: 0 !important;
}

.vehicle {
}

.vehicle + .vehicle {
	margin-top: 8px;
}

.structure-filter {
	position: relative;
	display: flex;
	/* align-items: center; */
	flex-direction: column;
}
input#FullTextField::placeholder {
	font-family: 'Montserrat-SemiBold';
	opacity: 0.5;
	font-size: 12;
	color: #02137a;
}
/* .structure-filter+.structure-filter,
.card-group+.card-group {
	margin-top: 24px;
} */

.card-group {
	margin-top: 24px;
}

.card-group:first-child {
	margin-top: 0;
}

/*.card-filter:hover .material-icons {
    color: #0068b3 !important;
}*/

.card-group-title {
	padding-bottom: 8px;
	display: flex;
	justify-content: space-between;
}

.card-group-selectall {
	cursor: pointer;
}

.summary-item:first-child {
	border-top: 0 none;
}

.summary-item {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 16px;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
	height: 75px;
}

.summary-item-icon {
	position: absolute;
	left: 20px;
}

.summary-item-body {
	padding-left: 54px;
}

.summary-item-title {
	padding-top: 3px;
	font-size: 16px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: rgba(0, 0, 0, 0.8);
}

.summary-item-subtitle {
	font-size: 12px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: rgba(0, 0, 0, 0.53);
	padding-top: 3px;
}

.highcharts-container,
.highcharts-container > svg {
	overflow: visible !important;
}

.compact-tbl {
	font-size: 12px;
}

.compact-tbl-row {
	position: relative;
	padding-left: 16px;
	/*padding-left: 78px;*/
	padding-right: 16px;
	overflow: hidden;
	padding-top: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(2, 19, 122, 0.21);
}
.compact-tbl-row:hover {
	box-shadow: 0px 0px 8px 1px #c8cff8;
	transition: all 0.4s ease;
}
.compact-tbl-row.no-border {
	border: none;
}
.compact-tbl-row.no-shadow:hover {
	box-shadow: none;
	transition: all 0.4s ease;
}

.compact-tbl-row:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.compact-tbl-col {
	float: left;
	width: 33.33%;
	box-sizing: border-box;
	padding-right: 16px;
}

.compact-tbl-col-2 {
	float: left;
	width: 30%;
	box-sizing: border-box;
	padding-right: 16px;
}

.compact-tbl-col-2 {
	float: left;
	width: 66.67%;
	box-sizing: border-box;
	padding-right: 16px;
}

.compact-tbl-icon {
	position: absolute;
	left: 16px;
	top: 22px;
}

.compact-tbl-primary {
	font-size: 14px;
	font-weight: 500;
	padding-bottom: 4px;
	color: rgba(255, 255, 255, 0.87);
	color: rgba(0, 0, 0, 0.87);
}

.compact-tbl-text {
	color: rgba(255, 255, 255, 1);
	color: rgba(0, 0, 0, 0.53);
}

.compact-tbl-text + .compact-tbl-text {
	padding-top: 4px;
	color: rgba(0, 0, 0, 0.53);
}

.notifications-br {
	width: 360px !important;
}

.notification-dismiss {
	top: 6px !important;
	right: 6px !important;
	padding: 2px !important;
	background-color: rgba(255, 255, 255, 0.2) !important;
}

.notification {
	background: none !important;
	height: auto !important;
	padding: 0px !important;
	box-shadow: none !important;
	border: none !important;
}

.notification-info {
	background-color: rgba(41, 97, 255, 0.87) !important;
}

.file {
	cursor: pointer;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.file:nth-child(2n + 1) {
	background-color: #fafafa;
}

.file + .file {
	border-top: none;
}

.file:nth-child(2n + 1) {
	background-color: #fafafa;
}

.file:hover {
	background-color: #f0f0f0;
}

.file.selected {
	background-color: rgb(41, 98, 255);
}

.reports-sidebar-category button {
	top: -3px !important;
}

.hide-scrollbar {
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
}

.hide-scrollbar::-webkit-scrollbar {
	display: none;
}

.notification-item:hover {
	background-color: #fafafa;
}

.dragDrop input[type='file'] {
	width: 100%;
	height: 150px;
	opacity: 0;
	/* visibility: hidden; */
	/* display: none; */
}

.dragDrop {
	border: 2px dashed;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.dragDrop label {
	position: absolute;
}

.card-filter {
	position: relative;
}
.dsb-highlight-right * {
	color: #02137a !important;
}
.MuiGrid-root.MuiGrid-item {
	border-color: #c9cde3 !important;
}
.color-primary * {
	color: #02137a !important;
}

.highcharts-container {
	min-width: 100% !important;
	width: 100% !important;
}

.highcharts-container .highcharts-root {
	min-width: 100% !important;
	width: 100% !important;
}
tspan {
	font-size: inherit;
	font-family: inherit;
}
.second-price * {
	font-size: 12px;
}
.MuiFormLabel-root {
	color: #02137a;
	font-family: 'Montserrat-SemiBold' !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	background-color: rgb(238, 242, 245) !important;
	-webkit-box-shadow: 0 0 0px 1000px rgb(238, 242, 245) inset;
	color: #02137a;
	-webkit-text-fill-color: #02137a;
	font-family: 'Montserrat-SemiBold' !important;
	font-size: 14px;
}
.text-values-caption,
.text-values-caption * {
	font-size: 20px;
	font-family: 'Montserrat-SemiBold';
}
.chart-labels-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.chart-labels {
	font-family: 'Montserrat-SemiBold';
}

@media screen and (max-width: 600px) {
	.chart-labels {
		font-size: 9px !important;
	}
}
