body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	padding: 5px;
	box-sizing: border-box;
	width: 100%;
}
/*general buttons*/
.yellow_btn {
	outline: none;
	box-sizing: border-box;
	border-radius: 5px;
	color: #1f0c72;
	border: 1px solid #ffaa22;
	cursor: pointer;
	font-weight: bold;
	text-shadow: 0px 1px 0px #ffee66;
	font-family: 'Open Sans', sans-serif;
	background-image: -webkit-linear-gradient(-90deg, #ffe859 0, #ffed7a 50%, #ffde00 51%, #ccb000 100%);
	background-image: -moz-linear-gradient(180deg, #ffe859 0, #ffed7a 50%, #ffde00 51%, #ccb000 100%);
	background-image: linear-gradient(180deg, #ffe859 0, #ffed7a 50%, #ffde00 51%, #ccb000 100%);
	background-position: 50% 50%;
	-webkit-background-origin: padding-box;
	background-origin: padding-box;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-background-size: auto auto;
	background-size: auto auto;
}
.yellow_btn:hover {
	background-image: -webkit-linear-gradient(-90deg, #ffd800 0, #ffed7a 50%, #ffeb70 51%, #ccb000 100%);
	background-image: -moz-linear-gradient(180deg, #ffd800 0, #ffed7a 50%, #ffeb70 51%, #ccb000 100%);
	background-image: linear-gradient(180deg, #ffd800 0, #ffed7a 50%, #ffeb70 51%, #ccb000 100%);
	background-position: 50% 50%;
	-webkit-background-origin: padding-box;
	background-origin: padding-box;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-background-size: auto auto;
	background-size: auto auto;
}
.yellow_btn:active {
	background-image: -webkit-linear-gradient(-90deg, #edbd00 0, #ffed7a 50%, #ffeb70 51%, #ccb000 100%);
	background-image: -moz-linear-gradient(180deg, #edbd00 0, #ffed7a 50%, #ffeb70 51%, #ccb000 100%);
	background-image: linear-gradient(180deg, #edbd00 0, #ffed7a 50%, #ffeb70 51%, #ccb000 100%);
	background-position: 50% 50%;
	-webkit-background-origin: padding-box;
	background-origin: padding-box;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-background-size: auto auto;
	background-size: auto auto;
	-webkit-box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.2) inset;
	box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.2) inset;
}
.blue_btn {
	outline: none;
	box-sizing: border-box;
	border-radius: 5px;
	border-width: 1px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	height: 40px;
	line-height: 40px;
	color: white;
	outline: none;
	border: 1px solid #0f639b;
	background-image: -webkit-linear-gradient(-90deg, #4326ff 0, #0e0054 50%, #1e0d7c 51%, #442bbf 100%);
	background-image: -moz-linear-gradient(180deg, #4326ff 0, #0e0054 50%, #1e0d7c 51%, #442bbf 100%);
	background-image: linear-gradient(180deg, #4326ff 0, #0e0054 50%, #1e0d7c 51%, #442bbf 100%);
	background-position: 50% 50%;
	-webkit-background-origin: padding-box;
	background-origin: padding-box;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-background-size: auto auto;
	background-size: auto auto;
}
.blue_btn:hover {
	border: 1px solid #0088e2;
	background-image: -webkit-linear-gradient(-90deg, #644cff 0, #250ca0 50%, #1e0d7c 51%, #442bbf 100%);
	background-image: -moz-linear-gradient(180deg, #644cff 0, #250ca0 50%, #1e0d7c 51%, #442bbf 100%);
	background-image: linear-gradient(180deg, #644cff 0, #250ca0 50%, #1e0d7c 51%, #442bbf 100%);
	background-position: 50% 50%;
	-webkit-background-origin: padding-box;
	background-origin: padding-box;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-background-size: auto auto;
	background-size: auto auto;
}
.blue_btn:active {
	-webkit-box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.5) inset;
	box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.5) inset;
}
@media screen and (max-width: 500px) {
	/*data wrap*/
	.data_wrap {
		position: relative;
		height: auto;
		overflow: auto;
		width: 100%;
		padding-top: 100px;
		margin: 0 auto;
	}
	/*destination selection modal*/
	.dest_modal {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		height: 100%;
		min-height: 200px;
		width: 100%;
		background-color: #1e0c72;
		z-index: 10;
		padding: 10px;
		box-sizing: border-box;
	}
	.dest_modal .custom_area {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		height: 100%;
		width: 100%;
		background-color: rgba(30, 12, 114, 0.59);
		z-index: 03;
	}
	.dest_modal .custom_area>.innr {
		padding: 20px;
		box-sizing: border-box;
		width: 80%;
		height: 60%;
		background-color: rgb(30, 12, 114);
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
	}
	.dest_modal .custom_area p {
		color: white;
		font-size: 15px;
	}
	.dest_modal .custom_area textarea {
		width: 100%;
		margin: 0;
		height: 100px;
		resize: none;
		outline: none;
	}
	.dest_modal .custom_area button {
		font-family: sans-serif;
		font-weight: bold;
		font-size: 12px;
		padding: 5px 10px;
		box-sizing: border-box;
		cursor: pointer;
	}
	.dest_modal .modal_in {
		position: relative;
		bottom: 0;
		left: 0;
		margin: auto;
		width: 100%;
		height: 100%;
		border: red solid 0px;
		background-color: white;
		box-sizing: border-box;
		background-color: white;
		padding: 0px 10px 10px 10px;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.dest_modal .modal_in .modal_close {
		font-weight: bold;
		font-size: 12px;
		background-color: #1e0c72;
		color: white;
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		margin: auto;
		text-align: center;
		border-radius: 0px 0px 30px 30px;
		width: 100px;
		height: auto;
		padding: 4px 5px;
		font-size: 12px;
		cursor: pointer;
	}
	.dest_modal ul {
		position: relative;
		display: inline-block;
		margin: 0;
		padding: 0;
		width: 100%;
		height: auto;
	}
	.dest_modal ul li {
		list-style-type: none;
		font-weight: bold;
		font-size: 11px;
		width: 100%;
		text-indent: 5px;
		padding: 5px 0;
		border: solid rgba(30, 12, 114, 0.5);
		border-width: 0px 1px 1px 1px;
		box-sizing: border-box;
		background-color: white;
		color: #1e0c72;
		-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
		-moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	}
	.dest_modal ul li.heading {
		-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.0);
		-moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.0);
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.0);
		border: solid rgba(30, 12, 114, 0.5);
		border-width: 1px 1px 1px 1px;
		text-align: center;
		background-color: #ffde00;
		color: #1e0c72;
		font-size: 13px;
		padding: 2px 0;
		text-indent: 0px;
	}
	.dest_modal ul li.notfirst {
		margin-top: 10px;
	}
	.dest_modal ul li.otr_lcl {
		cursor: pointer;
	}
	.dest_modal ul li.custom_lcl_choice {
		height: auto !important;
		padding: 10px !important;
		text-indent: 0px;
		display: block;
	}
	.dest_modal ul li.otr_lcl:hover {
		background-color: #dbdbdb;
	}
	.dest_modal ul li:first-of-type {
		margin-top: 30px;
	}
	.dest_modal ul li span {
		float: right;
		padding: 0 5px 0 0;
	}
	/*head with logo*/
	section.head {
		height: 150px;
		width: 100%;
		position: relative;
	}
	section.head #menu_btn {
		display: none;
		position: absolute;
		height: 20px;
		width: 20px;
		top: 10px;
		right: 10px;
		margin: auto;
		background-image: url(images/mobi_icon.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100% 100%;
	}
	section.head .logo {
		display: none;
	}
	section.head #req_btn,
	section.head #back_btn {
		background-color: #1e0c72;
		font-size: 10px;
		text-align: center;
		width: 150px;
		height: 40px;
		line-height: 40px;
		margin: 0 auto;
		position: absolute;
		left: 0;
		right: 0;
		bottom: -10px;
		border-width: 0;
		color: white;
		font-weight: bold;
		border-radius: 100px;
		cursor: pointer;
	}
	section.head #back_btn {
		display: none;
	}
	section.pos_btns {
		width: 50%;
		max-width: 200px;
		margin: 0 auto;
		display: flex;
		justify-content: space-around;
	}
	section.pos_btns>div {
		margin-top: 20px;
		float: left;
		border-radius: 100px;
		color: white;
		font-weight: bold;
		text-align: center;
		font-size: 13px;
		width: 35px;
		line-height: 35px;
		height: 35px;
		background-color: #1e0c72;
		opacity: .1;
		cursor: pointer;
	}
	form.data_slides {
		margin-top: 10px;
		height: 330px;
		width: 100%;
	}
	form.data_slides .form_slide {}
	form.data_slides .form_slide .grey_data {
		height: 270px;
	}
	form.data_slides .next_btn {
		margin: 5px auto 0 auto;
		width: 100%;
	}
	/*welcome slide*/
	form.data_slides .welcome {
		/*        display: none;*/
		font-size: 12px;
		padding: 0 5%;
		text-align: center;
		box-sizing: border-box;
	}
	form.data_slides .welcome label {
		font-size: 15px;
		clear: both;
		display: block;
	}
	form.data_slides .welcome label span {
		font-weight: bold;
	}
	form.data_slides .welcome input {
		background-color: #ffffff82;
		border-color: #1e0c72;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		outline: none;
		font-size: 12px;
		font-weight: bold;
		color: #1e0c72;
		padding: 0px 20px;
		height: 40px;
		line-height: 40px;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		margin: 15px 0 0 0;
		width: 100%;
		cursor: pointer;
		text-align: center;
	}
	form.data_slides .welcome h1 {
		display: none;
	}
	form.data_slides .welcome h1 span {
		color: #ffa800;
	}
	form.data_slides .welcome .comp_details {
		display: none;
	}
	form.data_slides .welcome .comp_details .image {
		height: 80px;
		margin: 10px auto;
		background-color: white;
		border-radius: 10px;
		width: 150px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	form.data_slides .welcome .comp_details .name {
		text-align: center;
		font-weight: bold;
		font-size: 15px;
	}
	form.data_slides .welcome .comp_details .locale {
		text-align: center;
		font-size: 15px;
		margin-bottom: 10px;
	}
	form.data_slides .welcome .comp_details .btns>div {
		background-color: #1e0c72;
		font-size: 12px;
		text-align: center;
		width: 48%;
		float: left;
		box-sizing: border-box;
		height: 35px;
		line-height: 35px;
		margin: 0 auto;
		border-width: 0;
		color: white;
		font-weight: bold;
		border-radius: 5px;
		cursor: pointer;
	}
	form.data_slides .welcome .comp_details .btns .next {
		margin-right: 4%;
	}
	form.data_slides .welcome .comp_details .btns .prev {}
	form.data_slides .welcome .enter_code_box {}
	form.data_slides .welcome .enter_code_box #verify_comp_code {
		margin-top: 10px;
	}
	/*choose pickup location*/
	form.data_slides .pickup_location {
		display: none;
		font-size: 12px;
		padding: 0 5%;
		text-align: center;
		box-sizing: border-box;
	}
	form.data_slides .pickup_location .grey_data {
		background-color: #c9ccff;
		border-radius: 5px;
		padding: 52px 20px;
		box-sizing: border-box;
	}
	form.data_slides .pickup_location .select_box .innr {
		background-color: #1e0c72;
		border-radius: 5px;
		padding: 10px 20px;
		font-weight: bold;
		border: 1px solid #947dff;
		margin: 18px 0;
		color: white;
		box-sizing: border-box;
		cursor: pointer;
	}
	form.data_slides .pickup_location .select_box .innr span {
		font-weight: lighter;
		color: #61c8ff;
		padding: 5px 0 0 0;
		box-sizing: border-box;
		display: block;
	}
	/*user_info slide*/
	form.data_slides p.user_top_text {
		color: white;
		font-weight: bold;
		text-align: center;
		font-size: 14px;
		display: block;
		margin: 0;
	}
	form.data_slides .user_info {
		display: none;
		padding: 0px 10px 10px 10px;
		width: 100%;
		box-sizing: border-box;
	}
	form.data_slides .user_info p {
		text-align: center;
		font-weight: bold;
		font-size: 15px;
		line-height: 25px;
	}
	form.data_slides .user_info input {
		background-color: #ffffff82;
		border-color: #1e0c72;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		outline: none;
		color: #1e0c72;
		font-size: 12px;
		font-weight: bold;
		height: 30px;
		line-height: 30px;
		padding: 0 20px;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		margin: 0 0 10px 0;
		width: 100%;
		cursor: pointer;
	}
	form.data_slides .user_info .last_btn {
		width: 100%;
	}
	/*pickup time & date slide*/
	form.data_slides .pickup {
		display: none;
		padding: 0px 10px 10px 10px;
		width: 100%;
		box-sizing: border-box;
	}
	form.data_slides .pickup .pickup_data {
		position: relative;
		border-radius: 5px;
		background-color: #b4b4b4;
		padding: 10px;
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
		overflow: auto;
	}
	form.data_slides .pickup .pickup_data .active_sesh {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		z-index: 01;
		background-color: #ffde00;
		padding: 20px;
		box-sizing: border-box;
	}
	form.data_slides .pickup .pickup_data .active_sesh p {
		text-align: center;
		font-weight: bold;
	}
	form.data_slides .pickup .pickup_data .active_sesh button {
		width: 45%;
		margin-left: 2.7%;
	}
	form.data_slides .pickup .pickup_data input[type="radio"] {
		display: none;
	}
	form.data_slides .pickup .pickup_data #datepicker {
		background-color: #1e0c72;
		border-color: #1e0c72;
		color: white;
		font-size: 14px;
		font-weight: normal;
		height: 40px;
		line-height: 40px;
		text-align: center;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		width: 100%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		cursor: pointer;
	}
	form.data_slides .pickup .pickup_data .date_choice {
		display: block;
		font-size: 12px;
		font-weight: bold;
		height: 30px;
		line-height: 30px;
		padding: 0 20px;
		display: inline-block;
		background-color: #ffffff;
		border-color: #1e0c72;
		color: #1e0c72;
		text-align: center;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 100px;
		margin: 5px 0;
		width: 100%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		cursor: pointer;
	}
	form.data_slides .pickup .pickup_data .time_pckr {
		/*    display: none;*/
		width: 100%;
		position: relative;
		/*    overflow: auto;*/
	}
	form.data_slides .pickup .pickup_data .time_pckr>p {
		display: block;
		margin: 10px auto 25px 0;
		text-align: center;
		color: #1e0c72;
		font-weight: bold;
		font-size: 13px;
		text-indent: 0px;
		width: 100%;
		line-height: normal;
	}
	form.data_slides .pickup .pickup_data .time_pckr .time_slct_box {
		width: 100%;
		height: 40px;
		display: flex;
		justify-content: space-between;
	}
	form.data_slides .pickup .pickup_data .time_pckr .time_slct_box .time_btn {
		width: 20%;
		height: 40px;
		float: left;
		line-height: 40px;
		font-size: 15px;
		text-align: center;
		position: relative;
		cursor: pointer;
		font-weight: bold;
		text-decoration: none;
		box-sizing: border-box;
	}
	form.data_slides .pickup .pickup_data .time_pckr .confirm p {
		text-align: center;
		font-size: 13px;
		line-height: 15px;
		margin: 10px 0;
		font-weight: bold;
	}
	form.data_slides .pickup .pickup_data .time_pckr .confirm button {
		width: 47%;
		height: 30px;
		line-height: 20px;
		margin: 0px 1%;
		box-sizing: border-box;
	}
	form.data_slides .pickup .pickup_data .time_pckr #time {
		display: block;
		height: 100%;
		float: left;
		line-height: 40px;
		font-size: 15px;
		font-weight: bold;
		background-color: #ffffff;
		border-color: #1e0c72;
		color: #1e0c72;
		text-align: center;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		margin: 0;
		padding: 0;
		width: 55%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		cursor: pointer;
	}
	form.data_slides .pickup .pickup_data .time_pckr #seat_avail {
		display: none;
		width: 100%;
		height: 40px;
		line-height: 40px;
		margin: 10px 0 0 0;
	}
	/*drop off selection slide*/
	form.data_slides .dropoff {
		display: none;
		padding: 0px 10px 10px 10px;
		width: 100%;
		box-sizing: border-box;
	}
	form.data_slides .dropoff .dropoff_data {
		border-radius: 5px;
		background-color: grey;
		padding: 10px;
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
	}
	form.data_slides .dropoff .dropoff_data>div {
		float: none;
		width: 100%;
		overflow: auto;
		padding: 5px 0;
	}
	form.data_slides .dropoff .dropoff_data label {
		font-size: 12px;
		font-weight: bold;
		padding: 5px 10px;
		background-color: #ffffff;
		border-color: #1e0c72;
		color: #1e0c72;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		box-sizing: border-box;
		display: block;
		width: 100%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		cursor: pointer;
		-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	}
	form.data_slides .dropoff .dropoff_data textarea {
		height: 130px !important;
		border-radius: 20px !important;
		line-height: normal !important;
		padding: 10px !important;
		box-sizing: border-box;
		font-size: 12px;
	}
	form.data_slides .dropoff .dropoff_data .otr_lcl_input {
		cursor: pointer;
		height: 50px;
		line-height: 50px;
		height: 30px;
		padding: 1px 0;
		box-sizing: border-box;
		line-height: 30px;
		margin-top: 10px;
		clear: both;
		text-align: center;
		font-size: 12px;
		font-weight: bold;
		background-color: #ffffff;
		border-color: #1e0c72;
		color: #1e0c72;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 100px;
		width: 100%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		resize: none;
	}
	form.data_slides .dropoff .dropoff_data input[type="radio"] {
		display: none;
	}
}
@media screen and (min-width: 501px) and (max-width: 800px) {
	/*data wrap*/
	.data_wrap {
		position: relative;
		background-image: url(images/data_wrap_bg.jpg);
		background-repeat: repeat-x;
		background-position: center;
		background-size: auto 100%;
		position: absolute;
		/* border-radius: 0 0 10px 10px; */
		height: auto;
		overflow: auto;
		display: inline-block;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 460px;
		height: 100%;
		max-height: 650px;
		padding-top: 0px;
		margin: 0 auto;
		-webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
		-moz-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 10px 10px 5px rgba(0, 0, 0, 0.5);
	}
	/*destination selection modal*/
	.dest_modal {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		height: 100%;
		min-height: 200px;
		width: 100%;
		background-color: #1e0c72;
		z-index: 10;
		padding: 10px;
		box-sizing: border-box;
	}
	.dest_modal .custom_area {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		height: 100%;
		width: 100%;
		background-color: rgba(30, 12, 114, 0.59);
		z-index: 03;
	}
	.dest_modal .custom_area>.innr {
		padding: 20px;
		box-sizing: border-box;
		width: 80%;
		height: 60%;
		background-color: rgb(30, 12, 114);
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
	}
	.dest_modal .custom_area p {
		color: white;
		font-size: 15px;
	}
	.dest_modal .custom_area textarea {
		width: 100%;
		margin: 0;
		height: 100px;
		resize: none;
		outline: none;
	}
	.dest_modal .custom_area button {
		font-family: sans-serif;
		font-weight: bold;
		font-size: 12px;
		padding: 5px 10px;
		box-sizing: border-box;
		cursor: pointer;
	}
	.dest_modal .modal_in {
		position: relative;
		bottom: 0;
		left: 0;
		margin: auto;
		width: 100%;
		height: 100%;
		border: red solid 0px;
		background-color: white;
		box-sizing: border-box;
		background-color: white;
		padding: 0px 10px 10px 10px;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.dest_modal .modal_in .modal_close {
		font-weight: bold;
		font-size: 12px;
		background-color: #1e0c72;
		color: white;
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		margin: auto;
		text-align: center;
		border-radius: 0px 0px 30px 30px;
		width: 100px;
		height: auto;
		padding: 4px 5px;
		font-size: 12px;
		cursor: pointer;
	}
	.dest_modal ul {
		position: relative;
		display: inline-block;
		margin: 0;
		padding: 0;
		width: 100%;
		height: auto;
	}
	.dest_modal ul li {
		list-style-type: none;
		font-weight: bold;
		font-size: 11px;
		width: 100%;
		text-indent: 5px;
		padding: 5px 0;
		border: solid rgba(30, 12, 114, 0.5);
		border-width: 0px 1px 1px 1px;
		box-sizing: border-box;
		background-color: white;
		color: #1e0c72;
		-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
		-moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	}
	.dest_modal ul li.heading {
		-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.0);
		-moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.0);
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.0);
		border: solid rgba(30, 12, 114, 0.5);
		border-width: 1px 1px 1px 1px;
		text-align: center;
		background-color: #ffde00;
		color: #1e0c72;
		font-size: 13px;
		padding: 2px 0;
		text-indent: 0px;
	}
	.dest_modal ul li.notfirst {
		margin-top: 10px;
	}
	.dest_modal ul li.otr_lcl {
		cursor: pointer;
	}
	.dest_modal ul li.custom_lcl_choice {
		height: auto !important;
		padding: 10px !important;
		text-indent: 0px;
		display: block;
	}
	.dest_modal ul li.otr_lcl:hover {
		background-color: #dbdbdb;
	}
	.dest_modal ul li:first-of-type {
		margin-top: 30px;
	}
	.dest_modal ul li span {
		float: right;
		padding: 0 5px 0 0;
	}
	/*head with logo*/
	section.head {
		height: 150px;
		width: 100%;
		position: relative;
		background-image: url(images/head_bg.png);
		background-repeat: no-repeat;
		background-position: bottom center;
		background-size: 100% auto;
	}
	section.head #menu_btn {
		display: none;
		position: absolute;
		height: 20px;
		width: 20px;
		top: 10px;
		right: 10px;
		margin: auto;
		background-image: url(images/mobi_icon.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100% 100%;
	}
	section.head .logo {
		width: 100px;
		position: absolute;
		top: 10px;
		right: 0;
		/* bottom: 0; */
		left: 0;
		margin: auto;
	}
	section.head #req_btn,
	section.head #back_btn {
		background-color: #1e0c72;
		font-size: 10px;
		text-align: center;
		width: 150px;
		height: 40px;
		line-height: 40px;
		margin: 0 auto;
		position: absolute;
		left: 0;
		right: 0;
		bottom: -10px;
		border-width: 0;
		color: white;
		font-weight: bold;
		border-radius: 100px;
		cursor: pointer;
	}
	section.head #back_btn {
		display: none;
	}
	section.pos_btns {
		width: 50%;
		max-width: 200px;
		margin: 0 auto;
		display: flex;
		justify-content: space-around;
	}
	section.pos_btns>div {
		margin-top: 20px;
		float: left;
		border-radius: 100px;
		color: white;
		font-weight: bold;
		text-align: center;
		font-size: 13px;
		width: 35px;
		line-height: 35px;
		height: 35px;
		background-color: #1e0c72;
		opacity: .1;
		cursor: pointer;
	}
	form.data_slides {
		margin-top: 10px;
		height: 330px;
		width: 100%;
	}
	form.data_slides .form_slide {}
	form.data_slides .form_slide .grey_data {
		height: 270px;
	}
	form.data_slides .next_btn {
		margin: 5px auto 0 auto;
		width: 100%;
	}
	/*welcome slide*/
	form.data_slides .welcome {
		/*        display: none;*/
		font-size: 12px;
		padding: 0 5%;
		text-align: center;
		box-sizing: border-box;
	}
	form.data_slides .welcome label {
		font-size: 15px;
		clear: both;
		display: block;
	}
	form.data_slides .welcome label span {
		font-weight: bold;
	}
	form.data_slides .welcome input {
		background-color: #ffffff82;
		border-color: #1e0c72;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		outline: none;
		font-size: 12px;
		font-weight: bold;
		color: #1e0c72;
		padding: 0px 20px;
		height: 40px;
		line-height: 40px;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		margin: 15px 0 0 0;
		width: 100%;
		cursor: pointer;
		text-align: center;
	}
	form.data_slides .welcome h1 {
		display: none;
	}
	form.data_slides .welcome h1 span {
		color: #ffa800;
	}
	form.data_slides .welcome .comp_details {
		display: none;
	}
	form.data_slides .welcome .comp_details .image {
		height: 80px;
		margin: 10px auto;
		background-color: white;
		border-radius: 10px;
		width: 150px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	form.data_slides .welcome .comp_details .name {
		text-align: center;
		font-weight: bold;
		font-size: 15px;
	}
	form.data_slides .welcome .comp_details .locale {
		text-align: center;
		font-size: 15px;
		margin-bottom: 10px;
	}
	form.data_slides .welcome .comp_details .btns>div {
		background-color: #1e0c72;
		font-size: 12px;
		text-align: center;
		width: 48%;
		float: left;
		box-sizing: border-box;
		height: 35px;
		line-height: 35px;
		margin: 0 auto;
		border-width: 0;
		color: white;
		font-weight: bold;
		border-radius: 5px;
		cursor: pointer;
	}
	form.data_slides .welcome .comp_details .btns .next {
		margin-right: 4%;
	}
	form.data_slides .welcome .comp_details .btns .prev {}
	form.data_slides .welcome .enter_code_box {}
	form.data_slides .welcome .enter_code_box #verify_comp_code {
		margin-top: 10px;
	}
	/*choose pickup location*/
	form.data_slides .pickup_location {
		display: none;
		font-size: 12px;
		padding: 0 5%;
		text-align: center;
		box-sizing: border-box;
	}
	form.data_slides .pickup_location .grey_data {
		background-color: #c9ccff;
		border-radius: 5px;
		padding: 52px 20px;
		box-sizing: border-box;
	}
	form.data_slides .pickup_location .select_box .innr {
		background-color: #1e0c72;
		border-radius: 5px;
		padding: 10px 20px;
		font-weight: bold;
		border: 1px solid #947dff;
		margin: 18px 0;
		color: white;
		box-sizing: border-box;
		cursor: pointer;
	}
	form.data_slides .pickup_location .select_box .innr span {
		font-weight: lighter;
		color: #61c8ff;
		padding: 5px 0 0 0;
		box-sizing: border-box;
		display: block;
	}
	/*user_info slide*/
	form.data_slides p.user_top_text {
		color: white;
		font-weight: bold;
		text-align: center;
		font-size: 14px;
		display: block;
		margin: 0;
	}
	form.data_slides .user_info {
		display: none;
		padding: 0px 10px 10px 10px;
		width: 100%;
		box-sizing: border-box;
	}
	form.data_slides .user_info p {
		text-align: center;
		font-weight: bold;
		font-size: 15px;
		line-height: 25px;
	}
	form.data_slides .user_info input {
		background-color: #ffffff82;
		border-color: #1e0c72;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		outline: none;
		color: #1e0c72;
		font-size: 12px;
		font-weight: bold;
		height: 30px;
		line-height: 30px;
		padding: 0 20px;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		margin: 0 0 10px 0;
		width: 100%;
		cursor: pointer;
	}
	form.data_slides .user_info .last_btn {
		width: 100%;
	}
	/*pickup time & date slide*/
	form.data_slides .pickup {
		display: none;
		padding: 0px 10px 10px 10px;
		width: 100%;
		box-sizing: border-box;
	}
	form.data_slides .pickup .pickup_data {
		position: relative;
		border-radius: 5px;
		background-color: #b4b4b4;
		padding: 10px;
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
		overflow: auto;
	}
	form.data_slides .pickup .pickup_data .active_sesh {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		z-index: 01;
		background-color: #ffde00;
		padding: 20px;
		box-sizing: border-box;
	}
	form.data_slides .pickup .pickup_data .active_sesh p {
		text-align: center;
		font-weight: bold;
	}
	form.data_slides .pickup .pickup_data .active_sesh button {
		width: 45%;
		margin-left: 2.7%;
	}
	form.data_slides .pickup .pickup_data input[type="radio"] {
		display: none;
	}
	form.data_slides .pickup .pickup_data #datepicker {
		background-color: #1e0c72;
		border-color: #1e0c72;
		color: white;
		font-size: 14px;
		font-weight: normal;
		height: 40px;
		line-height: 40px;
		text-align: center;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		width: 100%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		cursor: pointer;
	}
	form.data_slides .pickup .pickup_data .date_choice {
		display: block;
		font-size: 12px;
		font-weight: bold;
		height: 30px;
		line-height: 30px;
		padding: 0 20px;
		display: inline-block;
		background-color: #ffffff;
		border-color: #1e0c72;
		color: #1e0c72;
		text-align: center;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 100px;
		margin: 5px 0;
		width: 100%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		cursor: pointer;
	}
	form.data_slides .pickup .pickup_data .time_pckr {
		/*    display: none;*/
		width: 100%;
		position: relative;
		/*    overflow: auto;*/
	}
	form.data_slides .pickup .pickup_data .time_pckr>p {
		display: block;
		margin: 10px auto 25px 0;
		text-align: center;
		color: #1e0c72;
		font-weight: bold;
		font-size: 13px;
		text-indent: 0px;
		width: 100%;
		line-height: normal;
	}
	form.data_slides .pickup .pickup_data .time_pckr .time_slct_box {
		width: 100%;
		height: 40px;
		display: flex;
		justify-content: space-between;
	}
	form.data_slides .pickup .pickup_data .time_pckr .time_slct_box .time_btn {
		width: 20%;
		height: 40px;
		float: left;
		line-height: 40px;
		font-size: 15px;
		text-align: center;
		position: relative;
		cursor: pointer;
		font-weight: bold;
		text-decoration: none;
		box-sizing: border-box;
	}
	form.data_slides .pickup .pickup_data .time_pckr .confirm p {
		text-align: center;
		font-size: 13px;
		line-height: 15px;
		margin: 10px 0;
		font-weight: bold;
	}
	form.data_slides .pickup .pickup_data .time_pckr .confirm button {
		width: 47%;
		height: 30px;
		line-height: 20px;
		margin: 0px 1%;
		box-sizing: border-box;
	}
	form.data_slides .pickup .pickup_data .time_pckr #time {
		display: block;
		height: 100%;
		float: left;
		line-height: 40px;
		font-size: 15px;
		font-weight: bold;
		background-color: #ffffff;
		border-color: #1e0c72;
		color: #1e0c72;
		text-align: center;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		margin: 0;
		padding: 0;
		width: 55%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		cursor: pointer;
	}
	form.data_slides .pickup .pickup_data .time_pckr #seat_avail {
		display: none;
		width: 100%;
		height: 40px;
		line-height: 40px;
		margin: 10px 0 0 0;
	}
	/*drop off selection slide*/
	form.data_slides .dropoff {
		display: none;
		padding: 0px 10px 10px 10px;
		width: 100%;
		box-sizing: border-box;
	}
	form.data_slides .dropoff .dropoff_data {
		border-radius: 5px;
		background-color: grey;
		padding: 10px;
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
	}
	form.data_slides .dropoff .dropoff_data>div {
		float: none;
		width: 100%;
		overflow: auto;
		padding: 5px 0;
	}
	form.data_slides .dropoff .dropoff_data label {
		font-size: 12px;
		font-weight: bold;
		padding: 5px 10px;
		background-color: #ffffff;
		border-color: #1e0c72;
		color: #1e0c72;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		box-sizing: border-box;
		display: block;
		width: 100%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		cursor: pointer;
		-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	}
	form.data_slides .dropoff .dropoff_data textarea {
		height: 130px !important;
		border-radius: 20px !important;
		line-height: normal !important;
		padding: 10px !important;
		box-sizing: border-box;
		font-size: 12px;
	}
	form.data_slides .dropoff .dropoff_data .otr_lcl_input {
		cursor: pointer;
		height: 50px;
		line-height: 50px;
		height: 30px;
		padding: 1px 0;
		box-sizing: border-box;
		line-height: 30px;
		margin-top: 10px;
		clear: both;
		text-align: center;
		font-size: 12px;
		font-weight: bold;
		background-color: #ffffff;
		border-color: #1e0c72;
		color: #1e0c72;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 100px;
		width: 100%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		resize: none;
	}
	form.data_slides .dropoff .dropoff_data input[type="radio"] {
		display: none;
	}
}
@media screen and (min-width: 801px) {
	/*data wrap*/
	.data_wrap {
		position: relative;
		height: auto;
		overflow: auto;
		width: 100%;
		padding-top: 100px;
		margin: 0 auto;
	}
	/*destination selection modal*/
	.dest_modal {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		height: 100%;
		min-height: 200px;
		width: 100%;
		background-color: #1e0c72;
		z-index: 10;
		padding: 10px;
		box-sizing: border-box;
	}
	.dest_modal .custom_area {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		height: 100%;
		width: 100%;
		background-color: rgba(30, 12, 114, 0.59);
		z-index: 03;
	}
	.dest_modal .custom_area>.innr {
		padding: 20px;
		box-sizing: border-box;
		width: 80%;
		height: 60%;
		background-color: rgb(30, 12, 114);
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
	}
	.dest_modal .custom_area p {
		color: white;
		font-size: 15px;
	}
	.dest_modal .custom_area textarea {
		width: 100%;
		margin: 0;
		height: 100px;
		resize: none;
		outline: none;
	}
	.dest_modal .custom_area button {
		font-family: sans-serif;
		font-weight: bold;
		font-size: 12px;
		padding: 5px 10px;
		box-sizing: border-box;
		cursor: pointer;
	}
	.dest_modal .modal_in {
		position: relative;
		bottom: 0;
		left: 0;
		margin: auto;
		width: 100%;
		height: 100%;
		border: red solid 0px;
		background-color: white;
		box-sizing: border-box;
		background-color: white;
		padding: 0px 10px 10px 10px;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.dest_modal .modal_in .modal_close {
		font-weight: bold;
		font-size: 12px;
		background-color: #1e0c72;
		color: white;
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		margin: auto;
		text-align: center;
		border-radius: 0px 0px 30px 30px;
		width: 100px;
		height: auto;
		padding: 4px 5px;
		font-size: 12px;
		cursor: pointer;
	}
	.dest_modal ul {
		position: relative;
		display: inline-block;
		margin: 0;
		padding: 0;
		width: 100%;
		height: auto;
	}
	.dest_modal ul li {
		list-style-type: none;
		font-weight: bold;
		font-size: 11px;
		width: 100%;
		text-indent: 5px;
		padding: 5px 0;
		border: solid rgba(30, 12, 114, 0.5);
		border-width: 0px 1px 1px 1px;
		box-sizing: border-box;
		background-color: white;
		color: #1e0c72;
		-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
		-moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	}
	.dest_modal ul li.heading {
		-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.0);
		-moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.0);
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.0);
		border: solid rgba(30, 12, 114, 0.5);
		border-width: 1px 1px 1px 1px;
		text-align: center;
		background-color: #ffde00;
		color: #1e0c72;
		font-size: 13px;
		padding: 2px 0;
		text-indent: 0px;
	}
	.dest_modal ul li.notfirst {
		margin-top: 10px;
	}
	.dest_modal ul li.otr_lcl {
		cursor: pointer;
	}
	.dest_modal ul li.custom_lcl_choice {
		height: auto !important;
		padding: 10px !important;
		text-indent: 0px;
		display: block;
	}
	.dest_modal ul li.otr_lcl:hover {
		background-color: #dbdbdb;
	}
	.dest_modal ul li:first-of-type {
		margin-top: 30px;
	}
	.dest_modal ul li span {
		float: right;
		padding: 0 5px 0 0;
	}
	/*head with logo*/
	section.head {
		height: 150px;
		width: 100%;
		position: relative;
	}
	section.head #menu_btn {
		display: none;
		position: absolute;
		height: 20px;
		width: 20px;
		top: 10px;
		right: 10px;
		margin: auto;
		background-image: url(images/mobi_icon.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100% 100%;
	}
	section.head .logo {
		display: none;
	}
	section.head #req_btn,
	section.head #back_btn {
		background-color: #1e0c72;
		font-size: 10px;
		text-align: center;
		width: 150px;
		height: 40px;
		line-height: 40px;
		margin: 0 auto;
		position: absolute;
		left: 0;
		right: 0;
		bottom: -10px;
		border-width: 0;
		color: white;
		font-weight: bold;
		border-radius: 100px;
		cursor: pointer;
	}
	section.head #back_btn {
		display: none;
	}
	section.pos_btns {
		width: 50%;
		max-width: 200px;
		margin: 0 auto;
		display: flex;
		justify-content: space-around;
	}
	section.pos_btns>div {
		margin-top: 20px;
		float: left;
		border-radius: 100px;
		color: white;
		font-weight: bold;
		text-align: center;
		font-size: 13px;
		width: 35px;
		line-height: 35px;
		height: 35px;
		background-color: #1e0c72;
		opacity: .1;
		cursor: pointer;
	}
	form.data_slides {
		margin-top: 10px;
		height: 330px;
		width: 100%;
	}
	form.data_slides .form_slide {}
	form.data_slides .form_slide .grey_data {
		height: 270px;
	}
	form.data_slides .next_btn {
		margin: 5px auto 0 auto;
		width: 100%;
	}
	/*welcome slide*/
	form.data_slides .welcome {
		/*        display: none;*/
		font-size: 12px;
		padding: 0 5%;
		text-align: center;
		box-sizing: border-box;
	}
	form.data_slides .welcome label {
		font-size: 15px;
		clear: both;
		display: block;
	}
	form.data_slides .welcome label span {
		font-weight: bold;
	}
	form.data_slides .welcome input {
		background-color: #ffffff82;
		border-color: #1e0c72;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		outline: none;
		font-size: 12px;
		font-weight: bold;
		color: #1e0c72;
		padding: 0px 20px;
		height: 40px;
		line-height: 40px;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		margin: 15px 0 0 0;
		width: 100%;
		cursor: pointer;
		text-align: center;
	}
	form.data_slides .welcome h1 {
		display: none;
	}
	form.data_slides .welcome h1 span {
		color: #ffa800;
	}
	form.data_slides .welcome .comp_details {
		display: none;
	}
	form.data_slides .welcome .comp_details .image {
		height: 80px;
		margin: 10px auto;
		background-color: white;
		border-radius: 10px;
		width: 150px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	form.data_slides .welcome .comp_details .name {
		text-align: center;
		font-weight: bold;
		font-size: 15px;
	}
	form.data_slides .welcome .comp_details .locale {
		text-align: center;
		font-size: 15px;
		margin-bottom: 10px;
	}
	form.data_slides .welcome .comp_details .btns>div {
		background-color: #1e0c72;
		font-size: 12px;
		text-align: center;
		width: 48%;
		float: left;
		box-sizing: border-box;
		height: 35px;
		line-height: 35px;
		margin: 0 auto;
		border-width: 0;
		color: white;
		font-weight: bold;
		border-radius: 5px;
		cursor: pointer;
	}
	form.data_slides .welcome .comp_details .btns .next {
		margin-right: 4%;
	}
	form.data_slides .welcome .comp_details .btns .prev {}
	form.data_slides .welcome .enter_code_box {}
	form.data_slides .welcome .enter_code_box #verify_comp_code {
		margin-top: 10px;
	}
	/*choose pickup location*/
	form.data_slides .pickup_location {
		display: none;
		font-size: 12px;
		padding: 0 5%;
		text-align: center;
		box-sizing: border-box;
	}
	form.data_slides .pickup_location .grey_data {
		background-color: #c9ccff;
		border-radius: 5px;
		padding: 52px 20px;
		box-sizing: border-box;
	}
	form.data_slides .pickup_location .select_box .innr {
		background-color: #1e0c72;
		border-radius: 5px;
		padding: 10px 20px;
		font-weight: bold;
		border: 1px solid #947dff;
		margin: 18px 0;
		color: white;
		box-sizing: border-box;
		cursor: pointer;
	}
	form.data_slides .pickup_location .select_box .innr span {
		font-weight: lighter;
		color: #61c8ff;
		padding: 5px 0 0 0;
		box-sizing: border-box;
		display: block;
	}
	/*user_info slide*/
	form.data_slides p.user_top_text {
		color: white;
		font-weight: bold;
		text-align: center;
		font-size: 14px;
		display: block;
		margin: 0;
	}
	form.data_slides .user_info {
		display: none;
		padding: 0px 10px 10px 10px;
		width: 100%;
		box-sizing: border-box;
	}
	form.data_slides .user_info p {
		text-align: center;
		font-weight: bold;
		font-size: 15px;
		line-height: 25px;
	}
	form.data_slides .user_info input {
		background-color: #ffffff82;
		border-color: #1e0c72;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		outline: none;
		color: #1e0c72;
		font-size: 12px;
		font-weight: bold;
		height: 30px;
		line-height: 30px;
		padding: 0 20px;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		margin: 0 0 10px 0;
		width: 100%;
		cursor: pointer;
	}
	form.data_slides .user_info .last_btn {
		width: 100%;
	}
	/*pickup time & date slide*/
	form.data_slides .pickup {
		display: none;
		padding: 0px 10px 10px 10px;
		width: 100%;
		box-sizing: border-box;
	}
	form.data_slides .pickup .pickup_data {
		position: relative;
		border-radius: 5px;
		background-color: #b4b4b4;
		padding: 10px;
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
		overflow: auto;
	}
	form.data_slides .pickup .pickup_data .active_sesh {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		z-index: 01;
		background-color: #ffde00;
		padding: 20px;
		box-sizing: border-box;
	}
	form.data_slides .pickup .pickup_data .active_sesh p {
		text-align: center;
		font-weight: bold;
	}
	form.data_slides .pickup .pickup_data .active_sesh button {
		width: 45%;
		margin-left: 2.7%;
	}
	form.data_slides .pickup .pickup_data input[type="radio"] {
		display: none;
	}
	form.data_slides .pickup .pickup_data #datepicker {
		background-color: #1e0c72;
		border-color: #1e0c72;
		color: white;
		font-size: 14px;
		font-weight: normal;
		height: 40px;
		line-height: 40px;
		text-align: center;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		width: 100%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		cursor: pointer;
	}
	form.data_slides .pickup .pickup_data .date_choice {
		display: block;
		font-size: 12px;
		font-weight: bold;
		height: 30px;
		line-height: 30px;
		padding: 0 20px;
		display: inline-block;
		background-color: #ffffff;
		border-color: #1e0c72;
		color: #1e0c72;
		text-align: center;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 100px;
		margin: 5px 0;
		width: 100%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		cursor: pointer;
	}
	form.data_slides .pickup .pickup_data .time_pckr {
		/*    display: none;*/
		width: 100%;
		position: relative;
		/*    overflow: auto;*/
	}
	form.data_slides .pickup .pickup_data .time_pckr>p {
		display: block;
		margin: 10px auto 25px 0;
		text-align: center;
		color: #1e0c72;
		font-weight: bold;
		font-size: 13px;
		text-indent: 0px;
		width: 100%;
		line-height: normal;
	}
	form.data_slides .pickup .pickup_data .time_pckr .time_slct_box {
		width: 100%;
		height: 40px;
		display: flex;
		justify-content: space-between;
	}
	form.data_slides .pickup .pickup_data .time_pckr .time_slct_box .time_btn {
		width: 20%;
		height: 40px;
		float: left;
		line-height: 40px;
		font-size: 15px;
		text-align: center;
		position: relative;
		cursor: pointer;
		font-weight: bold;
		text-decoration: none;
		box-sizing: border-box;
	}
	form.data_slides .pickup .pickup_data .time_pckr .confirm p {
		text-align: center;
		font-size: 13px;
		line-height: 15px;
		margin: 10px 0;
		font-weight: bold;
	}
	form.data_slides .pickup .pickup_data .time_pckr .confirm button {
		width: 47%;
		height: 30px;
		line-height: 20px;
		margin: 0px 1%;
		box-sizing: border-box;
	}
	form.data_slides .pickup .pickup_data .time_pckr #time {
		display: block;
		height: 100%;
		float: left;
		line-height: 40px;
		font-size: 15px;
		font-weight: bold;
		background-color: #ffffff;
		border-color: #1e0c72;
		color: #1e0c72;
		text-align: center;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		margin: 0;
		padding: 0;
		width: 55%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		cursor: pointer;
	}
	form.data_slides .pickup .pickup_data .time_pckr #seat_avail {
		display: none;
		width: 100%;
		height: 40px;
		line-height: 40px;
		margin: 10px 0 0 0;
	}
	/*drop off selection slide*/
	form.data_slides .dropoff {
		display: none;
		padding: 0px 10px 10px 10px;
		width: 100%;
		box-sizing: border-box;
	}
	form.data_slides .dropoff .dropoff_data {
		border-radius: 5px;
		background-color: grey;
		padding: 10px;
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
	}
	form.data_slides .dropoff .dropoff_data>div {
		float: none;
		width: 100%;
		overflow: auto;
		padding: 5px 0;
	}
	form.data_slides .dropoff .dropoff_data label {
		font-size: 12px;
		font-weight: bold;
		padding: 5px 10px;
		background-color: #ffffff;
		border-color: #1e0c72;
		color: #1e0c72;
		border: solid 1px #1e0c72;
		border-radius: 5px;
		box-sizing: border-box;
		display: block;
		width: 100%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		cursor: pointer;
		-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	}
	form.data_slides .dropoff .dropoff_data textarea {
		height: 130px !important;
		border-radius: 20px !important;
		line-height: normal !important;
		padding: 10px !important;
		box-sizing: border-box;
		font-size: 12px;
	}
	form.data_slides .dropoff .dropoff_data .otr_lcl_input {
		cursor: pointer;
		height: 50px;
		line-height: 50px;
		height: 30px;
		padding: 1px 0;
		box-sizing: border-box;
		line-height: 30px;
		margin-top: 10px;
		clear: both;
		text-align: center;
		font-size: 12px;
		font-weight: bold;
		background-color: #ffffff;
		border-color: #1e0c72;
		color: #1e0c72;
		box-sizing: border-box;
		border: solid 1px #1e0c72;
		border-radius: 100px;
		width: 100%;
		-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.23) inset;
		-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
		resize: none;
	}
	form.data_slides .dropoff .dropoff_data input[type="radio"] {
		display: none;
	}
}
/*admin modal*/
@media screen and (max-width: 500px) {
	section.admin_modal {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		height: auto;
		height: 100%;
		width: 100%;
		background-color: #1e0c72;
		z-index: 10;
		padding: 10px;
		box-sizing: border-box;
		overflow: hidden;
	}
	section.admin_modal .modal_in {
		position: relative;
		width: 100%;
		height: 100%;
		border: red solid 0px;
		background-color: black;
		box-sizing: border-box;
		padding: 0px 0px 0px 0px;
		overflow: hidden;
	}
	section.admin_modal .login {
		display: none;
		position: absolute;
		z-index: 10;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		height: 400px;
		width: 90%;
		background-color: black;
	}
	section.admin_modal .login .wrn_pwd {}
	section.admin_modal .login label {}
	section.admin_modal .login input {}
	section.admin_modal .login button {}
	section.admin_modal .tab_switcher {
		overflow: auto;
		width: 100%;
	}
	section.admin_modal .tab_switcher>div {
		float: left;
		width: 33.33333%;
		padding: 8px 0;
		text-align: center;
		cursor: pointer;
		font-size: 11px;
	}
	section.admin_modal .tab_switcher .tab_on {
		background-color: #0080ff;
		color: black;
		font-weight: bold;
	}
	section.admin_modal .tab_switcher .tab_off {
		background-color: #1f1f1f;
		color: #0080ff;
	}
	section.admin_modal .edit_info_modal {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		background-color: rgba(0, 0, 0, 0.80);
		height: 100%;
		width: 100%;
		z-index: 9;
	}
	section.admin_modal .edit_info_modal .inner {
		position: relative;
		margin: 0 auto;
		background-color: #1e0c72;
		height: auto;
		width: 90%;
		padding: 5px 0;
		box-sizing: border-box;
		top: 50%;
		transform: translateY(-50%);
	}
	section.admin_modal .edit_info_modal .inner .close {
		background-image: -webkit-linear-gradient(-90deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		color: white;
		font-size: 9px;
		font-weight: bold;
		width: 60px;
		height: 20px;
		margin: 0px auto 10px auto;
		line-height: 20px;
		text-align: center;
		border: solid #0067ce 1px;
		cursor: pointer;
	}
	section.admin_modal .edit_info_modal .inner .save {
		background-image: -webkit-linear-gradient(-90deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		color: white;
		font-size: 9px;
		font-weight: bold;
		width: 60px;
		height: 20px;
		margin: 10px auto 0 auto;
		line-height: 20px;
		text-align: center;
		border: solid #0067ce 1px;
		cursor: pointer;
	}
	section.admin_modal .edit_info_modal .edit_car_info {}
	section.admin_modal .edit_info_modal .edit_car_info .image {
		height: 100px;
		width: 150px;
		margin: 0 auto 10px auto;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		-webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
		-moz-box-shadow: 0px 0px 10px20px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
		border: #a7a7a7 solid 1px;
		box-sizing: border-box;
	}
	section.admin_modal .edit_info_modal .edit_car_info p {
		font-size: 13px;
		font-weight: bold;
		margin: 0;
		color: white;
		text-align: center;
	}
	section.admin_modal .edit_info_modal .assign_cars {
		display: none;
	}
	section.admin_modal .edit_info_modal .assign_cars .item {
		background-image: -webkit-linear-gradient(90deg, #1e0c72 0, #1227c9 100%);
		background-image: -moz-linear-gradient(0deg, #1e0c72 0, #1227c9 100%);
		background-image: linear-gradient(0deg, #1e0c72 0, #1227c9 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		border: solid #004ee3;
		border-width: 1px 1px 0px 1px;
		overflow: auto;
		box-sizing: border-box;
		position: relative;
		padding: 10px 0px 10px 5px;
		box-sizing: border-box;
	}
	section.admin_modal .edit_info_modal .assign_cars .item:last-of-type {
		margin-bottom: 20px;
		border-width: 1px 0px 1px 1px;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .image {
		background-image: url(images/cars/PCC0000.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: 40px;
		width: 40px;
		float: left;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info {
		float: left;
		margin-left: 5px;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p {
		font-size: 11px;
		line-height: 12px;
		height: 100%;
		margin: 0;
		color: #0080ff;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p.driver_name {
		font-weight: bold;
		color: #59bfff;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p.car_model {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p.car_color {
		float: left;
		margin-right: 10px;
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p.license {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info .assign {
		background-image: -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0, rgba(200, 200, 200, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0, rgba(200, 200, 200, 1) 100%);
		background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0, rgba(200, 200, 200, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		position: absolute;
		border-radius: 3px;
		right: 5px;
		bottom: 5px;
		margin: auto;
		color: #1e0c72;
		font-size: 11px;
		font-weight: bold;
		width: 20px;
		height: 20px;
		line-height: 20px;
		text-align: center;
		border: solid #ffffff 1px;
		cursor: pointer;
	}
	section.admin_modal .tabs {
		/*    overflow-y: scroll;*/
		height: 92%;
		overflow: hidden;
	}
	section.admin_modal .tabs .item {
		border: solid #242424;
		border-width: 0 0 1px 0;
		padding: 10px;
		box-sizing: border-box;
		position: relative;
		background-image: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0, rgba(17, 17, 17, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0, rgba(17, 17, 17, 1) 100%);
		background-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0, rgba(17, 17, 17, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
		-moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
	}
	section.admin_modal .tabs .item p {
		font-size: 11px;
		margin: 0;
		color: #0080ff;
	}
	section.admin_modal .tabs .corner_btn_1 {
		background-image: -webkit-linear-gradient(-90deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		position: absolute;
		right: 10px;
		bottom: 10px;
		margin: auto;
		color: white;
		font-size: 9px;
		font-weight: bold;
		padding: 3px 5px;
		text-align: center;
		border: solid #0067ce 1px;
		cursor: pointer;
	}
	section.admin_modal .tabs .corner_btn_2 {
		background-image: -webkit-linear-gradient(90deg, #700c48 0, #c611b4 100%);
		background-image: -moz-linear-gradient(0deg, #700c48 0, #c611b4 100%);
		background-image: linear-gradient(0deg, #700c48 0, #c611b4 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		position: absolute;
		right: 10px;
		bottom: 10px;
		margin: auto;
		color: white;
		font-size: 9px;
		font-weight: bold;
		width: 60px;
		height: 20px;
		line-height: 20px;
		text-align: center;
		border: solid #ce00ce 1px;
		cursor: pointer;
	}
	section.admin_modal .tabs .blue_btn {
		font-size: 11px;
		width: 90%;
		margin: 10px auto 0 auto;
		display: block;
		border-radius: 0;
	}
	section.admin_modal .assign_orders {
		/*    display: none;*/
	}
	section.admin_modal .assign_orders .item p.time {
		font-size: 9px;
		font-weight: bold;
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .assign_orders .item p.name {
		font-weight: bold;
	}
	section.admin_modal .assign_orders .item p.company {
		font-style: italic;
	}
	section.admin_modal .assign_orders .item p.company_locale {
		font-style: italic;
	}
	section.admin_modal .assign_orders .item p.route {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .assign_orders .item p.driver {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_cars {
		display: none;
		position: relative;
	}
	section.admin_modal .edit_cars .item {
		height: 80px;
	}
	section.admin_modal .edit_cars .item .image {
		background-image: url(images/cars/PCC0000.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: 60px;
		width: 80px;
		float: left;
	}
	section.admin_modal .edit_cars .item .info {
		padding-left: 10px;
		box-sizing: border-box;
		float: left;
	}
	section.admin_modal .edit_cars .item .info p {}
	section.admin_modal .edit_cars .item .info p.driver_name {
		font-weight: bold;
	}
	section.admin_modal .edit_cars .item .info p.car_model {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_cars .item .info p.car_color {
		float: left;
		margin-right: 10px;
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_cars .item .info p.license {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .assign_companies {
		display: none;
	}
	section.admin_modal .assign_companies .item {
		overflow: auto;
	}
	section.admin_modal .assign_companies .item .image {
		background-image: url(images/cars/PCC0000.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: 45px;
		width: 60px;
		float: left;
	}
	section.admin_modal .assign_companies .item .info {
		padding-left: 10px;
		box-sizing: border-box;
		float: left;
	}
	section.admin_modal .assign_companies .item .info .name {
		font-weight: bold;
	}
}
@media screen and (min-width: 501px) and (max-width: 800px) {
	section.admin_modal {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		height: auto;
		height: 100%;
		width: 100%;
		background-color: #1e0c72;
		z-index: 10;
		padding: 10px;
		box-sizing: border-box;
		overflow: hidden;
	}
	section.admin_modal .modal_in {
		position: relative;
		width: 100%;
		height: 100%;
		border: red solid 0px;
		background-color: black;
		box-sizing: border-box;
		padding: 0px 0px 0px 0px;
		overflow: hidden;
	}
	section.admin_modal .login {
		display: none;
		position: absolute;
		z-index: 10;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		height: 400px;
		width: 90%;
		background-color: black;
	}
	section.admin_modal .login .wrn_pwd {}
	section.admin_modal .login label {}
	section.admin_modal .login input {}
	section.admin_modal .login button {}
	section.admin_modal .tab_switcher {
		overflow: auto;
		width: 100%;
	}
	section.admin_modal .tab_switcher>div {
		float: left;
		width: 33.33333%;
		padding: 8px 0;
		text-align: center;
		cursor: pointer;
		font-size: 11px;
	}
	section.admin_modal .tab_switcher .tab_on {
		background-color: #0080ff;
		color: black;
		font-weight: bold;
	}
	section.admin_modal .tab_switcher .tab_off {
		background-color: #1f1f1f;
		color: #0080ff;
	}
	section.admin_modal .edit_info_modal {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		background-color: rgba(0, 0, 0, 0.80);
		height: 100%;
		width: 100%;
		z-index: 9;
	}
	section.admin_modal .edit_info_modal .inner {
		position: relative;
		margin: 0 auto;
		background-color: #1e0c72;
		height: auto;
		width: 90%;
		padding: 5px 0;
		box-sizing: border-box;
		top: 50%;
		transform: translateY(-50%);
	}
	section.admin_modal .edit_info_modal .inner .close {
		background-image: -webkit-linear-gradient(-90deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		color: white;
		font-size: 9px;
		font-weight: bold;
		width: 60px;
		height: 20px;
		margin: 0px auto 10px auto;
		line-height: 20px;
		text-align: center;
		border: solid #0067ce 1px;
		cursor: pointer;
	}
	section.admin_modal .edit_info_modal .inner .save {
		background-image: -webkit-linear-gradient(-90deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		color: white;
		font-size: 9px;
		font-weight: bold;
		width: 60px;
		height: 20px;
		margin: 10px auto 0 auto;
		line-height: 20px;
		text-align: center;
		border: solid #0067ce 1px;
		cursor: pointer;
	}
	section.admin_modal .edit_info_modal .edit_car_info {}
	section.admin_modal .edit_info_modal .edit_car_info .image {
		height: 100px;
		width: 150px;
		margin: 0 auto 10px auto;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		-webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
		-moz-box-shadow: 0px 0px 10px20px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
		border: #a7a7a7 solid 1px;
		box-sizing: border-box;
	}
	section.admin_modal .edit_info_modal .edit_car_info p {
		font-size: 13px;
		font-weight: bold;
		margin: 0;
		color: white;
		text-align: center;
	}
	section.admin_modal .edit_info_modal .assign_cars {
		display: none;
	}
	section.admin_modal .edit_info_modal .assign_cars .item {
		background-image: -webkit-linear-gradient(90deg, #1e0c72 0, #1227c9 100%);
		background-image: -moz-linear-gradient(0deg, #1e0c72 0, #1227c9 100%);
		background-image: linear-gradient(0deg, #1e0c72 0, #1227c9 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		border: solid #004ee3;
		border-width: 1px 1px 0px 1px;
		overflow: auto;
		box-sizing: border-box;
		position: relative;
		padding: 10px 0px 10px 5px;
		box-sizing: border-box;
	}
	section.admin_modal .edit_info_modal .assign_cars .item:last-of-type {
		margin-bottom: 20px;
		border-width: 1px 0px 1px 1px;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .image {
		background-image: url(images/cars/PCC0000.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: 40px;
		width: 40px;
		float: left;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info {
		float: left;
		margin-left: 5px;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p {
		font-size: 11px;
		line-height: 12px;
		height: 100%;
		margin: 0;
		color: #0080ff;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p.driver_name {
		font-weight: bold;
		color: #59bfff;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p.car_model {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p.car_color {
		float: left;
		margin-right: 10px;
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p.license {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info .assign {
		background-image: -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0, rgba(200, 200, 200, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0, rgba(200, 200, 200, 1) 100%);
		background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0, rgba(200, 200, 200, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		position: absolute;
		border-radius: 3px;
		right: 5px;
		bottom: 5px;
		margin: auto;
		color: #1e0c72;
		font-size: 11px;
		font-weight: bold;
		width: 20px;
		height: 20px;
		line-height: 20px;
		text-align: center;
		border: solid #ffffff 1px;
		cursor: pointer;
	}
	section.admin_modal .tabs {
		/*    overflow-y: scroll;*/
		height: 92%;
		overflow: hidden;
	}
	section.admin_modal .tabs .item {
		border: solid #242424;
		border-width: 0 0 1px 0;
		padding: 10px;
		box-sizing: border-box;
		position: relative;
		background-image: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0, rgba(17, 17, 17, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0, rgba(17, 17, 17, 1) 100%);
		background-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0, rgba(17, 17, 17, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
		-moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
	}
	section.admin_modal .tabs .item p {
		font-size: 11px;
		margin: 0;
		color: #0080ff;
	}
	section.admin_modal .tabs .corner_btn_1 {
		background-image: -webkit-linear-gradient(-90deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		position: absolute;
		right: 10px;
		bottom: 10px;
		margin: auto;
		color: white;
		font-size: 9px;
		font-weight: bold;
		padding: 3px 5px;
		text-align: center;
		border: solid #0067ce 1px;
		cursor: pointer;
	}
	section.admin_modal .tabs .corner_btn_2 {
		background-image: -webkit-linear-gradient(90deg, #700c48 0, #c611b4 100%);
		background-image: -moz-linear-gradient(0deg, #700c48 0, #c611b4 100%);
		background-image: linear-gradient(0deg, #700c48 0, #c611b4 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		position: absolute;
		right: 10px;
		bottom: 10px;
		margin: auto;
		color: white;
		font-size: 9px;
		font-weight: bold;
		width: 60px;
		height: 20px;
		line-height: 20px;
		text-align: center;
		border: solid #ce00ce 1px;
		cursor: pointer;
	}
	section.admin_modal .tabs .blue_btn {
		font-size: 11px;
		width: 90%;
		margin: 10px auto 0 auto;
		display: block;
		border-radius: 0;
	}
	section.admin_modal .assign_orders {
		/*    display: none;*/
	}
	section.admin_modal .assign_orders .item p.time {
		font-size: 9px;
		font-weight: bold;
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .assign_orders .item p.name {
		font-weight: bold;
	}
	section.admin_modal .assign_orders .item p.company {
		font-style: italic;
	}
	section.admin_modal .assign_orders .item p.company_locale {
		font-style: italic;
	}
	section.admin_modal .assign_orders .item p.route {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .assign_orders .item p.driver {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_cars {
		display: none;
		position: relative;
	}
	section.admin_modal .edit_cars .item {
		height: 80px;
	}
	section.admin_modal .edit_cars .item .image {
		background-image: url(images/cars/PCC0000.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: 60px;
		width: 80px;
		float: left;
	}
	section.admin_modal .edit_cars .item .info {
		padding-left: 10px;
		box-sizing: border-box;
		float: left;
	}
	section.admin_modal .edit_cars .item .info p {}
	section.admin_modal .edit_cars .item .info p.driver_name {
		font-weight: bold;
	}
	section.admin_modal .edit_cars .item .info p.car_model {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_cars .item .info p.car_color {
		float: left;
		margin-right: 10px;
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_cars .item .info p.license {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .assign_companies {
		display: none;
	}
	section.admin_modal .assign_companies .item {
		overflow: auto;
	}
	section.admin_modal .assign_companies .item .image {
		background-image: url(images/cars/PCC0000.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: 45px;
		width: 60px;
		float: left;
	}
	section.admin_modal .assign_companies .item .info {
		padding-left: 10px;
		box-sizing: border-box;
		float: left;
	}
	section.admin_modal .assign_companies .item .info .name {
		font-weight: bold;
	}
}
@media screen and (min-width: 801px) {
	section.admin_modal {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		height: auto;
		height: 100%;
		width: 100%;
		background-color: #1e0c72;
		z-index: 10;
		padding: 10px;
		box-sizing: border-box;
		overflow: hidden;
	}
	section.admin_modal .modal_in {
		position: relative;
		width: 100%;
		height: 100%;
		border: red solid 0px;
		background-color: black;
		box-sizing: border-box;
		padding: 0px 0px 0px 0px;
		overflow: hidden;
	}
	section.admin_modal .login {
		display: none;
		position: absolute;
		z-index: 10;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		height: 400px;
		width: 90%;
		background-color: black;
	}
	section.admin_modal .login .wrn_pwd {}
	section.admin_modal .login label {}
	section.admin_modal .login input {}
	section.admin_modal .login button {}
	section.admin_modal .tab_switcher {
		overflow: auto;
		width: 100%;
	}
	section.admin_modal .tab_switcher>div {
		float: left;
		width: 33.33333%;
		padding: 8px 0;
		text-align: center;
		cursor: pointer;
		font-size: 11px;
	}
	section.admin_modal .tab_switcher .tab_on {
		background-color: #0080ff;
		color: black;
		font-weight: bold;
	}
	section.admin_modal .tab_switcher .tab_off {
		background-color: #1f1f1f;
		color: #0080ff;
	}
	section.admin_modal .edit_info_modal {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		background-color: rgba(0, 0, 0, 0.80);
		height: 100%;
		width: 100%;
		z-index: 9;
	}
	section.admin_modal .edit_info_modal .inner {
		position: relative;
		margin: 0 auto;
		background-color: #1e0c72;
		height: auto;
		width: 90%;
		padding: 5px 0;
		box-sizing: border-box;
		top: 50%;
		transform: translateY(-50%);
	}
	section.admin_modal .edit_info_modal .inner .close {
		background-image: -webkit-linear-gradient(-90deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		color: white;
		font-size: 9px;
		font-weight: bold;
		width: 60px;
		height: 20px;
		margin: 0px auto 10px auto;
		line-height: 20px;
		text-align: center;
		border: solid #0067ce 1px;
		cursor: pointer;
	}
	section.admin_modal .edit_info_modal .inner .save {
		background-image: -webkit-linear-gradient(-90deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		color: white;
		font-size: 9px;
		font-weight: bold;
		width: 60px;
		height: 20px;
		margin: 10px auto 0 auto;
		line-height: 20px;
		text-align: center;
		border: solid #0067ce 1px;
		cursor: pointer;
	}
	section.admin_modal .edit_info_modal .edit_car_info {}
	section.admin_modal .edit_info_modal .edit_car_info .image {
		height: 100px;
		width: 150px;
		margin: 0 auto 10px auto;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		-webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
		-moz-box-shadow: 0px 0px 10px20px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
		border: #a7a7a7 solid 1px;
		box-sizing: border-box;
	}
	section.admin_modal .edit_info_modal .edit_car_info p {
		font-size: 13px;
		font-weight: bold;
		margin: 0;
		color: white;
		text-align: center;
	}
	section.admin_modal .edit_info_modal .assign_cars {
		display: none;
	}
	section.admin_modal .edit_info_modal .assign_cars .item {
		background-image: -webkit-linear-gradient(90deg, #1e0c72 0, #1227c9 100%);
		background-image: -moz-linear-gradient(0deg, #1e0c72 0, #1227c9 100%);
		background-image: linear-gradient(0deg, #1e0c72 0, #1227c9 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		border: solid #004ee3;
		border-width: 1px 1px 0px 1px;
		overflow: auto;
		box-sizing: border-box;
		position: relative;
		padding: 10px 0px 10px 5px;
		box-sizing: border-box;
	}
	section.admin_modal .edit_info_modal .assign_cars .item:last-of-type {
		margin-bottom: 20px;
		border-width: 1px 0px 1px 1px;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .image {
		background-image: url(images/cars/PCC0000.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: 40px;
		width: 40px;
		float: left;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info {
		float: left;
		margin-left: 5px;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p {
		font-size: 11px;
		line-height: 12px;
		height: 100%;
		margin: 0;
		color: #0080ff;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p.driver_name {
		font-weight: bold;
		color: #59bfff;
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p.car_model {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p.car_color {
		float: left;
		margin-right: 10px;
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info p.license {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_info_modal .assign_cars .item .info .assign {
		background-image: -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0, rgba(200, 200, 200, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0, rgba(200, 200, 200, 1) 100%);
		background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0, rgba(200, 200, 200, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		position: absolute;
		border-radius: 3px;
		right: 5px;
		bottom: 5px;
		margin: auto;
		color: #1e0c72;
		font-size: 11px;
		font-weight: bold;
		width: 20px;
		height: 20px;
		line-height: 20px;
		text-align: center;
		border: solid #ffffff 1px;
		cursor: pointer;
	}
	section.admin_modal .tabs {
		/*    overflow-y: scroll;*/
		height: 92%;
		overflow: hidden;
	}
	section.admin_modal .tabs .item {
		border: solid #242424;
		border-width: 0 0 1px 0;
		padding: 10px;
		box-sizing: border-box;
		position: relative;
		background-image: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0, rgba(17, 17, 17, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0, rgba(17, 17, 17, 1) 100%);
		background-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0, rgba(17, 17, 17, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
		-moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
		box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
	}
	section.admin_modal .tabs .item p {
		font-size: 11px;
		margin: 0;
		color: #0080ff;
	}
	section.admin_modal .tabs .corner_btn_1 {
		background-image: -webkit-linear-gradient(-90deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: -moz-linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-image: linear-gradient(180deg, rgba(0, 44, 122, 1) 0, rgba(0, 123, 255, 1) 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		position: absolute;
		right: 10px;
		bottom: 10px;
		margin: auto;
		color: white;
		font-size: 9px;
		font-weight: bold;
		padding: 3px 5px;
		text-align: center;
		border: solid #0067ce 1px;
		cursor: pointer;
	}
	section.admin_modal .tabs .corner_btn_2 {
		background-image: -webkit-linear-gradient(90deg, #700c48 0, #c611b4 100%);
		background-image: -moz-linear-gradient(0deg, #700c48 0, #c611b4 100%);
		background-image: linear-gradient(0deg, #700c48 0, #c611b4 100%);
		background-position: 50% 50%;
		-webkit-background-origin: padding-box;
		background-origin: padding-box;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		-webkit-background-size: auto auto;
		background-size: auto auto;
		position: absolute;
		right: 10px;
		bottom: 10px;
		margin: auto;
		color: white;
		font-size: 9px;
		font-weight: bold;
		width: 60px;
		height: 20px;
		line-height: 20px;
		text-align: center;
		border: solid #ce00ce 1px;
		cursor: pointer;
	}
	section.admin_modal .tabs .blue_btn {
		font-size: 11px;
		width: 90%;
		margin: 10px auto 0 auto;
		display: block;
		border-radius: 0;
	}
	section.admin_modal .assign_orders {
		/*    display: none;*/
	}
	section.admin_modal .assign_orders .item p.time {
		font-size: 9px;
		font-weight: bold;
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .assign_orders .item p.name {
		font-weight: bold;
	}
	section.admin_modal .assign_orders .item p.company {
		font-style: italic;
	}
	section.admin_modal .assign_orders .item p.company_locale {
		font-style: italic;
	}
	section.admin_modal .assign_orders .item p.route {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .assign_orders .item p.driver {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_cars {
		display: none;
		position: relative;
	}
	section.admin_modal .edit_cars .item {
		height: 80px;
	}
	section.admin_modal .edit_cars .item .image {
		background-image: url(images/cars/PCC0000.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: 60px;
		width: 80px;
		float: left;
	}
	section.admin_modal .edit_cars .item .info {
		padding-left: 10px;
		box-sizing: border-box;
		float: left;
	}
	section.admin_modal .edit_cars .item .info p {}
	section.admin_modal .edit_cars .item .info p.driver_name {
		font-weight: bold;
	}
	section.admin_modal .edit_cars .item .info p.car_model {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_cars .item .info p.car_color {
		float: left;
		margin-right: 10px;
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .edit_cars .item .info p.license {
		color: rgba(255, 255, 255, 0.40);
	}
	section.admin_modal .assign_companies {
		display: none;
	}
	section.admin_modal .assign_companies .item {
		overflow: auto;
	}
	section.admin_modal .assign_companies .item .image {
		background-image: url(images/cars/PCC0000.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: 45px;
		width: 60px;
		float: left;
	}
	section.admin_modal .assign_companies .item .info {
		padding-left: 10px;
		box-sizing: border-box;
		float: left;
	}
	section.admin_modal .assign_companies .item .info .name {
		font-weight: bold;
	}
}
/*copyright*/
#madebyus {
	display: none;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-image: url(images/foot_bg.png);
	height: 20px;
	width: 100%;
	max-width: 400px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	color: white;
	text-align: center;
	line-height: 40px;
	font-weight: bold;
	font-size: 12px;
	font-family: sans-serif;
}
#madebyus a {
	color: #ffde00 !important;
	text-decoration: none;
	color: white;
}