@CHARSET "UTF-8";

/* TABLE OF CONTENTS

00) Fonts
01) General layout
01.1) Bootstrap changes
01.2) Header
01.3) Nav
01.4) Footer
02) General classes
02.1) Review colors
03) Forms
04) Buttons
05) Panels
05.1) Fieldset
05.2) Accordion
05.3) Data table
05.4) Dialog
05.5) Confirm dialog
06) Components
06.1) Radio button
06.2) Calendar and Spinner
06.3) File upload
06.4) Inplace
06.5) Tooltip
06.6) Growl
06.7) Timeline
06.8) Tree
06.9) Auto complete
06.10) Schedule
07) Code Mirror
08) Questionnaires
09) Ajax activity overlay
10) Scroll Up
11) Cookie panel
12) Pages
12.1) Index page
12.2) User area
12.3) Login page

*/

/* ----------------------------------------
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;
}

@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: #777777;
}

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

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

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

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

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

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

body > header a {
	font-size: 25px;
	font-weight: bold;
	display: block;
	display: inline-block;
	overflow: hidden;
	transition: font-size 0.25s;
}

@media (max-width: 800px) {
	body > header a {
		font-size: 20px;
	}
}

@media (max-width: 700px) {
	body > header a {
		font-size: 18px;
	}
}

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
---------------------------------------- */

nav.sticky-top {
	box-shadow: 0 3px 4px -2px rgba(0, 0, 0, 0.5);
}

#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;
}

#headerMenu a,
#headerMenu button,
#headerMenu2 a,
#headerMenu2 button {
	font-size: 15px;
	font-weight: 500;
	color: #777777;
	text-transform: uppercase;
}

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

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

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

#headerMenu .dropdown-menu a,
#headerMenu2 .dropdown-menu a {
    color: #777777;
    display: block;
    font-size: 13px;
	font-weight: 500;
    padding: 6px 5px;
    text-align: left;
    text-transform: uppercase;
    transition: color 0.5s;
}

#headerMenu .dropdown-menu a.active,
#headerMenu .dropdown-menu a:hover,
#headerMenu2 .dropdown-menu a.active,
#headerMenu2 .dropdown-menu a:hover {
    color: #000000 !important;
    background-color: #FFFFFF;
}

.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: #777777;
	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: #000000;
}

.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);
}

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

body > footer {
	background-color: rgb(0, 184, 184);
	color: #FFFFFF;
	padding-top: 10px;
	box-sizing: border-box;
	font-size: 14px;
	border-top: 1px solid #d5d5d5;
	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%;
}

/* ----------------------------------------
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: #74A3BE;
	color: #ffffff;
}

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

.registryCode {
	font-size: 16px;
	font-weight: bold;
	color: #dc3545;
}

.ui-state-highlight .registryCode {
	color: #f0e620;
}

.delayRow .registryCode {
	color: #ffc107;
}

.delayRow label {
	color: #ffc107;
}

/* ----------------------------------------
02.1) Review colors
---------------------------------------- */

.text-external-reviewer {
	color: #fa9211;
}

.text-external-reviewer .textarea-bg {
	background-color: #faecdb;
}

.text-external-supervisor {
	color: #a6490b;
}

.text-external-supervisor .textarea-bg {
	background-color: #dfd5ce;
}

.text-reviewer {
	color: #02a554;
}

.text-reviewer .textarea-bg {
	background-color: #f5fefa;
}

.text-supervisor {
	color: #337ab7;
}

.text-supervisor .textarea-bg {
	background-color: #f4f9fd;
}

.text-itm {
	color: #8000ff;
}

.text-itm .textarea-bg {
	background-color: #f4eaff;
}

.text-itm-supervisor {
	color: #ff0094;
}

.text-itm-supervisor .textarea-bg {
	background-color: #ffecf7;
}

/* ----------------------------------------
03) Forms
---------------------------------------- */

.form-control,
.form-control * {
	font-size: 14px;
}

.formWithSpacing .ui-panel,
.formWithSpacing .ui-datatable,
.formWithSpacing .ui-fieldset {
	margin-top: 0;
	margin-bottom: 20px;
}

.formWithSpacing .ui-panel:last-child,
.formWithSpacing .ui-datatable:last-child,
.formWithSpacing .ui-fieldset:last-child {
	margin-bottom: 0;
}

.formWithSpacing [class*="col-"] .ui-panel,
.formWithSpacing [class*="col-"] .ui-datatable,
.formWithSpacing [class*="col-"] .ui-fieldset {
	margin-top: 0;
	margin-bottom: 0;
}

.buttonRow {
	overflow: hidden;
}

.buttonRow button,
.buttonRow .btn,
.buttonRow input[type="button"],
.buttonRow input[type="submit"] {
	margin-right: 10px;
}

.buttonRow button:last-child,
.buttonRow .btn:last-child,
.buttonRow input[type="button"]:last-child,
.buttonRow input[type="submit"]:last-child {
	margin-right: initial;
}

.buttonRow.bg-dark {
	border-top: 1px solid #ffffff;
}

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

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

.bigButton {
	padding: 5px 10px;
	margin: 0 auto;
	display: block;
	font-size: 16px;
	
	overflow: hidden;
	white-space: normal;
}

.bigButton.ui-button-text-icon-left .ui-button-text {
	padding-left: 30px;
	padding-right: 0;
}

/* ----------------------------------------
05) Panels
---------------------------------------- */

.ui-panel {
	border-radius: 0 !important;
	overflow: hidden;
}

.ui-widget-header:not(.ui-paginator) a {
	color: #cbdbe7;
}

/* ----------------------------------------
05.1) Fieldset
---------------------------------------- */

.ui-fieldset-toggleable .ui-fieldset-legend {
	color: #253036;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 0 !important;
}

.ui-fieldset .ui-fieldset-legend {
	font-size: 1em;
	font-weight: bold;
	padding: 0 10px;
	margin: 10px 0;
	border: none;
	width: auto;
}

.ui-fieldset .ui-fieldset-toggler {
	margin-top: 2px;
	margin-right: 4px;
}

/* ----------------------------------------
05.2) Accordion
---------------------------------------- */

.ui-accordion .ui-accordion-header > .ui-icon {
	font: normal normal normal 20px/1 FontAwesome;
	color: #000000;
	background: none;
	text-indent: 0;
	overflow: visible;
	margin-top: -10px;
}

.ui-accordion .ui-accordion-header > .ui-icon.ui-icon-triangle-1-e:after {
	content: '\f0da';
}

.ui-accordion .ui-accordion-header > .ui-icon.ui-icon-triangle-1-s:after {
	content: '\f0d7';
}

@media only screen and (max-width: 48em) {
	.ui-accordion {
		margin-left: -1rem;
		margin-right: -1rem;
	}
}

.ui-accordion .ui-accordion-content.ui-widget-content {
	overflow-x: hidden;
}

/* ----------------------------------------
05.3) Data table
---------------------------------------- */

.ui-datatable > div > table {
	table-layout: auto;
}

.ui-datatable td.maxWidth {
	width: 100%;
}

.hide-column-names > thead > tr,
.hide-column-names table thead tr {
    display: none;
}

.ui-datatable .ui-state-highlight a {
	color: #ffffff;
}

th.datatable-drag-handle,
td.datatable-drag-handle {
	width: 15px !important;
	padding: 0 6px 0 6px !important;
	border-right: none !important;
}

tbody td.datatable-drag-handle {
	cursor: move;
	cursor: grab;
	vertical-align: middle;
	text-align: center;
	-webkit-box-shadow: inset -6px 0 5px -7px rgba(0, 0, 0, 0.5);
	box-shadow: inset -6px 0 5px -7px rgba(0, 0, 0, 0.5);
}

td.datatable-drag-handle + td,
th.datatable-drag-handle + th {
	border-left: none !important;
	padding-left: 6px;
}

th.datatable-drag-handle {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-bottom-right-radius: 0;
}

th.datatable-drag-handle + th {
	-webkit-box-shadow: none;
	box-shadow: none;
	padding-right: 29px;
	border-bottom-left-radius: 0;
}

tbody td.datatable-drag-handle:after {
	content: '\f0dc';
	font-family: FontAwesome;
	font-weight: normal;
	font-size: 14px !important;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    overflow: visible;
    text-indent: 0;
    color: #666666;
    padding: 5px 3px 5px 2px;
    transition: color 0.5s, text-shadow 0.5s;
}

td.datatable-drag-handle:hover:after,
.ui-sortable-helper td.datatable-drag-handle:after {
	color: #2399E5;
	-webkit-text-shadow: 0 0 10px rgba(35, 153, 229, 0.75);
	text-shadow: 0 0 10px rgba(35, 153, 229, 0.75);
}

tbody tr.ui-state-highlight td.datatable-drag-handle:after {
	color: #FFFFFF;
}

.ui-sortable-helper {
	opacity: 0.85;
}

.ui-sortable-helper span.ui-column-title {
	display: none;
}

.ui-sortable-helper * {
	cursor: none !important;
}

.ui-sortable-helper td.datatable-drag-handle {
	width: 15px !important;
}

@media only screen and (max-width: 640px) {
	.ui-datatable-reflow td.datatable-drag-handle {
		min-width: 25px !important;
		padding-top: 0 !important;
		padding-bottom: 6px !important;
		-webkit-box-shadow: inset -6px -5px 8px -7px rgba(0, 0, 0, 0.5);
		box-shadow: inset -6px -5px 8px -7px rgba(0, 0, 0, 0.5);
	}

	.ui-datatable-reflow td.datatable-drag-handle:after {
		display: block;
		margin-top: -10px;
	}
}

.ui-datatable-rowordering.ui-state-active {
	height: 10px;
	background-color: #8f9cab;
}

.ui-datatable-rowordering.ui-state-active * {
	border: none !important;
	padding: 0;
	margin: 0;
	line-height: 0;
}

@media(min-width: 641px) {
	.column-text-center {
		text-align: center;
	}
}

.ui-datatable-rowordering.ui-state-active > td {
	border: 1px solid #CCCCCC;
}

.ui-datatable .ui-column-filter {
	width: 100%;
	box-sizing: border-box;
}

.ui-datatable tr.ui-widget-header {
	background: #f0f1f4;
	border-top: 2px solid #CCCCCC;
}

.ui-datatable tr.ui-widget-header > td {
	padding-top: 0;
	padding-bottom: 0;
	-webkit-box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
	box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
}

.ui-datatable table.hidden-group-row tr.ui-widget-header {
	display: none;
}

.ui-icon-seek-first {
	background-position: -80px -157px;
}

.ui-icon-seek-prev {
	background-position: -48px -157px;
}

.ui-icon-seek-next {
	background-position: -32px -157px;
}

.ui-icon-seek-end {
	background-position: -64px -157px;
}

.ui-row-editor .ui-icon {
	background: none;
	font-family: FontAwesome;
	text-indent: initial;
	overflow: visible;
	width: auto;
	height: auto;
	margin-right: 10px;
}

.ui-row-editor .ui-icon.ui-icon-pencil:after {
	content: '\f040';
}

.ui-row-editor .ui-icon.ui-icon-check:after {
	content: '\f00c';
}

.ui-row-editor .ui-icon.ui-icon-close:after {
	content: '\f00d';
}

.ui-editable-column {
	font-size: 0;
}

.ui-editable-column .ui-cell-editor {
	font-size: 13px;	
}

.ui-cell-editor-input {
	padding: 5px;
}

.rowEditorColumn {
	width: 90px;
	font-size: 18px;
}

.rowEditorColumn a:hover {
	text-decoration: none;
}

.ui-state-highlight .rowEditorColumn * {
	color: #FFFFFF;
}

.ui-selection-column .ui-chkbox .ui-chkbox-box {
	margin-right: 0;
}

/* ----------------------------------------
05.4) Dialog
---------------------------------------- */

.ui-dialog {
	z-index: 1061 !important;
}

.ui-widget-overlay.ui-dialog-mask {
	z-index: 1060 !important;
}

/* ----------------------------------------
05.5) Confirm dialog
---------------------------------------- */

.ui-confirm-dialog-message {
	margin-left: 10px;
    margin-top: -3px;
    width: calc(100% - 30px);
}

/* ----------------------------------------
06) Components
---------------------------------------- */


/* ----------------------------------------
06.1) Radio button
---------------------------------------- */

.ui-selectoneradio label {
	margin-left: 5px;
	margin-right: 10px;
}

/* ----------------------------------------
06.2) Calendar and Spinner
---------------------------------------- */

.ui-calendar {
	position: relative;
}

.ui-calendar:after {
	content: '\f073';
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    overflow: visible;
    text-indent: 0;
    position: absolute;
    left: 10px;
    top: 1px;
    pointer-events: none;
}

.ui-calendar > .ui-inputfield {
	padding-left: 30px;
}

.ui-calendar.form-control,
.ui-spinner.form-control {
	border: none;
	padding: 0;	
}

.ui-calendar.form-control > .ui-inputfield {
	padding-left: 35px;
}

.ui-spinner.form-control > .ui-spinner-input {
	padding: 0.375rem 0.75rem;
}

.ui-calendar.form-control > .ui-inputfield,
.ui-spinner.form-control > .ui-spinner-input {
	width: 100%;
	color: #495057;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.ui-calendar.form-control > .ui-inputfield:focus,
.ui-spinner.form-control > .ui-spinner-input:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.ui-calendar.form-control:after {
	top: 8px;
	left: 12px;
	color: #495057;	
}

.ui-datepicker-calendar td {
	width: 30px;
}

.ui-datepicker-calendar td > a {
	height: 20px;
	line-height: 20px;
	text-align: center;
}

.ui-datepicker-year {
	width: 70px !important;
	padding: 4px 4px 2px 4px;
}

.ui-datepicker-month {
	width: 70px !important;
	padding: 4px 4px 2px 4px;
}

.ui-timepicker-select {
	width: 100%;
	padding: 4px;
}

.ui-spinner-button.ui-state-default {
	cursor: pointer;
}

.ui-spinner-input {
	text-align: left;
	font-size: 1em;
}

/* ----------------------------------------
06.3) File upload
---------------------------------------- */

.ui-fileupload-buttonbar {
	background: none;
}

.ui-datatable .ui-fileupload-files td {
	border: none;
}

.fileList .file-icon {
	margin-right: 10px;
	font-size: 20px;
}

/* ----------------------------------------
06.4) Inplace
---------------------------------------- */

.ui-inplace-display {
	padding: 5px;
	border-radius: 5px;
}

.ui-inplace-content {
	position: relative;
}

.ui-inplace-content > .fluidInput {
	padding-right: 75px;
}

.ui-inplace-content > .ui-inplace-editor {
	position: absolute;
	right: 0;
	top: -1px;
}

.ui-inplace-content > .ui-inplace-editor > .ui-button {
	background: none;
	border: none;
	box-shadow: none;
}

.ui-inplace-content > .ui-inplace-editor > .ui-button > .ui-icon {
	background: none;
	display: inline;
	position: static;
}

.ui-inplace-content > .ui-inplace-editor > .ui-button > .ui-icon:after {
	font: normal normal normal 15px/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    overflow: visible;
    text-indent: 0;
}

.ui-inplace-content > .ui-inplace-editor > .ui-button > .ui-icon-check:after {
	content: '\f00c';
	color: #1F7A27;
}

.ui-inplace-content > .ui-inplace-editor > .ui-button > .ui-icon-close:after {
	content: '\f00d';
	color: #A52626;
}

/* ----------------------------------------
06.5) Tooltip
---------------------------------------- */

.ui-tooltip {
	z-index: 1051 !important;
}

.ui-tooltip-text {
	max-width: 300px;
}

.questionPlayerText > .tooltipDiv {
	margin-right: 17px;	
}

.tooltipDiv a {
	font-size: 18pt;
	transition: transform 0.75s;	
}

.tooltipDiv a:hover {
	text-decoration: none;
	transform: scale(1.25, 1.25);
}

/* ----------------------------------------
06.6) Growl
---------------------------------------- */

.ui-growl-info {
	background-color: #2a2a2a;
	border-color: #1d1d1d;
	color: #ffffff;
	text-shadow: 0 1px 0 #111111;
}

.ui-growl-warn {
	color: #333333;
}

.ui-growl {
	z-index: 2147483647 !important;
}

.ui-growl-item {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

/* ----------------------------------------
06.7) Timeline
---------------------------------------- */

.timeline-met {
	border-color: #3598DC !important;
	color: #3598DC !important;
}

.timeline-end {
	border-color: #FF0000 !important;
}

.timeline-end.timeline-event.timeline-event-box,
.timeline-end.timeline-event.timeline-event-dot {
	visibility: hidden;
}

.timeline-end.timeline-event.timeline-event-line {
	top: 0 !important;
	height: 500px !important;
}

.timeline-box-container {
	display: inline;
	margin-left: 50px;
}

div.timeline-currenttime {
	background-color: #FFD51D;
}

.timeline-box {
	width: 20px;
	height: 20px;
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
}

.timeline-box1 {
	background-color: #3598DC;
}

.timeline-box2 {
	background-color: #DADADA;
}

/* ----------------------------------------
06.8) Tree
---------------------------------------- */

.ui-tree {
	width: 100%;
}

.ui-tree .ui-chkbox-box {
	margin-right: 10px;
}

/* ----------------------------------------
06.9) Auto complete
---------------------------------------- */

.ui-autocomplete-panel {
	z-index: 2000 !important;
}

.ui-autocomplete.form-control {
	padding: 0;
	border: none;
	
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	flex-direction: row;
}

.ui-autocomplete.form-control .ui-autocomplete-multiple-container {
	width: 100%;
}

.ui-autocomplete.form-control .ui-autocomplete-multiple-container .ui-autocomplete-token-label {
	font-size: 14px;
}

.input-group .ui-autocomplete.form-control .ui-autocomplete-input,
.input-group .ui-autocomplete.form-control .ui-autocomplete-multiple-container {
	border-radius: 0;
}

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

.schedule {
	padding-bottom: 30px;
}

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

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

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

.schedule td.fc-today {
	background: #FFFFFF !important;
	color: #000000 !important;
}

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

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

.schedule .fc-scroller {
	overflow-y: auto !important;
}

.scheduleWithBadges .fc-event,
.scheduleWithBadges .fc-event:hover,
.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;
}

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

/* ----------------------------------------
07) Code Mirror
---------------------------------------- */

.cm-s-eclipse .CodeMirror-matchingbracket {
	outline-color: #ccc;
}

.CodeMirror {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
	border-radius: 2px;
	height: auto;
	font-size: 13px;
}

.CodeMirror-scroll {
	height: auto;
}

.CodeMirror-scrollbar {
	overflow-y: auto;
}

/* ----------------------------------------
08) Questionnaires
---------------------------------------- */

.questionTable {
	width: 100%;
	table-layout: auto;
	border-left: 1px solid #DDDDDD;
	border-top: 1px solid #DDDDDD;
	border-spacing: 0;
}

.questionTable th,
.questionTable td {
	padding: 5px;
	border-right: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
}

.questionTable td {
	vertical-align: bottom;
	background-color: #FFFFFF;
}

.questionTable th {
	font-weight: bold;
	background-color: #F9F9F9;
}

.questionTable > tbody > tr > th {
	min-width: 100px;
}

.questionTable td.active {
	background-color: #94AFBD;
}

@media only screen and (max-width: 75em) {
	.questionTable > tbody > tr > th {
		min-width: 75px;
	}
}

@media only screen and (max-width: 62em) {
	.questionTable th,
	.questionTable td {
		padding: 2px;
	}

	.questionTable > tbody > tr > th {
		min-width: 35px;
	}
}

.questionTableEditorType {
	margin-bottom: 10px;
}

.questionPlayerTable {
	width: 100%;
	table-layout: auto;
	border-left: 1px solid #DDDDDD;
	border-top: 1px solid #DDDDDD;
	border-spacing: 0;
}

.questionPlayerTable > tbody > tr > th {
	min-width: 150px;
}

@media only screen and (max-width: 48em) {
	.questionPlayerTable > tbody > tr > th {
		min-width: 75px;
	}
}

.questionPlayerTable th,
.questionPlayerTable td {
	padding: 5px;
	border-right: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
}

.questionPlayerTable td {
	vertical-align: middle;
}

.questionPlayerTable th {
	font-weight: bold;
	background-color: #F9F9F9;
}

.questionPlayerTable > tbody > tr > td {
	vertical-align: top;
	word-wrap: break-word;
	max-width: 100px;
}

.questionPlayerRow {
	padding-top: 15px;
	padding-bottom: 20px;
}

.questionPlayerRow:last-child {
	padding-bottom: 0;
}

.questionPlayerArea > hr,
.questionPlayerRow + hr {
	border: none;
	background-color: #CFCFCF;
	height: 1px;
}

.questionPlayerArea > hr {
	margin-top: 30px;
}

.questionPlayerName {
	font-weight: bold;
	font-size: 14px;
	margin-right: 10px;
}

.changedQuestionReviewAnswer {
	border: 2px solid red !important;
	display: block;
}

.questionPlayerText {
	font-size: 13px;
}

.extraQuestionPanel {
	margin-top: 10px !important;
}

.maxWordsWarning {
	margin-top: 10px;
	font-weight: bold;
}

.questionReviewAnswer {
	width: 100%;
	padding: 5px;
	display: block;
	box-sizing: border-box;
	min-height: 30px;
}

.readonlyInput span.questionReviewAnswer,
.readonlyInput ul {
	background-color: #F9F9F9;
	border: 1px solid #DDDDDD;
	padding: 4px;
	border-radius: 3px;
}

.readonlyInput span.questionReviewAnswer {
	padding-top: 6px;
}

.readonlyInput ul {
	padding-left: 20px;
}

.savedColor {
    position: relative;
}

.savedColor:after {
	content: '\f05d';
	color: green;
	font-family: FontAwesome;
	font-size: 18px;
	font-weight: normal;
    overflow: visible;
    text-indent: 0;
	position: absolute;
	right: 10px;
	top: -2px;
}

div[class*="col-"].savedColor:after {
	right: 19px;
	top: 2px;
}

.otherAnswer {
	margin-top: 10px;
}

.questionnaireMainPanel .ui-panel-footer {
	border: 1px solid #d9d9d9;
	color: #1b1d1f;
	background: #f6f7f9 0 0 repeat-x;
	background: -moz-linear-gradient(top,#f6f7f9 0,#ebedf0 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f6f7f9),color-stop(100%,#ebedf0));
	background: -webkit-linear-gradient(top,#f6f7f9 0,#ebedf0 100%);
	background: -o-linear-gradient(top,#f6f7f9 0,#ebedf0 100%);
	background: -ms-linear-gradient(top,#f6f7f9 0,#ebedf0 100%);
	background: linear-gradient(top,#f6f7f9 0,#ebedf0 100%);
}

.questionnaireMainPanel .ui-panel-title {
	margin: 0 !important;
}

@media only screen and (max-width: 48em) {
	table.questionPlayerTable > thead {
		display: none;
	}
	
	table.questionPlayerTable > tbody > tr:nth-child(even) {
		background: #F9F9F9;
	}
		
	table.questionPlayerTable > tbody > tr > th {
		display: block;
		background-color: inherit;
		width: 100% !important;
		max-width: 100% !important;
		text-align: left;
		border-left: none;
		border-top: none;
		border-bottom: none;
		border-right: 1px solid #DDDDDD;
		font-size: 1.2em;
		padding-left: 10px;
		box-sizing: border-box;
	}

	table.questionPlayerTable > tbody > tr > td {
		display: block;
		width: 100% !important;
		max-width: 100% !important;
		overflow: hidden;
		box-sizing: border-box;
	}

	table.questionPlayerTable > tbody > tr.multipleColumns > td:before { 
		content: attr(data-th); 
		display: block;
		text-align: right;
		font-weight: bold;
		float: left;
		width: 33%;
	    padding: 5px;
	    box-sizing: border-box;
	}
	
	table.questionPlayerTable > tbody > tr.multipleColumns > td > .questionTableEditorName {
		float: left;
	    width: 67%;
	}
	
	table.questionPlayerTable > tbody > tr > th {
		max-width: 100px;
		word-break: normal;
	}
}

table.questionPlayerTable.fixedResponsive > thead {
	display: none;
}

table.questionPlayerTable.fixedResponsive > tbody > tr:nth-child(even) {
	background: #F9F9F9;
}
	
table.questionPlayerTable.fixedResponsive > tbody > tr > th {
	display: block;
	background-color: inherit;
	width: 100% !important;
	max-width: 100% !important;
	text-align: left;
	border-left: none;
	border-top: none;
	border-bottom: none;
	border-right: 1px solid #DDDDDD;
	font-size: 1.2em;
	padding-left: 10px;
	box-sizing: border-box;
}

table.questionPlayerTable.fixedResponsive > tbody > tr > td {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	overflow: hidden;
	box-sizing: border-box;
}

table.questionPlayerTable.fixedResponsive > tbody > tr.multipleColumns > td:before { 
	content: attr(data-th); 
	display: block;
	text-align: right;
	font-weight: bold;
	float: left;
	width: 33%;
    padding: 5px;
    box-sizing: border-box;
}

table.questionPlayerTable.fixedResponsive > tbody > tr.multipleColumns > td > .questionTableEditorName {
	float: left;
    width: 67%;
}

table.questionPlayerTable.fixedResponsive > tbody > tr > th {
	max-width: 100px;
	word-break: normal;
}

.questionnaireLogo {
	max-height: 100px;
	margin: -15px 0 15px 15px;
}

/* ----------------------------------------
09) Ajax activity overlay
---------------------------------------- */

@keyframes overlayFadeIn {
      0%   { opacity: 0; }
     30%   { opacity: 0; }
    100%   { opacity: 1; }
}

@-moz-keyframes overlayFadeIn {
      0%   { opacity: 0; }
     30%   { opacity: 0; }
    100%   { opacity: 1; }
}

@-webkit-keyframes overlayFadeIn {
      0%   { opacity: 0; }
     30%   { opacity: 0; }
    100%   { opacity: 1; }
}

@-ms-keyframes overlayFadeIn {
      0%   { opacity: 0; }
     30%   { opacity: 0; }
    100%   { opacity: 1; }
}

#ajaxOverlay {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2147483647;
	position: fixed;
	background-color: rgba(255, 255, 255, 0.5);
	text-align: center;
	vertical-align: middle;
	cursor: wait;
	-webkit-animation: overlayFadeIn 5s;
       -moz-animation: overlayFadeIn 5s;
        -ms-animation: overlayFadeIn 5s;
         -o-animation: overlayFadeIn 5s;
            animation: overlayFadeIn 5s;	
}

#ajaxOverlay > .fa {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -24px;
	margin-left: -24px;
	color: rgba(0, 0, 0, 0.5);
}

/* ----------------------------------------
10) Scroll Up
---------------------------------------- */

#scrollUp {
    background: #262b32 none repeat scroll 0 0;
    border: 1px solid #ffffff;
    border-radius: 100%;
    bottom: 30px;
    color: #ffffff;
    height: 35px;
    line-height: 35px;
    position: fixed;
    right: 30px;
    text-align: center;
    width: 35px;
    transition: all 300ms ease 0s
}

#scrollUp:hover {
    background: #84AAC6;
    color: #333;
}

/* ----------------------------------------
11) Cookie panel
---------------------------------------- */

.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;
}

/* ----------------------------------------
12) Pages
---------------------------------------- */


/* ----------------------------------------
12.1) Index page
---------------------------------------- */

.searchForm {
	background-color: #253036;
	padding: 8px;
}

.searchForm button {
	display: block;
	margin: auto;
}

/* ----------------------------------------
12.2) User area
---------------------------------------- */

.eventButton {
	width: 100%;
	color: #253036;
	border: 3px solid #253036;
	border-radius: 16px;
	display: block;
	text-align: center;
	padding: 20px;
	margin: 10px 0;
}

.actionNameHeader {
	border-bottom: 1px solid #ccc;
	margin-bottom: 5px;
}

/* ----------------------------------------
12.3) Login page
---------------------------------------- */

.loginPanel {
	max-width: 768px;
}


.containerFullWidthOverride2 {
	width: 100vw;
	width: calc(100vw - 46px);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-left: calc(-50vw + 23px);
    margin-right: -50vw;
}

.ui-selectcheckboxmenu,
.ui-selectcheckboxmenu * {
	box-sizing: content-box;
}

.ui-selectcheckboxmenu-panel .ui-selectcheckboxmenu-list-item label {
	white-space: normal;
}

.modalMap {
	width: 100%;
	height: 500px;
	background-color: #eeeeee;
}

.errorBox {
	color: red;
}

.errorBox ul {
	padding-left: 20px;
}

.errorBox li {
	list-style-type: disc;
}