@import url(https://fonts.bunny.net/css?family=lato:100,300,400,500,700|lexend-deca:100,300,400,500,700);

/* ===========================
   PHAROS CSS VARIABLES
   Unified design system
   =========================== */


@media (max-width: 1024px) {
	:root {
		--sidebar-width: 220px;
	}
}

/* ===========================
   LEGACY STYLES
   Below are styles from previous versions.
   TODO: Audit and migrate to use CSS variables
   =========================== */

@media print {
	body * {
		-webkit-print-color-adjust: exact;
	}

	table.dataTable tr.group td {
		color: var(--white);
		font-weight: bold;
		background-color: var(--blue) !important;
	}

	a[href]:after {
		content: "" !important;
	}

	#action_header {
		display: none;
	}

	#thetitle {
		flex: 1;
	}

	#download {
		display: none;
	}

	.label {
		border: none !important;
	}

	table.dataTable thead .sorting:after {
		content: "" !important;
	}
}

#availableTimes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
	justify-items: center;
	margin-bottom: 10px;
}

#availableTimes .time {
	border-radius: 5px;
	border: 1px solid var(--dark-blue);
	color: var(--dark-blue);
	padding: 5px 7px;
	margin: 7px 5px;
	cursor: pointer;
	height: fit-content;
	text-align: center;
	min-width: 72px;
}

#availableTimes .time .standby-text {
	font-size: 0.8em;
}

#availableTimes .time:hover {
	background-color: var(--dark-blue);
	color: var(--white);
}

#availableTimes .time.selected {
	background-color: var(--dark-blue);
	color: var(--white);
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
	display: inline-block;
	height: auto;
	width: auto;
}

.air-datepicker.page-picker {
	width: 324px !important;
	margin: 0 auto;
}

.air-datepicker-body--day-name {
	color: #000 !important;
	font-weight: bold;
}

.opaczero {
	opacity: 0;
}

.dataTables_scrollBody {
	/* overflow:visible !important; */
}

div#datatables_processing {
	background-color: var(--dark-grey);
	color: var(--white);
	left: 25%;
	z-index: 999;
	width: 50%;
	margin: 0;
	font-size: 2em;
}

.form-control::-moz-placeholder {
	color: var(--grey);
	opacity: 1;
	filter: alpha(opacity=100);
}

.form-control:-moz-placeholder {
	color: var(--grey);
	opacity: 1;
	filter: alpha(opacity=100);
}

.form-control::-webkit-input-placeholder {
	color: var(--grey);
	opacity: 1;
	filter: alpha(opacity=100);
}

.form-control:-ms-input-placeholder {
	color: var(--grey);
	opacity: 1;
	filter: alpha(opacity=100);
}

.form-control {
	background-color: #ffffff;
	border: 1px solid var(--grey);
	border-radius: 4px;
	color: #565656;
	padding: 8px 12px;
	height: 37px;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-control:focus {
	background-color: #ffffff;
	border: 1px solid #aaaaaa;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0 !important;
	color: #333333;
}

.paging_input .DT_paginate_button {
	border-radius: 25px;
	margin: 0 2px;
	color: #797979;
	position: relative;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
}

.bs-searchbox .form-control {
	margin-left: 0px !important;
}

@media (min-width: 992px) {
	.typo-line {
		padding-left: 140px;
		margin-bottom: 40px;
		position: relative;
	}

	.typo-line .category {
		transform: translateY(-50%);
		top: 50%;
		left: 0;
		position: absolute;
	}
}

html {
	/*overflow-y: scroll;*/
}

body {
	position: relative;
}

body.modal-open {
	overflow-y: scroll;
	position: fixed;
	width: 100vw;
}

.sticky-header {
	position: sticky;
	top: 0;
	z-index: 109;
	height: 45px;
}

.sticky-header .card .content>h3 {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}

.buttons-flex {
	display: flex;
}

.buttons-flex .btn {
	margin: 5px !important;
}

label.error {
	font-size: 12px;
	font-weight: normal;
	color: red;
}

.nav-container h3 {
	margin-bottom: 10px !important;
}

div.DTE_Bubble_Background {
	z-index: 997 !important;
}

div.DTE_Bubble {
	z-index: 998 !important;
}

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

/*modal fullscreen */

.modal.modal-fullscreen {
	/* Maximize the main wrappers on the screen */
	/* Make the parent wrapper of the modal box a full-width block */
	/* Remove borders and effects on the content */
	/**
	 * /!\ By using this feature, you force the header and footer to be placed
	 * in an absolute position. You must handle by yourself the margin of the
	 * content.
	 */
}

.modal.modal-fullscreen .modal-dialog,
.modal.modal-fullscreen .modal-content {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.modal.modal-fullscreen .modal-dialog {
	margin: 0;
	width: 100%;
	animation-duration: 0.6s;
}

.modal.modal-fullscreen .modal-content {
	border: none;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: inherit;
	-moz-box-shadow: inherit;
	-o-box-shadow: inherit;
	box-shadow: inherit;
	/* change bg color below */
	/* background:#1abc9c; */
}

.modal.modal-fullscreen.force-fullscreen {
	/* Remove the padding inside the body */
}

.modal.modal-fullscreen.force-fullscreen .modal-body {
	padding: 0;
}

.modal.modal-fullscreen.force-fullscreen .modal-header,
.modal.modal-fullscreen.force-fullscreen .modal-footer {
	left: 0;
	position: absolute;
	right: 0;
}

.modal.modal-fullscreen.force-fullscreen .modal-header {
	top: 0;
}

.modal.modal-fullscreen.force-fullscreen .modal-footer {
	bottom: 0;
}

div.iziModal-content div.calling-card-bottom {
	margin: 0px !important;
}

.input-group-btn:last-child>.dropdown-toggle {
	height: 38px;
}

div.iziModal-content .dropdown.bs3.open {
	margin-bottom: 90px;
}

.loader {
	width: 100%;
	height: 100vh;
	background-color: #f6f6f6;
	opacity: 0.9;
	position: fixed;
	z-index: 998;
	top: 0;
	left: 0;
}

.loader-container {
	width: 80px;
	height: 100px;
	margin: 100px auto;
	margin-top: calc(100vh / 2 - 50px);
}

.block {
	position: relative;
	box-sizing: border-box;
	float: left;
	margin: 0 10px 10px 0;
	width: 12px;
	height: 12px;
	border-radius: 3px;
	background: #a1a1a1;
}

.block:nth-child(4n + 1) {
	animation: wave 2s ease 0s infinite;
}

.block:nth-child(4n + 2) {
	animation: wave 2s ease 0.2s infinite;
}

.block:nth-child(4n + 3) {
	animation: wave 2s ease 0.4s infinite;
}

.block:nth-child(4n + 4) {
	animation: wave 2s ease 0.6s infinite;
	margin-right: 0;
}

@keyframes wave {
	0% {
		top: 0;
		opacity: 1;
	}

	50% {
		top: 30px;
		opacity: 0.2;
	}

	100% {
		top: 0;
		opacity: 1;
	}
}

/* Not Allowed */
.row-metal-fixed {
	background: #2d3e4d;
	background: linear-gradient(to bottom, #2d3e4d 0, #3c4d5c 50%, #4b5c6a 100%);
	background-attachment: fixed;
	height: 100%;
	text-align: center;
	color: #fff;
}

.illustration-access-denied {
	background: url(../img/illustration-access-denied.png);
	width: 243px;
	height: 290px;
	display: inline-block;
}

.illustration-account-blocked {
	background: url(../img/illustration-account-blocked.png);
	width: 281px;
	height: 290px;
	display: inline-block;
}

.illustration-account-cancelled {
	margin-top: 3px;
	background: url(../img/illustration-account-cancelled.png);
	width: 290px;
	height: 290px;
	display: inline-block;
}

.access-denied {
	font-size: 36px;
	margin-top: 8px;
	font-weight: 300;
}

.access-denied-subtext {
	font-size: 16px;
	margin-top: 12px;
	font-weight: 300;
}

.row-eq-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.no-gutter>[class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

.no-gutter {
	margin-left: 0;
	margin-right: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
	margin: 0 !important;
}

h2.title {
	color: #595959;
	font-size: 30px;
	text-align: center;
	font-weight: 600;
	text-transform: none;
	position: relative;
	margin: 0 0 0.4em;
	padding: 0;
	display: block;
}

.logo-text {
	font-size: 15px;
	display: block !important;
}

.content-header {
	-webkit-box-shadow: 0 1px 1px 1px #eee;
	box-shadow: 0 1px 1px 1px #eee;
}

.reject-error {
	background-color: #f0f0f0;
	margin: 10px auto;
	width: 100%;
	overflow: hidden;
	padding: 10px 20px;
	color: gray;
	font-size: 16px;
	font-weight: 300;
	display: block;
}

.reject-error:before {
	content: "!";
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #ea7d7d;
	color: #fff;
	line-height: 24px;
	text-align: center;
	margin-right: 10px;
}

.reject-info {
	background-color: #f0f0f0;
	margin: 10px auto;
	width: 100%;
	overflow: hidden;
	padding: 10px 20px;
	color: gray;
	font-size: 16px;
	font-weight: 300;
	display: block;
}

.reject-info:before {
	content: "i";
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #007bff;
	color: #fff;
	line-height: 24px;
	text-align: center;
	margin-right: 10px;
	font-style: italic;
	font-weight: bold;
}

.iziModal-content {
	font-size: 16px;
	font-weight: 300;
}

.iziModal-content input,
.iziModal-content textarea {
	font-size: 14px;
}

.iziModal-content label {
	text-align: left;
	font-size: 12px;
	margin-bottom: 5px;
	text-transform: capitalize;
	font-weight: 400;
	color: #888;
	display: block;
}

#modal-alert .iziModal-content {
	font-size: 14px;
}

.calendar-tooltip {
	border-color: rgba(255, 255, 255, 0.3);
	background-color: rgba(51, 51, 51, 0.8);
}

.calendar-tooltip .qtip-titlebar {
	background-color: #000;
	color: #fff;
}

.calendar-tooltip .qtip-content {
	font-size: 12px;
	color: #fff;
}

.calendar-tooltip .dealer-tooltip {
	color: #fff;
}

.calendar-tooltip .dealer-tooltip:hover {
	text-decoration: underline;
}

.settings-tooltip {
	border-color: rgba(255, 255, 255, 0.3);
	background-color: rgba(51, 51, 51, 0.8);
}

.settings-tooltip .qtip-titlebar {
	background-color: var(--dark-grey);
	color: var(--white);
}

.settings-tooltip .qtip-content {
	font-size: 12px;
	color: var(--white);
	line-height: 14px;
}

.tooltip2 {
	position: relative;
	/* display: inline-block;
	  border-bottom: 1px dotted black; */
}

.tooltip2 .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: var(--dark-grey);
	color: var(--white);
	text-align: center;
	border-radius: 6px;
	padding: 5px;
	position: absolute;
	z-index: 999;
	bottom: 125%;
	/*left: 50%;*/
	/*margin-left: -60px;*/
	font-size: 11px;
	line-height: 13px;
	font-weight: 500;

	/* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
	opacity: 0;
	transition: opacity 1s;
}

.tooltip2 .tooltiptext::after {
	content: " ";
	position: absolute;
	top: 100%;
	/* At the bottom of the tooltip */
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent transparent transparent;
}

.tooltiptext .dealer-tooltip {
	color: var(--white);
}

.tooltip2:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

.tog {
	font-size: 2.5em;
	color: var(--blue);
	cursor: pointer;
}

.fc-title {
	text-shadow: none;
	margin-left: 3px;
}

.fc-event {
	cursor: pointer;
	padding: 3px;
	margin-top: 3px;
	font-size: 12px;
	width: -webkit-fill-available;
}

.fc-event:hover .fc-title {
	color: #fff;
	text-shadow: none;
}

.available {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 10px;
}

h5.info-text {
	text-align: center;
}

a[data-toggle="tab"] i {
	font-weight: 300;
	font-size: 25px;
}

a:focus {
	outline: none;
}

.all-icons [class^="pe-"] {
	font-size: 40px;
}

.all-icons input {
	border: 0;
}

.all-icons .font-icon-detail {
	text-align: center;
	padding: 45px 0 30px;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	margin: 15px 0;
}

.all-icons .font-icon-container a {
	padding: 5px 0;
	display: block;
	color: #666;
}

.all-icons .font-icon-detail input {
	margin: 25px auto 0;
	width: 100%;
	text-align: center;
	display: block;
	color: #aaa;
	font-size: 13px;
}

.all-icons h5 {
	margin-top: 60px;
}

.all-icons>div>.row:first-child h5 {
	margin-top: 15px;
}

.places-buttons .btn {
	margin-bottom: 30px;
}

.buttons-with-margin .btn {
	margin-bottom: 5px;
}

.animated .img-rounded {
	width: 150px;
	height: 150px;
	overflow: hidden;
	margin: 0 auto;
	display: block;
}

.animated .img-rounded img {
	width: 100%;
}

.rocket-name {
	font-weight: 700;
}

.rocket-time {
	font-size: 12px;
}

.buttons-columnVisibility>a {
	text-align: center;
	margin: 5px;
}

.buttons-columnVisibility.active>a {
	background-color: var(--blue);
	color: var(--white);
}

.buttons-columnVisibility.active>a:hover {
	background-color: var(--blue);
	color: var(--white);
}

.filter_select {
	max-width: 140px;
	float: left;
	margin-right: 5px;
}

.filter_select .dropdown-menu {
	min-width: 185px !important;
}

#thetable,
.theTable {
	margin-top: 20px;
}

.fresh-datatables {
	/* 	margin-bottom: 40px !important; */
}

/*
#datatables .label {
	font-size: 11px !important;
}
*/

.select2-container {
	margin: 10px auto 0;
}

.autocomplete-suggestions {
	border: none;
	background: #fff;
	overflow: auto;
	border: none;
	margin-top: 8px;
	box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.05), 0 0 6px 1px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(0, 0, 0, 0.1);
}

.autocomplete-suggestion {
	padding: 2px 5px;
	white-space: nowrap;
	overflow: hidden;
}

.autocomplete-selected {
	background: #f0f0f0;
}

.autocomplete-suggestions strong {
	font-weight: 400;
	color: #39f;
}

.autocomplete-group {
	padding: 2px 5px;
}

.autocomplete-group strong {
	display: block;
	border-bottom: 1px solid #000;
}

i.strong:before {
	font-weight: 700;
}

.modal {
	z-index: 9000;
}

.shift-green {
	border-color: #87cb16;
}

.shift-orange {
	border-color: #ffa534;
}

.shift-purple {
	border-color: #aa43ff;
}

.shift-blue {
	border-color: #4c58ff;
}

.event-green .demo-card-actions {
	background-color: #87cb16;
}

.event-orange .demo-card-actions {
	background-color: #ffa534;
}

.event-red .demo-card-actions {
	background-color: #fb404b;
}

.event-purple .demo-card-actions {
	background-color: #aa43ff;
}

.event-blue .demo-card-actions {
	background-color: #4c58ff;
}

.event-green.fc-event,
.event-green.label,
.status-green.status-fill {
	background-color: #87cb16;
	color: #fff;
}

.event-orange.fc-event,
.event-orange.label,
.status-orange.status-fill {
	background-color: #ffa534;
	color: #fff;
}

.event-red.fc-event,
.event-red.label,
.status-red.status-fill {
	background-color: #fb404b;
	color: #fff;
}

.event-purple.fc-event,
.event-purple.label,
.status-purple.status-fill {
	background-color: #aa43ff;
	color: #fff;
}

.event-blue.fc-event,
.event-blue.label,
.status-blue.status-fill {
	background-color: #4c58ff;
	color: #fff;
}

.event-info.fc-event,
.event-info.label,
.status-info.status-fill {
	background-color: #23ccef;
	color: #fff;
}

.event-pattern,
.status-fill.status-pattern {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAMklEQVQYV2NkwAL+///vCxJmRJeDSzAybkaRRJZA0YkuAZfEJgGWxCUBl2RkZNyMzdUA3/0bUg8WLrAAAAAASUVORK5CYII=);
}

.status-fill {
	opacity: 1;
}

.status-fill:hover,
.status-fill:hover {
	border-color: transparent;
}

.status-green {
	border-color: var(--green);
	color: var(--green);
}

.status-orange {
	border-color: var(--orange);
	color: var(--orange);
}

.status-red {
	border-color: var(--red);
	color: var(--red);
}

.status-purple {
	border-color: var(--purple);
	color: var(--purple);
}

.status-blue {
	border-color: var(--dark-blue);
	color: var(--dark-blue);
}

.status-info {
	border-color: var(--light-blue);
	color: var(--light-blue);
}

.text-blue {
	color: var(--dark-blue) !important;
}

.text-green {
	color: var(--green) !important;
}

.text-info {
	color: var(--light-blue) !important;
}

.text-purple {
	color: var(--purple) !important;
}

.text-orange {
	color: var(--orange) !important;
}

.text-red {
	color: var(--red) !important;
}

/*
.calling-card-top.event-azure {
  background-color: rgba(35, 204, 239, 0.2);
}
.calling-card-top.event-green {
  background-color: rgba(135, 203, 22, 0.2);
}
.calling-card-top.event-orange {
  background-color: rgba(255, 165, 52, 0.2);
}
.calling-card-top.event-red {
  background-color: rgba(251, 64, 75, 0.2);
}
.calling-card-top.event-pink {
background: -moz-linear-gradient(-45deg,  rgba(250,62,247,0.2) 0%, rgba(208,58,234,0.5) 100%);
background: -webkit-linear-gradient(-45deg,  rgba(250,62,247,0.2) 0%,rgba(208,58,234,0.5) 100%);
background: linear-gradient(135deg,  rgba(250,62,247,0.2) 0%,rgba(208,58,234,0.5) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33fa3ef7', endColorstr='#80d03aea',GradientType=1 );

  color: rgba(114, 0, 112, 1);
}
.calling-card-top.event-purple {
	background-color: rgba(166, 62, 250, 0.2);
}
.calling-card-top.event-blue {
	background-color: rgba(62, 75, 250, 0.2);
}
*/

ul.goals {
	text-align: center;
	justify-content: space-between;
	flex-direction: row;
	display: flex;
	padding-bottom: 20px;
	flex-wrap: wrap;
}

ul.goals li {
	padding: 10px 40px;
	text-align: center;
	font-size: 14px;
	color: #ffffff;
	border-radius: 3px;
	margin: 13px 3px auto 3px;
	flex-grow: 1;
	flex-shrink: 0;
	float: none;
	background-color: #f5f5f5;
}

ul.goals li:last-child {
	border-right: none;
}

span.current_number {
	font-weight: bold;
	font-size: 25px;
}

span.goal_number {}

.goal-card {
	text-align: center;
	padding: 10px 0;
	border: 1px solid #e5e5e5;
}

.goal-total {
	font-size: 150%;
	font-weight: bold;
}

.goal-name {
	color: #c3c3c3;
	text-transform: uppercase;
	font-size: 11px;
}

ul#demos span[class^="event-"] {
	display: inline-block;
	padding: 0 3px;
}

ul#demos,
ul#requests {
	list-style-type: none;
}

ul#demos li,
ul#requests li {
	display: block;
	margin-left: -40px;
	padding-left: 3px;
	margin-bottom: 10px;
	font-size: 12px;
}

table.table-refer td {
	font-size: 12px;
}

/* Bootstrap Select */
.bootstrap-select {
	width: 220px \0;
	/*IE9 and below*/
}

.bootstrap-select>.dropdown-toggle {
	width: 100%;
	padding-right: 25px;
	z-index: 1;
}

.bootstrap-select>select {
	position: absolute;
	bottom: 0;
	left: 0px;
	width: 0.11px;
	height: 100%;
	opacity: 0;
	border: none;
	display: none !important;
}

.bootstrap-select>select.mobile-device {
	position: absolute !important;
	top: 0;
	left: 0;
	display: block !important;
	width: 100%;
	height: 100% !important;
	opacity: 0;
	z-index: 2;
}

.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
	border-color: #b94a48;
}

.bootstrap-select.fit-width {
	width: auto !important;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
	width: 100%;
}

.bootstrap-select.form-control {
	margin-bottom: 0;
	padding: 0;
	border: none;
}

.bootstrap-select.form-control:not([class*="col-"]) {
	width: 100%;
}

.bootstrap-select.form-control.input-group-btn {
	z-index: auto;
}

.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
	float: none;
	display: inline-block;
	margin-left: 0;
}

.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
	float: right;
}

.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
	margin-bottom: 0;
}

.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
	padding: 0;
}

.form-inline .bootstrap-select.btn-group .form-control {
	width: 100%;
}

.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group>.disabled {
	cursor: not-allowed;
}

.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group>.disabled:focus {
	outline: none !important;
}

.bootstrap-select.btn-group.bs-container {
	position: absolute;
}

.bootstrap-select.btn-group.bs-container .dropdown-menu {
	z-index: 1060;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
	display: inline-block;
	overflow: hidden;
	width: 100%;
	text-align: left;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
	position: absolute;
	top: 50%;
	right: 12px;
	margin-top: -2px;
	vertical-align: middle;
}

.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
	width: 100%;
}

.bootstrap-select.btn-group .dropdown-menu {
	min-width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
	position: static;
	float: none;
	border: 0;
	padding: 0;
	margin: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-ms-overflow-style: scrollbar;
	padding-bottom: 20px;
}

.bootstrap-select.btn-group .dropdown-menu li {
	position: relative;
}

.bootstrap-select.btn-group .dropdown-menu li.active small {
	color: #fff;
}

.bootstrap-select.btn-group .dropdown-menu li.disabled a {
	cursor: not-allowed;
}

.bootstrap-select.btn-group .dropdown-menu li a {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.bootstrap-select.btn-group .dropdown-menu li a.opt {
	position: relative;
	padding-left: 2.25em;
}

.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
	display: none;
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
	display: inline-block;
}

.bootstrap-select.btn-group .dropdown-menu li small {
	padding-left: 0.5em;
}

.bootstrap-select.btn-group .dropdown-menu .notify {
	position: absolute;
	bottom: 5px;
	width: 96%;
	margin: 0 2%;
	min-height: 26px;
	padding: 3px 5px;
	background: #f5f5f5;
	border: 1px solid #e3e3e3;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	pointer-events: none;
	opacity: 0.9;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bootstrap-select.btn-group .no-results {
	padding: 3px;
	background: #f5f5f5;
	margin: 0 5px;
	white-space: nowrap;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
	position: static;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
	position: static;
	top: auto;
	margin-top: -1px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
	position: absolute;
	display: inline-block;
	right: 15px;
	margin-top: 2px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
	margin-right: 34px;
}

.bootstrap-select.show-menu-arrow.open>.dropdown-toggle {
	z-index: 1061;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
	content: "";
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid rgba(204, 204, 204, 0.2);
	position: absolute;
	bottom: -4px;
	left: 9px;
	display: none;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
	content: "";
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid white;
	position: absolute;
	bottom: -4px;
	left: 10px;
	display: none;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
	bottom: auto;
	top: -3px;
	border-top: 7px solid rgba(204, 204, 204, 0.2);
	border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
	bottom: auto;
	top: -3px;
	border-top: 6px solid white;
	border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
	right: 12px;
	left: auto;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
	right: 13px;
	left: auto;
}

.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after {
	display: block;
}

.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
	padding: 8px 8px;
}

.bs-actionsbox {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bs-actionsbox .btn-group button {
	width: 50%;
}

.bs-donebutton {
	float: left;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bs-donebutton .btn-group button {
	width: 100%;
}

.bs-searchbox+.bs-actionsbox {
	padding: 0 8px 4px;
}

.bs-searchbox .form-control {
	margin-bottom: 0;
	width: 100%;
	float: none;
}

.bootstrap-select .dropdown-menu {
	border-radius: 0 0 10px 10px;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transform-origin: 50% -40px;
	-moz-transform-origin: 50% -40px;
	-o-transform-origin: 50% -40px;
	-ms-transform-origin: 50% -40px;
	transform-origin: 50% -40px;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 150ms linear;
	-moz-transition: all 150ms linear;
	-o-transition: all 150ms linear;
	-ms-transition: all 150ms linear;
	transition: all 150ms linear;
	margin-top: -20px;
}

.bootstrap-select.open .dropdown-menu {
	margin-top: -1px;
}

.bootstrap-select.dropup .dropdown-menu {
	border-radius: 10px 10px 0 0;
	margin-bottom: -20px;
}

.bootstrap-select.dropup.open .dropdown-menu {
	margin-bottom: -1px;
}

.btn-group.bootstrap-select .dropdown-menu {
	min-width: 100%;
}

.bootstrap-select .dropdown-menu>li:first-child>a {
	border-radius: 0;
	border-bottom: 0 none;
}

.calling-card {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	/*   width: 400px; */
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	border-radius: 10px;
	background-color: #f8f8f8;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}

.calling-card-top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 120px;
	color: #fff;
	padding-right: 20px;
	padding-left: 20px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	background-image: -webkit-linear-gradient(135deg, #56a1cc, #54b5eb);
	background-image: linear-gradient(315deg, #56a1cc, #54b5eb);
}

.calling-card-top .close {
	position: absolute;
	top: 5px;
	right: 10px;
	color: #fff;
	opacity: 1;
}

.calling-card-bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0 20px;
	padding: 10px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border-radius: 10px;
}

.calling-card-footer,
.btn-flex-group {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.iziModal-footer-button i {
	font-size: 24px;
}

.modal-footer {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-direction: normal;
	-moz-box-direction: normal;
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-box-align: end;
	-moz-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.btn-mod {
	font-weight: bold;
	padding: 0;
}

.btn-mod i:before {
	font-weight: 700;
}

.btn-flex {
	/*
	-webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    -webkit-flex-grow: 1;
    flex-grow: 1;
*/
	flex-grow: 1;
	flex-shrink: 0;
	text-align: center;
	margin: 5px;
}

.role-flex-group {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: flex-start;
	justify-content: flex-start;
	-webkit-align-content: flex-start;
	-ms-flex-line-pack: flex-start;
	align-content: flex-start;
	-webkit-align-items: stretch;
	-ms-flex-align: center;
	align-items: stretch;
}

.role-flex {
	align-self: stretch;
	flex: 0 auto;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap-reverse;
	-ms-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}

.role-flex-card {
	align-self: stretch;
	flex: 1 auto;
}

@media screen and (max-width: 991px) {
	.cat-btns li {
		/* 	font-size: 20px; */
		flex-grow: 1;
		flex-basis: 30%;
	}
}

.report-card {
	border: 1px solid #ddd;
	margin-bottom: 20px;
	border-radius: 4px;
	background: #fcfcfc;
	position: relative;
	clear: both;
}

.report-card-header {
	background: #f0f0f0;
	display: block;
	border-radius: 5px 5px 0 0;
	position: relative;
	height: 34px;
	padding: 5px;
}

.report-card-header>a {
	color: #999;
}

.report-card-description {
	font-size: 11px;
	margin: 0;
	padding: 6px 12px;
	color: #777;
	border-top: 1px solid #ddd;
	width: auto;
	display: block;
	max-width: 100%;
}

.primary-name {
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
	font-family: "Open Sans", sans-serif;

	font-size: 22px;
	font-weight: 600;
}

.primary-name.spouse {
	margin-top: 7px;
	font-size: 18px;
	font-weight: 300;
}

.general-info {
	display: inline-block;
	font-family: "Open Sans", sans-serif;
	color: #8f8f8f;
	font-size: 15px;
	font-weight: 400;
}

.general-info.icon {
	margin-right: 3px;
	padding: 7px;
	font-family: "Font Awesome", sans-serif;
	color: #54b5eb;
	font-weight: 400;
}

.general-info-container {
	padding-top: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.general-info-container.last {
	border-bottom-style: none;
}

.fc-mobile-day-text {
	font-size: 14px;
	text-align: center;
	line-height: 16px;
}

.fc-mobile-day-day {
	font-size: 18px;
	text-align: center;
}

td[class^="fc-mobile-item-"] {
	padding: 10px;
	border: 1px solid #ccc;
	border-collapse: collapse;
}

.fc-mobile-item-date {
	width: 50px;
}

.fc-scroller>* {
	overflow: visible;
}

.fc-mobile-table .fc-event {
	display: table-cell !important;
}

.flex-btns {
	text-align: center;
	justify-content: space-between;
	flex-direction: row;
	display: flex;
	flex-wrap: wrap;
}

#statusBtns button {
	margin: 2.5px;
	flex-grow: 1;
	flex-shrink: 0;
	min-width: 13%;
}

#calendarBtns button {
	margin: 2.5px;
	flex-grow: 1;
	flex-shrink: 0;
	opacity: 1;
	flex-basis: 33%;
}

/* #demo-details-nav li {
	flex-grow: 1;
    flex-shrink: 0;
} */

#demo-details-tab-content {
	position: relative;
	margin-bottom: 80px;
}

.demo-details-overlay {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 3;
}

p.category {
	padding-top: 5px;
}

.avail-times-instructions {
	font-size: 10px;
	font-weight: bold;
}

#demo-cards {}

.demo-card {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 3px solid #ddd;
	margin: 0 auto 20px;
	opacity: 1;
	padding: 20px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	max-height: 122px;
}

.demo-card[class*="event-"] {
	color: #000;
	border-top-width: 4px;
	border-top-style: solid;
}

.demo-card .lock-bar {
	position: absolute;
	height: 115px;
	width: 100%;
	z-index: 2;
	top: 0;
	left: 0;
	font-size: 60px;
	line-height: 115px;
	font-weight: bold;
	color: #c5c5c5;
	opacity: 1;
	text-align: center;
}

.demo-card .rollover-container {
	position: absolute;
	width: 100%;
	height: 115px;
	z-index: 3;
	top: 115px;
	left: 0;
	background-color: #fff;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.demo-card:hover .rollover-container {
	top: 0px;
}

.demo-card .rollover-buttons button {
	height: 52px;
}

.card-status h5 {
	padding: 5px;
	display: inline;
}

.demo-card h5 {
	margin: 0;
	font-size: 12px;
	font-weight: bold;
}

.card-button h5 {
	margin-top: 5px;
}

.card-prospect p,
.card-datetime p {
	font-size: 10px;
	margin-bottom: 0;
	line-height: 10px;
	padding-bottom: 5px;
}

.card-date small {
	font-size: 12px;
}

.card-date {
	font-weight: bold;
	font-size: 20px;
	line-height: 12px;
}

.tooltip-inner {
	max-width: 200px;
	padding: 3px 8px;
	color: #fff;
	text-align: center;
	background-color: #000;
	border-radius: 0.25rem;
	font-size: 11px;
}

.card-red {
	background-color: #ffdfdf;
}

.ribbon-right {
	-moz-box-shadow: 4px 2px 0 rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 4px 2px 0 rgba(0, 0, 0, 0.1);
	-o-box-shadow: 4px 2px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 4px 2px 0 rgba(0, 0, 0, 0.1);
}

.column-grey {
	border: 1px solid #eee;
}

.column-grey:nth-child(even) {
	background-color: #fafafa;
}

.time-interval-table {
	width: 100%;
}

.time-interval-table td {
	border: 1px solid #a9bdff;
	padding: 0 5px;
	border-collapse: collapse;
}

.time-interval-table tr.avail-time:nth-child(odd) td {
	background-color: #f0f3ff;
}

.time-interval-table tr.avail-time:nth-child(even) td {
	background-color: #e0e8ff;
}

.time-interval-table td.unavail-time {
	background-color: #f0f0f0;
	border-color: #ccc;
}

.time-interval-table td.shift-name {
	background-color: transparent;
	font-weight: bold;
	padding-top: 10px;
	border: none;
}

.col-md-6 .time-interval-table tr:first-child td.shift-name {
	padding-top: 0;
}

.time-interval-table td.demo-block {
	background-color: transparent;
	font-weight: bold;
	padding-top: 20px;
	border: none;
}

.time-interval-table tr.avail-time {
	cursor: pointer;
}

.time-interval-table tr.avail-time:hover td {
	border-color: rgba(76, 88, 255, 1);
}

tr.lognotes {
	background-color: #f5f5f5;
}

/*New Time Cards*/

div.shift-name {
	position: relative;
	margin: 19px 0 27px 0;
	max-height: 8px;
	text-align: center;
	border-bottom: 1px solid #dadada;
}

div.shift-name .text {
	display: inline;
	padding: 0 9px;
	text-transform: uppercase;
	font-size: 12px;
	color: #a8a8a8;
	background: #fff;
}

.time-button,
.confirm-button {
	font-size: 14px;
	line-height: 1.3em;
	display: inline-block;
	box-sizing: border-box;
	padding: 9px 20px;
	border-radius: 5px;
	cursor: pointer;
}

.time-button:focus,
.confirm-button:focus {
	outline: none;
}

.time-button {
	width: 100%;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.spots {
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0px;
	height: max-content;
}

.spots .spot {
	font-size: 0px;
	overflow: hidden;
	white-space: nowrap;
	text-align: center;
	margin-bottom: 10px;
}

.spots .spot .confirm-button {
	display: none;
	height: 52px;
}

.spots .spot .status {
	text-transform: uppercase;
	font-size: 10px;
	color: #00a2ff;
}

.spots .spot.unavailable {
	position: relative;
	border: 1px dashed #a8a8a8;
	font-size: 14px;
	border-radius: 5px;
	color: #666a73;
	padding: 8px 20px;
}

.spots .spot.unavailable .status {
	display: block;
	color: #e41600;
}

.spots .spot.selected .time-button,
.spots .spot.selected .confirm-button {
	width: 48.5%;
}

.spots .spot.selected .time-button {
	margin-right: 3%;
	background: #666a73;
	color: #fff;
	border-color: transparent;
	float: left;
	cursor: default;
}

.spots .spot.selected .time-button .status {
	color: #fff;
}

.spots .spot.selected .confirm-button {
	display: inline-block;
}

.democard {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin: 12px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border: 1px solid #8f8f8f;
	border-radius: 7px;
	box-shadow: 0 1px 0 0 #8f8f8f;
	min-height: 220px;
}

.spots .democard {
	width: inherit;
	margin: 0 auto;
	text-align: left;
	background-color: #fff;
}

.democard {
	font-size: 14px;
}

.democard .demo-card-name a {
	color: #8f8f8f !important;
}

.democard .demo-card-name a:hover {
	text-decoration: underline;
}

.democard .row {
	margin-left: 0;
	margin-right: 0;
}

.demo-card-actions {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 30px;
	margin-bottom: 12px;
	padding-top: 3px;
	padding-bottom: 3px;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #8f8f8f;
	background-color: grey;
	-webkit-border-radius: 7px 7px 0 0;
	border-radius: 7px 7px 0 0;
}

.demo-card-icon-link:hover {
	color: #ffffff;
}

.demo-card-icon-link:focus {
	color: #fff;
}

.demo-card-main {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.demo-card-icon-link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 20px;
	height: 20px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
	padding-top: 2px;
}

.demo-card-icon {
	color: #8f8f8f;
}

.demo-card-icon.name {
	margin-left: 8px;
	float: right;
	color: #8f8f8f;
}

.demo-card-icon.details {
	color: #fff;
}

.demo-card-icon.times {
	color: #fff;
}

.demo-card-icon.res {
	color: #fff;
}

.demo-card-icon.dealer {
	color: #ebebeb;
}

.demo-card-drive {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 30px;
	margin-top: 12px;
	padding-right: 12px;
	padding-left: 12px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-top: 1px solid #8f8f8f;
}

.demo-card-drive-time {
	height: 10px;
	margin-top: 10px;
	margin-right: 10px;
	margin-left: 10px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border-top: 1px dashed #8f8f8f;
	text-align: center;
}

.demo-card-name {
	color: #4b4b4b;
	font-size: 15px;
	text-align: left;
}

.demo-card-name.partner {
	color: #8f8f8f;
	font-size: 12px;
}

.demo-card-name.other {
	display: block;
	color: #8f8f8f;
	font-size: 12px;
	text-align: right;
}

.demo-card-pill {
	/*
  display: inline-block;
  padding: 0px 10px;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  text-align: left;
*/
	text-transform: uppercase;
}

.demo-card-extras {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 12px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.demo-card-address {
	color: #8f8f8f;
	font-size: 12px;
	margin-top: 20px;
}

.demo-card-drive-distance {
	color: #8f8f8f;
	font-size: 12px;
}

.demo-card-date-and-time {
	display: inline-block;
	padding-right: 7px;
	padding-left: 7px;
	color: #8f8f8f;
	font-size: 13px;
	text-align: right;
}

.demo-card-date-and-time.divider {
	border-left: 1px solid #8f8f8f;
}

.demo-card-dnt-container {
	padding-top: 2px;
	padding-bottom: 2px;
	text-align: right;
}

.form-group-no-bottom {
	margin-bottom: 0px;
}

#personal-leads li {
	display: block;
	margin-left: -40px;
	padding-left: 3px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-size: 12px;
	border-bottom: 1px solid #eee;
}

#personal-leads li:last-child {
	border-bottom: none;
}

ul#personal-leads span[class^="event-"] {
	display: inline-block;
	padding: 0 3px;
}

ul#personal-leads {
	list-style-type: none;
	padding-top: 10px;
}

.perm-container {
	padding: 5px 0;
}

.perm-label {
	font-size: 16px;
	color: #666;
	margin-bottom: 5px;
	text-transform: uppercase;
}

/* Reports CSS */
#thetitle {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

/* Inventory */
.product_row:nth-child(even) {
	background-color: #f1f1f1;
}

.product_row:nth-child(odd) {
	background-color: #fafafa;
}

.product_row {
	padding-top: 5px;
}

.btn-inventory-delete {
	margin-top: 15px;
	font-size: 24px;
	line-height: 24px;
}

.history_time {
	font-size: 11px;
}

/*Inventory Editor*/
div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Bubble_Table div.DTE_Form_Buttons {
	padding: 0 10px 10px 0 !important;
}

/*Inventory Modal*/
label.general-info {
	text-transform: uppercase;
	display: block;
	font-size: 12px;
}

.primary-name.items {
	margin-top: 7px;
	font-size: 15px;
	font-weight: 300;
}

h2.or {
	width: 100%;
	margin: 10px auto 20px !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	line-height: 11px;
	text-align: center;
}

h2.or span {
	background: #fff;
	padding: 0 10px;
	font-size: 16px;
}

.calling-card .input-group-addon {
	background-color: #e3e3e3;
}

.calling-card .bootstrap-select.form-control {
	height: 38px;
}

#cardModal .modal-body {
	overflow: scroll;
	height: 50vh;
}

.calling-card {
	overflow: visible;
}

.bs-searchbox .form-control {
	border-right: 1px solid #e3e3e3 !important;
	border-left: 1px solid #e3e3e3 !important;
	border-top: 1px solid #e3e3e3;
	border-bottom: 1px solid #e3e3e3;
}

table.dataTable tr.group td {
	font-weight: bold;
	background-color: var(--light-grey);
	color: #000;
	text-align: left !important;
}

table.dataTable tbody>tr.selected,
table.dataTable tbody>tr>.selected {
	background-color: rgba(92, 184, 92, 0.49);
}

table.dataTable tbody>tr.selected,
table.dataTable tbody>tr>.selected td {
	color: #000 !important;
	border-color: #000;
}

table.dataTable tbody tr.selected a,
table.dataTable tbody th.selected a,
table.dataTable tbody td.selected a {
	color: #fff;
}

table.dataTable tbody tr.selected .dropdown a,
table.dataTable tbody th.selected .dropdown a,
table.dataTable tbody td.selected .dropdown a {
	color: #333;
}

.datepicker {
	margin: 0 auto;
}

.datetimepicker th.has-switch {
	display: table-cell;
	-webkit-mask: none;
	mask: none;
}

#type-btns label {
	margin: 0 3px;
	width: 100%;
}

#type-btns label.active {
	background-color: var(--black);
	color: var(--white);
}

#type-btns br {
	display: none;
}

label.btn.btn-circle {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.btn-circle input[type="radio"] {
	height: 0;
	width: 0;
}

#type-btns i.fa {
	font-size: 1.6em;
	width: 100%;
	margin-bottom: 5px;
}

#calendarBtns {
	margin-bottom: 10px;
}

.fresh-datatables {
	font-size: 12px;
}

#fresh-datatables #totals {
	font-size: 12px;
	text-align: center;
}

#fresh-datatables #totals span {
	font-weight: bold;
	font-size: 22px;
}

sup.hint .fa {
	width: 10px;
}

sup.hint>i {
	font-size: 11px !important;
}

#previous_notes {
	font-size: 14px;
	color: var(--dark-red);
	border: 1px solid var(--dark-red);
	padding: 5px;
	margin-bottom: 15px;
}

#notes_textarea {
	background-image: -webkit-linear-gradient(left, white 10px, transparent 10px),
		-webkit-linear-gradient(right, white 10px, transparent 10px),
		-webkit-linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
	background-image: -moz-linear-gradient(left, white 10px, transparent 10px),
		-moz-linear-gradient(right, white 10px, transparent 10px),
		-moz-linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
	background-image: -ms-linear-gradient(left, white 10px, transparent 10px),
		-ms-linear-gradient(right, white 10px, transparent 10px),
		-ms-linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
	background-image: -o-linear-gradient(left, white 10px, transparent 10px),
		-o-linear-gradient(right, white 10px, transparent 10px),
		-o-linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
	background-image: linear-gradient(left, white 10px, transparent 10px),
		linear-gradient(right, white 10px, transparent 10px),
		linear-gradient(white 30px, #ccc 30px, #ccc 31px, white 31px);
	background-size: 100% 100%, 100% 100%, 100% 31px;
	border: none;

	line-height: 31px;
	font-family: Arial, Helvetica, Sans-serif;
	padding: 8px;
	width: 100%;
	height: 500px;
}


/* File Upload */
.ajax-file-upload-container {
	display: flex;
	max-width: 100%;
	overflow-x: scroll;
}

.ajax-file-upload-filename {
	font-size: smaller;
}

/* Pagination Input */
.dataTables_paginate {
	color: #797979;
}

.paginate_button {
	border-radius: 25px;
	margin: 0 2px;
	color: #797979;
	cursor: pointer;
	background-color: #fff;
	border-color: #ddd;
	position: relative;
	text-decoration: none;
	border: 1px solid #ddd;
	padding: 6px 12px;
}

.first.paginate_button {}

.previous.paginate_button {
	margin-right: 10px;
}

.paginate_input {
	width: 50px;
	border-radius: 4px;
	margin: 0px;
	background-color: #fff;
	border-color: #ddd;
	position: relative;
	padding: 6px 5px;
	line-height: 1.42857143;
	text-decoration: none;
	border: 1px solid #ddd;
}

/* .paginate_total {
	color: #797979;
	padding: 6px 5px 6px 3px;
}

.next.paginate_button {
	margin-left: 10px;
}
.last.paginate_button {} */


@media (max-width: 992px) {
	.user-initial {
		line-height: 46px;
		font-size: 3.8rem;
	}

	.fc h2 {
		font-size: 1.8rem;
		font-weight: 700;
		display: inline;
		line-height: 38px;
	}

	.fc-toolbar .fc-left {
		width: 48%;
		min-width: 0;
	}

	#statusBtns button {
		flex-basis: 40%;
	}

	.modal-backdrop {
		z-index: -1;
	}
}

@media (max-width: 480px) {
	.file-drop-zone .file-preview-thumbnails {
		flex-direction: column;
		justify-content: space-around;
	}

	.file-preview-frame {
		width: 100%;
	}

	.filter_select {
		display: none;
	}

	.demo-card:hover .rollover-container {
		display: none;
	}

	.card-distance {
		font-size: 85%;
	}
}

.card-info-container {}

.vault-action-wrapper {
	margin: 5px auto 30px;
	max-width: 350px;
}

.vault-action-buttons {
	margin-top: 5px;
}

.pleads {
	font-size: 11px !important;
	width: 60px;
	text-align: center;
	padding-right: 0px !important;
	padding-left: 0px !important;
}

tr.programnotes {
	background-color: #f5f5f5;
}

td.programnotes table tr td {
	text-align: left !important;
}

@media (min-width: 992px) {
	.sidebar-mini .user-initial {
		line-height: 46px;
		font-size: 3.8rem;
	}
}

.flexer .template-container {
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.template-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 200px;
	margin: 7px;
	min-height: 100px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
	text-align: center;
}

.template-title-wrapper {
	border-bottom: solid thin #00001f;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: center;
	-ms-flex-pack: justify;
	justify-content: center;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background-color: #394157;
	color: #ffffff;
	padding: 5px 5px 8px 5px;
	text-align: center;
}

.template-thumb-wrapper {
	overflow: hidden;
	height: 180px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	position: relative;
}

.template-thumb-wrapper img {
	//margin-top: 10px;
}

.template-card-container {
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: stretch;
}

.template-action-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: center;
	-ms-flex-pack: justify;
	justify-content: center;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	border: 1px solid #3a4156;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	background-color: #3a4156;
	padding: 7px;
	text-align: center;
	color: #fff;
	cursor: pointer;
}

.template-action-wrapper input {
	opacity: 0;
	width: 0px;
}

.template-container.checked .template-action-wrapper {
	background-color: #87cb16;
	border: 1px solid #87cb16;
}

.elementDescription {
	margin-top: -5px;
	display: block;
	margin-bottom: 5px;
	color: #a5a5a5;
	font-size: 10px;
}

#locationForm #content .form-group {
	border-bottom: 1px solid #eee;
	padding-bottom: 25px;
}

#locationForm #content .form-group:last-child {
	border-bottom: none;
}

.actions.dropdown>.dropdown-menu {
	float: right;
	right: 0;
	left: auto;
	top: 21px;
	overflow: hidden;
	width: 100%;
}

.form-control.mbsc-comp[readonly] {
	cursor: pointer !important;
	background-color: #ffffff !important;
}

.pulse-warn {
	animation-name: pulsecolor;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

.editable-input input.form-control {
	padding: 0px 10px;
}

@keyframes pulsecolor {
	0% {
		background-color: #dfdfdf;
	}

	50% {
		background-color: #ffdfdf;
	}

	100% {
		background-color: #dfdfdf;
	}
}

@media screen and (max-width: 496px) {
	.sticky-header {
		position: inherit;
	}

	.navbar-header .photo {
		display: inline-block;
		height: 60px;
		width: 240px;
		padding-left: 10px;
	}

	.user-initial {
		color: #fff;
		background-color: transparent;
		line-height: 60px;
		text-align: left;
	}

	.hide-code {
		display: none;
	}

	table.dataTable>tbody>tr.child ul.dropdown-menu {
		float: none;
		border: none;
		box-shadow: none;
		-webkit-box-shadow: none;
		min-width: 0px;
		display: inline-block;
		position: relative;
	}

	.actions.dropdown>.btn {
		display: contents;
	}

	table.dataTable .actions.dropdown>.btn {
		display: inline-block;
	}

	table.dataTable>tbody>tr.child ul.dropdown-menu li {
		display: inline-block;
		border-bottom: none;
		padding: 0;
	}

	.file-input input[type="file"] {}
}

/* !HTML5 VIDEO PLAYER */
.vid-row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -14px;
	margin-right: -14px;
	padding: 20px;
}

.video-card-container {
	position: relative;
	min-height: 1%;
	width: 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	padding-left: 14px;
	padding-right: 14px;
	margin-top: 25px;
}

.card card--video {
	width: 100%;
	margin-bottom: 28px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
}

.card__media {
	display: block;
	position: relative;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	height: 0;
	padding: 0 0 56.25%;
	overflow: hidden;
}

.card__media__content card__media__content--empty {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background-color: rgba(202, 212, 226, 0.5);
	background-size: cover;
}

.card__media__content__thumbnail {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.card__media__content__overlay {
	position: absolute;
	width: 100%;
	height: 52px;
	bottom: 0;
}

.card__content {
	position: relative;
	padding: 20px 20px 16px;
}

.card__content__title {
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: calc(100% - 24px);
}

.card__content__title__text {
	color: #474747;
	white-space: nowrap;
	overflow: hidden;
	cursor: text;
	font-weight: 400;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

table.dataTable tbody td.select-checkbox:before,
table.dataTable tbody td.select-checkbox:after {
	left: 40px;
}

table.dataTable tbody td.select-checkbox:before {
	margin-top: 0px;
}

table.dataTable tr.selected td.select-checkbox:after {
	content: "\f00c";
	font-family: "Font Awesome 5 Pro";
	margin-top: -4px;
}

@media only screen and (min-width: 1200px) {
	.video-card-container {
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
}

@media only screen and (max-width: 800px) {
	.video-card-container {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.sidebar .sidebar-wrapper .quickLinks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 30px 5px 0px 5px;
}

.sidebar-mini .sidebar .sidebar-wrapper .quickLinks {
	grid-template-columns: 1fr !important;
}

.sidebar .sidebar-wrapper .quickLinks .qlink {
	padding: 7px 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	font-size: 18px;
	margin: 0px 5px 10px 5px;
}

.sidebar-mini .sidebar .sidebar-wrapper .qlink {
	padding: 7px !important;
}

/* ===========================
   PHAROS CSS FRAMEWORK
   Core layout and components
   =========================== */

/* RESET & BASE */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* LAYOUT GRID SYSTEM */
.app-container {
	display: grid;
	grid-template-areas:
		"sidebar header"
		"sidebar main";
	grid-template-columns: var(--sidebar-width) 1fr;
	grid-template-rows: var(--header-height) 1fr;
	min-height: 100vh;
}

/* HEADER */
.app-header {
	grid-area: header;
	background-color: var(--bg-card);
	border-bottom: 1px solid rgba(0, 206, 209, 0.2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 var(--spacing-lg);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-logo {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}

.header-logo img {
	height: 45px;
	width: auto;
}

.header-search {
	flex: 1;
	max-width: 500px;
	margin: 0 var(--spacing-lg);
}

.header-search input {
	width: 100%;
	padding: var(--spacing-xs) var(--spacing-sm);
	background-color: var(--bg-primary);
	border: 1px solid rgba(0, 206, 209, 0.3);
	border-radius: var(--border-radius);
	color: var(--text-primary);
	font-size: 0.95rem;
	transition: border-color var(--transition-speed);
}

.header-search input:focus {
	outline: none;
	border-color: var(--accent-primary);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

.header-profile {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	cursor: pointer;
}

.profile-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1rem;
}

.notification-badge {
	position: relative;
	cursor: pointer;
	padding: var(--spacing-xs);
}

.notification-badge::after {
	content: '3';
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--status-hold);
	color: white;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* SIDEBAR */
.app-sidebar {
	grid-area: sidebar;
	background-color: var(--bg-card);
	border-right: 1px solid rgba(0, 206, 209, 0.2);
	padding: var(--spacing-lg) 0;
	position: sticky;
	top: 0;
	height: 100vh;
	overflow-y: auto;
}

.sidebar-nav {
	list-style: none;
}

.nav-item {
	margin-bottom: var(--spacing-xs);
}

.nav-link {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	padding: var(--spacing-sm) var(--spacing-lg);
	color: var(--text-primary);
	text-decoration: none;
	transition: all var(--transition-speed);
	border-left: 3px solid transparent;
}

.nav-link:hover {
	background-color: rgba(0, 206, 209, 0.1);
	border-left-color: var(--accent-primary);
}

.nav-link.active {
	background-color: rgba(0, 206, 209, 0.15);
	border-left-color: var(--accent-primary);
	color: var(--accent-primary);
}

.nav-icon {
	font-size: 1.2rem;
	width: 24px;
	text-align: center;
}

/* MAIN CONTENT */
.app-main {
	grid-area: main;
	padding: var(--spacing-lg);
	overflow-y: auto;
}

/* FLEX UTILITIES */
.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.items-center {
	align-items: center;
}

.justify-between {
	justify-content: space-between;
}

.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }

/* GRID UTILITIES */
.grid {
	display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* CARD COMPONENT */
.card {
	background-color: var(--bg-card);
	border-radius: var(--border-radius);
	padding: var(--spacing-md);
	border: 1px solid rgba(0, 206, 209, 0.1);
	transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 206, 209, 0.15);
}

.card-header {
	margin-bottom: var(--spacing-md);
}

.card-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary);
}

.card-body {
	color: var(--text-muted);
}

/* METRIC CARD */
.metric-card {
	text-align: center;
}

.metric-icon {
	font-size: 2.5rem;
	color: var(--accent-primary);
	margin-bottom: var(--spacing-sm);
}

.metric-value {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--accent-secondary);
	line-height: 1;
	margin-bottom: var(--spacing-xs);
}

.metric-label {
	font-size: 0.9rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* TABLE COMPONENT */
.table-container {
	overflow-x: auto;
	margin-top: var(--spacing-md);
}

.data-table {
	width: 100%;
	border-collapse: collapse;
}

.data-table thead {
	background-color: rgba(0, 206, 209, 0.1);
}

.data-table th {
	padding: var(--spacing-sm);
	text-align: left;
	font-weight: 600;
	color: var(--accent-primary);
	border-bottom: 2px solid var(--accent-primary);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.data-table td {
	padding: var(--spacing-sm);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table tbody tr {
	transition: background-color var(--transition-speed);
}

.data-table tbody tr:hover {
	background-color: rgba(0, 206, 209, 0.05);
}

/* STATUS BADGE */
.status-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: capitalize;
}

.status-new {
	background-color: var(--status-new);
	color: #000;
}

.status-progress {
	background-color: var(--status-progress);
	color: #fff;
}

.status-hold {
	background-color: var(--status-hold);
	color: #fff;
}

.status-closed {
	background-color: var(--status-closed);
	color: #fff;
}

/* Empty State */
.empty-state {
	text-align: center;
	padding: var(--spacing-xl);
	color: var(--text-muted);
	font-style: italic;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
	padding: var(--spacing-xs);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
	.app-container {
		grid-template-areas:
			"header"
			"main";
		grid-template-columns: 1fr;
		grid-template-rows: var(--header-height) 1fr;
	}

	.app-sidebar {
		position: fixed;
		left: -100%;
		top: var(--header-height);
		height: calc(100vh - var(--header-height));
		width: 280px;
		z-index: 999;
		transition: left var(--transition-speed);
		box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
	}

	.app-sidebar.open {
		left: 0;
	}

	.menu-toggle {
		display: block;
	}

	.header-search {
		display: none;
	}

	.grid-cols-4,
	.grid-cols-3,
	.grid-cols-2 {
		grid-template-columns: 1fr;
	}

	.header-profile span {
		display: none;
	}
}

/* UTILITY CLASSES */
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mt-lg { margin-top: var(--spacing-lg); }

.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent-primary); }
.text-center { text-align: center; }
.text-right { text-align: right; }

.font-bold { font-weight: 700; }

/* VIEW TABS COMPONENT */
.view-tabs {
	display: flex;
	gap: var(--spacing-sm);
	margin-bottom: var(--spacing-lg);
}

.tab-btn {
	padding: var(--spacing-sm) var(--spacing-md);
	background-color: var(--bg-card);
	border: 1px solid rgba(0, 206, 209, 0.3);
	color: var(--text-primary);
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all var(--transition-speed);
}

.tab-btn.active {
	background-color: var(--accent-primary);
	color: #000;
	border-color: var(--accent-primary);
}

.tab-btn:hover:not(.active) {
	background-color: rgba(0, 206, 209, 0.1);
}


/* BOARD VIEW COMPONENT */
.board-view {
	background-color: var(--bg-card);
	border-radius: var(--border-radius);
	padding: var(--spacing-md);
	border: 1px solid rgba(0, 206, 209, 0.1);
	overflow-x: auto;
}

.board-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 1200px;
}

.board-table thead th {
	background-color: rgba(0, 206, 209, 0.15);
	color: var(--accent-primary);
	padding: var(--spacing-sm);
	text-align: left;
	font-weight: 700;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 2px solid var(--bg-primary);
	position: sticky;
	top: 0;
	z-index: 10;
}

.board-table tbody td {
	padding: var(--spacing-sm);
	border: 1px solid rgba(255, 255, 255, 0.1);
	vertical-align: top;
	font-size: 0.9rem;
}

.board-table tbody tr {
	transition: background-color var(--transition-speed);
}

.board-table tbody tr:hover {
	background-color: rgba(0, 206, 209, 0.05);
}

/* VIEW SECTION TOGGLE */
.view-section {
	display: none;
}

.view-section.active {
	display: block;
}

/* BADGE COMPONENT */
.badge {
	display: inline-block;
	padding: 0.25rem 0.5rem;
	background-color: rgba(0, 206, 209, 0.2);
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.85rem;
}

/* TEXT UTILITIES */
.text-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.text-clamp-3 {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.4;
	max-height: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* Empty State Extensions */
.empty-state-icon {
	font-size: 3rem;
	margin-bottom: var(--spacing-md);
	opacity: 0.5;
}

/* STATUS BADGES - Additional Status Types */
.status-assigned {
	background-color: var(--status-assigned);
	color: #000;
}

.status-in_progress, .status-in-progress {
	background-color: var(--status-progress);
	color: #fff;
}

.status-on_hold, .status-on-hold {
	background-color: var(--status-hold);
	color: #fff;
}

.status-completed {
	background-color: var(--status-progress);
	color: #fff;
}

/* FORM COMPONENTS */
.form-section {
	margin-bottom: var(--spacing-xl);
}

.form-section h3 {
	font-size: 1.25rem;
	margin-bottom: var(--spacing-lg);
	color: var(--accent-primary);
	border-bottom: 2px solid rgba(0, 206, 209, 0.2);
	padding-bottom: var(--spacing-sm);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--spacing-lg);
}

.form-group {
	display: flex;
	flex-direction: column;
	padding-top: 15px;
}

.form-group label {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: var(--spacing-xs);
	font-weight: 500;
}

.form-group .value {
	padding: var(--spacing-sm);
	background: var(--bg-primary);
	border-radius: 4px;
	min-height: 2.5rem;
	display: flex;
	align-items: center;
}

.form-group .value:empty::before {
	content: "—";
	color: var(--text-muted);
}

.form-group.full-width {
	grid-column: 1 / -1;
}

.form-group.full-width .value {
	min-height: 6rem;
	align-items: flex-start;
	padding: var(--spacing-md);
}

/* META INFO COMPONENT */
.case-meta, .meta-info {
	display: flex;
	gap: var(--spacing-xl);
	flex-wrap: wrap;
	margin-top: var(--spacing-md);
}

.case-meta-item, .meta-info-item {
	display: flex;
	flex-direction: column;
}

.case-meta-item label, .meta-info-item label {
	font-size: 0.75rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: var(--spacing-xs);
}

.case-meta-item .value, .meta-info-item .value {
	font-size: 1.1rem;
	font-weight: 600;
}

/* INFO CARD COMPONENT */
.info-card {
	background: var(--bg-primary);
	border: 1px solid rgba(0, 206, 209, 0.2);
	border-radius: var(--border-radius);
	padding: var(--spacing-lg);
}

.info-card h4 {
	color: var(--accent-primary);
	margin-bottom: var(--spacing-md);
	font-size: 1.1rem;
}

.info-detail {
	display: flex;
	margin-bottom: var(--spacing-sm);
	font-size: 0.9rem;
}

.info-detail .label {
	color: var(--text-muted);
	min-width: 120px;
	font-weight: 500;
}

.info-detail .value {
	color: var(--text-primary);
}

/* ACTION BUTTONS */
.action-buttons {
	display: flex;
	gap: var(--spacing-md);
	margin-top: var(--spacing-xl);
	padding-top: var(--spacing-xl);
	border-top: 2px solid rgba(0, 206, 209, 0.2);
}




