@charset "UTF-8";

input, textarea  {
	-webkit-user-select:text;
	}

/*
::-webkit-scrollbar {
    display: none;
		background-color: transparent;
}
*/

::-webkit-scrollbar {
    display: block;
		background: #272727;
		width: 10px;
}

::-webkit-scrollbar-thumb { /* Foreground */
  background: #919d00;
}

::-webkit-scrollbar-track {
  border-radius: 0px;
}

/* Basic Setup */
.no_display, .ui_value {
	display: none;
}

body {
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
	height: 100vh;
	}

	body .content, body .menubar {
		transition: filter 0.3s ease-in;
		-webkit-transition: -webkit-filter 0.3s ease-in;
		-moz-transition: -moz-filter 0.3s ease-in;
	}

	body.blurred .content, body.blurred .menubar {
		-webkit-filter: blur(5px);
	  -moz-filter: blur(5px);
	  filter: blur(5px);
		pointer-events: none;
	}

	body.blurred .content.modal {
		-webkit-filter: blur(0px);
	  -moz-filter: blur(0px);
	  -o-filter: blur(0px);
	  -ms-filter: blur(0px);
	  filter: blur(0px);
		pointer-events: all;
	}

hr {
	border: 0;
  height: 1px;
  background: #fff;
}

ul {
	margin: 0px;
	padding: 0px;
}

	ul li {
		margin: 0px;
		padding: 0px;
		list-style: none;
		position: relative;
		font-size: 12px;
	}

	ul li .icon {
		width: 12px;
		display: inline-block;
	}

.error_tag {
	display: inline-block;
  font-size: 11px;
  font-weight: bold;
  background: #c20000;
  padding: 3px 5px 2px;
  border-radius: 5px;
  margin-left: 10px;
  position: relative;
  top: -3px;
}

.no_jobs.no_jobs {
	background: #c20000 !important;
}

ul.infolist li {
	padding: 9px 10px;
	border-bottom: 1px solid #999;
}

	ul.infolist li:last-child {
		border-bottom: 0px solid #999;
	}

	ul.infolist li span {
		background: #919d00;
		padding: 3px 5px 2px;
		border-radius: 5px;
		margin-right: 8px;
		position: relative;
		top: -1px;
		width: 110px;
    display: inline-block;
	}

.no_display {
	display: none;
	}

.infobox {
	background: #919d00;
	padding: 35px 35px 33px;
	border-radius: 5px;
	margin-right: 8px;
	width: 400px;
	display: block;
	font-size: 17px;
	margin: 100px 0 0;
	position: relative;
}

.infobox_warning {
	background: #9d0000;
	padding: 15px 25px 13px;
	border-radius: 5px;
	margin-right: 8px;
	width: 490px;
	display: block;
	font-size: 14px;
	margin-bottom: 20px;
}

	.infobox:after {
		content: '';
		position: absolute;
		display: block;
		width: 0;
		z-index: 1;
		border-style: solid;
		border-color: transparent #919d00;
		border-width: 21px 24px 21px 0;
		left: -24px;
		top: calc(50% - 21px);
	}

.menubar {
	display: block;
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 200px;
	overflow-y: scroll;
	overflow-x: hidden;
}

	.menubar .logo {
		width: 70px;
		position: absolute;
		top: 20px;
		left: 60px;
	}

	.menubar ul {
		position: absolute;
		top: 80px;
		left: 0px;
	}

		.menubar ul li {
			display: block;
			width: 175px;
			font-weight: bold;
			padding: 4px 10px 8px 10px;
			cursor: pointer;
			position: relative;
			font-size: 14px;
			transition: all 0.2s ease-in-out;
		  -webkit-transition: all 0.2s ease-in-out;
		  -moz-transition: all 0.2s ease-in-out;
		}

		.menubar ul li.seperator {
			font-size: 12px;
			margin-top: 20px !important;
			text-transform: uppercase;
			letter-spacing: 2px;
		}

			.menubar ul li.seperator:hover {
				background: none !important;
				cursor: auto !important;

			}

		.menubar ul li .icon {
			font-size: 20px;
			margin-right: 15px;
			position: relative;
			top: 2px;
			transition: all 0.2s ease-in-out;
		  -webkit-transition: all 0.2s ease-in-out;
		  -moz-transition: all 0.2s ease-in-out;
			font-weight: normal;
		}

			.menubar ul li:hover .icon,  .menubar ul li.menu_active .icon {

			}

.notification {
	position: fixed;
	top: -100px;
	left: 0px;
	display: block;
	padding: 10px 5vw 15px;
	border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
	margin: 0 5vw;
	width: 80vw;
	z-index: 9999999;
	-webkit-box-shadow: 0px 0px 33px -5px rgba(0,0,0,3);
	-moz-box-shadow: 0px 0px 33px -5px rgba(0,0,0,3);
	box-shadow: 0px 0px 33px -5px rgba(0,0,0,3);
	overflow: hidden;
}

	.notification .notification_bar {
		position: absolute;
		bottom: 0px;
		left: 0px;
		height: 4px;
		width: 0;
		display: block;
		background: #fff;
		opacity: 0.5;
	}

	.notification.alert {
		color: #fff;
		background: #e32d39;
	}

	.notification.success {
		color: #fff;
		background: #79b800;
	}

	.main_container {
		position: fixed;
		top: 0px;
		left: 200px;
		width: 100vw;
		max-width: 1500px;
		height: 100vh;
		overflow: hidden;
		display: flex;
	}

	.content {
		overflow: hidden;
		opacity: 0;
	}

		.content.main, .content.list, .content.full {
			height: 100vh;
		}

		.content.main {
			left: 30%;
			width: 70%;
		}

		.content.full {
			width: 100%;
		}

		.content.list {
			width: 30%;
		}

		.load_content {
				overflow-y: scroll;
				overflow-x: hidden;
				margin-right: 0px;
				height: 100vh;
			}

			.content.modal .load_content {
				height: 660px;
			}

			.inner_content .load_content {
				height: auto;
			}

			.load_content .inner_content {
				padding: 60px 40px 40px;
				position: relative;
			}

			.content.list .load_content .inner_content {
				padding: 60px 20px 40px;
			}

.content.modal {
	position: fixed;
	top: 100px;
	left: 50%;
	margin-left: -425px;
	width: 950px;
	height: 660px;
	padding: 30px;
	display: block;
	-webkit-box-shadow: 0px 0px 44px -1px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 44px -1px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 44px -1px rgba(0,0,0,0.75);
}

	.close_modal {
		position: fixed;
		top: 140px;
		left: 50%;
		margin-left: 540px;
		cursor: pointer;
		width: 25px;
		height: 25px;
		display: block;
		transition: all 0.2s ease-in-out;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
	}

.close_modal_dismiss {
	transform: rotate(180deg);
	opacity: 0;
}

.close_block_1, .close_block_2 {
	width: 4px;
	left: 10px;
	top: -22px;
	display: block;
	background: #fff;
	position: absolute;
	-webkit-animation: close_animation_1 forwards 0.5s ease-out;;
          animation: close_animation_1 forwards 0.5s ease-out;;
}

	.close_block_2 {
		top: 22px;
		-webkit-animation: close_animation_2 forwards 0.5s ease-out;;
	          animation: close_animation_2 forwards 0.5s ease-out;;
	}

	@-webkit-keyframes close_animation_1 {
	  0% {
			top: -22px;
			height: 0px;
	  } 50% {
			top: 0px;
			height: 22px;
			transform: rotate(0deg);
		} 100% {
			top: 0px;
			height: 22px;
	    transform: rotate(45deg);
		}
	}

	@-webkit-keyframes close_animation_2 {
	  0% {
			top: 22px;
			height: 0px;
	  } 50% {
			top: 0px;
			height: 22px;
			transform: rotate(0deg);
		} 100% {
			top: 0px;
			height: 22px;
	    transform: rotate(-45deg);
		}
	}

/* Basic Setup END */

/* Grid Styling */
.grid_25 {
	display: inline-block;
	width: 23%;
	margin-right: 1%;
}

.grid_50 {
	display: inline-block;
	width: 48%;
	margin-right: 1%;
}

ul.content_list {

}

	ul.content_list li {
		padding: 10px;
		border-bottom: 1px solid #fff;
	}

ul.accordion_list {
	margin-top: 20px;
}

	ul.accordion_list h2 {
		margin-top: 10px;
		padding-bottom: 10px;
		cursor: pointer;
		transition: all 0.2s ease-in-out;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
	}

	ul.accordion_list li {
		padding: 5px 10px;
		transition: all 0.2s ease-in-out;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		margin: 0 0 2px 0;
		display: none;
	}

	ul.accordion_list.active li {
		display: block;
	}

	ul.accordion_list.active h2 {
		padding: 0 0 10px 20px;
	}

/* Grid Styling END */

/* Typo */

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}

h1 {
	font-size: 40px;
	margin: 5px 0 10px 0;
	padding: 0 0 5px 0;
	border-bottom: 1px solid #bfce00;
}

h2 {
	font-size: 20px;
	margin: 5px 0 20px 0;
	padding: 0 0 10px 0;
	border-bottom: 1px solid #343434;
  width: 80%;
}

h3 {
	font-size: 13px;
	margin: 5px 0 5px 0;
	padding: 0 0 0px 0;
}

	h1:after, h2:after, h3:after {

	}


/* Typo END */

/* List Elements */
ul.list {
	margin: 10px 0;
}

ul.list li {
	padding: 25px 15px 15px;
	margin: 0 0 5px 0;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	cursor: pointer;
	border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

ul.list li .list_info .icon {
	margin-left: 5px;
}


ul.list li div.status_2, ul.list li div.status_3, ul.list li div.status_0 {
	opacity: 0.5;
}

ul.list li ul.list_info li {
	display: inline-block;
	padding: 0px;
	background: transparent;
	margin-right: 10px;
}

	ul.list li:hover ul.list_info li {
		background: transparent;
	}
/* List Elements END */

/* UI Elements */
.select, .select_filter, .percent, .input, .dropdown {
	margin: 15px 0;
	position: relative;
}

.input {
	margin: 10px 0;
}

	.input.needed_empty label {
		color: #ff8e85;
	}

	.input.needed_empty input {
		background: #f9beb9;
	}

.input label, .dropdown label {
	position: absolute;
	margin: 8px 0 0 10px;
	color: #ccc;
	pointer-events:none;
	transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
	z-index: 9999;
	width: 500px;
}

	.dropdown label {
		color: #fff;
		margin: 2px 0 0 10px;
	}

	.drag_area label {
		position: absolute;
    top: 12px;
		left: 40px;
		width: 400px;
		transition: all 0.2s ease-in-out;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
	}

	.drag_area.drag_active label {
		left: 503px;
		color: #fff;
	}

.input.active label {
	margin: 8px 0 0 480px;
	color: #fff;
}

	.input label:before, .dropdown label:before {
		transition: all 0.2s ease-in-out;
	  -webkit-transition: all 0.2s ease-in-out;
	  -moz-transition: all 0.2s ease-in-out;
		opacity: 0;
	}

	.dropdown.active label {
		margin: 3px 0 0 480px;
	}

	.dropdown .search_dropdown {
		outline-width: 0;
    border: 3px solid #636c00;
    padding: 7px 10px 3px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    border-radius: 12px;
    -webkit-border-radius: 12px 12px 0 0;
    -moz-border-radius: 12px;
    font-size: 16px;
    width: 444px;
    position: absolute;
    top: -42px;
    left: 24px;
    z-index: 9999;
		-webkit-box-shadow: 0px -13px 18px 4px rgba(0,0,0,0.68);
		box-shadow: 0px -13px 18px 4px rgba(0,0,0,0.68);
		display: none;
	}

	.dropdownfilter .dropdown_container {
		width: 382px;
	}

	.dropdownfilter .search_dropdown {
		width: 356px;
	}

	.input.active label:before, .dropdown.active label:before, .drag_area.drag_active label:before {
		font-family: 'LigatureSymbols';
    -webkit-text-rendering: optimizeLegibility;
    -moz-text-rendering: optimizeLegibility;
    -ms-text-rendering: optimizeLegibility;
    -o-text-rendering: optimizeLegibility;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-font-feature-settings: "liga" 1, "dlig" 1;
    -moz-font-feature-settings: "liga=1, dlig=1";
    -ms-font-feature-settings: "liga" 1, "dlig" 1;
    -o-font-feature-settings: "liga" 1, "dlig" 1;
    font-feature-settings: "liga" 1, "dlig" 1;
		content: 'check';
		border-radius: 50%;
		background: #97c788;
		padding: 4px 5px 2px;
		margin: -2px 0 0 -40px;
		font-size: 12px;
		position: absolute;
		opacity: 1;
	}

.input .icon, .dropdown .icon, .percent .icon, .select_list .icon, label .icon {
	width: 24px;
	display: inline-block;
	font-size: 18px;
	transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
	opacity: 0.6;
}

.icon.red {
	color: #ff6969;
}

.icon.green {
	color: #2ec46f;
}

.drag_area label .icon {
	position: absolute;
	margin: -3px 0 0 -20px;
}

	.drag_area.drag_active label .icon {
		display: none;
	}

.input.active .icon, .dropdown.active .icon {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
	opacity: 1.0;
}

.input .standard_field:focus {
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.51);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.51);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.51);
}

.fileinput {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

	.select label, .percent label  {
		display: inline-block;
		width: 200px;
    padding-bottom: 6px;
		margin-right: 10px;
	}

	.area label, .drag_list label  {
		display: block;
		padding: 20px 0 10px 0px;
		font-size: 20px;
	}

	.select ul, .select_filter ul {
		display: inline-block;
		border: 2px solid #fff;
		border-radius: 12px;
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		overflow: hidden;
		position: relative;
		top: 8px;
	}

		.select ul li, .select_filter ul li {
			display: inline-block;
			font-weight: bold;
			padding: 6px 10px 3px;
			cursor: pointer;
			margin: 0;
			transition: all 0.3s ease-in-out;
			-webkit-transition: all 0.3s ease-in-out;
			-moz-transition: all 0.3s ease-in-out;
			position: relative;

		}

			.select ul li:first-child, .select_filter ul li:first-child {
				border: 0px;
			}

		.select ul li.active, .select_filter ul li.active {
			background: #97c788;
			color: #fff;
		}

		.select[mask="readonly"] ul li {
			display: none;
		}

		.select[mask="readonly"] ul li.active {
			display: inline-block;
		}

.dropdown {
	position: relative;
	margin: 22px 0;
}

.dropdown_container {
	display: inline-block;
	width: 470px;
	position: absolute;
	top: -7px;
	height: 35px;
	min-height: 25px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.dropdown.open .dropdown_container, .dropdown.open .dropdown_container ul {
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.51);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.51);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.51);
	font-weight: bold;
}

	.dropdown_container .icon {
		position: absolute;
		font-size: 14px;
		width: 10px;
		margin: 0px;
		right: 15px;
		top: 11px;
		z-index: 3;
		color: #fff;
		transition: all 0.3s ease-in-out;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
	}

	.dropdown.open .dropdown_container .icon {
		-moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		-webkit-transform: rotate(-90deg);
	}

	.dropdown.open .dropdown_container {
		border-radius: 0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
	}

	.dropdown_container .dropdown_show_selected {
		position: absolute;
		left: 0px;
		top: 0px;
		width: 92%;
		padding: 9px 4% 4px;
		min-height: 25px;
		cursor: pointer;
		transition: all 0.3s ease-in-out;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
	}

	.dropdown_container ul {
		position: absolute;
		left: 0px;
		top: 35px;
		z-index: 99999;
		width: 100%;
		display: none;
		border-radius: 0 0 3px 3px ;
		-webkit-border-radius: 0 0 3px 3px ;
		-moz-border-radius: 0 0 3px 3px ;
	}

		.dropdown_container ul li {
			width: 92%;
			padding: 8px 4%;
			background: #c9c9c9;
			cursor: pointer;
			border-top: 1px solid #fff;
			transition: all 0.3s ease-in-out;
			-webkit-transition: all 0.3s ease-in-out;
			-moz-transition: all 0.3s ease-in-out;
		}

			.dropdown_container ul li:last-child {
				border-radius: 0 0 3px 3px ;
				-webkit-border-radius: 0 0 3px 3px ;
				-moz-border-radius: 0 0 3px 3px ;
			}


.percent_container {
	width: 470px;
	height: 30px;
	display: inline-block;
	position: absolute;
	margin-top: -5px;
	cursor: pointer;
	border-radius: 3px ;
	-webkit-border-radius: 3px ;
	-moz-border-radius: 3px;
	overflow: hidden;
}

	.percent_value_bar {
		width: 0px;
		height: 30px;
		display: block;
		position: absolute;
		left: 0px;
		top: 0px;
		background: #97c788;
	}

	.percent_value_string {
			position: absolute;
			top: 6px;
			right: 10px;
			z-index: 2;
	}

	.percent_container label  {
		position: absolute;
		z-index: 3;
		top: 6px;
		left: 10px;
		opacity: 0.5;
	}

.input .ui_value {
	display: inline-block;
}

	.input[mask="head1"] {
		margin: 0 0 0 -10px;
	}

	.undercover_field, .head1_field, .standard_field {
		outline-width: 0;
		border: 0px;
		padding: 7px 10px 3px;
		transition: all 0.4s ease-in-out;
	  -webkit-transition: all 0.4s ease-in-out;
	  -moz-transition: all 0.4s ease-in-out;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		font-size: 16px;
		width: 100px;
	}

	.standard_field.spotlight_search {
		width: calc(100% - 50px);
		padding: 5px 10px 5px 40px;
	}

		.spotlight_search_icon {
			position: absolute;
			left: 30px;
			top: 65px;
			font-size: 20px;
			color: #ccc;
		}

	.head1_field {
		display: block;
		width: 100%;
	}

	.standard_field {
		width: 450px;
	}

.textarea {
	outline-width: 0;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border: 0px;
	padding: 5px 10px;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	font-size: 12px;
	width: 400px;
	height: 250px;
}

	.note-editor.note-frame {
		width: 600px;
		display: inline-block;
		border-radius: 6px;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
	}

	.note-popover .note-popover-content, .note-toolbar {
		border-radius: 6px 6px 0 0;
		-webkit-border-radius: 6px 6px 0 0;
		-moz-border-radius: 6px 6px 0 0;
	}

.note-editable h1, .note-editable h2, .note-editable h3, .note-editable h4 {
  margin: 12px 0 5px;
}

		.note-editable ul {
			margin: 0 0 0 20px;
		}

			.note-editable ul li {
				list-style: inherit;
				padding: 7px 0 ;
			}

			.note-editable {
				font-size: 12px;
			}

			.note-editable h1 {
			  font-size: 25px;
			}

			.note-editable h2 {
			  font-size: 20px;
			}

			.note-editable h3 {
			  font-size: 18px;
			}

			.note-editable h4 {
			  font-size: 16px;
			}


.select_list .icon {
	position: absolute;
}

.select_list .selected_container {
	border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	background: #fff;
	min-height: 10px;
	padding: 10px;
	width: 450px;
	margin-left: 25px;
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.21);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.21);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.21);
	z-index: 3;
	position: relative;
}

.select_list ul {
	border-radius: 0 0 3px 3px;
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	background: #ccc;
	min-height: 2px;
	padding: 10px;
	width: 450px;
	margin-left: 25px;
}

	.select_list ul li, .select_list .selected_container div {
		display: inline-block;
		margin: 2px 2px;
		padding: 7px 6px 3px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		cursor: pointer;
		transition: all 0.2s ease-in-out;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
	}

	.select_list label {
		margin: 2px 2px;
		padding: 4px 6px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		font-weight: bold;
	}

	.select_list .selected_container div {
		font-size: 12px;
		padding: 7px 20px 4px 6px;
	}

	.select_list .selected_container div:after {
		font-family: 'LigatureSymbols';
    -webkit-text-rendering: optimizeLegibility;
    -moz-text-rendering: optimizeLegibility;
    -ms-text-rendering: optimizeLegibility;
    -o-text-rendering: optimizeLegibility;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-font-feature-settings: "liga" 1, "dlig" 1;
    -moz-font-feature-settings: "liga=1, dlig=1";
    -ms-font-feature-settings: "liga" 1, "dlig" 1;
    -o-font-feature-settings: "liga" 1, "dlig" 1;
    font-feature-settings: "liga" 1, "dlig" 1;
		content: 'close';
		font-size: 12px;
		position: absolute;
		margin: -1px 0 0 5px;
	}


	.drag_list ul li {
		padding: 10px 20px;
		margin: 3px 0;
		cursor: pointer;
		width: 456px;
		border-radius: 3px;
	  -webkit-border-radius: 3px;
	  -moz-border-radius: 3px;
		position: relative;
	}

		.drag_list ul li:before, .drag_area.active:before {
			font-family: 'LigatureSymbols';
			-webkit-text-rendering: optimizeLegibility;
			-moz-text-rendering: optimizeLegibility;
			-ms-text-rendering: optimizeLegibility;
			-o-text-rendering: optimizeLegibility;
			text-rendering: optimizeLegibility;
			-webkit-font-smoothing: antialiased;
			-moz-font-smoothing: antialiased;
			-ms-font-smoothing: antialiased;
			-o-font-smoothing: antialiased;
			font-smoothing: antialiased;
			-webkit-font-feature-settings: "liga" 1, "dlig" 1;
			-moz-font-feature-settings: "liga=1, dlig=1";
			-ms-font-feature-settings: "liga" 1, "dlig" 1;
			-o-font-feature-settings: "liga" 1, "dlig" 1;
			font-feature-settings: "liga" 1, "dlig" 1;
			content: 'move';
			font-size: 15px;
			position: absolute;
			right: 15px;
			top: 9px;
		}

		.drag_area.active:before {
			color: #75b463;
			content: 'left';
			top: 11px;
		}


	.drag_list ul li.dragged {
		opacity: 0.4;
	}

	.dragging {
		font-size: 12px;
		background: #75b463;
		color: #fff;
		position: absolute;
		top: 0px;
		left: 0px;
		width: 400px;
		height: 20px;
		padding: 10px 20px 6px;
		z-index: 9999;
		cursor: move;
		width: 450px;
		border-radius: 3px;
	  -webkit-border-radius: 3px;
	  -moz-border-radius: 3px;
		-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.51);
	  -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.51);
	  box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.51);
	}

	.drag_area {
		border: 1px dashed #ccc;
		background: #fff;
		color: #000;
		width: 454px;
		height: 20px;
		padding: 10px 20px;
		display: block;
		transition: all 0.2s ease-out;
		-webkit-transition: all 0.2s ease-out;
		-moz-transition: all 0.2s ease-out;
		border-radius: 3px;
	  -webkit-border-radius: 3px;
	  -moz-border-radius: 3px;
		position: relative;
	}

	.drag_area.active {
		-webkit-transform: scale(1.1);
	  -ms-transform: scale(1.1);
	  transform: scale(1.1);
	}

	.drag_area.active.hit {
		background: #bce6b0;
	}


.button, .buttonhref {
	display: inline-block;
	padding: 6px 30px 8px;
	font-size: 12px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	border-radius: 13px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	margin-right: 5px;
	margin-top: 5px;
}

.buttonhref {
	color: #fff;
  text-decoration: none;
  padding-top: 9px;
  font-size: 14px;
  font-weight: bold;
}

	.button.checked {
		background: #79b800 !important;
	}

	.button .button_text {
		display: inline-block;
		padding-right: 10px;
		font-weight: bold;
	}

	.button span.icon {
		display: inline-block;
		margin-right: 5px;
		padding-right: 5px;
		font-size: 18px;

	}

	.button .button_animated_background {
		position: absolute;
		bottom: 0px;
		left: 0px;
		height: 100%;
		width: 0%;
		transition: all 0.2s ease-out;
	  -webkit-transition: all 0.2s ease-out;
	  -moz-transition: all 0.2s ease-out;
		opacity: 0.2;
	}

	.button:hover .button_animated_background {
		width: 100%;
		background: #fff;
	}


	.file {
		display: inline-flex;
		margin-bottom: 5px;
	}



	.fileupload {
		position: relative;
		overflow: hidden;
		display: inline-block;
	  padding: 8px 50px 10px;
	  font-size: 15px;
	  position: relative;
	  overflow: hidden;
	  border-radius: 3px;
	  -webkit-border-radius: 3px;
	  -moz-border-radius: 3px;
	  margin-right: 5px;
	  transition: all 0.2s ease-out;
	  -webkit-transition: all 0.2s ease-out;
	  -moz-transition: all 0.2s ease-out;
	}

		.fileupload .icon {
			margin-right: 10px;
		}

		.fileupload input.datafile {
			position: absolute;
			top: 0;
			width: 100%;
			height: 100%;
			right: 0;
			margin: 0;
			padding: 0;
			font-size: 20px;
			opacity: 0;
			filter: alpha(opacity=0);
		}

		.file button, .button_send_file {
			display: none;
		}

		.file .upload_action {
	    font-size: 22px;
			height: 32px;
			width: 22px;
			margin-left: 4px;
			opacity: 0.5;
			display: none;
			text-decoration: none;
			padding-top: 5px;
		}

		.file .button {
			margin: 0px;
		}

			.file .upload_action:hover {
				opacity: 1;
			}

			.file .upload_action.visible {
				display: inline-block;
			}

		.button_send_file.check {
			display: inline-block;
			-webkit-animation: button_send_file_animation forwards 0.5s ease-out;;
			animation: button_send_file_animation forwards 0.5s ease-out;;
		}

		@-webkit-keyframes button_send_file_animation {
		0% {
			margin-left: 50px;
			opacity: 0;
		} 100% {
			margin-left: 5px;
			opacity: 1;
		}
		}

		.fileupload.check {
			background: #97c788;
		}

		.file label {
			position: relative;
			top: 5px;
			margin-right: 10px;
		}

.action_container {
	position: fixed;
	top: 0px;
	z-index: 9999;
	height: 34px;
	overflow: hidden;
	border-radius: 0 0 12px 12px;
}


.action_container_jobs_modal {
	display: none;
}

		.modal .action_container_jobs_modal {
			display: block;
		}

		.modal .action_container_jobs {
			display: none;
		}

		.action_container .button {
			padding: 6px 10px 8px;
			font-size: 12px;
			border: 0px;
			margin: 0px;
		}

		.action_container .button:last-child {
			border-right: 0px;
		}

.inline_container {
	display: inline-block;
	width: 20%;
	padding: 20px;
	margin: 8px 5px 0 0;
	height: 230px;
	vertical-align: top;
	position: relative;
	border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
}

	.inline_container .loading_container {
		left: 120px;
    bottom: auto;
		top: 100px;
	}

	.inline_container h3 {
		padding: 5px 0 10px;
		margin: 0 0 10px 0;
		font-size: 12px;
		font-weight: bold;
	}

	.inline_container h3 span {
		margin-left: 10px;
		font-size: 20px;
		position: absolute;
		top: 10px;
		right: 15px;
		font-weight: normal;
	}

	.inline_container ul {
		margin: 10px 0px;
	}

		.inline_container ul li {
			font-size: 13px;
			padding: 10px 10px;
			border-bottom: 1px solid #000;
		}

		.inline_container ul li:last-child {
			border-bottom: 0px solid #000;
		}


/* UI-Elements END */

/* Version Info */
.version_info {
	position: absolute;
	left: 0px;
	bottom: 10px;
	font-size: 10px;
	padding: 4px 0 2px;
	width: 200px;
	text-align: center;
	font-weight: bold;
	color: #fff;
	display: none;
}
/* Version Info END */

/* Click Effekt */
.click {
	position: fixed;
	width: 20px;
	height: 20px;
	display: block;
	z-index: 9999;
	border-radius: 50%;
	border: 1px solid #fff;
	-webkit-animation: click_animation forwards 0.2s ease-out;;
	animation: click_animation forwards 0.2s ease-out;;
}

@-webkit-keyframes click_animation {
0% {
	width: 20px;
	height: 20px;
	opacity: 1;
	display: block;
} 100% {
	width: 80px;
	height: 80px;
	opacity: 0;
	margin: -30px 0 0 -30px;
	display: none;
}
}

/* Click Effekt END */

/* Loading Animation */
.loading_container {
	position: absolute;
	left: 90px;
	bottom: 20px;
	display: block;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	opacity: 0;
}

	.loading_container.progress {
		opacity: 1;
	}

.loading_cube {
  margin: 20px auto;
  width: 20px;
  height: 20px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}

.loading_cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.loading_cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
          animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.loading_cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
          transform: scale(1.1) rotateZ(90deg);
}
.loading_cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
          transform: scale(1.1) rotateZ(180deg);
}
.loading_cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
          transform: scale(1.1) rotateZ(270deg);
}
.loading_cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.loading_cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.loading_cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/* Loading Animation END */
