@CHARSET "UTF-8";

/* ----------------------------------------
00) Fonts
---------------------------------------- */

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Light.eot");
    src: local('Open Sans Light'), local('OpenSans-Light'),
         url("../fonts/OpenSans-Light.eot?#iehack") format('embedded-opentype'),
         url("../fonts/OpenSans-Light.ttf") format('truetype');
	font-style: normal;
	font-weight: 300;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-LightItalic.eot");
    src: local('Open Sans Light Italic'), local('OpenSansLight-Italic'),
         url("../fonts/OpenSans-LightItalic.eot?#iehack") format('embedded-opentype'),
         url("../fonts/OpenSans-LightItalic.ttf") format('truetype');
    font-style: italic;
	font-weight: 300;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Regular.eot");
    src: local('Open Sans'), local('OpenSans'),
         url("../fonts/OpenSans-Regular.eot?#iehack") format('embedded-opentype'),
         url("../fonts/OpenSans-Regular.ttf") format('truetype');
	font-style: normal;
	font-weight: 400;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Italic.eot");
    src: local('Open Sans Italic'), local('OpenSans-Italic'),
         url("../fonts/OpenSans-Italic.eot?#iehack") format('embedded-opentype'),
         url("../fonts/OpenSans-Italic.ttf") format('truetype');
    font-style: italic;
	font-weight: 400;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Semibold.eot");
    src: local('Open Sans Semibold'), local('OpenSans-Semibold'),
         url("../fonts/OpenSans-Semibold.eot?#iehack") format('embedded-opentype'),
         url("../fonts/OpenSans-Semibold.ttf") format('truetype');
	font-style: normal;
	font-weight: 600;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-SemiboldItalic.eot");
    src: local('Open Sans Semibold Italic'), local('OpenSans-SemiboldItalic'),
         url("../fonts/OpenSans-SemiboldItalic.eot?#iehack") format('embedded-opentype'),
         url("../fonts/OpenSans-SemiboldItalic.ttf") format('truetype');
    font-style: italic;
	font-weight: 600;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Bold.eot");
    src: local('Open Sans Bold'), local('OpenSans-Bold'),
         url("../fonts/OpenSans-Bold.eot?#iehack") format('embedded-opentype'),
         url("../fonts/OpenSans-Bold.ttf") format('truetype');
	font-style: normal;
	font-weight: 700;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-BoldItalic.eot");
    src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'),
         url("../fonts/OpenSans-BoldItalic.eot?#iehack") format('embedded-opentype'),
         url("../fonts/OpenSans-BoldItalic.ttf") format('truetype');
    font-style: italic;
    font-weight: 700;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-ExtraBold.eot");
    src: local('Open Sans Extrabold'), local('OpenSans-Extrabold'),
         url("../fonts/OpenSans-ExtraBold.eot?#iehack") format('embedded-opentype'),
         url("../fonts/OpenSans-ExtraBold.ttf") format('truetype');
	font-style: normal;
	font-weight: 800;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-ExtraBoldItalic.eot");
    src: local('Open Sans Extrabold Italic'), local('OpenSans-ExtraboldItalic'),
         url("../fonts/OpenSans-ExtraBoldItalic.eot?#iehack") format('embedded-opentype'),
         url("../fonts/OpenSans-ExtraBoldItalic.ttf") format('truetype');
    font-style: italic;
	font-weight: 800;
}

/* ----------------------------------------
01) General layout
---------------------------------------- */

body {
	margin: 0;
	overflow-x: hidden;
	font-size: 13px;
	color: #525C60;
}

body, .ui-widget {
	font-family: "Open Sans","Trebuchet MS",Arial,Helvetica,sans-serif;
}

html.flexbox body {
	box-sizing: border-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

html.flexbox body > header,
html.flexbox body > nav,
html.flexbox body > footer {
    -webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

html.flexbox body > main {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.container {
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

main {
	padding: 15px;
	display: block;
	
	background-color: #1d3618;
	color: #ffffff;
}

main a,
main a:hover,
main a:focus {
	color: #ffffff;
}

body .modal,
body .modal a:hover,
body .modal a:focus {
	color: #333333;
}

@media only screen and (max-width: 48em) {
	nav {
		position: static !important;
	}
	
	body {
		margin-left: 0;
		margin-right: 0;
	}
}

@media only screen and (min-width: 48em) {
	html:not(.flexbox) main {
		min-height: 200px;
	}
}

/* ----------------------------------------
01.1) Bootstrap changes
---------------------------------------- */

.form-group label {
	font-weight: bold;
}

.dropdown-divider {
	margin-left: 10%;
	margin-right: 10%;
	border-color: #ffffff;
}

@media (max-width: 575.98px) {
	.dropdown-divider {
		display: none;
	}
}

@media (min-width: 576px) {
	.dropdown-menu.show {
		border: 1px solid #cbdbe7;
	}
}

.bg-dark {
	background-color: #3ba7de !important;
}

/* ----------------------------------------
01.2) Header
---------------------------------------- */

body > header {
	background-color: #394a82;
	padding: 15px 20px;
}

body > header img {
	margin-top: 7px;
	display: block;
	float: left;
}

body > header a {
	font-size: 28px;
	display: block;
	display: inline-block;
	overflow: hidden;
	color: #ffffff;
}

body > header a:hover,
body > header a:focus {
	color: #ffffff;
}

body > header a > span {
	display: block;
	float: left;
	margin-top: 4px;
}

@media only screen and (max-width: 500px) {
	body > header > a > span {
		font-size: 18px;
	}
}

@media (max-width: 800px) {
	.languagesSelector {
		font-size: 14px;
	}
}

@media (max-width: 720px) {
	.languagesSelector {
		font-size: 12px;
	}
}

/* ----------------------------------------
01.3) Nav
---------------------------------------- */

@media(max-width: 1750px) {
	.header-menu-body {
		margin-right: 100px;
	}
}
@media(max-width: 1500px) {
	.header-menu-body {
		margin-right: 125px;
	}
}
@media(max-width: 1450px) {
	.header-menu-body {
		margin-right: 175px;
	}
}
@media(max-width: 1400px) {
	.header-menu-body {
		margin-right: 225px;
	}
}
@media(max-width: 1350px) {
	.header-menu-body {
		margin-right: 275px;
	}
}
@media(max-width: 992px) {
	.header-menu-body {
		margin-right: 145px;
	}
}
@media(max-width: 900px) {
	.header-menu-body {
		margin-right: 205px;
	}
}
@media(max-width: 768px) {
	.header-menu-body {
		margin-right: 0;
	}
}

nav.header-nav {
	background-color: #394a82;
	background-image: url('../images/bg-01.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 100%;
	background-attachment: fixed;
	z-index: 1;
}

nav.sticky-top {
	padding: 0 0 6px 0;
}

nav.sticky-top.sticked {
	-webkit-box-shadow: 0 3px 6px -3px rgba(0, 0, 0, 0.5);
	box-shadow: 0 3px 6px -3px rgba(0, 0, 0, 0.5);
	z-index: 5;
	opacity: 0.9;
}

nav.navbar {
	padding-right: 0;
}

nav .header-image {
    margin-left: 25px;
}

#headerMenu ul,
#headerMenu2 ul {
	margin: 0;
	padding: 0;
	font-size: 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
}

#headerMenu ul li a,
#headerMenu2 ul li a {
	display: block;
	padding-left: 15px;
	padding-right: 15px;
	border-bottom: 2px solid transparent;
	padding-bottom: 12px;
}

#headerMenu a,
#headerMenu button,
#headerMenu2 a,
#headerMenu2 button {
	font-size: 17px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
}

#headerMenu ul li a:hover,
#headerMenu ul li.active > a,
#headerMenu2 ul li a:hover,
#headerMenu2 ul li.active > a {
	color: #ffffff;
}

#headerMenu ul li a:hover,
#headerMenu2 ul li a:hover {
	border-bottom: 2px solid #FFFFFF;
}

.navbar.navbar-dark .navbar-brand {
	color: #ffffff;
}

nav.header-nav .dropdown-menu,
#headerMenu .dropdown-menu,
#headerMenu2 .dropdown-menu {
	background-color: #FFFFFF;
	transition: background-color 0.5s;
	padding: 0;
	min-width: 250px;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
	box-shadow: 0 6px 12px rgba(0,0,0,0.175);
}

nav.header-nav .dropdown-menu a,
#headerMenu .dropdown-menu a,
#headerMenu2 .dropdown-menu a {
    color: #394a82;
    display: block;
    font-size: 14px;
	font-weight: 500;
    padding: 10px !important;
    text-align: left;
    text-transform: uppercase;
    transition: color 0.5s;
    border-bottom: 1px solid #EDEDED !important;
}

nav.header-nav .dropdown-menu a:last-child,
#headerMenu .dropdown-menu a:last-child,
#headerMenu2 .dropdown-menu a:last-child {
	border-bottom: none !important;
}

nav.header-nav .dropdown-menu a.active,
nav.header-nav .dropdown-menu a:hover,
#headerMenu .dropdown-menu a.active,
#headerMenu .dropdown-menu a:hover,
#headerMenu2 .dropdown-menu a.active,
#headerMenu2 .dropdown-menu a:hover {
	color: #394a82 !important;
    background-color: #F3F3F3;
}

.doubleLineMenuItem {
	margin-top: -4px;
	margin-bottom: -6px;
}

.doubleLineMenuItem > * {
	display: inline-block;
	vertical-align: middle;
}

.doubleLineMenuItem > span {
	line-height: 15px;
}

.doubleLineMenuItem .doubleLineMenuItem2ndLine {
	font-size: 11px;
}

.companySelectorNotSelected {
	margin-left: 20px;
	width: auto;
}

.nav.bg-dark {
	padding-right: 10px;
}

.nav.bg-dark a.nav-link {
	color: #ffffff;
	padding-top: 15px;
	padding-bototm: 15px;
	transform-origin: -20px 100%;
}

.nav.bg-dark a.nav-link.active,
.nav.bg-dark a.nav-link:hover {
	color: #ffffff;
}

.nav.bg-dark a.nav-link:hover {
	transform: scale(1.1, 1.1);
}

.sticky-top {
	transition: opacity 0.5s, box-shadow 0.5s;
}

.sticky-top.sticked {
	-webkit-box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.5);
	box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.5);
}

.navbar-dark .navbar-toggler {
	border-color: #FFFFFF;
	margin-right: 5px;
	border-radius: 0;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1.0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ----------------------------------------
01.4) Footer
---------------------------------------- */

body > footer {
	background-color: #1d3618;
	color: #FFFFFF;
	padding-top: 10px;
	box-sizing: border-box;
	font-size: 14px;
	border-top: 1px solid #eee;
	overflow: hidden;
	padding: 30px 15px;
}

body > footer h5 {
    color: #FFFFFF;
    margin: 0 0 19px;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: bold;
}

@media (max-width: 48em) {
	body > footer h5 {
		margin-top: 20px;
		margin-bottom: 0;
	}
	
	body > footer .quick_links ul {
		margin-top: 5px;
	}
}

body > footer .quick_links ul {
	padding: 0;
}

body > footer .quick_links ul li {
	list-style: none;
}

body > footer .footer_logo > div {
	color: #FFFFFF;
	margin-top: 15px;
}

body > footer .footer_logo a,
body > footer .quick_links ul li a {
    color: #FFFFFF;
    font-weight: normal;
    line-height: 25px;
}

body > footer .footer_logo a:hover,
body > footer .quick_links ul li a:hover, footer .quick_links ul li a:focus {
    color: #FFFFFF;
}

body > footer .ifka_logo {
	padding: 10px;
	display: block;
}

body > footer .ifka_logo img {
	max-width: 300px;
	width: 100%;
}

/* ----------------------------------------
04) Buttons
---------------------------------------- */

.btn:not([class*="btn-"]),
body span.ui-button.ui-state-default,
body button.ui-button.ui-state-default,
body input.ui-button.ui-state-default {
	margin-bottom: 0;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-weight: bold;

	border-radius: 0;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 500;
	border: 1px solid #ffffff;
	transition: text-shadow 0.3s, color 0.3s;
	outline: none;
}

.ui-widget-header .btn:not([class*="btn-"]),
body .ui-widget-header span.ui-button,
body .ui-widget-header button.ui-button,
body .ui-widget-header input.ui-button,
.ui-panel-footer .btn:not([class*="btn-"]),
body .ui-panel-footer span.ui-button,
body .ui-panel-footer button.ui-button,
body .ui-panel-footer input.ui-button {
	border: 1px solid #FFFFFF;
}

body .btn:not([class*="btn-"]),
body span.ui-button.ui-state-default:not(.btn):not([class*="btn-"]),
body button.ui-button.ui-state-default:not(.btn):not([class*="btn-"]),
body input.ui-button.ui-state-default:not(.btn):not([class*="btn-"]) {
	background: #1d3618;
	color: #FFFFFF;
}

a.btn:not([class*="btn-"]),
a.btn:not([href]):not([tabindex]):not([class*="btn-"]) {
	color: #FFFFFF;
	display: inline-block;
	padding: 7px 6px;
}

a.btn:not([class*="btn-"]) > i.fa {
	width: 0;
	padding-left: 4px;
}

a.btn:not([class*="btn-"]) > i.fa + span {
	padding: .3em 1em .3em 2.1em;
	font-weight: bold;
}

button.btn:not([class*="btn-"]):active,
button.btn:not([class*="btn-"]):focus,
a.btn:not([class*="btn-"]):active,
a.btn:not([class*="btn-"]):focus {
	box-shadow: none;
}

body .btn:not([class*="btn-"]):hover:not([class*="btn-"]),
body span.ui-button.ui-state-default:hover:not(.btn):not([class*="btn-"]),
body button.ui-button.ui-state-default:hover:not(.btn):not([class*="btn-"]),
body input.ui-button.ui-state-default:hover:not(.btn):not([class*="btn-"]),

body .btn:focus:not([class*="btn-"]):not([class*="btn-"]),
body span.ui-button.ui-state-default:focus:not(.btn):not([class*="btn-"]),
body button.ui-button.ui-state-default:focus:not(.btn):not([class*="btn-"]),
body input.ui-button.ui-state-default:focus:not(.btn):not([class*="btn-"]) {
	color: #FFFFFF;
	text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 5px rgba(255, 255, 255, 0.25);
	background: #1d3618;
	outline: none;
}

.bg-dark .btn:not([class*="btn-"])
body .bg-dark span.ui-button.ui-state-default:not([class*="btn-"]),
body .bg-dark button.ui-button.ui-state-default:not([class*="btn-"]),
body .bg-dark input.ui-button.ui-state-default:not([class*="btn-"]) {
	border: 1px solid #FFFFFF;
}

body .ui-button.ui-button-text-icon-left .ui-button-text {
	padding-left: 35px;
}

body .bigButton .ui-button-icon-left.fa-2x,
body .bigButton .ui-button-icon-right.fa-2x {
	overflow: visible;
	top: 50% !important;
	margin-top: -16px !important;
	left: 10px;
	font-size: 2em;
}

body .bigButton {
	padding: 5px 20px;
	margin: 0 auto;
	display: block;
	font-size: 18px;
	white-space: normal !important;
}

.selectorBtn {
	text-transform: none;
	display: block;
	white-space: normal;
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	border: 2px solid #555;
}

.selectorBtn:hover {
	transform: scale(1.01, 1.01);
}

.selectorBtn.btn-outline-light {
	color: #333333;
	border-color: #333333;
}

.selectorBtn.border-danger {
	-moz-box-shadow: inset 0 0 15px red !important;
	-webkit-box-shadow: inset 0 0 15px red !important;
	box-shadow: inset 0 0 15px red !important;
	transform: none;
}

.selectorBtn.border-success {
	-moz-box-shadow: inset 0 0 15px green !important;
	-webkit-box-shadow: inset 0 0 15px green !important;
	box-shadow: inset 0 0 15px green !important;
	transform: none;
}

.selectorBtn > span:first-child {
	font-weight: bold;
	font-size: 16pt;
}

.selectorBtn li {
	margin-top: 5px;
}

/* ----------------------------------------
02) General classes
---------------------------------------- */

a {
	color: #333333;
	text-decoration: none;
}

.nowrap {
	white-space: nowrap;
}

.checkmark {
	margin-left: 5px;
	color: #7DB02A;
}

.minusmark {
	margin-left: 5px;
	color: #E82734;
}

.delayRow,
.delayRow a {
	background-color: #A11D21;
	color: #FFFFFF;
}

.warnRow,
.warnRow a {
	background-color: #fce95f;
	color: #333333;
}

.warnRow td {
	border-color: #ac6a06 !important;
}

.page > .moduleWrapper,
.page > span > .moduleWrapper {
	margin-top: 0;
	margin-bottom: 0;
}

.page > .moduleWrapper ~ .moduleWrapper,
.page > span > .moduleWrapper ~ .moduleWrapper {
	margin-top: 60px;
	margin-bottom: 60px;
}

.navbar .dropdown-menu.show .dropdown-menu.show {
	position: relative;
	border: none;
	margin-left: 30px;
}
 
.footerMenuLink {
	color: #FFFFFF;
	display: inline-block;
	text-decoration: none;
}

.footerMenuLink:hover {
	text-decoration: underline;
	color: #FFFFFF;
}

.footerInner .footerMenuLink {
	padding-right: 35px;
}

.footerInner .footerMenuLink:last-child {
	padding-right: 0;
}

.module {
	padding: 0;
}

.module .ui-datagrid-content,
.module .ui-panel,
.module .ui-panel-titlebar,
.module .ui-panel-content {
	background-color: inherit;
}

.module .ui-panel-titlebar {
	border: none;
}

.newsAreaTitle {
	font-size: 48px;
	text-align: center;
	margin: 0 0 30px;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 1.1;
}

.newsBox {
	width: 100%;
	height: 100%;
	margin: 0 auto 10px auto;
	position: relative;
	background-color: #FFFFFF;
	box-sizing: border-box;
	transition: transform 0.25s;
}

.newsBox a {
	color: #000000;
}

.newsBox:hover {
	transform: translateY(-5px);
}

.newsBox:hover a,
.newsBox a:hover,
.newsBox a:focus {
	color: #333333;
	text-decoration: none;
}

@media (max-width: 575px) {
	.newsBox {
		padding-bottom: 30px;
	}
}

.newsBox .card {
	width: 100%;
}

.newsImageArea {
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 260px;
}

.newsNoImageArea {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-left: 10px;
	height: 90px;
}

.noEventsText {
	font-size: 18px;
	font-weight: 700;
}

.newsDateArea {
	background-color: #394a82;
	color: #FFFFFF;
	width: 90px;
	height: 90px;
	position: absolute;
	left: 0px;
	top: 0px;
}

.newsDateAreaInner {
	vertical-align: middle;
	text-align: center;
	width: 100%;
	font-size: 16px;
	margin: 0;
	line-height: 17px;
	display: inline-block;
	text-transform: uppercase;
	box-sizing: border-box;
	padding-top: 6px;
}

.newsDateAreaDay {
	font-size: 44px;
	font-weight: 800;
	line-height: 40px;
}

.newsContentArea {
	padding: 10px;
	margin-bottom: 10px;
}

.newsBox .card-title {
	font-size: 16px;
	font-weight: 700;
	display: block;
}

.newsBox .card-description {
	margin-top: 10px;
	font-weight: 700;
	color: #555555;
	font-size: 16px;
	text-align: left;
}

.newsAreaTitle > form,
.eventCalendarNavigationButtonsContainer {
	position: absolute;
	right: 15px;
	top: 60px;
}

.newsAreaTitle > form {
	top: 30px;
}

.newsPageButton {
	font-size: 14px;
	width: 25px;
	height: 25px;
	background: #394a82;
	border: none;
	color: #FFFFFF;
	display: inline-block;
	text-decoration: none;
	text-align: center;
	margin-right: 8px !important;
	line-height: 25px;
	border-radius: 0;
	outline: none;
	padding: 2px;
}

.newsPageButton:last-of-type {
	margin-right: 0 !important;
}

.newsPageButton:hover {
	color: #FFFFFF;
	text-decoration: none;
	outline: none;
}

.newsPageButton:active {
	text-decoration: none;
	outline: none;
}

.newsPageButton:active {
	text-decoration: none;
	outline: none;
}

.eventCalendarContainer {
	width: 100%;
}

.eventCalendarNavigationButtonsContainer {
	position: absolute;
	right: 0px;
	bottom: 0px;
}

.eventCalendarNavigationButtonsContainer * {
	outline: none;
}

.noEventsContainer {
	margin-left: 20px;
	color: #7C7C7C;
	font-size: 11pt;
	margin-bottom: 20px;
}

.eventMonthsArea {
	margin-bottom: 60px;
}

.eventCalendarContainer {
	width: 100%;
	position: relative;
}

.eventCalendarNavigationButtonsContainer {
	position: absolute;
	right: 0;
	bottom: 10px;
}

.eventCalendarNavigationButtonsContainer * {
	outline: none;
}

.noEventsContainer {
	margin-left: 20px;
	color: #7C7C7C;
	font-size: 11pt;
	margin-bottom: 20px;
}

.galleryViewer .ui-widget-content {
	border: none;
	padding-bottom: 20px;
}

.galleryViewer .ui-paginator {
	background: inherit;
	border: none;
}

.galleryViewer .ui-datagrid-column {
	text-align: center;
}

.galleryViewer img {
	width: 200px;
	display: block;
	margin: auto;
}

.galleryViewerDiv a {
	text-decoration: none;
}

.galleryViewerDiv {
	width: auto;
}

.galleryViewerDiv span {
	display: block;
	background-color: rgba(0, 0, 0, 0.75);
	color: #FFFFFF;
	padding: 5px;
	width: 200px;
	margin: auto;
	box-sizing: border-box;
	border-radius: 0 0 0.5em 0.5em;
	margin-bottom: 5px;
}

.sitemapLanguageHeader {
	margin: 0 20px;
}

.noBorder {
	border: none;
}

.noPadding {
	padding: 0;
}

.noBackground {
	background: inherit !important;
}

.registerBoxDescription {
	font-size: 10pt;
}

.contactsMenu {
	background-color: #23558F;
	width: 100%;
	border-bottom: 2px solid #008FD4;
	padding: 0;
	margin: 0;
}

.contactsMenuInner {
	padding: 0 6px;
	vertical-align: middle;
	min-height: 38px;
}

.contactsMenu .contactsMenuBlockRight {
	text-align: right;
	padding-right: 22px;
}

.contactsMenu .contactsMenuBlock:before {
	content: ' ';
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
	height: 38px;
}

.contactsMenu .contactsMenuBlock {
	color: #FFFFFF;
	font-size: 13px;
	display: inline-block;
	vertical-align: middle;
	height: 38px;
	white-space: nowrap;
	line-height: 38px;
}

.contactsMenu a:hover {
	text-decoration: underline;
}

.contactsMenu .contactsMenuBlockLeft .contactsMenuBlock {
	margin-right: 40px;
}

.contactsMenu .contactsMenuBlockLeft .contactsMenuBlock:last-child {
	margin-right: 0;
}

.contactsMenu .contactsMenuBlockRight .contactsMenuBlock:first-child {
	margin-right: 10px;
}

.contactsMenu img {
	vertical-align: middle;
	width: 21px;
	height: 15px;
	padding-bottom: 4px;
	border: none;
}

.contactsMenu a.contactsMenuFacebook {
	display: inline-block;
	background-image: url('../images/contacts_facebook.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 25px;
	height: 25px;
	vertical-align: middle;
}

.contactsMenu a.contactsMenuFacebook:hover {
	background-image: url('../images/contacts_facebook_hover.png');
}

.contactsMenu a {
	color: #FFFFFF;
	text-decoration: none;
	border: none;
}

.contentAreaTitle {
	font-size: 48px;
	text-align: center;
	margin: 0 0 30px;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 1.1;
}

.newsAreaTitle {
	font-size: 48px;
	text-align: center;
	margin: 0 0 30px;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 1.1;
}

.galleryAreaTitle {
	font-size: 26px;
	margin-bottom: 40px;
}

@media (max-width: 575px) {
	.newsAreaTitle,
	.galleryAreaTitle,
	.contentAreaTitle {
		font-size: 24px;
	}
}

.subscribeMainDiv2 {
	vertical-align: top;
	width: 100%;
	max-width: 540px;
	min-height: 400px;
	background-image: url('../images/subscribe_watermark.jpg');
	background-repeat: no-repeat;
	background-color: #F2F2F2;
	position: relative;
	box-sizing: border-box;
	color: #333333;
	padding: 20px 20px 80px 20px;
}

.subscribeMainDiv2 a {
	text-decoration: underline;
}

.subscribeLabel {
	font-size: 14px;
	height: 35px;
}

.subscribeButtonDiv {
	position: absolute;
	bottom: 20px;
	right: 20px;
}

@media (min-width: 768px) {
	.subscribeLabel {
		text-align: right;
	}
}

.subscribeLabel:before {
	content: ' ';
	display: inline-block;
	height: 35px;
	vertical-align: middle;
	overflow: hidden;
}

.subscribeMainDiv2 input[type="text"] {
	height: 35px;
	border-radius: 0;
	font-size: 14px;
}

.subscribe2TableCheckboxArea {
	font-size: 13px;
}

.subscribe2TableCheckboxArea .ui-chkbox {
	margin-right: 10px;
	margin-bottom: 10px;
	vertical-align: top;
}

.wm_calendar input[type="text"] {
	background-image: url('../images/wm_calendar.png');
	background-repeat: no-repeat;
	background-position: 8px center;
	padding-left: 34px;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 10px;
}

.wm_clock input[type="text"] {
	background-image: url('../images/wm_clock.png');
	background-repeat: no-repeat;
	background-position: 8px center;
	padding-left: 34px;
	box-sizing: border-box;
	width: 100%;
}

.wm_clock2 {
	width: 100%;
	box-sizing: border-box;
	height: 35px;
	border-radius: 0;
	overflow: hidden;
	background: #FFFFFF;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #CCCCCC;
}

.wm_clock2 label {
	height: 35px;
	line-height: 35px;
	background-image: url('../images/wm_clock.png');
	background-repeat: no-repeat;
	background-position: 8px center;
	padding: 0 0 0 34px;
	box-sizing: border-box;
	border-radius: 0;
	font-size: 14px;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.wm_clock2 .ui-selectonemenu-trigger {
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: #FFFFFF;
}

.wm_clock2 .ui-selectonemenu-trigger .ui-icon {
	margin-top: 10px;
}

.newsletterTitleCell {
	font-size: 21px;
	font-weight: bold;
	margin-bottom: 15px;
}

.newsletterButtonCell {
	text-align: right;
	width: 250px;
	float: right;
}

.cookieAcceptPanel {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	font-size: 16px;
	color: #ffffff;
	text-align: center;
	padding: 10px;
	z-index: 1100;
}

.cookieAcceptPanel .row {
	margin-left: 0;
	margin-right: 15px;
}

.cookieAcceptPanel .row > div:first-child {
	margin-top: 8px;
}

.articleBigBoxTitle {
	font-size: 28px;
	font-weight: bold;
}

.articleBigBoxDate {
	font-size: 16px;
	color: #666666;
	font-weight: 300;
}

.articleBigBoxImage > img {
	margin: 20px 0;
}

.articleBigBoxContent {
	font-size: 16px;
	font-weight: 300;
	margin-bottom: 20px;
}

.articleBigBoxNext {
	margin-bottom: 20px;
}

.articleBigBoxNext > a {
	text-decoration: none;
}

.articleBigBox {
	border-bottom: 1px solid #eeeeee;
	margin: 20px 0;
}

.articleBigBox:first-child {
	margin-top: 0;
}

.articleBigBoxFilter {
	position: relative;
}

.searchInputOuter > input {
	padding-right: 30px;
	box-sizing: border-box;
}

.searchInputOuter:after {
	content: '\f002';
	background: none;
	font: normal normal normal 15px/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    overflow: visible;
    text-indent: 0;
    position: absolute;
    right: 25px;
    top: 7px;
    color: #bbbbbb;
}

.articlePager * {
	margin: 10px;
}

.articlePager *:first-child {
	margin-left: 0;
}

.articlePager *:last-child {
	margin-right: 0;
}

.articlePager a {
	width: 37px;
	height: 35px;
	display: inline-block;
	border: 2px solid #CCCCCC;
	text-decoration: none;
	box-sizing: border-box;
	text-align: center;
	line-height: 30px;
	color: #CCCCCC;
}

.articlePager a:hover {
	border-color: #333333;
	color: #333333;
}

.articlePager a.active {
	border-color: #333333;
	color: #333333;
}

.articlesLinkArea {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

.articlesLinkArea a {
	text-decoration: none;
}

.page h1 {
	text-transform: uppercase;
	text-align: center;
}

.page .subTitle {
	text-align: center;
}

.categoryTogglers .card {
	border-radius: 0;
	border: none;
	background-color: #1d3618;
	color: #ffffff;
}

.categoryTogglers .card .card-body {
	border-radius: 0;
	border: 1px solid #ffffff;
	background-color: #1d3618;
	color: #ffffff;
}

.company-search-card-subtitle {
	margin-top: 20px;
	font-size: 9pt;
}

.company-search-select-button {
	background-color: #ffffff;
	color: #00377b;
	border: none;
	padding: 5px 40px;
	font-weight: bold;
	display: inline-block;
	font-size: 9pt;
}

.company-search-select-button:before {
	content: 'Kiválasztom';
}

.active .company-search-select-button:before {
	content: 'Kiválasztottam';
}

.company-search-search-button {
	background-color: #ffffff;
	color: #00377b;
	border: none;
	padding: 5px 40px;
	font-weight: bold;
	transition: background-color 0.25s, color 0.25s;
}

.company-search-search-button:hover {
	background-color: #dfdfdf;
	color: #00377b;
}

.company-search-search-button:active {
	transform: translate(1px, 1px) scale(0.98, 0.98);
}

.page .card .card-img-top {
	min-height: 170px;
	object-fit: cover;
}

.page .active .card {
	color: #1d3618;
	background-color: #ffffff;
}

.page .active .card .card-body {
	color: #1d3618;
	background-color: #ffffff;
}

.page .card .flag {
	position: absolute;
	right: -20px;
	top: 30px;
	height: 110px;
	width: 20px;
}

.flag-green {
	background-color: #43b863;
}

.flag-red {
	background-color: #ea1d27;
}

.flag-orange {
	background-color: #f5a71c;
}

.flag-blue {
	background-color: #7acbbf;
}

.company-search-table {
	width: 100%;
}

.company-search-table > tbody > tr {
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	position: relative;
}

.company-search-table > tbody > tr > td:nth-child(1) {
	width: 20px;
}

.company-search-table > tbody > tr > td:nth-child(2) {
	width: 130px;
}

.company-search-logo {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #ffffff;
	margin: 10px 15px;
}

.company-search-logo > img {
	width: 70%;
	height: auto;
}

.company-score {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 28px;
	border-radius: 50%;
	background-color: #ffffff;
	color: #00377b;
	text-align: center;
	font-weight: bold;
	margin-right: 5px;
	vertical-align: middle;
}

.company-score-bigger {
	width: 60px;
	height: 60px;
	line-height: 58px;
	font-size: 24pt;
}

.company-score-bigger-label {
	font-size: 12pt;
	font-weight: bold;
}

.company-score-gold {
	background-color: #d4af37;
	color: #f2ecd7;	
}

.company-search-buttonArea {
	position: absolute;
	right: 0;
	bottom: 0;
}

@media(max-width: 800px) {
	.company-search-buttonArea {
		display: none;
	}
}

.company-search-buttonArea > button {
	background-color: #ffffff;
	color: #00377b;
	border: none;
	padding: 5px 23px;
	font-weight: bold;
	display: inline-block;
	font-size: 9pt;
}

.company-search-filters {
	margin-top: 60px;
	margin-bottom: 20px;
}

.company-search-filters > span {
	margin-left: 20px;
	margin-right: 20px;
}

.company-search-filters > span:first-child {
	margin-left: 0;
}

.project-reference {
	position: relative;
	margin-bottom: 20px;
}

.project-reference:after {
	content: '';
	display: block;
	border-bottom: 1px solid #ddd;
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
}

.row.project-reference:after {
	left: 15px;
	right: 15px;
}

.project-reference:last-child {
	position: relative;
	margin-bottom: 0;
}

.project-reference:last-child:after {
	display: none;
}

.no-padding-radio {
	margin-left: 5px;
}

.no-padding-radio td {
	padding: 0;
}

.no-padding-radio label {
	display: none;
}

.speed-icon {
	max-width: 50px;
	height: auto;
}

.category-list td {
	vertical-align: middle;
	padding: 10px 0;
}

.inset-black-shadow {
	-webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.65);
	box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.65);
}

.black-shadow {
	-webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.65);
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.65);
}

h4 {
	font-weight: bold;
	margin-bottom: 15px;
}

.scoring-radios {
	width: 100%;
} 

.scoring-radios td {
	text-align: center;
}

.scoring-radios label {
	margin: 5px 0 0 0;
	display: block;
}

.scoring-radios .ui-radiobutton {
	margin: 0 0 0 -1px;
}

.expert-name {
	font-weight: bold;
	font-size: 12pt;
	margin-bottom: 10px;
}

.google-maps-container,
.google-maps-container > iframe {
	width: 100% !important;
	height: 100% !important;
}

.project-reference-list-reference-box {
	margin-bottom: 15px;
	margin-left: 10px;
}

.project-reference-list-reference-title {
	margin-top: 10px;
}

.project-reference-list-header {
	margin-bottom: 10px;
}

.project-reference-list-category {
	font-weight: bold;
}

.znb-accordion .ui-accordion-header {
	margin-top: 15px;
	background-color: #1d3618;
	color: #ffffff;
	outline: none;
	font-size: 13pt;
	border-radius: 0;
}

.znb-accordion .ui-accordion-header.ui-state-default .ui-icon {
	background-image: url("../javax.faces.resource/images/ui-icons_ffffff_256x240.png.html?ln=primefaces-omega");
}

.znb-accordion .ui-accordion-header.ui-state-active {
	color: #ffffff;
	background-color: #1d3618;
	border: 1px solid #dddddd;
	border-bottom: none;
}

.znb-accordion .ui-accordion-header.ui-state-active .ui-icon {
	background-image: url("../javax.faces.resource/images/ui-icons_ffffff_256x240.png.html?ln=primefaces-omega");
}

.znb-accordion .ui-accordion-header.ui-state-active.ui-tabs-outline {
	border-bottom: none;
}

.znb-accordion .ui-accordion-header.ui-state-hover,
.znb-accordion .ui-accordion-header.ui-state-active:hover {
	color: #222222;
	background-color: #bfc2d2;
}

.znb-accordion .ui-accordion-header.ui-state-hover .ui-icon,
.znb-accordion .ui-accordion-header.ui-state-active:hover .ui-icon {
	background-image: url("../javax.faces.resource/images/ui-icons_222222_256x240.png.html?ln=primefaces-omega");
}

.znb-accordion .ui-accordion-content {
	color: #ffffff;
	background-color: #1d3618;
	border: 1px solid #dddddd;
	border-top: none;
}

.category-table {
	width: 100%;
}

.category-grid:not(.category-grid-header) {
	margin-top: 10px;
	margin-bottom: 10px;
	
	padding: 10px 5px;
}

.category-grid > div:first-child {
	width: 100px;
	text-align: center;
	
	-ms-flex-item-align: center;
	align-self: center;
}

.category-grid-header > div:first-child {
	font-size: 9pt;
	font-weight: bold;
}

.category-grid-header > div:last-child {
	font-size: 1.5rem;
	font-weight: bold;
	margin-left: 5px;
}

.jelmagyarazat {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	border: 1px solid #000000;
	text-align: center;
	line-height: 18px;
	font-size: 9pt;
}

.progress-bar.bg-warning,
.jelmagyarazat.bg-warning {
	color: #000000;
}

.list-grid > div {
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-align: center !important;
	align-items: center !important;
}

.list-grid > div:before {
	content: '\f111';
	display: inline-block;
	font: normal normal normal 8px/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 10px;
	vertical-align: middle;
	margin-top: 7px;
	-ms-flex-item-align: start !important;
	align-self: flex-start !important;
}

.person-thumbnail {
	display: block;
	width: 200px;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.85);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.85);
	margin-left: 15px !important;
}

.ui-widget-content a {
	color: #ffffff;
}

.greenRow {
	background-color: #43b863;
	color: #ffffff;
	font-size: 14pt;
}

/* ----------------------------------------
06.10) Schedule
---------------------------------------- */

body .schedule {
	padding-bottom: 30px;
}

body .schedule .fc-toolbar .fc-center h2 {
	font-size: 20px;
}

body .schedule .fc-event-container {
	pointer-events: none;
	color: #FFFFFF;
}

body .schedule .fc-body {
	cursor: pointer;
}

body .schedule .fc-toolbar .fc-center h2 {
	color: #ffffff;
	font-weight: bold;
}

body .schedule td.fc-day-top {
	text-align: center;
	font-weight: bold;
	color: #959595;
}

body .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
	float: none;
}

body .schedule td.fc-day-top.fc-today {
	color: #fd110d; 
}

body .schedule td.fc-day.fc-today {
	-webkit-box-shadow: inset 0 0 0 2px #fd110d;
	box-shadow: inset 0 0 0 2px #fd110d; 
}

body .schedule .fc-row:last-child {
	border-bottom: 1px solid #DDDDDD;
}

body .schedule .fc-day-number.fc-mon.fc-today.ui-state-highlight {
	border-right: 1px solid #DDDDDD;
}

body .schedule .fc-scroller {
	overflow: visible !important;
	height: auto !important;
}

body .scheduleWithBadges .fc-event,
body .scheduleWithBadges .fc-event:hover,
body .scheduleWithBadges .ui-widget .fc-event {
    background-color: #ffffff;
    border: 1px solid #3a87ad;
    border-radius: 50%;
    color: #3a87ad;
    height: 20px;
    line-height: 20px;
    padding: 0 1px 1px 0;
    text-align: center;
    width: 20px;
    margin-left: auto;
	margin-right: auto;
}

body .scheduleWithBadges .fc-basic-view tbody .fc-row {
	min-height: 55px !important;
}

body .fc .fc-toolbar .ui-button {
	margin-right: 5px;
}

body .fc .fc-toolbar .ui-button .ui-icon {
	line-height: 0.9;
}

body .fc th {
	background-color: #394a82;
}

body .fc td.fc-head-container {
	border-color: #394a82;
}

body .fc th {
	padding-left: 0;
	padding-right: 0;
}

body .schedule .fc-row:last-child {
	border: none;
}

body .fc .ui-button .ui-icon {
	background-image: url("/javax.faces.resource/images/ui-icons_ffffff_256x240.png.html?ln=primefaces-omega");
}

.category_icon_list {
	padding-left: 0;
	
}

.category_icon_list li {
	list-style: none;
	margin-top: 10px;
	margin-bottom: 10px;
}

.category_icon_outer {
	width: 50px;
	height: 50px;
	background-color: #ffffff;
	padding: 5px;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
	margin-right: 10px; 
}

.category_icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.category_icon_outer_small {
	width: 30px;
	height: 30px;
	background-color: #ffffff;
	padding: 2px;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 10px;	
}

.text-justify-all,
.text-justify-all * {
	text-align: justify !important;
}