﻿a, .btn-link {
	color: #455a64;
}
.time-label {
	text-align: left;
}
.timeline > li > .timeline-item > .time {
	float: right;
}

.notify-item a{
	white-space:normal !important;
}

.timeline > .time-label > span {
	font-weight: 600;
	padding: 5px 10px;
	display: inline-block;
	background-color: #fff;
}
.bg-red {
	background-color: #ef5350 !important ;
	color:white;
}
.bg-orange {
	background-color: #05638a;
	color:white !important;
}
.text-danger, .text-red {
	color: #ef5350;
}

.text-white {
	color: #fff;
}

.text-warning, .text-yellow {
	color: #e9ab2e;
}

.text-aqua, .text-info {
	color: #398bf7;
}

.text-blue {
	color: #398bf7;
}

.text-light-blue {
	color: #398bf7;
}

.text-green, .text-success {
	color: #06d79c;
}

.text-gray {
	color: #d2d6de;
}

.text-navy {
	color: #001f3f;
}

.text-teal {
	color: #39cccc;
}

.text-olive {
	color: #7dab2e;
}

.text-lime {
	color: #01ff70;
}

.text-orange {
	color: #f7941d;
}

.text-fuchsia {
	color: #f012be;
}

.text-purple {
	color: #745af2;
}

.text-maroon {
	color: #8C1919;
}

.text-black, .text-inverse {
	color: #000;
}

.link-muted {
	color: #7a869d;
}

	.link-muted:focus, .link-muted:hover {
		color: #606c84;
	}

.link-black {
	color: #67757c;
}

	.link-black:focus, .link-black:hover {
		color: #67757c;
	}

.hide {
	display: none;
}

.no-border {
	border: 0;
}

.no-radius {
	border-radius: 0;
}

.no-padding {
	padding: 0;
}

.no-margin {
	margin: 0;
}

.no-shadow {
	box-shadow: none;
}

.margin-top-0 {
	margin-top: 0;
}

.margin-top-10 {
	margin-top: 10px;
}

.margin-top-20 {
	margin-top: 20px;
}

.margin-top-30 {
	margin-top: 30px;
}

.margin-top-40 {
	margin-top: 40px;
}


.label {
  border: none; /* Remove borders */
  color: white; /* Add a text color */
  padding: 14px 28px; /* Add some padding */
  cursor: pointer; /* Add a pointer cursor on mouse-over */
}

.Completed {
  background-color: #06d79c !important;
  color: white !important;
}

  /* Green */
  .Completed:hover {
    background-color: #06d79c;
  }

.DeliveryIssue {
	background-color: darkred !important;
	color: white !important;
}

	/* Green */
	.DeliveryIssue:hover {
		background-color: #06d79c;
	}

.Submitted {
  background-color: #06d79c !important;
  color: white !important;
}
  /* Green */
  .Submitted:hover {
    background-color: #06d79c;
  }

.Delivered {
  background-color: #06d79c !important;
  color: white !important;
}
  /* Green */
  .Delivered:hover {
    background-color: #06d79c;
  }

.Processing {
  background-color: #48b0f7 !important;
  color: white !important;
}
  /* Blue */
  .Processing:hover {
    background: #48b0f7;
  }

.PickedUp {
  background-color: #48b0f7 !important;
  color: white !important;
}
  /* Blue */
  .PickedUp:hover {
    background: #48b0f7;
  }

.Prepared {
  background-color: #ed8600 !important;
  color: white !important;
}
  /* Orange */
  .Prepared:hover {
    background: #ed8600;
  }

.Pending {
	background-color: #C2C2C2 !important;
	color: white !important;
}

  .Pending:hover {
    background: #C2C2C2;
  }
.PendingPaymentFromDriver {
	background-color: green !important;
	color: white !important;
}

	.PendingPaymentFromDriver:hover {
		background: #C2C2C2;
	}

.default {
  background-color: #e7e7e7 !important;
  color: black;
}
  /* Gray */
  .default:hover {
    background: #ddd;
  }

.Approved {
  background-color: #84eaa6 !important;
  color: white !important;
}

.Rejected {
  background-color: #ea8484 !important;
}

.Accepted {
  background-color: #06d79c !important;
  color: white !important;
}

.order-receive {
	background-color: #055576;
	color: white !important;
}
.order-cancel{
	background-color:palevioletred !important;
	color:white !important;
}
/*---modal---*/
.modal-left .modal-content {
	height: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	border-radius: 0;
}

.modal-left .modal-dialog {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 360px;
	max-width: 100%;
	margin: 0;
	-webkit-transform: translate(-100%, 0) !important;
	transform: translate(-100%, 0) !important;
	-webkit-transition: .5s;
	transition: .5s;
}

.modal-left.show .modal-dialog {
	-webkit-transform: translate(0, 0) !important;
	transform: translate(0, 0) !important;
}

.center-modal.show {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.center-modal {
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: .4s;
	transition: .4s;
}

	.center-modal .modal-dialog {
		margin: 0;
		width: 100%;
		position: absolute;
		bottom: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, 50%) !important;
		transform: translate(-50%, 50%) !important;
	}

.modal-fill.show {
	display: -webkit-box !important;
	display: flex !important;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-flow: column nowrap;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transition: .4s;
	transition: .4s;
}

.modal-fill .modal-dialog {
	display: -webkit-box;
	display: flex;
	max-width: 100%;
	width: 100%;
	height: 100%;
	margin: 0;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-flow: column nowrap;
	align-content: center;
	-webkit-box-align: center;
	align-items: center;
}

.modal-fill .modal-content {
	background: rgba(255, 255, 255, 0.97);
	width: 100%;
	max-width: 600px;
	box-shadow: none;
}

.modal-fill {
	background: rgba(255, 255, 255, 0.97);
	-webkit-transform: scale(0, 0);
	transform: scale(0, 0);
	-webkit-transition: .4s;
	transition: .4s;
}

.modal.modal-fill {
	background: rgba(255, 255, 255, 0.97);
}

.modal-fill .modal-header .close {
	position: fixed;
	top: 0;
	right: 0;
	padding: 20px;
	font-size: 2.5rem;
	font-weight: 300;
}

.modal-fill .modal-header {
	border-bottom: none;
}

.modal-fill .modal-footer {
	border: none;
}


.modal-right.show .modal-dialog {
	-webkit-transform: translate(0, 0) !important;
	transform: translate(0, 0) !important;
}

.modal-right .modal-dialog {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 360px;
	max-width: 100%;
	margin: 0;
	-webkit-transform: translate(100%, 0) !important;
	transform: translate(100%, 0) !important;
	-webkit-transition: .5s;
	transition: .5s;
}

.modal-right .modal-content {
	height: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	border-radius: 0;
}


.modal.fade.in {
	opacity: 1;
}

.modal.in .modal-dialog {
	transform: translate(0, 0);
}

.modal-backdrop.in {
	opacity: 0.5;
	/* opacity: $modal-backdrop-opacity; (SCSS) */
}



.invoice {
	position: relative;
	background: #fff;
	border: 1px solid #f4f4f4;
	padding: 20px;
	margin: 10px 25px 0px;
}
.invoice {
	font-family:'Poppins, sans-serif';
}

.invoice-header{

	padding:10px;
}

	.invoice .table > tbody > tr > td, .invoice .table > tbody > tr > th, .invoice .table > tfoot > tr > td, .invoice .table > tfoot > tr > th, .invoice .table > thead > tr > td, .invoice .table > thead > tr > th {
		border-top: 1px solid #f4f4f4;
		padding: 1rem;
	}

.invoice .table > thead > tr > th {
	border-bottom: 2px solid #f4f4f4;
}

.invoice .table tr td .progress {
	margin-top: 5px;
}

.invoice .table th, .invoice .table thead th {
	font-weight: 500;
}

.btn-adn.active, .btn-adn:active, .btn-bitbucket.active, .btn-bitbucket:active, .btn-dropbox.active, .btn-dropbox:active, .btn-facebook.active, .btn-facebook:active, .btn-flickr.active, .btn-flickr:active, .btn-foursquare.active, .btn-foursquare:active, .btn-github.active, .btn-github:active, .btn-google.active, .btn-google:active, .btn-instagram.active, .btn-instagram:active, .btn-microsoft.active, .btn-microsoft:active, .btn-openid.active, .btn-openid:active, .btn-pinterest.active, .btn-pinterest:active, .btn-reddit.active, .btn-reddit:active, .btn-soundcloud.active, .btn-soundcloud:active, .btn-tumblr.active, .btn-tumblr:active, .btn-twitter.active, .btn-twitter:active, .btn-vimeo.active, .btn-vimeo:active, .btn-vk.active, .btn-vk:active, .btn-yahoo.active, .btn-yahoo:active, .show > .dropdown-toggle.btn-adn, show > .dropdown-toggle.btn-bitbucket, .show > .dropdown-toggle.btn-dropbox, .show > .dropdown-toggle.btn-facebook, .show > .dropdown-toggle.btn-flickr, .show > .dropdown-toggle.btn-foursquare, .show > .dropdown-toggle.btn-github, .show > .dropdown-toggle.btn-google, .show > .dropdown-toggle.btn-instagram, .show > .dropdown-toggle.btn-microsoft, .show > .dropdown-toggle.btn-openid, .show > .dropdown-toggle.btn-pinterest, .show > .dropdown-toggle.btn-reddit, .show > .dropdown-toggle.btn-soundcloud, .show > .dropdown-toggle.btn-tumblr, .show > .dropdown-toggle.btn-twitter, .show > .dropdown-toggle.btn-vimeo, .show > .dropdown-toggle.btn-vk, .show > .dropdown-toggle.btn-yahoo {
	background-image: none;
}

.invoice-details, .total-payment h3 {
	padding-top: 15px;
	padding-bottom: 15px;
}

.invoice-title {
	margin-top: 0;
}

.invoice-details {
	background-color: #f2f6f8;
	margin-bottom: 15px;
	border: 1px solid #ccc;
}

.total-payment h3 {
	border-top: 1px solid #ccc;
	display: inline-block;
	margin-top: 0;
}

.gmaps, .gmaps-panaroma {
  height: 600px !important;
}

.angular-google-map-container {
  height: 600px;
}

.dlg-map.gmaps, .dlg-map .gmaps-panaroma, .dlg-map .angular-google-map-container {
	height: 380px !important;
}

.btn-toggle-busy:after{
	content:'Available';
	padding-left:10px;
}

.btn-toggle-busy:before {
	content: 'Busy'
}


.item-pic-container {
  /*height: 250px;*/
  border: 1px dashed #8f99aa;
  position: relative;
  text-align: center;
  margin: 0px auto;
}
.item-pic-container img{
	height: 250px;
	width:100%;
	object-fit:cover;
}

.item-pic-link {
	cursor: pointer;
	color: blue;
	text-align: center;
}


.img-file-input
{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	opacity:0;
	cursor:pointer;
}

.ikn-overlay {
	position: absolute;
	left: 0;
	top: 0;
	display:none;
	bottom: 0;
	width: 100%;
	opacity: 0.5;
	background-color: lightgrey;
}
.pic-upload 
{
  /* display: none; */
  /* position: absolute; */
  /* left: 0; */
  /* top: 0; */
  /* height: 50px; */
  width: 100%;
  font-size: 40px;
  color: orange;
  vertical-align: central;
  text-align: center;
  /* padding-top: 5px; */
}

.item-pic-container:hover .pic-upload,
.item-pic-container:hover .ikn-overlay
{
	display: block;
	cursor: pointer;
}

.pic-select-text {
  margin-top: -15px;
  color: orange;
  font-size: 15px;
  opacity: 1;
  font-weight: 600;
}
#pac-input.in-places {
  width:300px;
  height:40px;
  font-size:16px;
}
.pac-container {
  z-index: 100000;
}

.btn-compact{
  padding:2px 2px;
}
.td-compact{
  padding: 5px 5px;
}

.select2-container.select2-container--open {
  z-index: 10000000 !important;
}
.no-pointer{
  cursor:none !important;
}
.m-t-60{
  margin-top: 60px;
}
.dropdown-menu, .dropdown-grid {
  z-index: 1002 !important;
}