@import url(https://fonts.googleapis.com/css?family=Noto+Sans:300,400,600,700);
@import url(https://fonts.googleapis.com/css?family=Cormorant:300,400,600);
@import url(https://fonts.googleapis.com/css?family=Great+Vibes:300,400,600);

/* COLLIERS COLORS

    Blue (upper left): #1082CA
    Blue (lower left): #0C1E56
    Yellow (stripe):   #FEB91C
    Red (stripe):      #E6151C
    Blue (stripe):     #107FC6
    White (letters):   #FFFFFF

    --primary-color: #107FC6;
    --warning-color: #FEB91C;
    --danger-color: #E6151C;
 */

/* ORE FINANCIAL COLORS
    Header Background   rgba(34,46,46,0.9)  #222E2E
    Header Text rgba(255,255,255,1)
    Banner Overlay  rgba(50,69,68,0.8)  #324544
    Page Text Color rgba(31,37,38,0.75) #1F2526
    Page Link Color rgba(31,37,38,1)    #1F2526
    Page Meta Color rgba(26,26,26,0.4)  #1A1A1A
    Heading 1 Color rgba(31,37,38,1)    #1F2526
    Heading 2 Color rgba(31,37,38,1)    #1F2526
    Heading 3 Color rgba(31,37,38,1)    #1F2526
    Pre Footer Background   rgba(50,69,68,1)    #324544
    Footer Background   rgba(34,46,46,1)    #222E2E

    Fonts   Cormorant

    --primary-color: #107FC6;
    --warning-color: #FEB91C;
    --danger-color: #E6151C;
 */

:root {
	--primary-color: #107fc6;
	--warning-color: #feb91c;
	--danger-color: #e6151c;
	--alert-text: Black;
}

html {
	position: relative;
	min-height: 100%;
}
body {
	/* font-family:"Noto Sans","Verdana", "sans-serif"; */
	margin-top: 75px;
	margin-bottom: 30px;
    padding: 0 1em!important;
}
.container-fluid {
	padding: 15px;
}

/* BRANDING */
#site-logo {
	max-height: 50px;
}
#site-title {
	font-family: "Cormorant", "Verdana", "sans-serif";
	display: inline;
	vertical-align: middle;
}

/* SESSION TIMEOUT DIALOG */

.ui-dialog {
	width: 350px !important;
}

/* NAVIGATION */
nav {
	/*background-color: var(--primary-color);*/
	background-color: rgba(34, 46, 46, 0.9);
	font-family: "Cormorant", "Verdana", "sans-serif";
	font-size: 1.1em;
}
nav h2 {
	color: White;
}
.nav-link {
	padding: 0.5rem 0.75rem;
	color: rgba(31, 37, 38, 1);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}
.navbar-toggler {
	border-color: White !important;
}

/* GENERAL LAYOUT */
#login {
	width: 300px;
	margin-left: auto;
	margin-right: auto;
}

main {
	margin-left: 25px;
	margin-right: 25px;
}

.warning-text {
	text-align: center;
	font-style: italic;
	font-weight: lighter;
	font-size: .9em;
	color: Silver;
}

.ellipsis {
	overflow: hidden;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: block;
	white-space: nowrap;
}

/* HACK - COUNTERACTS BOOTSTRAP APPLYING A -15px MARGIN TO NOTIFICATIONS */
.notifications {
	margin-left: 0px;
	margin-right: 0px;
}

footer {
	position: absolute;
	bottom: 0px;
	right: 0px;
	left: 0px;

	/* Set the fixed height of the footer here */
	height: 30px;
	line-height: 30px; /* Vertically center the text there */

	background-color: White;
	border-top: 1px solid rgba(0, 0, 0, 0.1);

	font-family: "Cormorant", "Verdana", "sans-serif";
	font-size: 1em;
	padding-right: 50px;
	padding-left: 50px;
}

/* BUTTON COLORS */
.btn-primary {
	/*background-color: var(--primary-color);*/
}
.btn-warning {
	/*background-color: var(--warning-color);*/
}
.btn-danger {
	/*background-color: var(--danger-color);*/
}

@keyframes fade {
	from {
		opacity: 1.0;
	}
	50% {
		opacity: 0.2;
	}
	to {
		opacity: 1.0;
	}
}

@-webkit-keyframes fade {
	from {
		opacity: 1.0;
	}
	50% {
		opacity: 0.2;
	}
	to {
		opacity: 1.0;
	}
}

.blink {
	display: inline-block;
	animation: fade 1500ms infinite;
	-webkit-animation: fade 1500ms infinite;
	color: Red;
	text-align: center;
	width: 100%;
	background: Gainsboro;
	height: 30px;
	line-height: 30px;
}
.queue_complete {
	display: inline-block;
	color: Green;
	text-align: center;
	width: 100%;
	background: Gainsboro;
	height: 30px;
	line-height: 30px;
}

.marketing-actions {
	padding-bottom: 20px;
}

/* PREVENT DROPDOWN CARETS FROM WRAPPING IN SMALLER VIEWPORTS */
nav a {
	white-space: nowrap;
}
nav .dropdown-menu {
	min-width: 50px;
}
nav .dropdown-searchable {
	min-width: 250px;
}

/* ALERT TEXT */
.alert-danger,
.alert-warning,
.alert-success,
.alert-info {
	color: var(--alert-text);
}

/* INPUT HIGHLIGHTING */
.input-alert {
	border: #ff0000 1px solid;
}

/* TABLE TWEAKS */
.table-hover tbody tr:hover td {
	background-color: GhostWhite;
}
.no-top-border {
	border-top: none !important;
}
table.table td {
	word-break: break-word;
}

tfoot {
	display: table-header-group !important;
}

.required {
	padding-bottom: 3px;
	font-size: 10px;
	color: Red;
}

/* TAB TWEAKS */
.nav-tabs .nav-brand .heading {
	line-height: 1.6;
	margin-bottom: 0;
}
.nav-tabs {
	/* margin-left: 7px;
	margin-right: 7px; */
}
.tab-content {
	/* margin-left: 7px;
    margin-right: 7px; */
	padding: 25px;

	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

/* LAYOUT TWEAKS */
.form-control {
	padding: .375rem .5rem;
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
	padding-left: 7px !important;
	padding-right: 7px !important;
}
/* HACK - FOR NESTED ROWS */
.extra-padding {
	padding-left: 14px !important;
	padding-right: 14px !important;
}

.dropzone {
	padding: 0px;
}

/* TABLE WITH INNER BORDERS ONLY */

.table-no-outside-border tr td:first-child {
	border-left: 0 !important;
}
.table-no-outside-border {
	border-top: 0 !important;
	border-left: 0 !important;
	border-right: 0 !important;
}
.table-no-outside-border tr td:last-child {
	border-right: 0 !important;
}
.cell-no-left-border {
	border-left: 0 !important;
}

/* DATATABLE TWEAKS */
#datatable_wrapper .top {
	height: 45px;
}
#datatable_wrapper .top #datatable_length {
	padding-top: 3px;
}
#datatable_wrapper .toolbar {
	width: 100%;
}
#datatable_wrapper .toolbar input {
	width: 300px !important;
}

#datatable_wrapper .dataTables_processing {
	top: 75px;
	background: none;
	opacity: 0.5;
	font-size: 500px;
	z-index: 9 !important;
}

/* Input Search Inline indicators */
.datatable-global-search .search-indicator,
.datatable-global-search .clear-filter,
#datatable .input-group span.search-indicator,
#datatable .input-group span.clear-filter {
	display: none;
	position: absolute;
	right: 5px;
	top: 12px;
	background: #777;
	color: #fff;
	line-height: 14px;
	border-radius: 55%;
	width: 16px;
	height: 16px;
	text-align: center;
	z-index: 11;
	font-size: 16px;
	cursor: pointer;
}
/* Search-Indicator specific */
.datatable-global-search .search-indicator,
#datatable .input-group span.search-indicator {
	line-height: 16px;
	font-size: 11px;
	right: 5px;
	top: 12px;
	background: #007bff;
	z-index: 10;
}
/* Global-search specific */
.datatable-global-search .clear-filter,
.datatable-global-search .search-indicator {
	right: 150px;
}
.datatable-global-search .search-indicator.active,
.datatable-global-search .clear-filter.active,
#datatable .input-group span.search-indicator.active,
#datatable .input-group span.clear-filter.active {
	display: block;
}
/* Tighten space on datatables */
#datatable.dataTable tbody th,
#datatable.dataTable tbody td {
	padding: 2px 4px;
}
#datatable.dataTable {
	font-size: 14px;
}
table.dataTable tfoot th,
table.dataTable tfoot td {
	padding: 2px;
}
/* Maintain side padding for collapsed columns */
#datatable.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child,
#datatable.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child {
	padding-left: 30px;
}
/* Prevent text in columns from wrapping */
.nowrap {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/* JSTREE TWEAKS */
.jstree-default .jstree-icon {
	padding: 2px;
}

/* BOOTSTRAP COMBOBOX */
.form-search .combobox-container,
.form-inline .combobox-container {
	display: inline-block;
	margin-bottom: 0;
	vertical-align: top;
}
.form-search .combobox-container .input-group-text,
.form-inline .combobox-container .input-group-text {
	width: auto;
}
/*.combobox-selected .caret {
    display: none !important;
}*/
.combobox-selected .dropdown-toggle::after {
	display: none;
}
/* :not doesn't work in IE8 */
.combobox-container:not(.combobox-selected) .icon-remove {
	display: none;
}
.typeahead-long {
	max-height: 300px;
	overflow-y: auto;
}
.control-group.error .combobox-container .add-on {
	color: #b94a48;
	border-color: #b94a48;
}
.control-group.error .combobox-container .caret {
	border-top-color: #b94a48;
}
.control-group.warning .combobox-container .add-on {
	color: #c09853;
	border-color: #c09853;
}
.control-group.warning .combobox-container .caret {
	border-top-color: #c09853;
}
.control-group.success .combobox-container .add-on {
	color: #468847;
	border-color: #468847;
}
.control-group.success .combobox-container .caret {
	border-top-color: #468847;
}
.typeahead {
	width: 100%;
	padding: .5rem 1rem .5rem 1rem;
}

.twitter-typeahead,
.tt-input {
	width: 100% !important;
}

/* PROPERTIES */
#photoBanner {
	/*background-size:cover;*/
	background-size: 33.3334% auto, 33.3334% auto, 33.3334% auto !important;
	background-repeat: no-repeat !important; /*repeat-x;*/
	min-height: 300px !important;
}

.property-photo {
	min-width: 99%;
	/*min-height: 99%;*/
}
.marketing-icon {
	background-image: url("../images/reallook-logo.png");
	float: left;
	position: relative;
	width: 32px;
	height: 24px;
	margin-top: -29px;
	margin-left: 4px;
}
.setting-photo {
	margin-top: -42px;
	position: relative;
	float: right;
	margin-right: 4px;
}
.img-preview {
	overflow: hidden;
	width: 160px;
	height: 160px;
	margin: 10px;
	border: 1px solid red;
}
.setting-photo .dropdown-menu .dropdown-item:hover {
	background-color: #6c757d;
}

.setting-photo .dropdown-menu .dropdown-item {
	padding-right: 2.5rem;
}

.modal-cont .multiselect-container > li > a > label {
	font-weight: unset !important;
	font-size: 12px !important;
	padding: 3px 20px 3px 10px !important;
}

/* ORDERS */

.signature {
	/*background-color: var(--primary-color);*/
	/* font-family: "Great Vibes", "Verdana", "sans-serif"; */
	/* font-size: 1.8em; */
	/* text-align: center; */
}

@media screen and (max-width: 360px) {
	main {
		margin-left: 0px;
		margin-right: 0px;
	}
	.container-fluid {
		padding: 5px;
	}
	#datatable_wrapper .toolbar {
		margin-top: 9px;
	}
	#datatable_wrapper .toolbar input {
		width: 240px !important;
	}
	#datatable_wrapper .length_text {
		display: none;
	}
	.tab-content {
		padding: 5px;
	}
}

/* LOGS */

#datatable.logs-table tr.child span.dtr-title {
	display: block;
}

/* AMENITY GLPYHS */

.amenity {
	font-size: 35px;
}
#amenitiesBanner {
	text-align: center;
}

img.amenity-icon,
svg.amenity-icon {
	max-width: 60px;
	max-height: 60px;
	width: 100%;
	height: 100%;
}
svg.amenity-icon path {
	fill: rgba(0, 0, 0, 0.25);
}

#amenities input.amenity {
	position: relative;
}

/* Dropdown Submenus */
.dropdown-submenu {
	position: relative;
}
.dropdown-submenu a::after {
	position: absolute;
	right: 6px;
	top: .8em;
}
.dropdown-submenu .dropdown-menu {
	top: 0;
	margin-left: .1rem;
	margin-right: .1rem;
}
.navbar-expand-md .navbar-nav .dropdown-submenu > .dropdown-menu {
	position: relative;
}

/* LogData field controls */
.update_row,
.cancel_update_row {
	/*display: none;*/
}
.log-field-table tr.is-editing {
	background-color: #ffd70024;
}
.headings-on-top thead {
	display: none;
}
.table-processing {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	text-align: center;
	padding: 20px;
	display: none;
}
.table-processing.active {
	display: block;
}
.table-processing i.fa {
	position: absolute;
	z-index: 2;
}
div[id$="_container"] {
	position: relative;
}
input.has-error,
textarea.has-error,
select.has-error {
	border: 1px solid red;
	background-color: rgba(255, 0, 0, 0.1);
}

/* CONTRACTS */

.line-item-table {
}
.line-item-table th {
	padding: 10px 5px;
}
.line-item-table td {
	padding: 0px;
}
.line-item-table td input {
	padding: 5px;
}
.line-items-title {
	display: flex;
	padding: 0 10px;
}
.line-items-title h5 {
	margin-bottom: 0;
}
.add-line-item {
	background: #efefef;
	border: none;
	padding: 0 12px;
	margin: 0 0 0 10px;
}
.add-period {
	background: #efefef;
}
.add-period,
.period-tab {
	padding: 0 12px;
	margin-right: 5px;
	border: none;
	outline: none;
	color: #555;
}
.add-line-item:focus,
.add-period:focus,
.period-tab:focus {
	outline: none;
	box-shadow: 0px -4px 0px rgba(255, 129, 0, 0.25);
}
.period-details {
}
.period-top {
	padding: 10px;
}
.period-title {
	display: flex;
	justify-content: space-between;
}
.period-title h4,
.period-title .remove-period {
	display: inline-block;
}
#period_line_items .line-item-table-container {
	/*height: 300px;*/
	/*overflow-y: scroll;*/
	/*background-color: #fafafa;*/
}
#period_line_items table td.line-items-index {
	word-break: normal;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 39px;
	color: #555;
	padding: 0 5px;
}
#period_line_items table td {
	border-top: 1px solid #bbb;
	border-right: 1px solid #999;
	max-width: 70px;
}
#period_line_items table th {
	border-bottom: 0;
	font-size: 12px;
	color: #555;
}
#period_line_items .form-control {
	border: none;
	background: transparent;
	font-size: 14px;
}
#period_line_items .form-control:focus {
	outline: none;
	box-shadow: none;
}
#period_line_items tbody {
	background-color: #fafafa;
}
/*.line-item-table tr.selected {*/
/*    background-color: red;*/
/*}*/
.line-items-empty {
}

.line-item-table {
	margin-bottom: 0;
	font-size: 14px;
}
.line-item-table th.interval {
	min-width: 100px;
}
.line-item-count {
	line-height: 24px;
	display: inline-block;
	margin-left: 5px;
}
.line-item-actions {
	text-align: center;
}
.remove-line-item {
	top: 4px;
	position: relative;
}

div#ui-datepicker-div {
	z-index: 9999 !important;
}
.modal-dialog.modal-xl {
	max-width: 98%;
}
.log-field-actions button.btn {
	font-size: 12px;
	padding: 2px 4px;
}

/* VIDEOS */

/* VIDEOS - SIDEBAR */
.sidebar {
	font-size: 16px;
}
.sidebar-link {
	display: block;
	padding: 8px 10px;
}
.sidebar-link.active {
	background-color: #efefef;
}
.video {
}
.video .video-details {
}
.video .video-thumbnail {
	max-width: 100%;
}
.video.disabled {
	color: #aaa;
}

/* PAGINATION */
ul.pagination {
	font-size: 20px;
}
ul.pagination li {
}
ul.pagination li a,
ul.pagination li span {
	padding: 5px;
}
ul.pagination li.active {
}
ul.pagination li.disabled {
}

/* INVOICES */
/*.input-invalid,*/
/*.input-valid {*/
/*    font-size: 10px;*/
/*}*/
.input-invalid {
	color: red;
	font-size: 10px;
}
.input-valid {
	color: green;
	font-size: 12px;
}
.error.alert {
	margin: 0;
}
.error.alert::before {
	content: '';
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #f5c6cb;
	position: absolute;
	top: -9px;
	right: 10px;
}
.invoice-item {
}
.invoice-item .form-group {
	margin-bottom: 0;
}
/*.invoice-item .invoice-item-actions {*/
/*    vertical-align: middle;*/
/*}*/

.table-striped-double tbody .invoice-item.selected > td {
	background-color: #fff8c4;
}

.table-striped-double > tbody > tr:nth-child(4n-1) > td,
.table-striped-double > tbody > tr:nth-child(4n) > td,
.table-striped-double > tbody > tr:nth-child(odd) > th {
	background-color: #f9f9f9;
}
tr.invoice-item-notes > td {
	border-top: none;
}

/*
 * INVOICE CREDITS
 */
#line-items-table table.invoice-item-details {
	background-color: transparent;
}
.invoice_credits-container {
	background: #eee;
	padding: 5px 0.75rem;
}
.invoice_credits-container h4 {
	font-size: 1.2rem;
}

#invoices_form table.is-loading {
	position: relative;
}
#invoices_form table.is-loading::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.25;
	z-index: 2;
	background-image: url('/images/loading.gif');
	background-repeat: no-repeat;
	background-position: 20px 20px;
	background-size: 40px 40px;
}

.invoice-item-pagination,
#invoice-search {
	display: flex;
	flex-direction: row;
	line-height: 1.5;
	padding: .25rem .5rem;
	justify-content: flex-end;
}

.invoice-item-pagination button:hover:not([disabled]) {
	color: white !important;
	/*border: 1px solid #111;*/
	background-color: #585858;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
	background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
	background: -moz-linear-gradient(top, #585858 0%, #111 100%);
	background: -ms-linear-gradient(top, #585858 0%, #111 100%);
	background: -o-linear-gradient(top, #585858 0%, #111 100%);
	background: linear-gradient(to bottom, #585858 0%, #111 100%);
}

#invoice-search {
	position: relative;
	display: flex;
	flex-direction: row;
	margin: 0;
}
#invoice-search input,
#invoice-search .search {
	display: inline-block;
}
.invoice-item-pagination .page-indicator {
	display: inline-block;
	line-height: 3;
	padding: 0 .5rem;
}

#invoice-search .results {
	position: absolute;
	background: #fff;
	top: 44px;
	right: 0;
	border-radius: 4px;
	border: 1px solid #efefef;
	padding: 10px;
	max-width: 500px;
	width: 100vw;
	z-index: 1;
}

#invoice-search .results table th,
#invoice-search .results table td {
	padding: 5px;
}
#invoice-search .results table td {
	cursor: pointer;
}

#invoice-search .results .hide-results {
	position: absolute;
	top: 1px;
	right: 1px;
	padding: 4px;
	line-height: 0.8;
}

#invoice-search .result {
}

#contract_periods {
	width: 100%;
}

.jumplink {
}