/*************************************************************************************
 * UTILITIES
 *************************************************************************************/
.text-center {
	text-align: center;
}

.middle {
	vertical-align: middle;
}

.block {
	display: block;
}

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

.m-0 {
	margin: 0;
}

.p-0 {
	padding: 0;
}

.hidden {
	display: none !important;
}

.clear {
	clear: both;
}

.w-100 {
	width: 100%;
}

.text_primary {
	color: #FE8800;
}
.icon-sml {
	width:24px;
	padding: 2px;
}
/*************************************************************************************
 * div divider 
 *************************************************************************************/

.dividerWrap {
	display: inline-block;
	width: 100%;
	clear:both;
}
.dividerWrap>.dividerQuarter {
	width: 23%;
	float:left;
	padding: 1%;
}
.dividerWrap>.dividerHalf {
	width: 48%;
	float:left;
	padding: 1%;
}
.dividerWrap>.divider1Third {
	width: 31%;
	float:left;
	padding: 1%;
}
.dividerWrap>.divider2Third {
	width: 64%;
	float:left;
	padding: 1%;
}

/*************************************************************************************
 * FORM INPUTS
 *************************************************************************************/

.fWrap {
	padding: 5px;
	margin-bottom: 30px;
	clear:both;
}

.fLabel {
	margin:0;
	border-bottom:1px solid #ddd;
	font-weight: bold;
}

.fField {

}

.fField input, .fField select, 
.filterresultstable input, .filterresultstable select
{
	width: 100%;
}
.filterresultstable label
{
	width: 100%;
	display: inline-block;
  	padding: 0 5px;
}
.filterresultstable input[type="checkbox"], .filterresultstable input[type="radio"]
{
	width: auto;
	margin: 1px 5px;
}

form-style-2023 {

}

.form-style-2023 input[type="time"],
.form-style-2023 input[type="date"] {
	width:auto;
}
.form-style-2023 input[type="text"],
.form-style-2023 input[type="time"],
.form-style-2023 input[type="date"],
.form-style-2023 input[type="datetime-local"],
.form-style-2023 input[type="password"],
.form-style-2023 input[type="number"],
.form-style-2023 input[type="file"],
.form-style-2023 select,
.form-style-2023 textarea {
	padding: 3px;
	border: 1px solid #CCCCCC;
	border-radius: 4px;
}

.form-style-2023 input[type="text"]:focus,
.form-style-2023 input[type="time"]:focus,
.form-style-2023 input[type="date"]:focus,
.form-style-2023 input[type="datetime-local"]:focus,
.form-style-2023 select:focus,
.form-style-2023 textarea:focus,
.button:focus {
	outline: none;
}

.form-style-2023 input[type="checkbox"]:hover {
	cursor: pointer;
}

.form-style-2023 .caption {
	display: block;
	font-size: 12px;
	color: #585858;
	padding: 5px 0;
}

.form-style-2023 input[type="file"] {
	min-height: 20px;
}
    
input[type].field-in-use, select.field-in-use {
	border: 2px solid #FE8800;
}

/*************************************************************************************
 * TABLE STYLES
 *************************************************************************************/
.table-2023 {
	width: 100%;
	border-spacing: 0;
}
.table-2023 tr {}

.table-2023 tr th {
	font-size: 14px;
	padding: 10px;
	border-bottom: 1px solid #CCCCCC;
	vertical-align: top;
}

.table-2023 tr td {
	font-size: 14px;
	padding: 10px;
	border-bottom: 1px solid #CCCCCC;
}

.table-2023 tr:last-child th,
.table-2023 tr:last-child td {
	border-bottom: none;
}

.table-2023-slim {
	width: 100%;
	border-spacing: 0;
}

.table-2023-slim tr {	} 
.table-2023-slim tr td.divider {
	padding: 0;
	border-right: 1px solid #CCCCCC;			
} 
.table-2023-slim tr th {
	font-size: 14px;
	padding: 5px;
	vertical-align: top;
}

.table-2023-slim {
	width: 100%;
	border-spacing: 0;
}

.table-2023-slim tr {} 
.table-2023-slim tr td.divider {
	padding: 0;
	border-right: 1px solid #CCCCCC;			
} 
.table-2023-slim tr th {
	font-size: 14px;
	padding: 5px;
	vertical-align: top;
}

.table-2023-slim tr td {
	font-size: 14px;
	padding: 5px;
}

.table-2023-slim tr td.divider {
	padding: 0;
	border-right: 1px solid #CCCCCC;			
} 
.table-2023-slim tr th {
	font-size: 14px;
	padding: 5px;
	vertical-align: top;
}

.table-2023-slim tr td {
	font-size: 14px;
	padding: 5px;
}

/*************************************************************************************
 * TABLE STYLES - standard table styles
 *************************************************************************************/
.table1 {
	box-sizing: border-box;
	border-collapse: collapse;
	width: 100%;
}

.table1 tr.header th {
	background: #EFEFEF;
	font-size: 14px;
	vertical-align: middle;
}

.table1 th {
	vertical-align: top;
}

.table1 th,
.table1 td {
	font-size: 12px;
	padding: 5px;	
	border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

	
/*************************************************************************************
 * BUTTON STYLES
 *************************************************************************************/
.button {
	height: auto;
	padding: 5px;
	margin: 2px;
	border-radius: 4px;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 12px;
	font-weight: normal;
	cursor: pointer;
	transition: all 0.5s;
	color: #000000;
	border: 1px solid #CCCCCC;
	background: #EEEEEE;
}

.button.button-sml {
	padding: 1px;
	margin: 0;
}


.button:hover {
	border: 1px solid #AAAAAA;
	background: #CCCCCC;
}

.button.button-primary {
	color: #FFFFFF;
	border-color: #FE8800;
	background-color: #FE8800;
}

.button.button-primary:hover {
	color: #000000;
	background-color: #FE8800;
	border: 1px solid #000000;
}

.button.button-success {
	color: #6F9C2E;
	border-color: #6F9C2E;
	background-color: #E8F4D6;
}

.button.button-success:hover {
	background-color: #D4EAB2;
}

.button.button-error {
	color: #E20000;
	border-color: #E20000;
	background-color: #FFBFB7;
}

.button.button-error:hover {
	background-color: #ff988b;
}

.button.button-disabled {
	background-color: #aaa;
}

.btn-icon {
	width:24px;
	vertical-align: middle;
}
.btn-icon-sml {
	width:12px;
	vertical-align: middle;
}
.button-subcontractor {
	background-color:#00a9f1;
	border-color:#3954b1;
}

.button.button-tab {
	background-color: #fff;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom: none;  
	margin: 0;
	padding-left: 10px;
	padding-right: 10px;
}
.button.button-tab.tab-selected {
	background-color: #efefef;
}
.button.button-tab-end {

}


/*************************************************************************************
 * ALERT MESSAGES green notice - add .alert-fade-out to make it fade out using css animations
 *************************************************************************************/
.alert {
	box-sizing: border-box;
	display: block;
	padding: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	border-radius: 4px;
	z-index: 99999;
	opacity: 1;
}

.alert-absolute {
	position: absolute;
	top: 0px;
	right: 0px;
}

	.alert-fade-out {
		animation: fadeOut 4s;
		animation-fill-mode: forwards;
	}

.alert-success {
	border: 1px solid #6F9C2E;
	background-color: #E8F4D6;
	color: #6F9C2E;
}

.alert-error {
	border: 1px solid #E20000;
	background-color: #FFBFB7;
	color: #E20000;
}

.alert-notice {
	border: 1px solid #04658E;
	background-color: #A0E1FF;
	color: #04658E;
}

/* Animation */
@keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } }
@-moz-keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } }
@-webkit-keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } }
@-o-keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } }
@-ms-keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } }


#filtersearchquery::placeholder { color:#aaa;  } 				
#filtersearchquery:focus::placeholder { color:#fff; } 
.filtersearchclearbutton,
.filtersearchclearbuttonshort {
	background-color:#eeeeee;
	position:absolute; 
	z-index:2;
	top:5px; 
	left:203px;
	height:20px;
	width:21px;
	display:inline-block;
	text-align:center;
	cursor:pointer;
	border:1px solid #000000;
	padding-top:1px;
	box-sizing:border-box;
}
.filtersearchclearbuttonshort {
	left:158px;
}
.filtersearchclearbutton:hover,
.filtersearchclearbuttonshort:hover{ background-color:#FE8800;}

.filterisactive { background-color:#FE8800; color:#ffffff;}
.filterisactive option { background-color:#ffffff; color:#000000;}



table.filterresultstable {
	font-size:13px;
	color:#000000;
	border-spacing:0px;
	border-collapse:collapse;
	table-layout: fixed;
	width:100%;
	box-sizing:border-box !important;
	margin-top:3px;
	border-top: 1px solid #ccc;
}

table.filterresultstable thead tr,
table.filterresultstable tfoot tr {
	background-color:#efefef;
	height:30px;
}
table.filterresultstable thead tr th,
table.filterresultstable tfoot tr td{
	font-weight:bold;
	border-bottom: 1px solid #ccc;
}

table.filterresultstable tbody tr {
	height:40px;
}

table.filterresultstable tbody tr td{
	border-bottom: 1px solid #ccc;
}

table.filterresultstable thead tr th:first-child,
table.filterresultstable tfoot tr td:first-child,
table.filterresultstable tbody tr td:first-child {padding-left:5px;}


table.filterresultstable thead tr th:last-child,
table.filterresultstable tfoot tr td:last-child,
table.filterresultstable tbody tr td:last-child {padding-right:5px;text-align:right;}


table.table-2023 thead tr th:last-child,
table.table-2023 tfoot tr td:last-child,
table.table-2023 tbody tr td:last-child {padding-right:5px;text-align:left;}

.orderbyisactive { background-color:#FE8800; color:#ffffff;padding:6px 6px 6px 4px;display:inline-block; width:calc( 100% - 12px ); }

.lineclamp2 {
	 display: -webkit-box; 
	 -webkit-line-clamp: 2; 
	 -webkit-box-orient: vertical; 
	 overflow: hidden;
}
.lineclamp3 {
	 display: -webkit-box; 
	 -webkit-line-clamp: 3; 
	 -webkit-box-orient: vertical; 
	 overflow: hidden;
}

.single-select,
.single-text {
	font-family: inherit; 
	font-size: inherit; 
	font-weight: inherit; 
	
	box-sizing:border-box;
	display: inline;
	border: 1px solid #000;
	border-color-left: #666;
	border-color-top: #666;
	border-radius:4px;
	padding:2px 0 0 3px ;
	margin:0;
	height: 24px;
	width:100%;
}

.single-select {
	padding-left:0;
}




table.pagertable {
	font-size:13px;
	color:#000000;
	border-spacing:0px;
	border-collapse:collapse;
	table-layout: fixed;
	width:100%;
	box-sizing:border-box !important;
	margin-top:3px;
	border-top: 1px solid #ccc;
}

table.pagertable thead tr,
table.pagertable tfoot tr {
	background-color:#efefef;
	height:30px;
}
table.pagertable thead tr th,
table.pagertable tfoot tr td{
	font-weight:bold;
	border-bottom: 1px solid #ccc;
}

table.pagertable tbody tr {
	height:40px;
}

table.pagertable tbody tr td{
	border-bottom: 1px solid #ccc;
}

table.pagertable thead tr th:first-child,
table.pagertable tfoot tr td:first-child,
table.pagertable tbody tr td:first-child {padding-left:5px;}


table.pagertable thead tr th:last-child,
table.pagertable tfoot tr td:last-child,
table.pagertable tbody tr td:last-child {padding-right:5px;}


table.simpletable {
	font-size:13px;
	color:#000000;
	border-spacing:0px;
	border-collapse:collapse;
	table-layout: fixed;
	width:100%;
	box-sizing:border-box !important;
	margin-top:3px;
	border-top: none !important;
}

table.simpletable thead tr,
table.simpletable tfoot tr {}
table.simpletable thead tr th,
table.simpletable tfoot tr td{
	font-weight:bold;
}

table.simpletable tbody tr {
	height:auto;
}

table.simpletable tbody tr td{
	border-bottom: none !important; 
}

table.simpletable thead tr th:first-child,
table.simpletable tfoot tr td:first-child,
table.simpletable tbody tr td:first-child {}


table.simpletable thead tr th:last-child,
table.simpletable tfoot tr td:last-child,
table.simpletable tbody tr td:last-child { }


.autocomplete-suggestions {
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.1);
    font-size: .875em;
    margin-left: 1px;
    clear: both;
    position: relative;
}
.autocomplete-suggestion {
    position: relative;
    cursor: pointer;
}
.autocomplete-selected {
    background-color: #EBEEF4;
}
.autocomplete-suggestions strong {
    font-weight: 700;
}
.suggestion-img {
    float: left;
    height: 40px;
    line-height: 40px;
    margin: 4px 8px 0 6px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    width: 40px;
}
.suggestion-img img {
    max-width: 100%;
    max-height: 40px;
    display: block;
}
.suggestion-wrapper {
    display: block;
/*    height: 48px;*/
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    vertical-align: middle;
    line-height: 16px;
    padding: 5px 2px 2px 2px;
}
.suggestion-value {
    display: block;
    line-height: normal;
    font-weight: 700;
}
.sub-text {
    color: #999;
    font-size: 11px;
    font-weight: normal;
}

