body {
	font-family: Arial Narrow,Arial,sans-serif !important;
	font-size: 16px;
}

.site-wrapper {
    width: 100%;
    margin: 0 auto 0 auto;
	/*border: 1px solid #e3e3e3;
    margin: 0 auto 20px;*/
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
} 

.clearfix::after {
  clear: both;
}

.clearfix {
  *zoom: 1; /* for IE6, IE7 */
}

a:focus {
	outline: 0;
}

.table {
	background-color: #ffffff;
}

/* Steps bar */
.bs-wizard {margin-top: 40px;}
.bs-wizard {border-bottom: solid 1px #e0e0e0; padding: 0 0 10px 0;}
.bs-wizard > .bs-wizard-step {padding: 0; position: relative;}
.bs-wizard > .bs-wizard-step + .bs-wizard-step {}
.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {color: #595959; font-size: 16px; margin-bottom: 5px; white-space: nowrap}
.bs-wizard > .bs-wizard-step .bs-wizard-info {color: #999; font-size: 14px;}
.bs-wizard > .bs-wizard-step > .bs-wizard-dot {position: absolute; width: 30px; height: 30px; display: block; background: #fbe8aa; top: 45px; left: 50%; margin-top: -15px; margin-left: -15px; border-radius: 50%;} 
.bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {content: ' '; width: 14px; height: 14px; background: #fbbd19; border-radius: 50px; position: absolute; top: 8px; left: 8px; } 
.bs-wizard > .bs-wizard-step > .bs-wizard-dot-small {position: absolute; width: 20px; height: 20px; display: block; background: #fbe8aa; top: 45px; left: 50%; margin-top: -46px; margin-left: -15px; border-radius: 50%;} 
.bs-wizard > .bs-wizard-step > .bs-wizard-dot-small:after {content: ' '; width: 10px; height: 10px; background: #fbbd19; border-radius: 50px; position: absolute; top: 5px; left: 5px; } 
.bs-wizard > .bs-wizard-step > .progress {position: relative; border-radius: 0px; height: 8px; box-shadow: none; margin: 20px 0;}
.bs-wizard > .bs-wizard-step > .progress > .progress-bar {width:0px; box-shadow: none; background: #fbe8aa;}
.bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {width:100%;}
.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {width:50%;}
.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {width:0%;}
.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {width: 100%;}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {background-color: #f5f5f5;}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {opacity: 0;}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot-small {background-color: #f5f5f5;}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot-small:after {opacity: 0;}
.bs-wizard > .bs-wizard-step:first-child  > .progress {left: 50%; width: 50%;}
.bs-wizard > .bs-wizard-step:last-child  > .progress {width: 50%;}
.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot{ pointer-events: none; }
.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot-small{ pointer-events: none; }

label.control-label {
	font-size: 90%;
	height: 1px !important;
}

.rem-selectize-fix {
	margin-left: -3px !important;
	margin-top: -5px;
}

.rem-selectize-bodytop-enabled {
	z-index: 99998 !important;
}

.bootstrap-datetimepicker-widget {
	z-index: 99999 !important;
}

/* ---------------------------------------------------

Switch Button

---------------------------------------------------- */

.checkbox.checbox-switch {
    padding-left: 0;
}

.checkbox.checbox-switch label,
.checkbox-inline.checbox-switch {
    display: inline-block;
    position: relative;
    padding-left: 0;
}
.checkbox.checbox-switch label input,
.checkbox-inline.checbox-switch input {
    display: none;
}
.checkbox.checbox-switch label span,
.checkbox-inline.checbox-switch span {
    width: 35px;
    border-radius: 20px;
    height: 18px;
    border: 1px solid #dbdbdb;
    background-color: rgb(255, 255, 255);
    border-color: rgb(223, 223, 223);
    box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.checkbox.checbox-switch label span:before,
.checkbox-inline.checbox-switch span:before {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgb(255,255,255);
    content: " ";
    top: 0;
    position: relative;
    left: 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.checkbox.checbox-switch label > input:checked + span:before,
.checkbox-inline.checbox-switch > input:checked + span:before {
    left: 17px;
}


/* Switch Default */
.checkbox.checbox-switch label > input:checked + span,
.checkbox-inline.checbox-switch > input:checked + span {
    background-color: rgb(180, 182, 183);
    border-color: rgb(180, 182, 183);
    box-shadow: rgb(180, 182, 183) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checbox-switch label > input:checked:disabled + span,
.checkbox-inline.checbox-switch > input:checked:disabled + span {
    background-color: rgb(220, 220, 220);
    border-color: rgb(220, 220, 220);
    box-shadow: rgb(220, 220, 220) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checbox-switch label > input:disabled + span,
.checkbox-inline.checbox-switch > input:disabled + span {
    background-color: rgb(232,235,238);
    border-color: rgb(255,255,255);
}
.checkbox.checbox-switch label > input:disabled + span:before,
.checkbox-inline.checbox-switch > input:disabled + span:before {
    background-color: rgb(248,249,250);
    border-color: rgb(243, 243, 243);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Switch Light */
.checkbox.checbox-switch.switch-light label > input:checked + span,
.checkbox-inline.checbox-switch.switch-light > input:checked + span {
    background-color: rgb(248,249,250);
    border-color: rgb(248,249,250);
    box-shadow: rgb(248,249,250) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

/* Switch Dark */
.checkbox.checbox-switch.switch-dark label > input:checked + span,
.checkbox-inline.checbox-switch.switch-dark > input:checked + span {
    background-color: rgb(52,58,64);
    border-color: rgb(52,58,64);
    box-shadow: rgb(52,58,64) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checbox-switch.switch-dark label > input:checked:disabled + span,
.checkbox-inline.checbox-switch.switch-dark > input:checked:disabled + span {
    background-color: rgb(100, 102, 104);
    border-color: rgb(100, 102, 104);
    box-shadow: rgb(100, 102, 104) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

/* Switch Success */
.checkbox.checbox-switch.switch-success label > input:checked + span,
.checkbox-inline.checbox-switch.switch-success > input:checked + span {
    background-color: rgb(40, 167, 69);
    border-color: rgb(40, 167, 69);
    box-shadow: rgb(40, 167, 69) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checbox-switch.switch-success label > input:checked:disabled + span,
.checkbox-inline.checbox-switch.switch-success > input:checked:disabled + span {
    background-color: rgb(153, 217, 168);
    border-color: rgb(153, 217, 168);
    box-shadow: rgb(153, 217, 168) 0px 0px 0px 8px inset;
}

/* Switch Danger */
.checkbox.checbox-switch.switch-danger label > input:checked + span,
.checkbox-inline.checbox-switch.switch-danger > input:checked + span {
    background-color: rgb(200, 35, 51);
    border-color: rgb(200, 35, 51);
    box-shadow: rgb(200, 35, 51) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checbox-switch.switch-danger label > input:checked:disabled + span,
.checkbox-inline.checbox-switch.switch-danger > input:checked:disabled + span {
    background-color: rgb(216, 119, 129);
    border-color: rgb(216, 119, 129);
    box-shadow: rgb(216, 119, 129) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

/* Switch Primary */
.checkbox.checbox-switch.switch-primary label > input:checked + span,
.checkbox-inline.checbox-switch.switch-primary > input:checked + span {
    background-color: rgb(0, 105, 217);
    border-color: rgb(0, 105, 217);
    box-shadow: rgb(0, 105, 217) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checbox-switch.switch-primary label > input:checked:disabled + span,
.checkbox-inline.checbox-switch.switch-primary > input:checked:disabled + span {
    background-color: rgb(109, 163, 221);
    border-color: rgb(109, 163, 221);
    box-shadow: rgb(109, 163, 221) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

/* Switch Info */
.checkbox.checbox-switch.switch-info label > input:checked + span,
.checkbox-inline.checbox-switch.switch-info > input:checked + span {
    background-color: rgb(23, 162, 184);
    border-color: rgb(23, 162, 184);
    box-shadow: rgb(23, 162, 184) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checbox-switch.switch-info label > input:checked:disabled + span,
.checkbox-inline.checbox-switch.switch-info > input:checked:disabled + span {
    background-color: rgb(102, 192, 206);
    border-color: rgb(102, 192, 206);
    box-shadow: rgb(102, 192, 206) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

/* Switch Warning */
.checkbox.checbox-switch.switch-warning label > input:checked + span,
.checkbox-inline.checbox-switch.switch-warning > input:checked + span {
    background-color: rgb(255, 193, 7);
    border-color: rgb(255, 193, 7);
    box-shadow: rgb(255, 193, 7) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.checkbox.checbox-switch.switch-warning label > input:checked:disabled + span,
.checkbox-inline.checbox-switch.switch-warning > input:checked:disabled + span {
    background-color: rgb(226, 195, 102);
    border-color: rgb(226, 195, 102);
    box-shadow: rgb(226, 195, 102) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

.checbox-switch-span-fix {
	line-height: 1.428571429;
	font-size: 14px;
}

.modal { overflow: auto !important; }

/* Remondis Style */

#rem-header {
	background-color: #f8f8f8;
}

#rem-header .rem-app-title, .rem-site-title {
	display: block;
	float: left;
	margin: 0;
	padding: 18px 0 10px 20px;
	font-weight: bold;
	color: #909090;
}

#rem-header .rem-site-title {
	margin-left: 100px;
}

#rem-header .rem-logo {
	display: block;
	float: right;
	padding: 10px 30px 10px 0;
    max-height: 70px !important;
    width: auto !important;
}

#rem-header-top {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #cacacc 0%, #7a7b7f 100%) repeat scroll 0 0;
    color: #fff;
    height: 28px;
    overflow: hidden;
}

#rem-header-top ul li {
    display: block;
    float: right;
    list-style: outside none none;
    margin: 0;
    padding: 0 12px 0 12px;	
}

#rem-header-top ul {
    margin: 5px 19px 0 0;
    padding: 0;
}

#rem-header-top li {
    font-size: 1em;
    line-height: 1em;
	/*font-weight: bold;*/
    color: #ffffff;
	border-right: #ffffff 1px dotted;
}

#rem-header-top li.last {
	border-right: none;
}

#rem-header-top a {
	background: transparent none repeat scroll 0 0;
    color: #ffffff;
    text-decoration: none;
}

#rem-header-top a:hover {
    text-decoration: underline;
}

#rem-header-functions {
	font-size: 16px;
	/* background-color: #e3051a; */
	background-color: #f8f8f8;
	width: 100%;
	height: 22px;
	box-shadow: 0px 10px 10px -8px rgba(0, 0, 0, .1);
	position: relative;
	z-index: 1000;
}

#rem-header-functions ul li {
    display: block;
    float: right;
    list-style: outside none none;
    margin: 0;
    padding: 0 12px 0 12px;	
}

#rem-header-functions ul {
    margin: 2px 19px 0 0;
    padding: 0;
}

#rem-header-functions li {
    font-size: 1em;
    line-height: 1em;
    /*color: #ffffff;
	border-right: #ffffff 1px dotted;*/
    color: #000000;
	border-right: #000000 1px dotted;
}

#rem-header-functions li.last {
	border-right: none;
}

#rem-header-functions a {
	background: transparent none repeat scroll 0 0;
    color: #000000;
    /*color: #ffffff;*/
    text-decoration: none;
}

#rem-header-functions a:hover {
    text-decoration: underline;
}

#rem-footer-links {
	font-size: 12px;
	height: 22px;
	text-align: center;
	margin: 25px;
}

#rem-footer-links ul li {
    display: inline;
    list-style: outside none none;
    margin: 0;
    padding: 0 12px 0 12px;	
}

#rem-footer-links ul {
    margin: 2px 50px 0 0;
    padding: 0;
}

#rem-footer-links li {
    font-size: 1em;
    line-height: 1em;
    color: #A0A0A0;
	border-right: #A0A0A0 1px dotted;
}

#rem-footer-links li.last {
	border-right: none;
}

#rem-footer-links a {
	background: transparent none repeat scroll 0 0;
    color: #A0A0A0;
    text-decoration: none;
}

#rem-footer-links a:hover {
    text-decoration: underline;
}

.rem-site-content {
	padding: 20px;
	background-color: #fff;
}

@media (min-width: 768px) {
  .rem-site-content {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.rem-site-content .page-header {
  margin-top: 0;
}

#rem-login-form {
	max-width: 500px;
	padding: 30px;
	margin: 0 auto 0 auto;
	background-color: #f8f8f8;
	border: 1px solid #e1e8ed;
	border-radius: 5px;
}

#rem-login-form .helplinks {
	margin-top: 10px;
	width: 300px;
}

.rem-form {
	max-width: 1024px;
	padding: 0 20px 20px 20px;
	margin: 0 auto 0 auto;
	background-color: #f8f8f8;
	border: 1px solid #e1e8ed;
	border-radius: 5px;
}

.rem-form-hidden {
	max-width: 1024px;
	padding: 0;
	margin: 0 auto 0 auto;
}

.rem-form-tabs-outer {
	max-width: 1024px;
	padding: 0;
	margin: 0 auto 0 auto;
}

.rem-form-tabs {
	padding: 0 20px 20px 20px;
	background-color: #f8f8f8;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.rem-nav-tab-border {
	border: 1px solid #ddd !important;
}

.rem-nav-tab-not-active {
	border: 1px solid #ddd !important;
	background-color: #ffffff;
}

.rem-nav-tab-not-active:hover {
	background-color: #fcfcfc !important;
}

.rem-nav-tab-not-active:focus {
	background-color: #fcfcfc !important;
}

.rem-nav-tab-item-selected {
	border: 1px solid #b8d7dd !important;
	background-color: #f1fcff !important;
	font-weight: bold;
	text-decoration: underline;
}

.rem-nav-tab-item-selected:hover {
	background-color: #e7f1f3 !important;
}

.rem-img-captcha {
	width: 215px;
	height: 80px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.rem-img-captcha-input {
	width: 215px;
	margin-top: 10px;
}

.rem-table-border-all {
	border: 1px solid #ddd;
}

.rem-table-vertical-align-td-all>tbody>tr>td {
	vertical-align: middle;
}

.rem-table-cell-changed-darkorange {
	background-color: #FF8C00;
	font-weight: bold;
}

.rem-table-cell-changed-gold {
	background-color: #FFD700;
	font-weight: bold;
}

.rem-btn-vehicle-cat {
	width: 100%;
	margin: 10px 10px 0 0;
}

.rem-btn-cat-selected {
	background-image: linear-gradient(to bottom, #ffead9 0px, #ffbf87 100%);
	border-color: #f69240;
}

img.rem-img-center {
	margin: 0 auto;
}

div.rem-btn-cat-selected:hover, div.rem-btn-cat-selected:focus {
	background-position: 0;
	border-color: #f69240;
}

.rem-btn-vehicle-imgupl {
	width: 100%;
	margin: 10px 10px 0 0;
	height: 155px;
}

.rem-btn-vehicle-txtcenter {
	padding-top: 60px;
}

.rem-btn-vehicle-document {
	padding-top: 40px;
}

.rem-btn-catalogue-imgupl {
	width: 100%;
	margin: 10px 10px 0 0;
	height: 100px;
}

.rem-btn-catalogue-txtcenter {
	/*padding-top: 42px;*/
}

.btn-file {
	position: relative;
	overflow: hidden;
}

.btn-file input[type=file] {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	font-size: 100px;
	text-align: right;
	filter: alpha(opacity=0);
	opacity: 0;
	outline: none;
	background: white;
	cursor: inherit;
	display: block;
}

.rem-preview-thumbnail-images {
}

img.rem-preview-thumbnail-image {
	width: 32%;
	padding: 5px 0 0 0;
}

.rem-preview-click-image {
	cursor: pointer;
}

.rem-modal-thumbnail {
	margin-bottom:6px;
}

.carousel-control.left, .carousel-control.right {
	background-image: none;
	margin-top: 10%;
	width: 5%;
}

.rem-modal-image-index {
	text-align: right;
	padding: 5px 5px 0 0;
}

.rem-detail-caption {
	width: 200px;
}

.rem-vehiclelist-td-image {
	width: 160px;
}

.rem-vehiclelist-td-caption {
	font-size: 16px;
	font-weight: bold;
}

.rem-vehiclelist-td-advertid {
	font-size: 16px;
	font-weight: bold;
	text-align: right;
}

.rem-tdnw {
	white-space: nowrap;
	width: 10px;
}

.rem-bold {
	font-weight: bold;
}

@media (min-width: 768px) {
	.modal-dialog {
		width: 800px;
	}
	.modal-dialog-small {
		width: 500px;
	}
}

@media (min-width: 900px) {
	.modal-dialog-article {
		width: 900px !important;
	}
}

.rem-td-header1 {
	background-color: #D8D8D8;
}

@media screen {
	.rem-print-only-block { display: none; }
	.rem-print-only-inline { display: none; }
	.rem-textarea-print-div { display: none; }
}

.multiselect {
	text-align: left;
}

button.multiselect {
	padding-left: 17px;
}

.multiselect b.caret {
	position: absolute;
	top: 14px;
	right: 8px;
}

.multiselect-group {
	font-weight: bold;
	text-decoration: underline;
}

.rem-table-vehicle-offers {
	border: 0 !important;
}

.rem-table-searchagent {
	border: 0 !important;
	padding: 4px 0 0 18px !important
}

.rem-table-nonfluid {
   width: auto !important;
}

a.rem-login-link,a.rem-login-link:hover,a.rem-login-link:focus,a.rem-login-link:visited {
	color: #333;
}

a.rem-offers-link,a.rem-offers-link:hover,a.rem-offers-link:focus,a.rem-offers-link:visited {
	color: #333;
}

a.rem-searchex-link,a.rem-searchex-link:hover,a.rem-searchex-link:focus,a.rem-searchex-link:visited {
	color: #333;
}

a.rem-pagecount-link,a.rem-pagecount-link:hover,a.rem-pagecount-link:focus,a.rem-pagecount-link:visited {
	color: #333;
}

a.rem-pagination-link,a.rem-pagination-link:hover,a.rem-pagination-link:focus,a.rem-pagination-link:visited {
	color: #333 !important;
}

.rem-pagecontrol {
	text-align: center;
}

.rem-pagination-control {
	float: none;
	text-align: center;
	display: inline-block;
	margin-top: 10px;
	margin-right: -200px;
}

.rem-select-items-per-page {
	float: right;
	display: inline-block;
	padding: 12px 0 0;
}

.rem-select-items-per-page > a.active {
	font-weight: bold;
}

.rem-glyphicon-expand-collapse {
	cursor: pointer;
}

.rem-glyphicon-expand-collapse-all {
	cursor: pointer;
}

.rem-glyphicon-expand-collapse-article {
	cursor: pointer;
}

.rem-glyphicon-expand-collapse-article-all {
	cursor: pointer;
}

.rem-upload-remove-btn {
	position: absolute;
	width: 90%;
	text-align: right;
	cursor: pointer;
	z-index: 100;
}

.rem-upload-remove-btn-top {
	margin-top: -50px;
}

.rem-upload-remove-btn > span {
	font-size: 150%; color: #a94442; cursor: pointer
}

table.rem-article-cat-select {
	margin: 10px 0 0 0;
}

table.rem-article-cat-select td {
	padding: 10px 20px 0 0;
	text-align: left;
	vertical-align: top;
}

.rem-selcat-question-btn {
	position: absolute;
	width: 80%;
	text-align: right;
	cursor: pointer;
	z-index: 100;
}

.rem-selcat-question-btn > a, .rem-selcat-question-btn > a:hover, .rem-selcat-question-btn > a:link, .rem-selcat-question-btn > a:active, .rem-selcat-question-btn > a:focus, .rem-selcat-question-btn > a:visited {
	font-size: 200%;
	color: #a94442;
	cursor: pointer;
	text-decoration: none;
}

.rem-btn-cat-vehicle-avail {
	margin-bottom: 20px !important;
}

.rem-btn-cat-found-vehicles {
	width: 100%;
	margin-bottom: 20px;
	margin-top: -10px;
}
.rem-btn-cat-found-vehicles > a {
	color:black;
}
.rem-btn-cat-found-vehicles > img {
	width: 10%;
}

.rem-btn-requisition-cat {
	width: 100%;
	margin: 10px 10px 0 0;
}

.rem-req-table {
	width: 100%
}

.rem-req-table-caption {
	font-weight: bold;
	padding: 0 10px 10px 0;
	text-align: right;
	vertical-align: top;
	width: 1px;
	white-space: nowrap;
}

.rem-req-table-data {
	padding: 0 10px 10px 0;
	text-align: left;
	vertical-align: top;
	width: 1px;
	white-space: nowrap;
}

.rem-req-table-data-wrap {
	padding: 0 10px 10px 0;
	text-align: left;
	vertical-align: top;
	width: 1px;
}

.rem-req-table-data-last {
	padding: 0 10px 10px 0;
	text-align: left;
	vertical-align: top;
	white-space: nowrap;
}

.rem-req-table-data-last-wrap {
	padding: 0 10px 10px 0;
	text-align: left;
	vertical-align: top;
}

.rem-req-table-editicon {
	padding: 0 10px 10px 0;
	text-align: left;
	vertical-align: top;
}

.rem-req-table-editicon > span {
	cursor: pointer;
}

.rem-req-table-edit {
	padding: 10px 10px 10px 0;
	text-align: left;
	vertical-align: top;
}

.rem-text-error {
	color: #a94442;
}

.rem-catdata-td-class {
	background-color: #F0F8FF;
}

.rem-catdata-tr-linediv:after {
	content: "";
	display: block;
	height: 3px;
	background: transparent;
	/*background: -moz-linear-gradient(top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	/*background: -webkit-linear-gradient(top, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	/*background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	/*filter: progid:DXImageTransform.Microsoft.gradient(   startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
  }

.rem-btn-documentsupload {
	width: 100%;
	margin: 10px 10px 0 0;
}

.rem-table-striped>tbody>tr:nth-child(odd)>td, 
.rem-table-striped>tbody>tr:nth-child(odd)>th {
   background-color: #f0f0f0;
 }

.rem-table-layout-fixed {
	table-layout: fixed
}

.rem-table-layout-fixed>tbody>tr>td,
.rem-table-layout-fixed>thead>tr>th {
	hyphens: auto;
}

.rem-table-selected-orange>td {
   background-color: #fdce88 !important;
}

.rem-table-selected-green>td {
	background-color: #CCFFCC !important;
 }
 
.rem-table-datetimepicker-fix td {
  position: relative;
}
  
.static + div.bootstrap-datetimepicker-widget {
	position: static !important;
}

  .rem-input-text-link {
	  color: #337ab7;
	  text-decoration: none;
	  cursor: pointer;
  }

  .rem-input-text-link:hover {
	text-decoration: underline;
}

.rem-datetimepicker-colored-enabled-disabled .bootstrap-datetimepicker-widget table td, .rem-datetimepicker-colored-enabled-disabled .bootstrap-datetimepicker-widget table td:hover {
	background-color: #DFF0D8;
	color: #333;
	border-radius: 0;
}

.rem-datetimepicker-colored-enabled-disabled .bootstrap-datetimepicker-widget table td.disabled, .rem-datetimepicker-colored-enabled-disabled .bootstrap-datetimepicker-widget table td.disabled:hover {
	background-color: #FFC9C9;
	color: #333;
	border-radius: 0;
}

.rem-datetimepicker-colored-enabled-disabled .bootstrap-datetimepicker-widget table td.booked, .rem-datetimepicker-colored-enabled-disabled .bootstrap-datetimepicker-widget table td.booked:hover {
	background-color: #ffdbaa;
	color: #333;
	border-radius: 0;
}

.rem-datetimepicker-colored-enabled-disabled .bootstrap-datetimepicker-widget table td.active, .rem-datetimepicker-colored-enabled-disabled .bootstrap-datetimepicker-widget table td.active:hover {
	background-color: #337ab7;
	color: #fff;
}

.rem-td-fixed-abnr {
	max-width: 300px;
	min-width: 125px;
	word-wrap: anywhere;
}

.rem-td-fixed-longtext {
	max-width: 300px;
	min-width: 125px;
	word-wrap: anywhere;
}

.rem-dot25px {
	height: 25px;
	width: 25px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
}

.rem-dashboard-count-parent {
	position: absolute;
	width: 100%;
	z-index: 100;	
}

.rem-dashboard-count {
	float: right;
	margin-right: 50px;
	width: 35px;
	line-height: 35px;
	font-size: 16px;
	border-radius: 100%;
	vertical-align: middle;
	font-weight: bold;
}

.rem-collapse-header {
	background-color: #F0F8FF;
	margin-bottom: 3px;
	padding: 3px 5px;
}

.rem-collapse-data-area {
	margin: 10px 0px 10px 30px;
	padding-bottom: 5px;
}

.rem-btn-cat-image-container {
	display: flex;
	background-color: white;
	height: 170px;
	justify-content: center;
	align-items: center;
}

.rem-kennzeichen-container {
	border: 5px solid #000;
	border-radius: 12px;
	background-color: #000;
	overflow: hidden;
	display: inline-block;
	font-family: 'Arial', sans-serif;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.rem-kennzeichen-blau {
	height: 80px;
	display: block;
}

.rem-kennzeichen-weiss {
	background-color: #fff;
	padding: 10px 20px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rem-kennzeichen-text {
	font-size: 48px;
	font-weight: bold;
	letter-spacing: 2px;
	text-align: center;
	color: #000;
	white-space: nowrap;
	min-width: 280px;
}