/*
.navbar-brand {
  text-indent: -999em;
  background-image: url(./path/to/the/logo.png);
  width: 80px;
}

[cam-widget-header] {
  border-bottom-color: blue;
}
*/

/* body */
body {
	font-family: 'Open sans', sans-serif;
}

/* camunda header */
[cam-widget-header] {
	top: 80px;
	border-top: none;
}

/* main content area */
.ctn-main {
	top: 125px;
	/* 125px = 80px tee header + 45px camunda header */

	bottom: 70px;
	/* 70px = custom footer */
}

/* custom tee header */
.headerArea {
	background: #00386C;
	display: flex;
	height: 80px;
	top: 0;
	width: 100%;
	position: fixed;
	left: 0;
	right: 0;
	z-index: 1030;
	margin-bottom: 0;
}

.headerArea .leftArea {
	background: #F7941E;
	width: 480px;
	height: inherit;
	border-bottom-right-radius: 41px;
	/*box-shadow: 12px 5px 4px rgba(3, 82, 130, 0.34);*/
	padding: 13px;
	display: flex;
	align-items: center;
	position: absolute;
}

.headerArea .leftArea .logo {
	position: relative;
	flex-grow: 1;
}

.headerArea .leftArea .logo_image {
	width: 208px;
	height: auto;
}

.headerArea .leftArea .logo_text {
	font-family: 'Open sans', sans-serif;
	font-weight: bold;
	font-size: 20px;
	color: #00386C;
	color: rgb(0, 56, 108);
	position: absolute;
	top: 14px;
	left: 90px;
}

.headerArea .leftArea .logo_text:before {
	content: 'ΕΝΙΑΙΟΣ ΨΗΦΙΑΚΟΣ ΧΑΡΤΗΣ';
}

.headerArea .leftArea .layer_icon {
	color: #00386C;
	width: 43px;
	height: 43px;
	filter: invert(14%) sepia(83%) saturate(1868%) hue-rotate(192deg) brightness(96%) contrast(102%);
}

.headerArea .leftArea .layer_icon img {
	width: 100%;
	height: auto;
}

.headerArea .rightArea {
	width: 100%;
	height: inherit;
	display: flex;
	align-items: center;
	color: #fff;
	padding: 13px;
	justify-content: center;
}

.headerArea .rightArea .basic_title {
	margin: 0;
	font-family: 'Open sans', sans-serif;
	font-weight: bold;
	font-size: 30px;
	color: inherit;
}

.headerArea .rightArea .basic_title:before {
	content: 'Εφαρμογή ροής μελετών';
}

@media (max-width: 1440px) {
	.headerArea .leftArea {
		position: relative;
	}

	.headerArea .rightArea {
		width: calc(100% - 480px);
	}
}

@media (max-width: 1280px) {

	.headerArea .rightArea .basic_title {
		font-size: 25px;
	}
}

@media (max-width: 1024px) {
	.headerArea .rightArea .basic_title {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.headerArea {
		height: 130px;
		flex-direction: column;
	}

	.headerArea .leftArea,
	.headerArea .rightArea {
		width: 100%;
	}

	[cam-widget-header] {
		top: 130px;
	}

	.ctn-main {
		top: 175px;
		/* tee-header 130px + camunda header 45px  */
	}
}

@media (max-width: 440px) {
	.headerArea .leftArea .logo_text {
		top: 20px;
		font-size: 12px;
	}

	.headerArea .rightArea .basic_title {
		font-size: 20px;
	}
}

/* login */
.form-signin .btn-primary,
.form-signin .btn-primary:hover,
.form-signin .btn-primary:active:hover,
.form-signin .btn-primary:active:focus {
	background-color: #00386C;
	border-color: #00386C;
}

/* camunda footer hidden */
[cam-widget-footer] {
	display: none;
}

/* custom footer */
.custom-footer {
	position: fixed;
	z-index: 99;
	height: 70px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	border-top: 1px solid #eee;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-footer .eu_image {
	width: auto;
	height: 55px;
}