/* html tags */

html,body {
	padding: 0;
	margin: 0;
	min-height: 100%;
	height: 100%;
	font-family: 'Inter', sans-serif;
	line-height: 1.8em;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 100;
}

body {
	background-color: #e9eff6;
}

table {
	empty-cells: show;
}

a {
	color: #005DB4;
	text-decoration: none;
}

a:hover {
	color: #33bbff;
}

img {
	max-width: 100%;
}

hr {
	height: 1px;
	background-color: #cccccc;
	top: 0px;
	border: 0px;
	margin-top: 1em;
	margin-bottom: 1em;
}





/* general interface elements */

.statusmessage_positive {
	padding: 0.25em;
	background-color: #bbffbb;
	border: 1px solid #aaeeaa;
	margin-bottom: 2em;
}

.statusmessage_negative {
	padding: 0.25em;
	background-color: #ffbbbb;
	border: 1px solid #eeaaaa;
	margin-bottom: 2em;
}

.content_div {
	display: block;
	overflow: auto;
	clear: both;
	border-radius: 0.25em;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
	margin-bottom: 2em;
	padding: 1em;
	color: #000000;
	background-color: #ffffff;
	box-sizing: border-box;
}

.content_table {
	border: 0;
	border-spacing: 0;
	padding: 0;
	width: 100%;
	empty-cells: show;
	border-collapse: collapse;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.content_div .content_table {
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.0);
}

.content_table th {
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	background-color: #fafafa;
	font-weight: bold;
	color: #000000;
	padding: 0.5em;
	text-align: left;
	vertical-align: top;
}

.content_table tr:first-of-type th {
	border-top: 0 !important;
}

.content_table td {
	border-bottom: 1px solid #cccccc;
	background-color: #ffffff;
	color: #000000;
	padding: 0.5em;
	text-align: left;
	vertical-align: top;
}




/* form input */

.input_textarea {
    padding: 0.5em 0.6em;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    vertical-align: middle;
	box-sizing: border-box;
	width: 100%;
	color: #000000;
	background-color: #ffffff;
	height: 10em;
	font-size: 0.9rem;
}

.input_select {
    padding: 0.5em 0.6em;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    vertical-align: middle;
	box-sizing: border-box;
	width: 100%;
	color: #000000;
	background-color: #ffffff;
	font-size: 0.9rem;
}

.input_text {
    padding: 0.5em 0.6em;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    vertical-align: middle;
	box-sizing: border-box;
	width: 100%;
	color: #000000;
	background-color: #ffffff;
	font-size: 0.9rem;
}

.input_button {
	-moz-box-shadow:inset 0px 1px 0px 0px #54a3f7;
	-webkit-box-shadow:inset 0px 1px 0px 0px #54a3f7;
	box-shadow:inset 0px 1px 0px 0px #54a3f7;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #007dc1), color-stop(1, #0061a7));
	background:-moz-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:-webkit-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:-o-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:-ms-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#007dc1', endColorstr='#0061a7',GradientType=0);
	background-color:#007dc1;
	-moz-border-radius:0.25em;
	-webkit-border-radius:0.25em;
	border-radius:0.25em;
	border:1px solid #124d77 !important;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	padding:0.5em;
	text-decoration:none;
	text-shadow:0px 1px 0px #154682;
	box-sizing: border-box;
	font-weight: normal;
}
.input_button:hover {
	color:#ffffff;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0061a7), color-stop(1, #007dc1));
	background:-moz-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background:-webkit-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background:-o-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background:-ms-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background:linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0061a7', endColorstr='#007dc1',GradientType=0);
	background-color:#0061a7;
}
.input_button:active {
	position:relative;
	top:1px;
}

.buttonbar_bottom {
	background-color: #007dc1;
	margin-top: 2rem;
	margin-bottom: 1rem;
	padding: 0.5rem;
	box-sizing: border-box;
	border-radius: 0.25rem;
	text-align: center;
}

.buttonbar_bottom .input_button {
	font-size: 1.2rem;
	padding: 1rem;
}

.buttonbar_multi {
	display: block;
	clear: both;
	overflow: auto;
	background-color: #007dc1;
	margin-top: 2rem;
	margin-bottom: 1rem;
	padding: 0.5rem;
	box-sizing: border-box;
	border-radius: 0.25rem;
}

.buttonbar_multi_left {
	float: left;
	margin-right: 1rem;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-content: center;
}

.buttonbar_multi_right {
	float: right;
	margin-left: 1rem;
	display: flex;
	justify-content: center;
	align-content: center;
}

.buttonbar_multi_center {
	margin-left: auto;
	margin-right: auto;
	padding: 0.25rem;
	padding-left: 1rem;
	padding-right: 1rem;
	display: flex;
	justify-content: center;
	align-content: center;
	width: max-content;
}

.box_buttonbar {
	display: block;
	text-align: right;
}

.box_buttonbar div {
	display: inline-block;
	margin-left: 2rem;
	color: #666666;
	cursor: pointer;
}

.box_buttonbar div:hover {
	color: #000000;
}

.box_cols {
	display: flex;
	gap: 1rem;
	margin-bottom: 0.5rem;
	justify-content: center;
	align-items: center;
}

.box_cols > div {
	flex-grow: 1;
}

.box_cols > span {
	display: block;
	flex-grow: 0;
}



/* icons */

.material-symbols-outlined {
	font-variation-settings:
	'FILL' 0,
	'wght' 400,
	'GRAD' 0,
	'opsz' 48
}


/* general layout */

.master_privacymessage {
	border: 1px solid #cccccc;
	padding: 0.5em;
	background-color: #ffffff;
	margin-bottom: 1em;
	clear: both;
	overflow: auto;
}

.master_privacymessage span {
	font-size: 0.8em;
}

.master_top a {
	color: #ffffff;
}

.master_top a:hover {
	color: #cdd9eb;
}


/* breadcrumbs */

.breadcrumbs {
	font-size: 0.8em;
	margin-bottom: 4em;
	margin-top: 1em;
	color: #aaaaaa;
}

.breadcrumbs a:after {
	content: " > ";
}


/* modal */

.shuttlemodal_cover {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}

.shuttlemodal_box {
	position: relative;
	display: table;
	width: 100%;
	height: 100%;
}

.shuttlemodal_box2 {
	display: table-cell;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
}

.shuttlemodal_box3 {
	display: inline-block;
	padding: 2em;
	background-color: #fafafa;
	color: #000000;
	border-radius: 0.25em;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
	text-align: left;
}

.shuttlemodal_loadholder {
	display: block !important;
	position: absolute;
	top: 4em;
	left: 2em;
	right: 2em;
	bottom: 4em;
	overflow-y: auto;
}

.shuttlemodal_bar {
	text-align: right;
	padding-bottom: 0.5em;
}

.shuttlemodal_bar span {
	font-size: 2em;
	cursor: pointer;
}

.shuttlemodal_bar span:hover {
	color: #33bbff;
}



/* features */

.logout_holder {
	clear: both;
	overflow: auto;
}

.logout_holder span {
	padding-top: 0.5em;
	display: inline-block;
}

.logout_holder input {
	float: right;
}

.tos_box {
	background-color: #ffffff;
	border: 1px solid #cccccc;
	padding: 0.25em;
	height: 8em;
	overflow-y: scroll;
}

.qr_reader {
	background-color: #ffffff;
	margin-bottom: 2em;
}

#qr_reader__scan_region {
	margin-bottom: 1em;
}

#html5-qrcode-anchor-scan-type-change {
	display: none !important;
}

#html5-qrcode-select-camera {
	display: block !important;
	margin-top: 1em !important;
	margin-bottom: 1em !important;
	margin-left: auto !important;
	margin-right: auto !important;
	font-size: 1em !important;
	width: 50% !important;
	padding: 1em !important;
}

#html5-qrcode-button-camera-start {
	margin-top: 1em !important;
	margin-bottom: 1em !important;
	margin-left: auto !important;
	margin-right: auto !important;
	font-size: 1em !important;
	width: 50% !important;
	padding: 1em !important;
}

#html5-qrcode-button-camera-stop {
	margin-top: 1em !important;
	margin-bottom: 1em !important;
	margin-left: auto !important;
	margin-right: auto !important;
	font-size: 1em !important;
	width: 50% !important;
	padding: 1em !important;
}

#html5-qrcode-button-camera-permission {
	margin-top: 1em !important;
	margin-bottom: 1em !important;
	margin-left: auto !important;
	margin-right: auto !important;
	font-size: 1em !important;
	width: 50% !important;
	padding: 1em !important;
}

.datalist_tabBar {
	background: #FFF none repeat scroll 0% 0%;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
	margin-bottom: 1em;
	border-radius: 0.25em;
}

.datalist_tabBarList {
	display: inline-flex;
	width: 100%;
	padding: 0;
	margin: 0;
	overflow-x: auto;
	box-sizing: content-box;
	cursor: grab;
	/*
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
	*/
	white-space: nowrap;
    list-style: none;
}

.datalist_tabBarItemLarge {
	text-align: center;
	flex-grow: 1;
}

.datalist_tabBarList>li.datalist_active>span,
.datalist_tabBarList>li.datalist_active>span:focus,
.datalist_tabBarList>li.datalist_active>span:hover {
	border-width: 0;
    flex-wrap: inherit;
	
}
.datalist_tabBarList>li>span {
	border: none;
	color: #666;
	cursor: pointer;
}

.datalist_tabBarList>li.datalist_active>span,
.datalist_tabBarList>li>span:hover {
	border: none;
	color: #4285F4 !important;
	background: transparent;
}

.datalist_tabBarList>li>span::after {
	content: "";
	background: #4285F4;
	height: 2px;
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 1px;
	transition: all 250ms ease 0s;
	transform: scale(0);
}

.datalist_tabBarList>li.datalist_active>span::after,
.datalist_tabBarList>li:hover>span::after {
  transform: scale(1);
}

.datalist_active {
	display: block !important;
}

.datalist_tab {
	display: none;
	padding-top: 0.5em;
}

.datalist_tabBarList::-webkit-scrollbar {
  display: none; /*Safari and Chrome*/
}

.datalist_tabBarList>li>span {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding: 10px 15px;
}

.datalist_tabBarList>li>span>small {
	display: block;
	text-align: center;
	font-size: 0.75rem;
}

.datalist_buttonsRight {
	text-align: right;
	margin-bottom: 2em;
	overflow: auto;
	clear: both;
}

.datalist_buttonsRight h3 {
	float: left;
	margin-top: 0.5em;
	margin-bottom: 0;
}

.datalist_entry {
	padding: 0.5rem;
	margin: 0;
	border-top: 1px solid #cccccc;
	overflow: auto;
	clear: both;
	background-color: #ffffff;
	color: #444444;
}

.datalist_entry:hover {
	color: #000000;
}

.datalist_entry span {
	display: inline-block;
}

.datalist_inlineButton {
	color: #666666;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.datalist_inlineButton:hover {
	color: #33bbff;
}

.datalist_entryButton {
	display: block;
	float: right;
	cursor: pointer;
	padding: 0.5em;
	border-radius: 0.25em;
	border: 1px solid #666666;
	background-color: #ffffff;
	color: #666666;
	box-sizing: border-box;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
	background: linear-gradient(to top, #eeeeee 0%, #ffffff 100%);
	text-align: center;
	margin-left: 1em;
}

.datalist_entryButton:hover {
	color: #33bbff;
}

.datalist_filterInput {
	display: block;
	padding: 0.5em;
	margin-bottom: 1em;
	min-width: 50%;
	max-width: 100%;
}


/* date navigation */

.datenav {
	display: flex;
	gap: 0.25rem;
}

.datenav_button {
	flex-grow: 0;
	min-width: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.datenav_input {
	flex-grow: 1;
	font-size: 1.2em;
}



/* shuttle booking */

.shuttle_book_mission {
	display: flex;
	gap: 2rem;
}

.shuttle_book_col1 {
	flex-grow: 0;
}

.shuttle_book_col2 {
	flex-grow: 1;
}

.shuttle_book_col3 {
	flex-grow: 1;
}

#shuttle_book_departures {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

#shuttle_book_departuresHolder {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.shuttle_book_sel {
	display: block;
	border: 1px solid #cccccc;
	padding: 0.5rem;
	margin-bottom: 0.5rem;
	background-color: #ffffff;
	cursor: pointer;
	border-radius: 0.25rem;
}

.shuttle_book_sel:hover {
	border: 1px solid #aaaaaa;
}

.shuttle_book_selActive {
	background-color: #eeeeee;
	border: 1px solid #111111;
}

.shuttle_book_formlabel {
}

.shuttle_book_formfield {
	margin-top: 0.5rem;
	margin-bottom: 2rem;
}

.shuttle_seats_input {
	width: calc(100% - 10rem) !important;
}

.shuttle_seats_button {
	width: 2rem;
}

.shuttle_tnotes {
	height: 19rem;
}

.shuttle_priceholder {
	border: 1px solid #cccccc;
	box-sizing: border-box;
	padding: 1rem;
	text-align: center;
	font-size: 1.2em;
}

.shuttle_statistics {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}

.shuttle_delay {
	color: #ff0000;
}

.shuttle_statistics div {
	flex: 1;
	text-align: center;
	padding: 0.5rem;
}

.shuttle_statistics div span {
	display: block;
	font-size: 1.4em;
	padding-bottom: 0.25rem;
}

.shuttle_status {
	padding: 0.5rem;
	border: 1px solid #cccccc;
	text-align: center;
	margin-bottom: 1rem;
}

.shuttle_editbutton {
	display: block;
	margin-bottom: 1rem;
	border: 1px solid #666666;
	background-color: #ffffff;
	color: #666666;
	border-radius: 0.5rem;
	padding: 0.25rem;
	box-sizing: border-box;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
	background: linear-gradient(to top, #eeeeee 0%, #ffffff 100%);
	text-align: center;
	cursor: pointer;
	font-size: 0.8em;
}

.shuttle_editbutton:hover {
	color: #33bbff;
}

.shuttle_editbutton img {
	margin: 0;
	padding: 0;
	padding-right: 0.5em;
	width: 1em;
	height: 1em;
}

.shuttle_buttonbar {
	border: 1px solid #cccccc;
	border-radius: 0.25rem;
	padding: 0.5rem;
	clear: both;
	overflow: auto;
	margin-bottom: 1rem;
	background-color: #ffffff;
}

.shuttle_buttonleft {
}

.shuttle_buttonright {
	float: right;
}

/*
.shuttle_editbutton:last-of-type {
	margin-bottom: 0 !important;
}
*/

.driver_prog_menu {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}

.driver_prog_menu a:first-child {
	border-top-left-radius: 0.25em;
	border-bottom-left-radius: 0.25em;
}

.driver_prog_menu a:last-child {
	border-top-right-radius: 0.25em;
	border-bottom-right-radius: 0.25em;
}

.driver_prog_menu a {
	flex: 1;
	text-align: center;
	background-color: #007dc1;
	color: #ffffff !important;
	padding: 0.5rem;
}

.driver_prog_menuActive {
	background-color: #0090df !important;
	font-weight: bold;
}

.driver_prog_header {
	border: 1px solid #cccccc;
	background-color: #eeeeee;
	padding: 0.5rem;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	display: flex;
}

.driver_prog_title {
	flex: 1;
}

.driver_prog_header:hover {
	background-color: #fafafa;
}

.driver_prog_first_stop {
	font-weight: bold;
	background-color: #dddddd;
}

.driver_prog_details {
	border: 1px solid #cccccc;
	border-top: 0;
	background-color: #ffffff;
	padding: 2rem;
	box-sizing: border-box;
}

.driver_prog_dest {
	display: block;
	margin-bottom: 2rem;
}

.driver_prog_dest img {
	width: 30%;
	padding: 0;
	margin: 0;
	margin-right: 1rem;
}

.driver_prog_dest span {
	display: inline-block;
	font-weight: bold;
}

.driver_prog_section {
	font-size: 1.2rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #cccccc;
}

.driver_prog_line {
	padding: 0;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #cccccc;
}

.driver_prog_notice {
	padding-left: 1rem;
	color: #ff0000;
	font-size: 0.8em;
	text-transform: uppercase;
}

.driver_prog_status {
	color: #00aa00;
	float: right;
}

.driver_prog_notes {
	float: right;
	cursor: pointer;
	padding-right: 1rem;
}

.driver_prog_seats {
	display: flex;
	justify-content: center;
	align-items: center;
}

.driver_prog_warning {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ff0000;
}

.driver_prog_seatscount {
	min-width: 2rem;
}

.driver_prog_seats span {
	padding-left: 0.5rem;
}

.driver_prog_dropoff {
	float: right;
	cursor: pointer;
}

.driver_prog_checkin {
	float: right;
	cursor: pointer;
}

.driver_prog_dropoff:hover {
	color: #cc0000;
}

.driver_prog_skipped {
	color: #999999;
}

.driver_prog_skipped .driver_prog_title {
	text-decoration: line-through;
}

.driver_prog_skiptoggle {
	display: inline-block;
	padding-right: 1rem;
}

.driver_prog_skiptoggle span:first-of-type {
	display: inline;
}

.driver_prog_skiptoggle span:last-of-type {
	display: none;
}

.driver_prog_skipped .driver_prog_skiptoggle span:first-of-type {
	display: none;
}

.driver_prog_skipped .driver_prog_skiptoggle span:last-of-type {
	display: inline;
}

.driver_prog_button {
	display: block;
	width: 100%;
	margin-top: 2rem;
	margin-bottom: 2rem;
	border: 1px solid #666666;
	background-color: #ffffff;
	color: #666666;
	border-radius: 0.5rem;
	padding: 1rem;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
	font-size: 1rem;
	line-height: 1rem;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
	background: linear-gradient(to top, #eeeeee 0%, #ffffff 100%);
}

.driver_prog_button:hover {
	color: #000000;
}

.admin_button {
	display: block;
	border-radius: 0.25em;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
	margin-bottom: 2em;
	padding: 1em;
	background-color: #ffffff;
	text-align: center;
	font-size: 0.8em;
}

.spinner {
	width: 1rem;
	height: 1rem;
}

.staff_edit {
	display: flex;
	gap: 2rem;
}

.staff_edit_col1 {
	flex: 1;
}

.staff_edit_col2 {
	flex: 1;
}


/* taxi orders */

.order_transaction {
	border: 1px solid #cccccc;
	padding: 0.5em;
	margin-top: 0.5em;
	font-size: 0.9em;
	background-color: #fafafa;
	text-align: center;
}

.order_signatures {
	overflow-x: auto;
	white-space: nowrap;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.order_signature {
	display: inline-block;
	margin-right: 1rem;
	border: 1px solid #cccccc;
	text-align: center;
	background-color: #fafafa;
}

.order_signature_img {
	width: 8rem;
	height: 4rem;
	background-size: contain;
	background-color: #ffffff;
	background-position: center center;
	background-repeat: no-repeat;
}

.order_signature span {
	display: block;
	text-align: left;
	padding-top: 0.25rem;
	border-top: 1px solid #cccccc;
	text-align: center;
	color: #666666;
	font-size: 0.8rem;
}

.order_formline {
	display: flex;
	padding-bottom: 0.25rem;
	column-gap: 0.25rem;
	align-items: center;
}

.driver_working_on {
	display: block;
	margin-bottom: 2rem;
	border-radius: 0.25rem;
	background-color: #00aa00;
	color: #ffffff !important;
	padding: 1rem;
	clear: both;
	overflow: auto;
}

.driver_working_on:hover {
	background-color: #00bb00;
}

.driver_working_order {
	display: block;
	margin-bottom: 2rem;
	border-radius: 0.25rem;
	background-color: #cccccc;
	color: #000000 !important;
	padding: 1rem;
	clear: both;
	overflow: auto;
}

.driver_working_order:hover {
	background-color: #ffffff;
}

.driver_working_off {
	display: block;
	margin-bottom: 2rem;
	border-radius: 0.25rem;
	background-color: #aa0000;
	color: #ffffff !important;
	padding: 1rem;
	clear: both;
	overflow: auto;
}

.driver_working_off:hover {
	background-color: #bb0000;
}

.driver_working_shift {
	display: inline-block;
	background-color: #eeeeee;
	padding: 0.25em;
	padding-left: 0.5em;
	padding-right: 0.5em;
	border-radius: 0.5em;
	margin: 0.25em;
	margin-left: 0;
	margin-right: 0.5em;
	font-size: 0.9em;
}

.driver_working_shift:last-of-type {
	margin-right: 0;
}

.shift_tacho_photo_button {
	float: right;
}

.shift_tacho_photo_img {
	width: 50%;
	border: 1px solid #cccccc;
}



/* messages */

.message_buttonbar {
	text-align: right;
	margin-bottom: 2rem;
}

.message_button {
	float: right;
	margin-left: 2rem;
	color: #000000;
	cursor: pointer;
}

.message_button:hover {
	color: #33bbff;
}

.message_to {
	padding: 0.5rem;
	background-color: #fafafa;
	border: 1px solid #eeeeee;
}

.message_to_holder {
	display: inline-block;
	padding: 0.25rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	margin-right: 1rem;
	border: 1px solid #cccccc;
	border-radius: 0.25rem;
	background-color: #ffffff;
}

.message_confirm_button {
	color: #666666;
	text-decoration: underline;
	cursor: pointer;
	padding-left: 1rem;
}

.message_confirm_button:hover {
	color: #000000;
}

.message_to_read {
	color: #00aa00;
}

.message_to_unread {
	color: #ff0000;
}

.message_comment {
	margin-top: 2rem;
	margin-bottom: 2rem;
}


/* docuploads widget */

.widget_docuploads_dropzone {
	border: 2px dashed #ccc;
	padding: 2em;
	text-align: center;
	cursor: pointer;
}

.widget_docuploads_dropinfo {
	text-align: center;
	margin-top: 1em;
	color: #666666;
	font-size: 0.8em;
}

.widget_docuploads_progCont {
	width: 100%;
	height: 20px;
	background-color: #f0f0f0;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-top: 10px;
	display: none;
}

.widget_docuploads_progBar {
	height: 100%;
	background-color: #4caf50;
	border-radius: 4px;
	transition: width 0.3s ease;
}

.widget_docuploads_progLabel {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #333;
	font-weight: bold;
}

.widget_docuploads_item {
	display: inline-block;
	width: 16em;
	margin-right: 1em;
	margin-bottom: 1em;
	border: 1px solid #cccccc;
	background-color: #ffffff;
	overflow: hidden;
}

.widget_docuploads_thumb {
	display: block;
	width: 16em;
	height: 8em;
	margin-top: 1em;
	margin-bottom: 1em;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	border: 0.5em solid #ffffff;
	box-sizing: border-box;
}

.widget_docuploads_filename {
	display: block;
	text-align: center;
	padding-bottom: 1em;
	overflow: hidden;
}

.widget_docuploads_item:hover .widget_docuploads_filename {
	color: #33bbff !important;
	cursor: pointer;
}

.widget_docuploads_item:hover .widget_docuploads_thumb {
	cursor: pointer;
}

.widget_docuploads_move {
	cursor: move;
	float: right;
	display: block;
	width: 2em;
	height: 2em;
	background-image: url(../pag_core/templ_admin/default/images/b_updown.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: 0.5em;
	margin-top: 0.5em;
}

.widget_docuploads_remove {
	cursor: pointer;
	display: block;
	color: #cccccc;
	background-color: #666666;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	text-align: center;
}

.widget_docuploads_remove:hover {
	color: #ffffff;
	background-color: #444444;
}

.widget_docuploads_drag {
	border-color: #555;
}



/* mini toolbar */

.minitoolbar {
	display: block;
	clear: both;
	overflow: auto;
	padding-top: 0.5rem;
}

.minitoolbar_left {
	float: left;
	margin-right: 1rem;
	padding: 0.25rem;
	border: 1px solid #cccccc;
	border-radius: 0.25rem;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-content: center;
	background-color: #fafafa;
}

.minitoolbar_left:hover {
	background-color: #eeeeee;
}

.minitoolbar_right {
	float: right;
	margin-left: 1rem;
	padding: 0.25rem;
	border: 1px solid #cccccc;
	border-radius: 0.25rem;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-content: center;
	background-color: #fafafa;
}

.minitoolbar_right:hover {
	background-color: #eeeeee;
}

.minitoolbar_center {
	margin-left: auto;
	margin-right: auto;
	padding: 0.25rem;
	padding-left: 1rem;
	padding-right: 1rem;
	border: 1px solid #cccccc;
	border-radius: 0.25rem;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-content: center;
	background-color: #fafafa;
	width: max-content;
}

.minitoolbar_center:hover {
	background-color: #eeeeee;
}



/* rapid orders */

::backdrop {
	background-color: #aaaaaa;
	opacity: 0.75;
}

dialog {
	border: 1px solid #cccccc;
	border-radius: 0.5rem;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
	outline: none;
	padding: 2rem;
	font-size: 0.9rem;
}

.taxi_rapid_unavailable {
	box-shadow: 0rem 1rem 1rem -0.5rem #aaaaaa;
	background-color:#cccccc;
	border-radius: 0.5rem;
	border:1px solid #cccccc;
	display:block;
	color:#dddddd;
	font-size: 1rem;
	padding: 1rem;
	text-align: center;
	font-weight: bold;
	text-decoration:none;
	margin: 1rem;
	text-transform: uppercase;
	top: 1rem;
	z-index: 9999999;
}

.taxi_rapid_unavailableInfo {
	color: #666666;
	padding: 1rem;
	margin-bottom: 1rem;
	font-style: italic;
	text-align: center;
}

.taxi_rapid_button {
	box-shadow: 0rem 1rem 1rem -0.5rem #3e7327;
	background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
	background-color:#77b55a;
	border-radius: 0.5rem;
	border:1px solid #4b8f29;
	display:block;
	cursor:pointer;
	color:#ffffff;
	font-size: 1rem;
	padding: 1rem;
	text-align: center;
	font-weight: bold;
	text-decoration:none;
	text-shadow:0px 1px 0px #5b8a3c;
	margin: 1rem;
	margin-bottom: 2rem;
	text-transform: uppercase;
	position: sticky;
	top: 1rem;
	z-index: 9999999;
}
.taxi_rapid_button:hover {
	background:linear-gradient(to bottom, #83c463 5%, #88c66b 100%);
	background-color:#72b352;
}

.taxi_rapid_button span {
	display: block;
	font-size: 1.4rem;
	text-align: center;
	padding-bottom: 0.5rem;
}

.taxi_rapid_unavailable span {
	display: block;
	font-size: 1.4rem;
	text-align: center;
	padding-bottom: 0.25rem;
}

.taxi_rapid_arrival {
	margin-left: 2rem;
	margin-right: 2rem;
	margin-bottom: 1rem;
	border: 1px solid #cccccc;
	background-color: #ffffff;
	border-radius: 0.5rem;
	padding: 0.5rem;
}

.taxi_rapid_arrival_no {
	font-size: 1rem;
	text-align: center;
}

.taxi_rapid_arrival_duration {
	font-size: 0.9rem;
	padding-top: 0.25rem;
	text-align: center;
}

.taxi_rapid_label {
	font-weight: bold;
	margin-bottom: 1rem;
}

.taxi_rapid_label span {
	font-weight: normal;
	color: #aaaaaa;
}

.taxi_choices {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
	font-size: 1rem;
}

.taxi_choices span:first-child {
	border-top-left-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}

.taxi_choices span:last-child {
	taxi_choices-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}

.taxi_choices span {
	flex: 1;
	display: block;
	text-align: center;
	background-color: #cccccc;
	color: #666666;
	padding: 0.5rem;
	cursor: pointer;
}

.taxi_choices span:hover {
	background-color: #dddddd;
}

.taxi_vchoices {
	display: flex;
	margin-bottom: 2rem;
	font-size: 1rem;
	flex-direction: column;
	gap: 1rem;
}

.taxi_vchoices span {
	flex: 1;
	display: block;
	text-align: center;
	background-color: #cccccc;
	color: #666666;
	padding: 0.5rem;
	cursor: pointer;
	border-radius: 0.25rem;
}

.taxi_vchoices span:hover {
	background-color: #dddddd;
}

.taxi_choices_active {
	background-color: #83c463 !important;
	color: #ffffff !important;
}

.taxi_datechoices {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
	font-size: 1rem;
}

.taxi_rapid_pax {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
}

.taxi_rapid_pax div {
	flex: 1;
}

.taxi_rapid_pax input {
	display: block;
    padding: 0.5rem 0.6rem;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    vertical-align: middle;
	box-sizing: border-box;
	width: 100%;
	color: #000000;
	background-color: #ffffff;
	margin: 1px;
}

.taxi_rapid_textarea {
	min-width: 30rem;
	height: 6rem;
    padding: 0.5rem 0.6rem;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    vertical-align: middle;
	box-sizing: border-box;
	color: #000000;
	background-color: #ffffff;
	margin: 1px;
}

.taxi_rapid_buttonbar {
	display: flex;
	width: 100%;
	margin-top: 1rem;
}

.taxi_rapid_buttonbar_left {
	flex: 1;
}

.taxi_rapid_buttonbar_right {
	flex: 0;
	white-space: nowrap;
}

.taxi_rapid_spinner {
	float: right;
	margin-right: 1rem;
}

.taxi_rapid_later {
	padding: 1rem;
	cursor: pointer;
	box-shadow:inset 0px 1px 0px 0px #cae3fc;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #4197ee) );
	background:-moz-linear-gradient( center top, #79bbff 5%, #4197ee 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#4197ee');
	background-color:#79bbff;
	border-radius:3px;
	border:1px solid #469df5;
	display:inline-block;
	color:#ffffff;
	text-align:center;
	text-shadow:0px 0px 2px #287ace;
}

.taxi_rapid_later:hover {
	color:#ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #4197ee), color-stop(1, #79bbff) );
	background:-moz-linear-gradient( center top, #4197ee 5%, #79bbff 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4197ee', endColorstr='#79bbff');
	background-color:#4197ee;
}

.taxi_rapid_submit {
	padding: 1rem;
	cursor: pointer;
	box-shadow:inset 0px 1px 0px 0px #c1ed9c;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9dce2c), color-stop(1, #8cb82b) );
	background:-moz-linear-gradient( center top, #9dce2c 5%, #8cb82b 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dce2c', endColorstr='#8cb82b');
	background-color:#9dce2c;
	border-radius:3px;
	border:1px solid #83c41a;
	display:inline-block;
	color:#ffffff;
	text-align:center;
	text-shadow:0px 0px 2px #689324;
	margin-left: 1rem;
}

.taxi_rapid_submit:hover {
	color:#ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8cb82b), color-stop(1, #9dce2c) );
	background:-moz-linear-gradient( center top, #8cb82b 5%, #9dce2c 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cb82b', endColorstr='#9dce2c');
	background-color:#8cb82b;
}

.taxi_rapid_ok {
	float: right;
	padding: 1rem;
	cursor: pointer;
	box-shadow:inset 0px 1px 0px 0px #c1ed9c;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9dce2c), color-stop(1, #8cb82b) );
	background:-moz-linear-gradient( center top, #9dce2c 5%, #8cb82b 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dce2c', endColorstr='#8cb82b');
	background-color:#9dce2c;
	border-radius:3px;
	border:1px solid #83c41a;
	display:inline-block;
	color:#ffffff;
	text-align:center;
	text-shadow:0px 0px 2px #689324;
}

.taxi_rapid_ok:hover {
	color:#ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8cb82b), color-stop(1, #9dce2c) );
	background:-moz-linear-gradient( center top, #8cb82b 5%, #9dce2c 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cb82b', endColorstr='#9dce2c');
	background-color:#8cb82b;
}

.taxi_rapid_cancel {
	float: left;
	padding: 1rem;
	cursor: pointer;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9) );
	background:-moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
	background-color:#f9f9f9;
	border-radius: 3px;
	border:1px solid #aaaaaa;
	display:inline-block;
	color:#666666;
	text-align:center;
	text-decoration:none;
	text-shadow:0px 0px 2px #ffffff;
}

.taxi_rapid_cancel:hover {
	color:#666666;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9) );
	background:-moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
	background-color:#e9e9e9;
}

.taxi_rapid_detailsreturn {
	padding: 1rem;
	cursor: pointer;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9) );
	background:-moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
	background-color:#f9f9f9;
	border-radius: 3px;
	border:1px solid #aaaaaa;
	display:block;
	color:#666666;
	text-align:center;
	text-decoration:none;
	text-shadow:0px 0px 2px #ffffff;
	margin-bottom: 2rem;
}

.taxi_rapid_detailsreturn:hover {
	color:#666666;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9) );
	background:-moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
	background-color:#e9e9e9;
}

.taxi_rapid_result {
	font-size: 1rem;
}

.taxi_rapid_taxiNo {
	font-size: 2rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.taxi_rapid_datetime_preview {
	font-size: 1.4rem;
	padding: 1rem;
	border: 1px solid #cccccc;
	text-align: center;
	margin-bottom: 2rem;
}

.taxi_rapid_datetime_instructions {
	text-align: center;
	margin-bottom: 1rem;
}



/* orders */

.orderloc_locs {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.orders_via_del {
	cursor: pointer;
}

.orders_via_moveup {
	cursor: pointer;
}

.orders_via_movedown {
	cursor: pointer;
}


.taxi_bluebutton {
	cursor: pointer;
	-moz-box-shadow:inset 0px 1px 0px 0px #cae3fc;
	-webkit-box-shadow:inset 0px 1px 0px 0px #cae3fc;
	box-shadow:inset 0px 1px 0px 0px #cae3fc;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #4197ee) );
	background:-moz-linear-gradient( center top, #79bbff 5%, #4197ee 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#4197ee');
	background-color:#79bbff;
	-webkit-border-top-left-radius:3px;
	-moz-border-radius-topleft:3px;
	border-top-left-radius:3px;
	-webkit-border-top-right-radius:3px;
	-moz-border-radius-topright:3px;
	border-top-right-radius:3px;
	-webkit-border-bottom-right-radius:3px;
	-moz-border-radius-bottomright:3px;
	border-bottom-right-radius:3px;
	-webkit-border-bottom-left-radius:3px;
	-moz-border-radius-bottomleft:3px;
	border-bottom-left-radius:3px;
	text-indent:0;
	border:1px solid #469df5;
	display:inline-block;
	color:#ffffff;
	font-family:Verdana;
	font-size:13px;
	font-weight:normal;
	font-style:normal;
	height:20px;
	line-height:20px;
	text-decoration:none;
	text-align:center;
	text-shadow:0px 0px 2px #287ace;
	padding-left: 3px;
	padding-right: 3px;
	margin: 2px;
	margin-bottom: 6px;
}

.taxi_bluebutton:hover {
	color:#ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #4197ee), color-stop(1, #79bbff) );
	background:-moz-linear-gradient( center top, #4197ee 5%, #79bbff 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4197ee', endColorstr='#79bbff');
	background-color:#4197ee;
}

.taxi_bluebutton:active {
	position:relative;
	top:1px;
}

.taxi_redbutton {
	cursor: pointer;
	-moz-box-shadow:inset 0px 1px 0px 0px #f5978e;
	-webkit-box-shadow:inset 0px 1px 0px 0px #f5978e;
	box-shadow:inset 0px 1px 0px 0px #f5978e;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f24537), color-stop(1, #c62d1f) );
	background:-moz-linear-gradient( center top, #f24537 5%, #c62d1f 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f24537', endColorstr='#c62d1f');
	background-color:#f24537;
	-webkit-border-top-left-radius:3px;
	-moz-border-radius-topleft:3px;
	border-top-left-radius:3px;
	-webkit-border-top-right-radius:3px;
	-moz-border-radius-topright:3px;
	border-top-right-radius:3px;
	-webkit-border-bottom-right-radius:3px;
	-moz-border-radius-bottomright:3px;
	border-bottom-right-radius:3px;
	-webkit-border-bottom-left-radius:3px;
	-moz-border-radius-bottomleft:3px;
	border-bottom-left-radius:3px;
	text-indent:0;
	border:1px solid #d02718;
	display:inline-block;
	color:#ffffff;
	font-family:Verdana;
	font-size:13px;
	font-weight:normal;
	font-style:normal;
	height:20px;
	line-height:20px;
	text-decoration:none;
	text-align:center;
	text-shadow:0px 0px 2px #810e05;
	padding-left: 3px;
	padding-right: 3px;
	margin: 2px;
	margin-bottom: 6px;
}

.taxi_redbutton:hover {
	color:#ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #c62d1f), color-stop(1, #f24537) );
	background:-moz-linear-gradient( center top, #c62d1f 5%, #f24537 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c62d1f', endColorstr='#f24537');
	background-color:#c62d1f;
}

.taxi_redbutton:active {
	position:relative;
	top:1px;
}

.taxi_greenbutton {
	cursor: pointer;
	-moz-box-shadow:inset 0px 1px 0px 0px #c1ed9c;
	-webkit-box-shadow:inset 0px 1px 0px 0px #c1ed9c;
	box-shadow:inset 0px 1px 0px 0px #c1ed9c;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9dce2c), color-stop(1, #8cb82b) );
	background:-moz-linear-gradient( center top, #9dce2c 5%, #8cb82b 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dce2c', endColorstr='#8cb82b');
	background-color:#9dce2c;
	-webkit-border-top-left-radius:3px;
	-moz-border-radius-topleft:3px;
	border-top-left-radius:3px;
	-webkit-border-top-right-radius:3px;
	-moz-border-radius-topright:3px;
	border-top-right-radius:3px;
	-webkit-border-bottom-right-radius:3px;
	-moz-border-radius-bottomright:3px;
	border-bottom-right-radius:3px;
	-webkit-border-bottom-left-radius:3px;
	-moz-border-radius-bottomleft:3px;
	border-bottom-left-radius:3px;
	text-indent:0;
	border:1px solid #83c41a;
	display:inline-block;
	color:#ffffff;
	font-family:Verdana;
	font-size:13px;
	font-weight:normal;
	font-style:normal;
	height:20px;
	line-height:20px;
	text-decoration:none;
	text-align:center;
	text-shadow:0px 0px 2px #689324;
	padding-left: 3px;
	padding-right: 3px;
	margin: 2px;
	margin-bottom: 6px;
}

.taxi_greenbutton:hover {
	color:#ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8cb82b), color-stop(1, #9dce2c) );
	background:-moz-linear-gradient( center top, #8cb82b 5%, #9dce2c 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cb82b', endColorstr='#9dce2c');
	background-color:#8cb82b;
}

.taxi_greenbutton:active {
	position:relative;
	top:1px;
}

.taxi_greybutton {
	cursor: pointer;
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9) );
	background:-moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
	background-color:#f9f9f9;
	-webkit-border-top-left-radius:3px;
	-moz-border-radius-topleft:3px;
	border-top-left-radius:3px;
	-webkit-border-top-right-radius:3px;
	-moz-border-radius-topright:3px;
	border-top-right-radius:3px;
	-webkit-border-bottom-right-radius:3px;
	-moz-border-radius-bottomright:3px;
	border-bottom-right-radius:3px;
	-webkit-border-bottom-left-radius:3px;
	-moz-border-radius-bottomleft:3px;
	border-bottom-left-radius:3px;
	text-indent:0;
	border:1px solid #aaaaaa;
	display:inline-block;
	color:#666666;
	font-family:Verdana;
	font-size:13px;
	font-weight:normal;
	font-style:normal;
	height:20px;
	line-height:20px;
	text-decoration:none;
	text-align:center;
	text-shadow:0px 0px 2px #ffffff;
	padding-left: 3px;
	padding-right: 3px;
	margin: 2px;
	margin-bottom: 6px;
}

.taxi_greybutton:hover {
	color:#666666;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9) );
	background:-moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
	background-color:#e9e9e9;
}

.taxi_greybutton:active {
	position:relative;
	top:1px;
}

.og_title {
	font-weight: bold;
	cursor: pointer;
	background-color: #cccccc;
	padding: 4pt;
}

.og_holder {
	border: 1px solid #cccccc;
	background-color: #ffffff;
}

.og_holder td {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}


/* reminders */

.reminders_message {
	margin-bottom: 2em;
}

.reminders_header {
	display: flex;
}

.reminders_header > div {
	flex: 1;
	padding-left: 1em;
	font-weight: bold;
}

.reminders_header > div:last-of-type {
	text-align: right;
	padding-right: 1em;
	font-weight: normal;
}

.reminders_body {
	padding: 1em;
	background-color: #ffffff;
	border: 1px solid #eeeeee;
	border-radius: 0.5em;
}



/* orders overview */

.driver_order_start {
	padding: 0.25em;
	border-radius: 0.25em;
	background-color: #eeeeee;
	border: 1px solid #cccccc;
	text-align: center;
	font-size: 1.2em;
	margin-bottom: 0.25em;
}

.driver_order_header {
	display: flex;
	gap: 1em;
	padding: 0.5em;
	border-radius: 0.25em;
	background-color: #eeeeee;
	border: 1px solid #cccccc;
}

.driver_order_logo {
	width: 5em;
	height: 4em;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 0.5em;
	background-color: #ffffff;
	border: 0.25em solid #ffffff;
}

.driver_order_info {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	gap: 0.25em;
	justify-content: center;
}

.driver_order_info1 {
	color: #666666;
	display: flex;
	gap: 1em;
	font-size: 0.8em;
}

.driver_order_info1 span {
	flex-grow: 1;
	font-weight: normal;
	text-align: right;
}

.driver_order_info2 {
	display: flex;
	gap: 1em;
	font-weight: bold;
}

.driver_order_info2 span {
	flex-grow: 1;
	font-weight: normal;
	text-align: right;
}

.driver_order_locationsholder {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	padding: 0;
	font-size: 0.9em;
}

.driver_order_locations {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-left: 1.2em;
	text-indent: -1.2em;
	color: #444444;
}

.driver_order_locations li {
	padding-top: 0.25em;
	padding-bottom: 0.25em;
}

.driver_order_locations_indent {
	width: 1.2em;
	color: #000000;
}

.driver_order_cancelled {
	text-decoration: line-through;
	color: #666666 !important;
}

.driver_order_changes {
	margin-top: 0.5em;
	padding-top: 0.5em;
	border-top: 1px solid #cccccc;
	color: #ff0000;
	font-size: 0.9em;
}

.driver_order_car {
	margin-top: 0.5em;
	padding-top: 0.5em;
	border-top: 1px solid #cccccc;
	font-size: 0.9em;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fafafa;
}

.driver_order_car_change {
	color: #ff0000;
}

.driver_order_car span {
	padding-right: 0.5em;
}

.driver_order_buttons {
	display: flex;
	gap: 1em;
	padding-top: 0.5em;
	margin-top: 0.5em;
	border-top: 1px solid #cccccc;
	align-items: center;
}

.driver_order_buttons > div:first-of-type {
	flex-grow: 1;
}

.driver_order_buttons a {
	font-size: 0.8em;
}

.driver_confirmed_yes {
	display: inline-block;
	font-size: 0.8rem;
	background-color: #00aa00;
	color: #ffffff !important;
	border-radius: 0.25rem;
	padding: 0.5rem;
}

.driver_confirmed_no {
	display: inline-block;
	font-size: 0.8rem;
	background-color: #666666;
	color: #ffffff !important;
	cursor: pointer;
	border-radius: 0.25rem;
	padding: 0.5rem;
}

.driver_confirmed_no:hover {
	background-color: #999999;
}

.driver_reminder_holder {
	float: right;
	margin-left: 0.5em;
	margin-bottom: 0.5em;
}

.reminder_confirmed_yes {
	display: inline-block;
	font-size: 0.8rem;
	background-color: #00aa00;
	color: #ffffff !important;
	border-radius: 0.25rem;
	padding: 0.5rem;
}

.reminder_confirmed_no {
	display: inline-block;
	font-size: 0.8rem;
	background-color: #666666;
	color: #ffffff !important;
	cursor: pointer;
	border-radius: 0.25rem;
	padding: 0.5rem;
}

.reminder_confirmed_no:hover {
	background-color: #999999;
}

.driver_pax_contact_request {
	color: #005DB4;
	text-decoration: none;
	cursor: pointer;
	display: inline;
}

.driver_pax_contact_request:hover {
	color: #33bbff;
}

.driver_pax_select {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 0.5em;
}

.driver_pax_select_item {
	min-width: 2em;
	flex: 0 0 auto;
	margin-right: 0.5em;
	padding: 0.25em;
	border-radius: 0.25em;
	background-color: #fafafa;
	border: 1px solid #cccccc;
	cursor: pointer;
	font-size: 0.9em;
}

.driver_pax_select_item_active {
	background-color: #666666;
	color: #ffffff;
	border: 1px solid #000000;
}

.driver_pax_select_item:hover {
	background-color: #cccccc;
}

.driver_pax_sig_header {
	display: flex;
	align-items: center;
	padding-bottom: 0.5em;
	margin-top: 2.25em;
}

.driver_pax_sig_header1 {
	font-weight: bold;
	flex: 1;
}

.driver_pax_sig_header2 {
	flex: 0 0 auto;
	font-size: 0.9em;
}

.driver_instruction_symbol {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.driver_instruction_symbol img {
	margin-right: 0.5em;
	padding: 0;
	width: 4em;
}




/*
.driver_order {
	border: 1px solid #eeeeee;
	padding: 1em;
	border-radius: 0.5em;
	margin-bottom: 1em;
	display: flex;
	gap: 2em;
	cursor: pointer;
	background-color: #ffffff;
}

.driver_order:hover {
	border: 1px solid #666666;
}

.driver_order_selected {
	border: 1px solid #000000;
}

.driver_order:last-of-type {
	margin-bottom: 0;
}

.driver_order_logoimg {
	width: 100%;
	height: 100%;
}

.driver_order_details {
	flex-grow: 1;
	display: flex;
	align-items: center;
}

.driver_order_details > div {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}

.driver_order_header {
	display: flex;
	gap: 1em;
}

.driver_order_header > span:last-of-type {
	flex-grow: 1;
	text-align: right;
	color: #666666;
}

.driver_order_driver {
	display: inline-block;
	margin-right: 0.5;
	margin-bottom: 0.5;
	padding: 0.25em;
	background-color: #eeeeee;
	border-radius: 0.5em;
	font-size: 0.9em;
}

.driver_order_driver:last-of-type {
	margin-right: 0;
	margin-bottom: 0;
}
*/