/**
 * @copyright Animations Webdesign 2018-2022
 * http://webdesign.animations.com.pl
 */
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	background: #fff;
	font-size: 12px;
	color: #222;
	line-height: 25px;
}

html * {
	font-family: 'Lato', Arial, Helvetica, sans-serif;
}

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

* *, *:before, *:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	-ms-box-sizing: inherit;
	box-sizing: inherit;
}

* , * :before, * :after {
	outline: none;
}

table {
	border-collapse: collapse;
	margin: 0;
	padding: 0;
}

img, a {
	border: 0;
	margin: 0;
	padding: 0;
	color: white;
} 

a { 
	color: #555;
	text-decoration: underline;
	font-weight: normal;
}

a:hover {
	text-decoration: none;
}

form {
	margin: 0;
	padding: 0;
}

.spinner-wrapper {
	z-index: 0;
	position: fixed;
	width: 100%;
	height: 100%;
}

.wrapper {
	position: relative;
	display: table;
	width: 100%;
	height: 100%;
	border-collapse: collapse;
	visibility: hidden;
}

.clear {
	clear: both;
	height: 0px;
	overflow: hidden;
	margin: 0px;
	padding: 0px;
}

.top {
	width: 100%;
	background: #fff;
}

.login {
	background: #555;
}

.logo {
	float: right;
	background-image: url('../images/logo-red-single-line.png');
	background-repeat: no-repeat;
	background-position: right;
	background-size: 50%;
	height: 50px;
	width: 161px;
}

.sidebar .logo {
	float: left;
	background-image: url('../images/logo-white-single-line.png');
	background-position: center;
	width: 100%;
	background-size: 40%;
}

.sidebar {
	float: left;
	width: 200px;
	clear: left;
	background: #7f0c26;
	min-height: 100%;
	position: absolute;
	top: 0;
	left: -200px;
	color: #fff;
	z-index: 20;
	display: table-cell;
}

.sidebar.fixed {
	left: 0px;
}

.sidebar .avatar {
	width: 50px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 25px;
	display: block;
	margin-bottom: 10px;
}

.row {
	margin: 0 auto;
	max-width: 100%;
	zoom: 1;
}

.menu {
	margin-top: 49px;
	border-top: 0px solid #720d0f;
}

.container {
	margin: 0 auto auto;
	border-color: #636467;
	border-width: 0px;
	border-style: solid;
	border-top: 0;
	width: 100%;
	display: table-cell;
	position: relative;
	background: #fff;
	padding-bottom: 50px;
}

.container.white {
	margin: 0 auto auto;
	padding: 15px;
	display: block;
}

.container.transparent {
	border: 0;
}

.site-contents {
	line-height: 18px;
	padding: 15px;
	min-height: 650px;
	display: block;
	margin-bottom: 30px;
	overflow: hidden;
	width: 100%;
}

.footer {
	background: transparent;
	color: #888;
	padding: 0;
	position: absolute;
	bottom: 10px;
	right: 15px;
	width: 100%;
	text-align: right;
	font-size: 0.75em;
}

.footer a {
	color: #888;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.footer img {
	width: 48px;
	height: 48px;
	-webkit-filter: opacity(0.2) grayscale(1);
	-moz-filter: opacity(0.2) grayscale(1);
	-ms-filter: opacity(0.2) grayscale(1);
	-o-filter: opacity(0.2) grayscale(1);
	filter: opacity(0.2) grayscale(1);

	-webkit-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	-ms-transition: all 250ms linear;
	-o-transition: all 250ms linear;
	transition: all 250ms linear;
}

.footer img:hover {
	-webkit-filter: opacity(1) grayscale(0);
	-moz-filter: opacity(1) grayscale(0);
	-ms-filter: opacity(1) grayscale(0);
	-o-filter: opacity(1) grayscale(0);
	filter: opacity(1) grayscale(0);

	-webkit-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	-ms-transition: all 250ms linear;
	-o-transition: all 250ms linear;
	transition: all 250ms linear;
}

.topBar {
	height: 50px;
	border-bottom: 1px solid #ccc;
	padding-left: 15px;
	color: black;
	padding-right: 15px;
	background: #f1f1f3;
}

.menu-toggle {
	float: left;
	width: 50px;
	height: 49px;
	margin-left: -15px;
	margin-right: 10px;
	-webkit-transition: background 250ms ease-in;
	-moz-transition: background 250ms ease-in;
	-ms-transition: background 250ms ease-in;
	-o-transition: background 250ms ease-in;
	transition: background 250ms ease-in;
}

.menu-toggle.on {
	background: #555;
}

.hamburger {
	width: 50px;
	height: 50px;
	display: block;
	background: url('../images/menu.png') no-repeat center;
	background-size: 16px 16px;
	-webkit-transition: all 250ms ease-in;
	-moz-transition: all 250ms ease-in;
	-ms-transition: all 250ms ease-in;
	-o-transition: all 250ms ease-in;
	transition: all 250ms ease-in;
}

.hamburger.on {
	width: 50px;
	height: 50px;
	display: block;
	background: url('../images/menu-white.png') no-repeat center;
	background-size: 16px 16px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.page-name {
	float: left;
	line-height: 50px;
	font-size: 1.5em;
	color: #555;
	font-weight: bold;
}

.login-name {
	line-height: 50px;
	font-size: 1em;
	font-weight: bold;
	float: right;
	color: #aaa;
}

.top {
	margin: 0 auto auto;
}

.button {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	padding: 7px 20px;
	text-align: center;
	margin-top: 5px;
	background: #b01115;
	border: 1px solid #b01115;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
	border-radius: 10px;
}

.button:hover {
	animation: vex-pulse 1.1s infinite;
	-webkit-animation: vex-pulse 1.1s infinite;
	-moz-animation: vex-pulse 1.1s infinite;
	-ms-animation: vex-pulse 1.1s infinite;
	-o-animation: vex-pulse 1.1s infinite;
	-webkit-backface-visibility: hidden;
	outline: none;
}

.button.disabled {
	background-color: #aaa;
	border-color: #aaa;
	color: #ccc;
	animation: none;
	-webkit-animation: none;
	-moz-animation: none;
	-ms-animation: none;
	-o-animation: none;
}

.button:active {
	border-style: solid;
	border-color: #1f5465;
	border-width: 1px;
}

.button.secondary {
	border-color: #aaa;
	border: 0;
	background-color: transparent !important;
	color: #555;
}

.form sup {
	color: #f00;
}

.red {
	color: #f00;
}

.green {
	color: #0b0;
}

.grayed {
	color: #888 !important;
}

.lcase {
	text-transform: lowercase !important;
}

.lcase::placeholder {
	text-transform: none;
}

.lcase:-ms-input-placeholder { 
	text-transform: none;
}

.lcase::-ms-input-placeholder {
	text-transform: none;
}

.overlay-box {
	-moz-opacity: 0.6; 													
	-khtml-opacity: 0.6;   												
	opacity: 0.6;   													
	background-color: #000;
	position: absolute; 
	top: 0; 
	left: 0;
	right: 0;
	bottom: 0; 
	z-index: 2000;
	width: 100%;
	height: 1px;
	display: none;
}

input, textarea, select {
	outline: none;
	font-size: 11px;
}

input::-ms-clear {
    display: none;
}

h2 {
	margin: 0;
	padding: 0;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: #aaa;
	margin-bottom: 9px;
	padding-bottom: 10px;
	color: #555;
	font-size: 1.4em;
	font-weight: normal;
	margin-top: 10px;
}

.blockUI h2 {
	color: #fff;
	border: 0;
	font-size: 24px;
}

h3 {
	margin: 0;
	padding: 0;
	border: 0;
	margin-bottom: 10px;
	
	font-size: 1.2em;
	font-weight: bold;
	
	line-height: 2.2em;
	display: block;
	padding-left: 0px;
	border-bottom: 1px solid #aaa;
	border-top: 1px solid #aaa;
	margin-left: -15px;
	margin-right: -15px;
	padding-left: 15px;
	padding-right: 15px;
	background-color: #f1f1f3;
}

h3.red {
	color: #f00;
	border-color: #f00;	
}

.popup-contents h3 {
	margin-left: -10px;
	margin-right: -10px;
	padding-left: 15px;
	padding-right: 15px;
}

.header-description {
	display: none;
}

.header-description.required-fields {
	display: none;
}

h4 {
	margin: 0px;
	margin-bottom: 15px;
	padding: 0px;
	padding-bottom: 5px;
	font-size: 1.1em;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #aaa;
	color: #555;
}

.system-message {
	color: #555;
	line-height: 1.5em;
	border-style: solid;
	padding: 0.5em 1em;
	border-width: 0px;
	margin: 0 auto auto;
	margin-bottom: 10px;
	font-size: 1em;
	border-radius: 10px;
	font-weight: bold;
}

.system-message.small {
	font-size: 0.8em;
	padding: 1em;
}

.system-message.big {
	font-size: 1.2em;
	padding: 10px 15px;
}

.message-container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 5000;
	display: none;
	opacity: .8;
}

.message-container .system-message {
	margin-bottom: 0px;
	border-bottom-width: 1px;
	border-top-width: 1px;
	margin-top: -1px;
	line-height: 38px;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	border-radius: 0px;
}

.message-container .close-system-message {
	display: none;
	position: absolute;
	top: 0px;
	right: 0;
	padding: 4px 15px;
	font: 24px/50px Arial, sans-serif;
	color: inherit;
	text-decoration: none;
	text-shadow: none;
	opacity: .5;
	font-weight: bold; 
}

.message-container .close-system-message:hover {
	text-decoration: none;
	opacity: 1; 
}

.message-container .system-message.error {
	background: #cb3f30;
	color: #fff;	
}

.message-container .system-message.okay {
	background: #1e960e;
	color: #fff;	
}

.message-container .system-message.alert {
	background: #ff7f00;
	color: #000;	
}

.system-message a {
	color: #000;
	font-weight: bold;
}

.system-message.error {
	border-color: #cb3f30;
	background: #ffcece;
	color: #cb3f30;
}

.system-message.alert {
	border-color: #cb3f30;
	background: #FFE4A8;
	color: #cb3f30;
}

.system-message.okay {
	border-color: #1E960E;
	background: #E4FAE1;
	color: #1E960E;
}

.system-message.info {
	background: #d3e7f5;
	border-color: #0a5c9a;
	color: #0a5c9a;
}

.system-message.info.bw {
	border-color: #aaa;
	background: #f1f1f3;
	color: #555;
}

.system-message.claim-status {
	margin-bottom: 15px;	
}

.form {
	width: 100%;
	border: 0px;
	margin: 0 auto auto;
	margin-bottom: 20px;
}

td.middle {
	vertical-align: middle !important;
}

td.right {
	text-align: right;
}

td.right.padding {
	padding-right: 10px;
}

.bold {
	font-weight: bold;
}

span.red {
	color: #f00;
}

.errorMessage, 
.alertMessage, 
.informationMessage, 
.questionMessage, 
.popup-message {
	top: 112px;
	width: 500px;
	background: #ffffff;
	padding: 15px;
	z-index: 2000;
	display: none;
	position: fixed;
	border-style: solid;
	border-color: #000;
	border-width: 5px;
}

.popup-message {
	z-index: 999;
	border-width: 5px;
	top: 50px;
	padding: 5px;
	border-color: rgba(0, 0, 0, 0.9);
	-webkit-box-shadow: 0px 0px 10px #000;
	-moz-box-shadow: 0px 0px 10px #000;
	box-shadow: 0px 0px 10px #000;
}

img.icon {
	width: 16px;
	height: 16px;
}

img.icon.left {
	float: left;
	margin-right: 5px;
	margin-top: 4px;
}

table.scheduleDisplay {
	margin: 5px auto auto;
	margin-bottom: 10px;
	width: 550px;
	border-width: 0px;
	font-size: 10px;
}

table.scheduleDisplay td {
	text-align: center;
	font-size: 10px;
	border-style: solid;
	border-color: #ccc;
	border-width: 1px;
	padding-right: 4px;
	padding-left: 4px;
	vertical-align: middle;
}

.site-box {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: -10px;
	margin-bottom: 50px;
	line-height: 18px;
}

.site-box p {
	float: left;
	margin: 0;
	line-height: 35px;
}

.site-box .textBox {
	width: 100%;
	font-weight: normal;
	padding: 5px;
	height: 35px;
	margin-bottom: 10px;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
	font-size: 1.2em;
}

.site-box .textBox:focus {
	background: #fff;
	border-color: #888;
}

.site-box h4 {
	border: 0;
	margin-top: 10px;
	font-size: 1.5em;
	line-height: 1.5em;
	font-weight: bold;
}

.site-box h5 {
	border: 0;
	margin-top: 10px;
	font-size: 1.2em;
	line-height: 1.2em;
	font-weight: bold;
}

.site-box .register-reset {
	margin-top: 50px;
}

.button.big {
	font-size: 1.3em;
}

.button.search,
.button.reset {
	float: left;
	margin-top: 0px;
	border-color: #aaa;
	border-left-width: 0px;
}

.subtitle {
	font-size: 0.75em;
	line-height: 13px;
}

.left {
	text-align: left !important;
}

.center {
	text-align: center !important;
}

.right {
	text-align: right !important;
}

.right.padding {
	padding-right: 10px !important;
}

.left.padding {
	padding-left: 10px !important;
}

.wider {
	line-height: 26px;
}

.option {
	display: inline-block;
	vertical-align: top;
	position: relative;
	width: 18px;
	height: 18px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.option > input {
	position: absolute;
	left: 0;
	width: inherit;
	height: inherit;
	opacity: 0;
}

.checkbox, .radio {
	display: block;
	height: 100%;
	background: white;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.checkbox:before, .radio:before {
	content: '';
	display: none;
}

input:hover+.checkbox, 
input:hover+.radio, 
.checkbox:hover, .radio:hover {
	border-color: #aaa;
}

input:focus+.checkbox, input:focus+.radio, input.focus+.checkbox, input.focus+.radio {
	border-color: #aaa;
}

input:checked+.checkbox:before, input:checked+.radio:before {
	display: block;
}

.checkbox:before {
	position: absolute;
	top: 4px;
	left: 4px;
	width: 10px;
	height: 6px;
	border: solid #555;
	border-width: 0 0 2px 2px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.radio {
	border-radius: 9px; 
}

.radio:before {
	margin: 2px;
	width: 8px;
	height: 8px;
	background: #555;
	border-radius: 4px; 
}

input:focus + .radio:before, input.focus + .radio:before {
	background: #19a7ef; 
}

input:focus+.checkbox:before, input.focus+.checkbox:before {
	border-color: #555;
}

.imageLink .option {
	margin-top: 7px;
	margin-left: 10px;
	margin-right: 10px;
}

.dataDisplay .option {
	margin-top: 3px;
}

.label {
	display: inline-block;
	margin-top: 5px;
}

.filesList {
	height: 400px;
	overflow: auto;
	margin-left: 10px;
	margin-right: 10px;
}

.loading-spinner {
	display: block;
	z-index: 1031;
	position: fixed;
	top: 15px;
	right: 15px;
}

.loading-spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #b01115;
  border-left-color: #b01115;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.overflow {
	overflow: auto;
}

.dashboard {
	position: relative;
	margin: -5px;
	clear: both;
	overflow: hidden;
	width: 100%;
}

.dashboard-module-wrapper {
	width: 100%;
	float: none;
}

.dashboard-module {
	margin: 0px;
	padding: 5px;
	position: relative;
}

.dashboard-module.alert {
	border-color: #f00;
}

.dashboard-module-contents {
	padding: 10px;
	border: 1px solid #aaa;
	/*float: left;*/
	width: 100%;
}

.dashboard-module-contents .system-message {
	margin-bottom: 0px;
}

.dashboard-module h3 {
	margin: 0px;
	background: #f1f1f3;
	padding-left: 10px;
	border: 1px solid #aaa;
	border-bottom: 0px;
}

.dashboard-module.alert h3 {
	background-color: #f00;
	color: #fff;
	border-bottom: 1px solid #f00;
}

.col {
	float: left;
}

.col12 {
	width: 50%;
	float: left;
	overflow: hidden;
}

.col25,
.col33,
.col50,
.col66,
.col75,
.col100 {
	width: 100%;
	float: left;
	overflow: hidden;
}

.dashboard-module .ui-tabs .ui-tabs-nav {
	padding-left: 15px;
	padding-right: 15px;
	margin-top: 10px;
	border-bottom: 0px;
}

.dashboard-chart {
	margin-top: 15px;
}

.dashboard-module .ui-tabs .ui-tabs-nav li {
	border-bottom: 1px solid #aaa !important;
}

.dashboard-module .ui-tabs .ui-tabs-nav li.ui-tabs-active a {
	font-weight: normal;
}

.dashboard-chart-label {
	font-weight: bold;
	text-align: center;
	color: #555;
	margin-top: 10px;
}

.dashboard-summary {
	min-height: 300px;
	height: 300px;
	padding: 15px;
	overflow: auto;
}

.dashboard-module-left {
	float: left;
}

.dashboard-module-right {
	float: right;
}

td.left, th.left {
	text-align: left;
}

td.center, th.center {
	text-align: center;
}

td.right, th.right {
	text-align: right;
}

.menu-items {
	margin: 0;
	padding: 0;
}

.menu-item {
	list-style-type: none;
	font-size: 1.1em;
}

.menu-item.logout {
	margin-top: 20px;
}

.menu-item img {
	height: 16px;
	float: left;
	margin-top: 12px;
	margin-right: 15px;
	margin-left: 15px;
}

.menu-items > .menu-items {
	display: none;
	background: #444;
	border-bottom: 1px solid #000;
	border-top: 1px solid #000;
}

.menu-items > .menu-items.expanded {
	display: block;
}

.menu-items > .menu-items.expanded .menu-item.selected {
	background: #000732;
}

.menu-items > .menu-items .menu-item a {
	padding-left: 34px;
	line-height: 28px;
}

.menu-items > .menu-items .menu-item a:hover {
	background: #000732;
}

.menu-items > .menu-items .menu-item.subselected a {
	background: #000732;
}

.menu-items > .menu-items .menu-item img {
	display: none;
}

.menu-item a {
	text-decoration: none;
	color: #fff;
	display: block;
	line-height: 40px;
	padding-left: 20px;
	padding-right: 15px;
}

.menu-item a:hover {
	background: #720d0f;
}

.menu-item.selected {
	border-left: 3px solid white;
}

.menu-item.selected a {
	background: #d1181c;
	padding-left: 12px;
}

.menu-item.selected img {
	margin-left: 12px;
	-webkit-filter: brightness(1);
	filter: brightness(1);
}

.error404 {
	text-align: center;
	font-size: 5em;
	line-height: 2em;
	font-weight: bold;
	margin-top: 25px;
}

.error404 h3 {
	border: 0;
	font-weight: bold;
	background: none;
	font-size: 0.25em;
}

.records {
	/*border: 1px solid #aaa;*/
	width: 100%;
}

.records img {
	width: 16px;
	height: 16px;
	float: left;
}

.no-float {
	float: none !important;
}

.records th {
	font-weight: bold;
	padding: 8px 9px;
	text-align: left;
	font-size: 1.1em;
}

.records th.center {
	text-align: center;
}

.records th.right {
	text-align: right;
}

.records th.icon,
.records td.icon {
	width: 24px;
	vertical-align: top;
}

.records th.thumb,
.records td.thumb {
	width: 64px;
	vertical-align: top;
}

.records td {
	padding: 8px 9px;
	text-align: left;
	vertical-align: top;
}

.records td.center {
	text-align: center;
}

.records td.right {
	text-align: right;
}

.records tr[data-url],
.records tr[data-script],
.records tbody tr {
	cursor: pointer;
}

.records tr[data-url]:hover,
.records tr[data-script]:hover,
.records tbody tr:hover {
	background: rgba(252, 29, 33, 0.14) !important;
	-webkit-transition: background 100ms ease-in;
	-moz-transition: background 100ms ease-in;
	-ms-transition: background 100ms ease-in;
	-o-transition: background 100ms ease-in;
	transition: background 100ms ease-in;
}

.records tbody tr:hover .record-actions {
	display: block;
}

.records tbody tr.even,
.records tbody tr.alt { background: #f1f1f3; }
.records tbody tr:nth-child(odd) { background: #f1f1f3; }

.buttons {
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
}

.buttons li {
	border: 1px solid #aaa;
	display: inline-block;
	background-color: #fafafa;
	margin-bottom: 5px;
	-webkit-transition: all 100ms ease-in;
	-moz-transition: all 100ms ease-in;
	-ms-transition: all 100ms ease-in;
	-o-transition: all 100ms ease-in;
	transition: all 100ms ease-in;
	border-radius: 10px;
	
}

.buttons li.red  {
	border-color: #f00;
	background-color: #ffcece;
	color: #f00 !important;
}

.buttons li.red:hover {
	border-color: #f00;
	background-color: #fff;
}

.buttons li.green {
	color: #4B7F21;
	border-color: #4B7F21;
	background-color: #E4FAE1;
}

.buttons li.green:hover {
	border-color: #4B7F21;
	background-color: #fff;
}

.buttons li.active {
	border-color: #cb3f30;
	background-color: #FFE4A8;
	color: #cb3f30;
}

.buttons li.active:hover {
	background-color: #fff;
}

.buttons img {
	width: 16px;
	height: 16px;
	margin-top: 2px;
}

.buttons a,
.buttons p {
	text-decoration: none;
	display: block;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	color: inherit;
	line-height: 1em;
}

.buttons p {
	margin: 0;
}

.buttons li:hover {
	border-color: #000;
	background-color: #f1f1f3;
	-webkit-transition: all 100ms ease-in;
	-moz-transition: all 100ms ease-in;
	-ms-transition: all 100ms ease-in;
	-o-transition: all 100ms ease-in;
	transition: all 100ms ease-in;
}

.buttons span {
	margin-left: 10px;
	display: none;
	float: right;
	line-height: 1.5em;
}

.search-bar {
	border: 1px solid #aaa;
	margin-bottom: 15px;
	padding: 0;
	float: left;
	width: 100%;
	border-radius: 10px;
}

.search-bar .textBox {
	border: 0;
	background: #fff;
	width: 75%;
	font-size: 1em;
}

.search-bar .button {
	background-color: #f1f1f3;
	border: 0;
	margin: 0;
	width: 100px;
	float: right;
	border-left: 1px solid #aaa;
	color: #555;
	display: none;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	line-height: inherit;
}

.search-bar img {
	width: 16px;
	height: 16px;
	float: left;
	margin-top: 8px;
	margin-left: 8px;
}

.records td .buttons {
	display: none;
	margin-top: 10px;
	margin-bottom: 0px;
}


.records .table-actions a {
	float: right;
}

.records .table-actions img {
	float: right;
	margin-left: 8px;
}

.client-info h4 {
	border: 0;
	margin-bottom: 0px;
}

.client-info {
	margin-bottom: 10px;
	padding: 5px;
}

.client-info .edit-link {
	display: none;
	text-decoration: none;
	margin-left: 15px;
}

.client-info .edit-link:hover {
	color: #b01115;
}

.client-info:hover .edit-link {
	display: inline-block;
}

.signature {
	width: 100%;
	position: fixed;
	top: 50px;
}

.signature canvas {
	border: 1px solid #aaa;
	position: fixed;
	left: 20px;
}

.signature-buttons {
	position: fixed;
	top: 10px;
	right: 19px;
}

.signature-header {
	position: fixed;
	top: 15px;
	left: 20px;
	color: #000;
	font-size: 1.5em;
	font-weight: bold;
}

.record-count {
	line-height: 28px;
	margin-bottom: 5px;
}

.pagination {
	margin-bottom: 10px;
	line-height: 28px;
	float: left;
}

.pagination a {
	height: 28px;
	width: 28px;
	text-align: center;
	border: 0px solid #aaa;
	display: block;
	text-decoration: none;
	float: left;
	margin-left: 0px;
	background: #f1f1f3;
	margin-right: 4px;
	border-radius: 10px;
	-webkit-transition: all 100ms ease-in;
	-moz-transition: all 100ms ease-in;
	-ms-transition: all 100ms ease-in;
	-o-transition: all 100ms ease-in;
	transition: all 100ms ease-in;
}

.pagination a:hover {
	background: #b01115;
	color: #fff;
}

.pagination a.current {
	background: #b01115;
	color: #fff;
}

.dashboard-weather {
	margin-bottom: 10px;
}

.dashboard-weather-icon {
	float: left;
	width: 32px;
}


.dashboard-weather-info {
	margin-left: 45px;
}

.dashboard-weather-info h4 {
	font-size: 0.9em;
	margin: 0;
	border: 0;
	padding: 0;
}

.dashboard-weather-info ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.dashboard-weather-info ul li {
	float: left;
	margin-right: 5px;
}

.dashboard-weather-info h3 {
	border: 0;
	background: none;
	font-size: 3em;
	font-weight: bold;
	padding: 0;
	padding-top: 4px;
	margin-bottom: 16px;
}

.signature-preview {
	width: 100%;
}

.notification-close {
	display: block;
	position: absolute;
	right: 0;
	font: 24px/36px Arial, sans-serif;
	margin-right: 10px;
	color: inherit;
	text-decoration: none;
	text-shadow: none;
	opacity: .6;
	font-weight: bold; 
}

.notification-close:hover {
	text-decoration: none;
	opacity: .9; 
}

ul.events {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #ccc;
}

ul.events li {
	list-style-type: none;
	border: 1px solid #ccc;
	border-bottom: 0;
	line-height: 1.8em;
}

ul.events li:nth-child(even) {
	background-color: #f1f1f3;
}


ul.events li a {
	display: block;
	padding: 10px;
	
	padding-left: 36px;
	text-decoration: none;
	-webkit-transition: background 100ms ease-in;
	-moz-transition: background 100ms ease-in;
	-ms-transition: background 100ms ease-in;
	-o-transition: background 100ms ease-in;
	transition: background 100ms ease-in;
}

ul.events li:hover {
	background-color: #fbd3c2;
	-webkit-transition: background-color 100ms ease-in;
	-moz-transition: background-color 100ms ease-in;
	-ms-transition: background-color 100ms ease-in;
	-o-transition: background-color 100ms ease-in;
	transition: background-color 100ms ease-in;
}

.airport-map {
	width: 100%;
	height: 600px;
	margin-bottom: 5px;
}

.hidden {
	display: none !important;
}

.clock {
	display: none;
}

.filter {
	margin-bottom: -1px;
	width: 100%;
}

.filter .select2-container .select2-selection {
	background: #f1f1f3;
	font-weight: bold;
	color: #000;
	border: 1px solid #aaa;
	border-bottom: 0;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}

.filter .select2-container .select2-selection[aria-expanded=true] {
	background: #ffffff;
}

.filter .select2-arrow {
	background: #f1f1f3 !important;
	border: 0 !important;
}

.filter .select2-container .select2-choice .select2-arrow b {
	background-position: 0px 2px;
}

.filter .select2-dropdown-open .select2-choice .select2-arrow b {
	background-position: -18px 2px;
}

.filter .select2-dropdown-open .select2-choice {
	background: #fff !important;
	border-bottom-width: 0px;
}

.filter .select2-dropdown-open .select2-choice .select2-arrow {
	background: #fff !important;
}

.unsupported-browser {
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 45px;
	padding-right: 15px;
	font-size: 1em;
	background: #b01115;
	background-image: url('../images/icons/alert-mono-white.png');
	background-repeat: no-repeat;
	background-size: 16px 16px;
	background-position: 15px 8px;
	color: #fff;
}

.error404 h4 {
	border: 0;
	font-weight: bold;
	background: none;
	font-size: 0.22em;
	line-height: 1.6em;
}

.progress-bar {
    width: 400px;
    height: 30px;
    border: 1px solid #720d0f;
    background-color: #720d0f;
	color: #fff;
	text-align: center;
	border-radius: 10px;
}

.progress-bar .progress-bar-background {
    height: 100%;
    color: #fff;
    text-align: left;
    padding-left: 15px;
    line-height: 30px; /* same as #progressBar height if we want text middle aligned */
    width: 0;
    background-color: #b01115;
	border-radius: 10px;
}

.progress-bar.file-upload-item-progress-bar {
    border: 0px solid #720d0f;
	width: 100%;
	height: 20px;
	margin-top: 10px;
}

.progress-bar.file-upload-item-progress-bar .progress-bar-background {
	line-height: 20px;
}

.progress-bar.file-upload-item-progress-bar .progress-bar-progress {
	top: -19px;
}


.progress-bar .progress-bar-progress {
	position: relative;
	top: -23px;
	margin-top: 2px;
}

.work-types {
	margin: 0;
	padding: 0;
	width: 100%;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
}

.work-type {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 100%;
	line-height: 25px;
	font-weight: bold;
}

.work-type .option {
	margin-right: 7px;
}

.site-box .buttons {
	margin-top: 15px;
}

.site-box .buttons li span {
	display: block !important;
}

h4.trip-number {
	border: 0;
	margin-bottom: 5px;
	font-size: 1.2em;
	line-height: 2em;
}

.site-box .select2-container .select2-selection {
	height: 35px;
	line-height: 35px;
	font-size: 1.1em;
	width: 100% !important;
}
	
.site-box .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 35px;
}

.site-box .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 35px;
}

.infoWindow {
	margin-right: 10px;
}

.infoWindow h3 {
	background: none;
	border: 0px;
	padding: 0px;
	padding-left: 15px;
	margin-bottom: 5px;
	font-size: 1em;
	padding-right: 15px;
	margin-top: -7px;
}

.infoWindow h4,
.infoWindow h5 {
	background: none;
	border: 0px;
	padding: 0px;
	font-weight: normal;
	font-size: 0.8em;
	margin-bottom: 0px;
	margin-top: 0px;
}

.infoWindow h4 {
	font-size: 0.9em;
	font-weight: bold;
	margin-bottom: 0px;
}

.infoWindow a {
	font-size: 0.8em;
	margin-top: 5px;
}

.filter-panel,
.export-panel {
	background: #f1f1f3;
	padding: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: 10px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	display: none;

    box-shadow:	inset 0 2px 8px -8px #696868, 
                inset 0 -2px 8px -8px #696868;
}


.export-panel h3,
.filter-panel h3 {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
	background-repeat: no-repeat;
	background-position: center right;
	background-size: 24px 24px;
}

.export-panel h3 {
	background-image: url('../images/backgrounds/export.png');
}

.filter-panel h3 {
	background-image: url('../images/backgrounds/filter.png');
}

.select2-container-multi .select2-choices {
	background-color: #fff !important;
	border: 0 !important;
}

.export-panel .button,
.filter-panel .button {
	border-color: #555;
	background: #555;
}

.export-panel .form-submit,
.filter-panel .form-submit {
	padding-right: 0px;
	margin-right: 0px;
}

.vex-content h3 {
	margin-left: -10px;
	margin-right: -10px;
	padding-left: 15px;
	padding-right: 15px;
}

.vex-content .system-message {
	margin-left: 5px;
	margin-right: 5px;
}

.vex-content .buttons {
	margin: 0 5px;
}

.has-attachments {
	visibility: hidden;
}

.has-attachments.visible {
	visibility: visible;
}

.search-highlight {
	background-color: #ff0 !important;
}

.select2-icon {
	width: 16px;
	height: 16px;
	float: left;
	margin-top: 1px;
	margin-right: 8px;
}

.fakeBox a {
	text-decoration: none;
	display: block;
	color: inherit;
}

.upload-button, .delete-button, .download-button {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	
	position: relative;
	height: 37px;
	background-color: white;
	padding: 5px 10px;
	text-align: center;
	border: 1px solid #ccc;
	
	-webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	-ms-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
	margin-bottom: 10px;
}

.upload-button a, .download-button a, .delete-button a {
	text-decoration: none;
}

.delete-button a {
	color: red;
}


.upload-button-progress-bar {
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	z-index: 2;
	background-color: #3FC0A2;
}

.button-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	line-height: 35px;
	display: block;
	color: #222;
	font-weight: normal;
}

.button-link {
	background-repeat: no-repeat;
	background-size: 16px 16px;
	background-position-y: 50%;
	background-position-x: 15px;
	border-radius: 7px;
	background-color: transparent;
}

html.no-touchevents .button-link:hover {
	text-decoration: none;
	color: #2A1F5C;
}

.button-link span.button-icon {
	font-family: 'fontello';
	padding-right: 10px;
}

.download-button .button-link span.button-icon {
	padding-right: 0px;
}

.upload-button:hover,
.download-button:hover,
.delete-button:hover {
	background-color: #2A1F5C;
	color: white !important;
}

.delete-button:hover {
	background-color: red;
}

.upload-button:hover a,
.download-button:hover a,
.delete-button:hover a {
	color: white;
}

.upload-button.has-file {
	width: 33.333%;
	float: left;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}

.upload-button .button-description:before {
	content: '\f0ee';
	font-family: 'fontello';
	padding-right: 10px;
}

.download-button .button-description:before {
	content: '\f0ed';
	font-family: 'fontello';
	padding-right: 10px;
}

.delete-button .button-description:before {
	content: '\e806';
	font-family: 'fontello';
	padding-right: 10px;
}

.upload-button.has-file .button-description:before,
.sign-button.has-signature .button-description:before {
	content: '\f0ee';
}

.download-button {
	width: 33.333%;
	float: left;
	margin: 0;
	border-radius: 0px;
	border-left: 0;
	border-right: 0;
	text-align: center;
}

.delete-button {
	width: 33.333%;
	float: left;
	margin: 0;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-left: 1px solid red;
	text-align: center;
	background-color: #ffcece;
	border-color: red;
}

.download-button.hidden {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.download-button:after {
	content: '';
	display: inline-block;
	clear: both;
}

.button.left {
	float: left;
}

.button.right {
	float: right;
}

.vex.vex-theme-plain.vex-error .vex-dialog-button.vex-dialog-button-primary {
	background: #555 !important;
	color: white;
}

ul.record-items {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 15px;
}

li.record-item {
	border: 1px solid #ccc;
	padding: 1em 1.2em;
	border-radius: 10px;
	margin-bottom: 10px;
	background-color: white;
}

.record-item-highlight {
	padding: 1em 1.2em;
	border-radius: 10px;
	margin-bottom: 10px;
	border: 1px dashed #b01115;
	background-color: rgba(245, 35, 27, 0.1);
}

li.record-item:nth-child(even) {
	background-color: #f1f1f3;
}

li.record-item:last-child {
	margin-bottom: 0px;
}

li.record-item p {
	font-size: 1.3em;
	line-height: 1.6em;
	margin: 0;
	padding: 0;
	color: black !important;
	display: inline-block;
}

ul.record-actions {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: 1.5em;
}

.records td ul.record-actions {
	margin-top: 10px;
}

.records td ul.record-actions.hidden {
	display: none;
}

ul.record-actions li {
	display: inline-block;
	padding-right: 15px;
}

ul.record-actions li.right {
	float: right;
	padding-right: 0px;
}

ul.record-actions li a {
	/*color: inherit;*/
	text-decoration: none;
}

ul.record-actions .fas, ul.record-actions .far {
	margin-right: 8px;
}

ul.record-actions li a:hover {
	text-decoration: underline;
}

.device-image-wrapper,
.device-secondary-image-wrapper,
.device-image-actions,
.news-image-wrapper,
.news-image-actions,
.faq-image-wrapper,
.faq-image-actions,
.boiler-room-image-wrapper,
.boiler-room-image-actions {
	padding: 0px 35px 15px 0px;
}

.button.delete-image,
.button.delete-model,
.button.delete-secondary-image {
	background: rgba(245, 35, 27, 0.2);
	color: #b01115;
	border-color: #b01115;
}

img.device-image,
img.device-secondary-image,
img.news-image,
img.faq-image,
img.item-icon,
img.boiler-room-image {
	width: 100%;
}

img.device-image.thumbnail,
img.item-icon.thumbnail {
	width: 100px;
	height: auto;
	padding: 0px 25px;
	padding-left: 0px;
}

p.page-type,
p.attachment-type,
p.user-type {
	background-repeat: no-repeat;
	background-size: 16px;
	background-position: 0px 6px;
	padding-left: 30px !important;
}

p.user-type.type-0 {
	background-image: url('../images/icons/users/0.png');
}	

p.user-type.type-1 {
	background-image: url('../images/icons/users/1.png');
}	

p.page-type.S {
	background-image: url('../images/icons/pages/S.png');
}	

p.page-type.T {
	background-image: url('../images/icons/pages/T.png');
}	

p.page-type.A {
	background-image: url('../images/icons/pages/A.png');
}	
p.attachment-type.archive {
	background-image: url('../images/icons/files/archive.png');
}	
p.attachment-type.document {
	background-image: url('../images/icons/files/document.png');
}	
p.attachment-type.image {
	background-image: url('../images/icons/files/image.png');
}	
p.attachment-type.pdf {
	background-image: url('../images/icons/files/pdf.png');
}	
p.attachment-type.cad {
	background-image: url('../images/icons/files/cad.png');
}	
p.attachment-type.plain {
	background-image: url('../images/icons/files/plain.png');
}	
p.attachment-type.presentation {
	background-image: url('../images/icons/files/presentation.png');
}	
p.attachment-type.spreadsheet {
	background-image: url('../images/icons/files/spreadsheet.png');
}	
p.attachment-type.link {
	background-image: url('../images/icons/files/link.png');
}	

.button.no-caption [class^="icon-"]:before {
	margin-right: 0;
}

.vi_row {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
	zoom: 1;
	width: 100%;
}

.vi_row {
	font-size: 13px !important;
}

.tile-image-wrapper,
.file-image-wrapper,
.video-image-wrapper {
	padding: 5px;
	border-radius: 10px;
	border-color: #aaa;
	width: 100%;
	position: relative;
}

.tile-image,
.file-image,
.video-image {
	margin: 0 auto auto !important;
}

.tile-image-actions,
.file-image-actions,
.video-image-actions {
	padding: 0px;
}

.button.upload-image,
.button.upload-secondary-image,
.button.upload-model {
	background: #f1f1f3;
	color: #555;
	border-color: #aaa;
}

.tile-image,
.file-image,
.video-image {
	border: 1px solid #aaa;
	border-radius: 10px;
}

.being-processed-loader {
	position: absolute;
	top: 15px;
	left: 15px;
}

.distributor-map,
.boiler-room-map {
	width: 100%;
	height: 600px;
	margin-bottom: 5px;
}

.dashboard-module .distributor-map,
.dashboard-module .boiler-room-map {
	width: 100%;
	height: 335px;
	margin: 0;
}

.dashboard-module-contents.map {
	padding: 0;
}

.dashboard-module canvas {
	width: 100%!important;
	height: 300px!important;
}

.dashboard-module.newsletter-stats canvas {
	width: 100%!important;
	height: auto!important;
}

.page-article figure {
	margin: 0px;
}

.file-icon {
	font-size: 30px;
	height: 32px;
	text-align: center;
	color: #aaa;
}

.record-items .file-icon {
	margin-right: 15px;
	float: left;
	width: 64px;
	font-size: 62px;
	margin-right: 15px;
	text-align: center;
}

.file-image.thumbnail {
	border: 0px;
	border-radius: 0px;
}

.file-icon-image {
	width: 100% !Important;
	height: auto !important;
}

.record-items .file-icon-image {
	margin-right: 15px;
	width: 64px !important;
	
}

p.file-name {
	margin-top: 0px;
	font-weight: bold;
	font-size: 1.1em;
}

p.file-name a {
	text-decoration: none;
	color: inherit;
	font-weight: inherit;
}

p.file-name a:hover {
	text-decoration: underline;
}

.file-upload-item-name {
	margin-bottom: 0px !important;
}

.file-upload-item .system-message {
	display: block;
	background: none;
	padding: 0;
	padding-top: 10px;
	margin: 0;
}

.file-upload-item p {
	font-size: 1em !important;
}

.record-item.upload-error {
	border-color: #cb3f30;
	background: #ffcece !important;
}

.record-item.upload-okay {
	border-color: #1E960E;
	background: #E4FAE1 !important;
}

.file-grid-item {
	padding-bottom: 50%;
 	position: relative;
 	cursor: pointer;
}

.file-grid-item:hover {
	box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.6);
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-ms-transition: all 100ms linear;
	-o-transition: all 100ms linear;
	transition: all 100ms linear;
	
}

.file-grid-item.selected {
	box-shadow: 0 0 5px 1px rgba(176, 17, 21, 0.4);
	background-color: rgba(176, 17, 21, 0.6);
}

.file-grid-item-preview {
	margin: 8px;
	border: 1px solid #aaa;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	box-shadow: inset 0 0 15px rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.05);
	background-color: white;
}

.file-grid-item-preview-image {
	background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 100%;
    height: 100%;
    display: table;
}

.file-manager-modal-wrapper {
	height: 400px;
	overflow-y: scroll;
}

.file-grid-item-preview img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.file-grid-item-preview-name {
	position: absolute;
	padding: 10px;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	border-top: 1px solid #aaa;
	background: rgba(255, 255, 255, 0.8);
}

.file-grid-item-preview .file-icon {
	text-align: center;
	display: table-cell;
	font-size: 6em;
	padding-bottom: 25%;
	float: none;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	color: #ccc;
}

.vex-big .vex-content {
	width: 80% !important;
}

.vex-content .file-upload-list {
	padding: 5px;
}

.vex-content .file-list {
	padding: 0px 5px;
}

.vex-content .file-list .system-message {
	margin-left: -5px;
	margin-right: -5px;
}

.mce-content-body img {
	width: 100% !important;
}

.record-item.file-upload-item:last-child {
	margin-bottom: 10px;
}

.vex-content .record-items {
	margin-bottom: 15px;
	margin-left: 5px;
	margin-right: 5px;
}

.vex-content .r-tabs .r-tabs-nav {
	margin-left: -10px;
	margin-right: -10px;
}

.tinymce-wrapper {
	margin-bottom: 10px;
}

.no-margin {
	margin: 0 !important;
}

.tile-container {
	width: 75%;
	margin-left: 5px;
}

.tile {
	border: 1px solid #f1f1f3;
	width: 33.333%;
	padding-top: 33.333%;
	float: left;	
	position: relative;
	cursor: pointer;
}

.tile.dragged {
	border: 1px dashed #b01115;
	background-color: rgba(245, 35, 27, 0.1);
}

.tile-header {
	position: absolute;
	left: 1.5em;
	bottom: 1.5em;
	font-family: "Montserrat";
	font-size: 2em;
	line-height: 1.3em;
	padding-right: 1.5em;
	padding-top: 1.5em;
}

.tile .tile-image {
	border: 0 !important;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.tile-image-wrapper .tile-image {
	border: 1px solid #f1f1f3;
}

.tile.dragged .tile-header {
	display: none;
}

.record-item.slide {
	padding: 0;
	padding-bottom: 10px;
}

.record-item.slide img {
	width: 100%;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.record-item.slide .record-actions {
	padding-top: 5px;
	text-align: center;
}

.slide-caption {
	font-family: "Montserrat";
	font-size: 2.5em;
	position: absolute;
	bottom: 2em;
	line-height: 1.25em;
	text-align: right;
	right: 0;
	font-weight: normal;
}

.slide-wrapper {
	position: relative;
}

.slide-wrapper .slide-video-wrapper {
	height: 100%;
}

.slide-wrapper .slide-video-wrapper video {
	object-fit: cover;
	height: 100%;
}

.slide-caption .is-emphasized {
	font-size: 1.5em;
	font-weight: 900;
	font-family: "Montserrat";
}

.mce-panel {
	box-shadow: none !important;
	border-radius: 10px !important;
	border-color: #ccc !important;
}

.mce-top-part::before {
	box-shadow: none !important;
}

div.mce-edit-area {
	padding-bottom: 10px !important;
}

.device-file {
	border: 1px solid #ccc;
	margin: 5px;
	background: white;
	border-radius: 10px;
}

.device-file-wrapper {
	border-radius: 10px;
}

.device-file img {
	width: 100%;
	min-height: 200px;
}

.device-file-image-wrapper {
	overflow: hidden;
	height: 200px;
	width: 100%;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.device-file-description {
	padding: 10px;
	height: 200px;
	overflow: auto;
}

.device-file-description .title {
	font-weight: bold;
}

.device-file .record-actions {
	padding: 10px;
	text-align: center;
}

.device-specification table.records {
	border: 0;
	margin-top: 10px;
	width: 25%;	
}

.textArea.specification-value {
	height: auto;
}

.record-item.page-menu-item {
	background: white !important;
	/*border: none;*/
	position: relative;
	padding-right: 0;
}

.page-menu-item .page-menu-items {
	padding: 1em !important;
}

.page-menu-item .page-menu-item-text {
	font-weight: bold;
	display: block;
	float: left;
}

.col.col10 {
	width: 100px;
}

.col.col90 {
	width: 90%;
}

.device-files-container {
	margin-bottom: 1em;
	float: left;
	width: 100%;
}

.video-wrapper .mce-preview-object {
	background-color: red;	
}

.record-actions.menu-item-actions {
	float: right;
}

.language-selector {
	position: relative;
}

.language-selector select {
	-webkit-appearance: none;
	background-color: #f1f1f3;
	padding: 5px;
	height: 35px;
	width: 100%;
	border-radius: 10px;
	font-size: 1.1em;
	border: 1px solid #aaa;
	margin-bottom: 1em;
	position: relative;
	display: block;
	padding-left: 45px;
}

.language-selector::after {
    border: 3px solid transparent;
    border-radius: 2px;
    border-right: 0;
    border-top: 0;
    content: " ";
    display: block;
    height: .625em;
    margin-top: -.4375em;
    pointer-events: none;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    width: .625em
}

.language-selector::after {
    border-color: #b01115;
    right: 1.125em;
    z-index: 4
}

.language-selector::before {
	display: block;
	content: " ";
	position: absolute;
	left: 10px;
	top: 5px;
	background-size: cover;
	width: 24px;
	height: 24px;
	z-index: 21;
}

.language-selector.pl::before {
	background-image: url('../images/icons/flags/flat/PL.png');
}

.language-selector.en::before {
	background-image: url('../images/icons/flags/flat/GB.png');
}

.language-selector.lt::before {
	background-image: url('../images/icons/flags/flat/LT.png');
}

.language-selector.fr::before {
	background-image: url('../images/icons/flags/flat/FR.png');
}

.language-selector.de::before {
	background-image: url('../images/icons/flags/flat/DE.png');
}

.language-selector.ua::before {
	background-image: url('../images/icons/flags/flat/UA.png');
}

.language-icon {
	width: 24px;
	height: 24px;
	margin-top: 12px;
	float: left;
	margin-right: 10px;
}

.fakeBox.status_NEW {
	background: #d3e7f5!important;
	border-color: #0a5c9a!important;
	color: #0a5c9a;
}

.fakeBox.status_INPROGRESS {
	border-color: #cb3f30!important;
	background: #FFE4A8!important;
	color: #cb3f30;
}

.fakeBox.status_CANCELED {
	border-color: #cb3f30!important;
	background: #ffcece!important;
	color: #cb3f30;
}

.fakeBox.status_SENT {
	border-color: #1E960E!important;
	background: #E4FAE1!important;
	color: #1E960E;
}

.language-version {
	display: none;
}

label[for] {
	cursor: pointer;'
}
