/** -----------------------
Additions for Cansistent
------------------------*/


/**
 * ==================================================================================================================================================================
 *  Structure
 * ==================================================================================================================================================================
 */
html {
	height: 100%;
}

body {
    min-height: 100%;
    height: 100%;
    background-color: #FFFFFF;
}

/** footer style */
footer {
	height:20px;
	background-color:#222;
	border: 1px solid;
	border-color:#080808;
	text-align:left;
	font-size: 10px;
	color: #FFFFFF;
	padding-left: 10px;
    display: flex;
    align-items: center;
}


.fullscreen-wrapper {
    min-height: 100%;
}

/** body-wrapper sits inside html body, above page-wrapper. must set to grey to keep sidebar menu color the same (by setting "all of page" to grey background), then override with page-wrapper for inner content */
.body-wrapper {
    min-height: 100%;
    background-color: #F7F7F7;
}

.page-wrapper {
	height: 100%;
    min-height: 100%;
	background-color: #FFFFFF;
}

/** helpbar div for admin portal, 250px margin for menu sidebar */
.body-wrapper .helpbar {
	margin-left: 250px;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 8px;
	padding-bottom: 8px;
	background-color: #FFFFFF;
}

/** resizing for small screens, mainly operator mobile views etc */
@media screen and (max-width: 768px) {
    body {
        font-size: 2.0em;
    }
	table.dataTable {
		font-size: 0.8em;
	}
	textarea {
		font-size: 1.1em !important;
	}

	.page-wrapper {
        position: inherit;
        margin-left: 0px;
        padding: 0px 10px 0px 10px;
        border-left: 1px solid #e7e7e7;
	}
    .dl-horizontal dt {
        width:200px;
        margin-bottom: 5px;
		white-space: nowrap;
    }
    .dl-horizontal dd {
        width:100px;
		white-space: nowrap;
    }
	.navbar-brand {
		font-size: 1.2em;
	}
	.btn {
        font-size: 1.0em;
	}
}

/** regular screen widths */
@media screen and (min-width:769px) {
    .page-wrapper {
        position: inherit;
        margin-left: 250px;
        padding: 0px 30px 0 30px;
        border-left: 1px solid #e7e7e7;
   }
}

/** override bootstrap large bottom margin on navbar */
.navbar {
	margin-bottom: 0px;
}

/** override bootstrap large bottom margin on navbar */
.navbar-opconsole {
	min-height: 30px;
}

.navbar-brand-opconsole {
	min-height: 30px;
	height: 30px;
	padding-top: 10px;
	margin-bottom: 10px;
}

/** changes cursor to a pointer */
.cursor-pointer {
  cursor: pointer;
}

/**
 * ==================================================================================================================================================================
 *  Customer Portal
 * ==================================================================================================================================================================
 */

.cportal-typography {
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol" !important;
	font-weight: 400 !important;
	font-size: 16px !important;
}

.masthead {
	background-color: #337ab7;
	border-color: #2e6da4;
	min-height: 230px;
	color: #ffffff;
	padding: 10px 50px 30px 50px;
	margin-bottom: 20px;
	-webkit-box-shadow: 0px 3px 5px -1px rgba(166,166,166,1);
	-moz-box-shadow: 0px 3px 5px -1px rgba(166,166,166,1);
	box-shadow: 0px 3px 5px -1px rgba(166,166,166,1);
}

.masthead-small {
	min-height: 120px;
	padding: 20px 50px 20px 50px;
}

.masthead > h1 {
    font-weight: 700;
}

.cportal-breadcrumb {
	font-size: 14px;
	padding: 0px 0px;
	margin-bottom:0px;
	list-style:none;
	border-radius:12px;
}
.cportal-breadcrumb > li {
	display:inline-block;
}
.cportal-breadcrumb > li + li:before {
	padding:0 5px;
	color:#ccc;
	content:">\00a0";
}
.cportal-breadcrumb > .active {
	color:#777;
}

.cportal-navbar-top-links li a {
    padding: 15px;
    min-height: 50px;
}

.cportal-navbar-right li:last-child{
    margin-right: 50px;
}

.cportal-widget-large {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
	min-height: 170px;
	max-height: 170px;
}

.cportal-widget-large p {
	margin-top: 20px;
	margin-bottom: 20px;
}

.cportal-widget-icon {
	color: #33b771;
}

.cportal-btn {
	font-size: 16px;
}

/** panel styles for portal "buy services" */
.panel > .panel-heading-cansistent-cportal-greengradient {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
	background-image: none;
	color: #ffffff;
	background: rgb(153,211,46);
	background: -moz-linear-gradient(45deg, rgba(153,211,46,1) 0%, rgba(153,211,46,1) 50%, rgba(122,186,3,1) 51%, rgba(128,194,23,1) 51%, rgba(122,186,3,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(153,211,46,1) 0%,rgba(153,211,46,1) 50%,rgba(122,186,3,1) 51%,rgba(128,194,23,1) 51%,rgba(122,186,3,1) 100%);
	background: linear-gradient(45deg, rgba(153,211,46,1) 0%,rgba(153,211,46,1) 50%,rgba(122,186,3,1) 51%,rgba(128,194,23,1) 51%,rgba(122,186,3,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99d32e', endColorstr='#7aba03',GradientType=1 );
}

.panel-heading-cansistent-cportal-greengradient small {
	color: #ffffff;
}

/** turn off standard a tag link formatting */
.cportal-nolinkstyling {
	color: #333;
}

/**
 * ==================================================================================================================================================================
 *  Wizard (CS pager)
 * ==================================================================================================================================================================
 */

/** Setup wizard (full page) body */
.wizard-body-wrapper {
    min-height: 100%;
    background-color: #FFFFFF;
	color: #888888;
}
.wizard-body-wrapper  h1 {
	color: #888888;
}
.wizard-body-wrapper  h2 {
	color: #888888;
}
.wizard-body-wrapper  h3 {
	color: #888888;
}
.wizard-body-wrapper  h4 {
	color: #888888;
}
.wizard-body-wrapper  .btn {
	color: #888888;
}

/** all wizards - full screen setup and regular */

.wizard-text {
	color: #888888;
}

.wizard-text h4,
.wizard-text h3 {
	line-height: 1.3;
}

/** hide all wizard q's by default */
.questionGroup {
	display: none;
}


/**
 * ==================================================================================================================================================================
 *  fancy radio and checkbox (used by wizard pager)
 * ==================================================================================================================================================================
 */

.fancyradiobutton-group {
	margin: 15px 0;
}

.fancyradiobutton ~ .fancyradiobutton {
	margin-top: 15px;
}

.fancyradiobutton input[type="radio"]:empty,
.fancyradiobutton input[type="checkbox"]:empty {
	display: none;
}

.fancyradiobutton input[type="radio"] ~ label:before,
.fancyradiobutton input[type="checkbox"] ~ label:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	content: '\f0c8';
	position: absolute;
	top: 50%;
	margin-top: -11px;
	left: 15px;
	font-size: 22px;
}

.fancyradiobutton input[type="radio"]:checked ~ label:before,
.fancyradiobutton input[type="checkbox"]:checked ~ label:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	content: '\f14a';
}

.fancyradiobutton input[type="radio"] ~ label,
.fancyradiobutton input[type="checkbox"] ~ label {
	position: relative;
	cursor: pointer;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
/**	background-color: #f2f2f2; */
}

.fancyradiobutton input[type="radio"] ~ label:focus,
.fancyradiobutton input[type="radio"] ~ label:hover,
.fancyradiobutton input[type="checkbox"] ~ label:focus,
.fancyradiobutton input[type="checkbox"] ~ label:hover {
	border: 1px solid #2e6da4;
	box-shadow: 0px 0px 5px #2e6da4;
}

.fancyradiobutton input[type="radio"]:checked ~ label,
.fancyradiobutton input[type="checkbox"]:checked ~ label {
	color: #fafafa;
}

.fancyradiobutton input[type="radio"]:checked ~ label,
.fancyradiobutton input[type="checkbox"]:checked ~ label {
/**	background-color: #f2f2f2; */
}

.fancyradiobutton.fancyradiobutton-default input[type="radio"]:checked ~ label,
.fancyradiobutton.fancyradiobutton-default input[type="checkbox"]:checked ~ label {
	color: #333;
}

.fancyradiobutton.fancyradiobutton-primary input[type="radio"]:checked ~ label,
.fancyradiobutton.fancyradiobutton-primary input[type="checkbox"]:checked ~ label {
	background-color: #337ab7;
}

.fancyradiobutton.fancyradiobutton-success input[type="radio"]:checked ~ label,
.fancyradiobutton.fancyradiobutton-success input[type="checkbox"]:checked ~ label {
	background-color: #5cb85c;
}

.fancyradiobutton.fancyradiobutton-success-outline input[type="radio"]:checked ~ label,
.fancyradiobutton.fancyradiobutton-success-outline input[type="checkbox"]:checked ~ label {
	color: #333;
	border: 2px solid #5cb85c;
}


.fancyradiobutton.fancyradiobutton-info input[type="radio"]:checked ~ label,
.fancyradiobutton.fancyradiobutton-info input[type="checkbox"]:checked ~ label {
	background-color: #5bc0de;
}

.fancyradiobutton.fancyradiobutton-warning input[type="radio"]:checked ~ label,
.fancyradiobutton.fancyradiobutton-warning input[type="checkbox"]:checked ~ label {
	background-color: #f0ad4e;
}

.fancyradiobutton.fancyradiobutton-danger input[type="radio"]:checked ~ label,
.fancyradiobutton.fancyradiobutton-danger input[type="checkbox"]:checked ~ label {
	background-color: #d9534f;
}

.fancyradiobutton input[type="radio"]:empty ~ label span,
.fancyradiobutton input[type="checkbox"]:empty ~ label span {
	display: inline-block;
}

.fancyradiobutton input[type="radio"]:empty ~ label span.fancyradiobutton-title,
.fancyradiobutton input[type="checkbox"]:empty ~ label span.fancyradiobutton-title {
	font-size: 16px;
	font-weight: 700;
	margin: 5px 5px 5px 50px;
}

.fancyradiobutton input[type="radio"]:empty ~ label span.fancyradiobutton-description,
.fancyradiobutton input[type="checkbox"]:empty ~ label span.fancyradiobutton-description {
	font-weight: normal;
	font-style: italic;
	color: #888888;
	margin: 5px 5px 5px 50px;
}

.fancyradiobutton input[type="radio"]:empty:checked ~ label span.fancyradiobutton-description,
.fancyradiobutton input[type="checkbox"]:empty:checked ~ label span.fancyradiobutton-description {
	color: #fafafa;
}


.fancyradiobutton.fancyradiobutton-success-outline input[type="radio"]:empty:checked ~ label span.fancyradiobutton-description,
.fancyradiobutton.fancyradiobutton-success-outline  input[type="checkbox"]:empty:checked ~ label span.fancyradiobutton-description,
.fancyradiobutton.fancyradiobutton-default input[type="radio"]:empty:checked ~ label span.fancyradiobutton-description,
.fancyradiobutton.fancyradiobutton-default input[type="checkbox"]:empty:checked ~ label span.fancyradiobutton-description {
	color: #888888;
}


/**
 * ==================================================================================================================================================================
 *  Wizard (CS tabs)
 * ==================================================================================================================================================================
 */
.progress-bar , .progress {
	line-height: 10px;
	height: 10px;
}

/**
 * ==================================================================================================================================================================
 *  Panels
 * ==================================================================================================================================================================
 */


/** drop shadow on all panel elements */
.panel {
	box-shadow: 1px 3px 6px 0 rgba(0, 0, 0, 0.19);
}

/** Bold the panel header text for default panels */
.panel > .panel-heading {
	font-weight: bold;
}

/** Blue background, white writing for panel headers */
.panel > .panel-heading-cansistent-blue {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-image: none;
    background-color: #337ab7;
    color: white;
	font-weight: bold;
}

/** Grey background, black writing for panel headers */
.panel > .panel-heading-cansistent-grey {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-image: none;
    background-color: #f5f5f5;
    color: black;
}

/** Yellow background, dark yellow writing for panel headers */
.panel > .panel-heading-cansistent-yellow {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-image: none;
    background-color: #fcfad6;
	color: #59550e;
}

/** Cyan background, dark cyan writing for panel headers */
.panel > .panel-heading-cansistent-cyan {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-image: none;
    background-color: #eaf7f6;
	color: #1a5954;
}

/** Lilac blue background, dark purple writing for panel headers */
.panel > .panel-heading-cansistent-lilac {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-image: none;
    background-color: #e8eaff;
	color: #2f226b;
}

/** Orange background, dark orange writing for panel headers */
.panel > .panel-heading-cansistent-orange {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-image: none;
    background-color: #fff0ea;
	color: #6b3c22;
}

/** Green background, dark green writing for panel headers */
.panel > .panel-heading-cansistent-green{
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-image: none;
    background-color: #eaffea;
	color: #398439;
}

/**
 * ==================================================================================================================================================================
 *  Form control styling
 * ==================================================================================================================================================================
 */

input.input-small {
	width: 200px !important;
}

.form-control-inline {
    min-width: 0;
    width: auto;
    display: inline;
}

/**
 * ==================================================================================================================================================================
 *  DateTimePicker
 * ==================================================================================================================================================================
 */
.datetimepicker th.today {
	border: 1px solid;
	border-color: #AAAAAA;
}

.datetimepicker tfoot {
}

.datetimepicker-highlightweek tr:hover {
    background-color: #eeeeee;
}

/**
 * ==================================================================================================================================================================
 *  Font and typography styling
 * ==================================================================================================================================================================
 */

code {
	color: #04c;
	font-size: 100%;
}

.code-large {
	font-size: 120%;
}

.font-weight-normal
{
    font-weight: 400 !important;
}

/** larger spacing between horizontal list lines */
dl .dl-horizontal > dt, dd{
	margin-bottom: 10px
}

/** vertical running text (left side, text runs bottom up) for chart axis labels etc */
.vertical-text-left {
transform: rotate(270deg);
transform-origin: left top 0;
}

/** vertical running text (right side, text runs top down) for chart axis labels etc */
.vertical-text-right {
transform: rotate(90deg);
transform-origin: left top 0;
}

/** Indents text for blockquote-style appearance with a grey bar to the left - specify font size to override <h*> styles */
.blockquote-cansistent-14px {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px;
	font-size: 14px;
}

/** Indents text without changing font style, use with <div> to indent text blocks */
.text-indent {
	margin-top: 20px;
	margin-left: 40px;
}

/** varying font sizes */
.huge {
    font-size: 40px;
}
.large {
    font-size: 30px;
}
.medium {
	font-size: 20px;
}
.small {
	font-size: 11px;
}

/** wider DT column (widen dt, move dd) */
dl.dt-wide  dt {
	width: 200px;
}
dl.dt-wide  dd {
	margin-left: 215px;
}

/** some standard RAG font colors */
.RAG-red {
	color: #ff0000;
}
.RAG-amber {
	color: #fff0cc;
}
.RAG-amber-morevisible {
	color: #ffc12d;
}
.RAG-green {
	color: #11AA11;
}

.RAG-pastel-red {
	color: #ffefef;
}

.RAG-pastel-amber {
	color: #fffaef;
}

.RAG-pastel-green {
	color: #f7fff7;
}

/**
 * ==================================================================================================================================================================
 *  Schedule explainer
 * ==================================================================================================================================================================
 */

/** For schedule explainer, colors for fa icons */
.explainer-start {
	color: #00AA00;
}
.explainer-offsetstart {
	color: #00BB00;
}
.explainer-startsupersededbyoffset {
	color: #AAAAAA;
}
.explainer-addressinscope{
	color: #555555;
}
.explainer-visit {
	color: #3333FF;
}
.explainer-lastjobinsub {
	color: #f77504;
}
.explainer-stackedskip {
	color: #AAAAAA;
}
.explainer-jobsoutsidesub {
	color: #AAAAAA;
}
.explainer-error {
	color: #AA0000;
}
.explainer-cell-firstcycleweek {
	border-left: 2px solid #9ABA5E !important;
	background: #efffef;
	background: -moz-linear-gradient(left, #efffef 0%, #ffffff 50%);
	background: -webkit-linear-gradient(left, #efffef 0%,#ffffff 50%);
	background: linear-gradient(to right, #efffef 0%,#ffffff 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efffef', endColorstr='#ffffff',GradientType=1 );
}

/**
 * ==================================================================================================================================================================
 *  Fullcalendar service report (completed/planned/scheduled) - mainly cportal
 * ==================================================================================================================================================================
 */

.calendar-planned {
	background-color: #AAAAAA;
}

.calendar-planned-lastjobinsub {
	background-color: #f77504;
}

.calendar-completed-success {
	background-color: #00AA00;
}

.calendar-completed-partial {
	background-color: #fff0cc;
}

.calendar-completed-failure {
	background-color: #AA0000;
}

.calendar-scheduled-adhoc {
	background-color: #3a87ad;
}

.calendar-scheduled-address {
	background-color: #3a87ad;
}

.calendar-scheduled {
	background-color: #3a87ad;
}

.calendar-scheduled-datemissed {
	background-color: #AA0000;
}


/**
 * ==================================================================================================================================================================
 *  Info / help popover
 * ==================================================================================================================================================================
 */

.infopopup:before {
    font-family: "Font Awesome 5 Free";
	font-weight: 600;
	content: "\f129";
}
.infopopup {
    color: #ffffff;
    background-color: #337ab7;
	max-width: 19px;
	max-height: 19px;
	padding: 0px 0px !important;
}
.infopopup:hover, .infopopup:focus, .infopopup:active {
	outline: 0px;
	color: #ffffff;
}

.popover {
	max-width: 350px;
	border: 2px solid;
	border-color: #b7b7b7;
	background-color: #f9f9ff;
}

.popover-title {
	background-color: #5bc0de;
	color: #ffffff;
	font-weight: bold;
	border-bottom: 1px solid;
}



/**
 * ==================================================================================================================================================================
 *  Buttons
 * ==================================================================================================================================================================
 */

/** force text to wrap on buttons */
.btn-wraptext {
    white-space: normal;
}

/** Fixed width wide buttons */
.btn-wide {
	width: 150px;
}

/** Fixed width regular buttons */
.btn-regular {
	width: 100px;
}

/** Fixed width narrow buttons */
.btn-narrow {
	width: 50px;
}

/** shading on input step buttons */
.btn-lightgrey {
	background-color: #EFEFEF;
	border-color: #BBBBBB;
}

.btn-outline {
    color: inherit;
    background-color: transparent;
    transition: all .5s;
}

.btn-primary.btn-outline {
    color: #428bca;
}

.btn-success.btn-outline {
    color: #5cb85c;
}

.btn-info.btn-outline {
    color: #5bc0de;
}

.btn-warning.btn-outline {
    color: #f0ad4e;
}

.btn-danger.btn-outline {
    color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
    color: #fff;
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.428571429;
}

.btn-circle.btn-lg {
    width: 50px;
    height: 50px;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 18px;
    line-height: 1.33;
}

.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 1.33;
}


/**
 * ==================================================================================================================================================================
 *  Alignment
 * ==================================================================================================================================================================
 */

/** Put a space between the top of a row and the previous element */
.top-buffer {
	margin-top:20px;
}
.top-buffer-large {
	margin-top:50px;
}

/** Put a space between the bottom of a row and the next element */
.bottom-buffer {
	margin-bottom:20px;
}
.bottom-buffer-large {
	margin-bottom:50px;
}

.right-align
{
	text-align: right;
}

/** Center align cell content */
.center-cell
{
	text-align: center;
	vertical-align: middle !important;
}

/** allows columns to be horizontally centered - <row row-centered><col col-centered></col></row> . Also works on table cells */
.row-centered {
    text-align:center;
}
.col-centered {
    display:inline-block;
    float:none;
    /* reset the text-align */
    text-align:left;
    /* inline-block space fix */
    margin-right:-4px;
}
/** allows controls in a row to be vertically centered - good for inline control e.g.: input and checkbox in same row */
.row-vertical-centered {
    display: flex;
    align-items: center;
}


/** For <div>, puts a grey boxout around (top right bottom left) */
.boxout {
    margin: 15px 15px 15px 15px;
	padding: 10px 15px 15px 15px;
	outline: 1px solid #DDDDDD;
}

/** After boxout, put some padding around any subsequent h* header */
.boxout > h4 {
	padding: 0px 0px 10px 0px;
}
.boxout > h3 {
	padding: 0px 0px 10px 0px;
}
.boxout > h2 {
	padding: 0px 0px 10px 0px;
}
.boxout > h1 {
	padding: 0px 0px 10px 0px;
}


/**
 * ==================================================================================================================================================================
 *  Forms and validation
 * ==================================================================================================================================================================
 */

/** Manually force a right margin/offset for form validation when there is a span input-group-addon or -btn at the end (e.g.: spinner buttons on an input)
	Half = space for down arrow on default <select>, single = space for 1 button/1 addon, double = space for 2
 */
.form-group > .validatoroffsethalf {
	right: 15px;
}
.form-group > .validatoroffsetsingle {
	right: 40px;
}
.form-group > .validatoroffsetdouble {
	right: 75px;
}

/** Turn off the in-built webkit spinner controls for input type=number - use if replacing with custom code & buttons*/
.no-webkit-spinner::-webkit-inner-spin-button, .no-webkit-spinner::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    -moz-appearance:textfield !important;
}

/** force a white bg for read-only inputs - used for datepicker & display forms where input editing not allowed */
.forcewhitebg  {
	background-color: #FFFFFF !important;
}

/** change the background color of the search bar in selectpicker */
.bootstrap-select .popover-title {
	background-color: #FFFFFF;
	color: #000000;
	font-weight: 400;
}


/**
 * ==================================================================================================================================================================
 * Tables
 * ==================================================================================================================================================================
 */

/** styles to RAG highlight individual datatables cells */
td.table-cell-RAG-red {
	background: #ffcccc;
}
td.table-cell-RAG-amber {
	background: #fff0cc;
}
td.table-cell-RAG-green {
	background: #ccffcc;
}

td.table-cell-RAG-pastel-red {
	background: #ffefef;
}

td.table-cell-RAG-pastel-amber {
	background: #fffaef;
}

td.table-cell-RAG-pastel-green {
	background: #f7fff7;
}

/** change row hover color for datatables */
.table-hover>tbody>tr:hover>td, .table-hover>tbody>tr:hover>th {
  background-color: #428bca;
  color:#eeeeee;
  cursor: pointer;
}

/** datatables - change sort column colors and style */
table>tbody>tr>td.sorting_1 {
    background-color: #edf0ff;
}

table>tbody>tr>td.sorting_2 {
    background-color: #f7f8ff;
}

/** datatables - change cell color to look nicer, for sorted columns in rows selected with datatables select */
table>tbody>tr.selected>td.sorting_1 {
    background-color: #0095e0;
}

table>tbody>tr.selected>td.sorting_2 {
    background-color: #0095e0;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {

}

table.dataTable thead .sorting_asc:after {
    content: "\f0de";
    float: right;
    font-family: "Font Awesome 5 Free";
	color: #04c;
	font-size: 1.2em;
}

table.dataTable thead .sorting_desc:after {
    content: "\f0dd";
    float: right;
    font-family: "Font Awesome 5 Free";
	color: #04c;
	font-size: 1.2em;
}

table.dataTable thead .sorting:after {
    content: "\f0dc";
    float: right;
    font-family: "Font Awesome 5 Free";
    color: rgba(0,0,0,1);
	font-size: 1.2em;
}

.table-responsive-noborder {
	border: none;
}


/**
 * ==================================================================================================================================================================
 * JobType tree
 * ==================================================================================================================================================================
 */

/** SuperType and Type lines for JobType management tree */
.jobtype-tree-type {
}
.jobtype-tree-supertype {
	font-weight: bold;
}
.jobtype-tree-root {
	font-weight: bold;
	background-color: #EEEEEE;
}

/** description list styling */
dt dd .medium {
	    font-size: 16px;
}
dt dd .large {
	    font-size: 18px;
}


/**
 * ==================================================================================================================================================================
 *  Modals
 * ==================================================================================================================================================================
 */

/** constrain textareas in modals to width of modal */
div.modal-body textarea {
    min-width: 100%;
    max-width: 100%;
	resize: none;
}

/** colorize the headers of modals */
.modal-header-success {
    color:#fff;
    padding:9px 15px;
    border-bottom:1px solid #eee;
    background-color: #5cb85c;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
     border-top-left-radius: 5px;
     border-top-right-radius: 5px;
}
.modal-header-warning {
	color:#fff;
    padding:9px 15px;
    border-bottom:1px solid #eee;
    background-color: #f0ad4e;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
     border-top-left-radius: 5px;
     border-top-right-radius: 5px;
}
.modal-header-danger {
	color:#fff;
    padding:9px 15px;
    border-bottom:1px solid #eee;
    background-color: #d9534f;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
     border-top-left-radius: 5px;
     border-top-right-radius: 5px;
}
.modal-header-info {
    color:#fff;
    padding:9px 15px;
    border-bottom:1px solid #eee;
    background-color: #5bc0de;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
     border-top-left-radius: 5px;
     border-top-right-radius: 5px;
}
.modal-header-primary {
	color:#fff;
    padding:9px 15px;
    border-bottom:1px solid #eee;
    background-color: #428bca;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
     border-top-left-radius: 5px;
     border-top-right-radius: 5px;
}

/** set colorized modal header close button to white so it's visible */
.modal-header.modal-header-success > button.close,
.modal-header.modal-header-warning > button.close,
.modal-header.modal-header-danger > button.close,
.modal-header.modal-header-info > button.close,
.modal-header.modal-header-primary > button.close
{
	color: #ffffff;
	text-shadow: 0 1px 0 #666666;
	opacity: 1.0;
}

/**
 * ==================================================================================================================================================================
 *  Loading and overlays
 * ==================================================================================================================================================================
 */

 /** use on div for a loading indicator in top center of window. hidden by default, designed to be shown by jquery */
.loadingDiv {
	position:absolute;
	top:50%;
	left:50%;
	width:100%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	background:#EFEFEF;
	z-index:10;
	display:none;
	color:#000000;
	text-align: center;
	padding: 30px 30px 30px 30px;
	font-size: 30px;
}