html body {
	margin: 0;
	padding: 0;
	font-family: "Jost", sans-serif;
	background: #f5f5f5
}

	html body h1, html body h2, html body h3, html body h4, html body h5, html body h6, p {
		margin: 0;
		padding: 0;
	}

ol, ul {
	margin: 0;
	padding: 0;
	list-style: none;
}


/*------------Header------------*/

.wrapper {
	height: auto;
	max-width: 1200px;
	margin: 30px auto;
	border-radius: 20px;
	background-color: #f9fdff;
	box-shadow: 0px 5px 25px 0px rgb(0 0 0 / 19%);
}

.rider-header-top {
	padding: 10px 30px;
}

.rider-title h3 {
	color: #5756a2;
	font-size: 28px;
	font-weight: 700;
}

button.btn.log-out {
	background: #5756a2;
	color: #fff;
}

.rider-buttons button {
	color: #5756a2;
	font-size: 14px;
	font-weight: 600;
	border-radius: 20px;
	padding: 5px 15px;
}

nav.navigation-navbar.navbar {
	background-color: #5756a2;
	padding: 0 20px;
}

.navigation-navbar ul.navbar-nav li a.nav-link {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	padding: 10px 34px;
	display: inline-block;
}
	.navigation-navbar ul.navbar-nav li a.nav-link:focus {
		color: #fff;
	}
	.navigation-navbar ul.navbar-nav li a.nav-link:hover:focus {
		color: #000;
	}
	.navigation-navbar ul.navbar-nav li a.nav-link.active {
		background: rgb(0 0 0 / 24%);
		color: #fff;
	}

.id_name {
	background-color: #ededed;
	padding: 4px 0;
}

	.id_name span {
		color: #fff;
		font-size: 15px;
		background: #dc3545;
		font-weight: 500;
		padding: 5px 30px;
		position: relative;
	}

		.id_name span:before {
			content: "";
			position: absolute;
			top: 0;
			bottom: 0;
			width: 30px;
			right: 100%;
			border-top: 32px solid transparent;
			border-bottom: 0px solid transparent;
			border-right: 28px solid #dc3545;
		}

.navigation-navbar.navbar-light .navbar-toggler-icon {
	background-image: url("../images/menu_icon.svg");
}

/*------------Form------------*/

.rider_form input.form-control {
	background-color: #ddeef9;
	border: none;
	padding: 8px 12px;
	font-size: 15px;
}

.rider_form label {
	font-size: 16px;
	color: #5756a2;
	font-weight: 600;
}

.rider_form select {
	background-color: #ddeef9;
	border: none;
	color: #161719;
	padding: 8px 12px;
	font-size: 15px;
}

.rider_form h5 {
	font-size: 20px;
	font-weight: 600;
	color: #2d2d2d;
}

.form-check-input:checked {
	background-color: #5756a2;
	border-color: #5756a2;
}

.right_buttons ul li .btn {
	background-color: #acd5f0;
	border: none;
	color: #2d2d2d;
	font-size: 15px;
	font-weight: 500;
	width: 70px;
	padding: 3px 10px;
}


/*------------Footer-Section------------*/

.footer-section h5 {
	font-size: 15px;
	color: #5756a2;
	font-weight: 500;
}



/*------------Button-Section------------*/

.add_process button {
	background: #5756a2;
	border: none;
	padding-left: 30px;
	font-size: 15px;
	position: relative;
	width: 120px;
	border-radius: 4px;
	overflow: hidden;
	font-weight: 500;
}

	.add_process button:after {
		content: "";
		position: absolute;
		background: black;
		top: 0;
		bottom: 0;
		opacity: 0.2;
		width: 30px;
		left: 0;
	}

	.add_process button i {
		position: absolute;
		left: 8px;
		top: 16px;
		margin: auto;
		bottom: 0;
		z-index: 999;
	}

button.btn.btn-danger {
	background-color: #bb2d3b;
}

.version-text.text-end {
	padding: 0 12px 4px;
}
.version-text label {
	font-size: 13px;
	font-weight: 500;
	color: rgb(0 0 0 / 40%);
}
/*------------Sticky-icon------------*/


.sticky_icon {
	position: fixed;
	top: 33%;
	right: -120px;
	transition: all 0.5s ease-in-out;
}

span.button_icon_right {
	color: #fff;
	font-size: 15px;
	background-color: #252525;
	padding: 5px 7px;
	border-radius: 5px 0 0 5px;
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 48%);
	cursor: pointer;
	right: 100%;
}

.sticky_icon .right_buttons ul li .btn {
	width: 100%;
	margin-bottom: 5px;
}

.sticky_icon .right_buttons {
	width: 120px;
}

.sticky_icon.open {
	right: 0;
}

.add_process_bottom {
	position: fixed;
	left: 0;
	right: 0;
	bottom: -90px;
	background-color: #fff;
	padding: 10px;
	border-top: 1px solid #d2d2d2;
	transition: all 0.5s ease-in-out;
}

.add_process.add_process_bottom span.button_icon_right i {
	transform: rotate( 450deg );
	display: inline-block;
}

.add_process.add_process_bottom span.button_icon_right {
	bottom: 100%;
	right: auto;
	border-radius: 2px 2px 0 0;
	padding: 0 5px;
}

.add_process.add_process_bottom.open {
	bottom: 0;
}

.add_process_bottom.open span.button_icon_right i {
	transform: rotate(-90deg);
}

.forgot-btn button {
	background: none;
	color: #5756a2;
	padding: 0;
	border: none;
}

.wrapper.wrapper-container {
	padding: 0 !important;
}

.user-list-table table thead tr th {
	background: #ddd;
	border: none;
	font-size: 15px;
}

.user-list-table table tbody tr td {
	font-size: 14px;
	padding: 6px 10px;
}

.loading-logo {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto; /*background: rgb(0 0 0 / 50%);*/
}

	.loading-logo svg {
		background: #fff;
		box-shadow: 0 0 10px rgb(0 0 0 / 30%);
		border-radius: 10px;
		width: 100px;
		height: 100px;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		top: 0;
	}

.navbar .navbar-toggler {
	background: none;
}
/*.loading {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 180px;
	margin: auto;
	height: 28px;
	width: 140px;
	text-align: center;
}*/

.loading {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 180px;
	font-size: 20px;
	letter-spacing: 1px;
	text-transform: capitalize;
	overflow: hidden;
	transform: translate(15%, -50%);
	height: 28px;
	width: 140px;
	margin: auto;
}

	.loading:before {
		color: #aaa;
		content: attr(data-loading-text);
	}

	.loading:after {
		top: 0;
		left: 0;
		width: 0;
		opacity: 1;
		color: #444;
		overflow: hidden;
		position: absolute;
		content: attr(data-loading-text);
		-webkit-animation: loading 5s infinite;
		animation: loading 5s infinite;
	}


.currency-sign {
	position: relative;
}

span.currency-span {
	position: absolute;
	top: 9px;
	left: 12px;
	font-size: 14px;
}

.rider_form .currency-sign input.form-control {
	padding-left: 26px;
}

span.currency-span.disabled-span {
	color: #a0a0a1;
}

.rider-search-filter {
	position: relative;
	display: flex;
	margin: 5px 0;
}

.rider-search-filter input.btn {
	margin-left: 10px;
	border-radius: 50px;
	width: 65px;
	height: 37px;
	font-size: 0;
	position: absolute;
	right: 0;
}

.rider-search-filter input#searchUser {
	border-radius: 50px;
}


.user-list-table table tbody tr.tr-space{display:none;}
.user-list-table table tbody tr td label { font-size: 13px; }

.rider-title button#SearchUserButton {
	position: absolute;
	bottom: 0;
	right: 0;
	top: 0;
	border-radius: 100px;
}





@-webkit-keyframes loading {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

@keyframes loading {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}


@media(max-width:767px) {

.user-list-table table tbody tr {border: 1px solid #eee;}
.user-list-table table tbody tr.tr-space{border:none; display:block}
.user-list-table table tbody tr.tr-space td {padding: 10px 0; display: block; border: none;} 
.user-list-table table tbody tr td:last-child{border:none;}

	.wrapper {
		margin: 0;
		box-shadow: none;
	}

	.rider-header-top {
		padding: 10px;
	}

	.rider-title h3 {
		font-size: 22px;
		margin-bottom: 7px;
	}

	nav.navigation-navbar.navbar.navbar-light .navbar-toggler {
		border: none;
		padding: 4px 0px;
		outline: none;
		box-shadow: inherit;
	}

	.add_process button {
		font-size: 12px;
		margin-bottom: 5px;
		width: 90px;
	}

	.rider_form label {
		font-size: 12px;
		font-weight: 500;
	}

	.plr-5 {
		padding: 0 5px;
	}

	.row-5 {
		margin: 0 -5px;
	}

	.footer-section h5 {
		font-size: 12px;
	}

	.add_process ul li.list-inline-item {
		margin: 0;
	}

	.rider_form h5 {
		font-size: 15px;
	}

	.setl_rate {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		width: 100%;
	}

	.id_name span {
		font-size: 12px;
		padding: 3px 20px;
		top: -1px;
	}

	.id_name {
		padding: 0;
	}

		.id_name span:before {
			border-top: 23px solid transparent;
		}

	.navigation-navbar ul.navbar-nav li a.nav-link {
		padding: 6px 15px;
		width: 100%;
	}

	nav.navigation-navbar.navbar.navbar-expand-lg {
		padding: 0
	}

	/*.rider-title h3 {
		display: none;
	}*/

	.scroll-horizontal {
		overflow-x: auto;
		width: 200px;
	}

	.scroll-vertical {
		overflow-y: auto;
		height: 200px;
	}
	.user-list-table table.table thead {
		display: none;
	}
	.user-list-table tbody td {
		display: block;
	}
	.user-list-table tbody td:empty {
		display: none;
	}
	.rider_form select, .rider_form input.form-control {
		font-size: 11px;
	}
	.form-select {
		background-size: 6%;
	}
	span.currency-span {
		font-size: 11px;
	}
}

@media(max-width:991px) {
	nav.navigation-navbar.navbar .navbar-toggler {
		display: block
	}
}



/*------------ SPINNER SECTION -----------------*/
.spinner {
	border: 10px solid silver;
	border-top: 10px solid #337AB7;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	animation: spin 700ms linear infinite;
	top: 40%;
	left: 50%;
	position: absolute;
}

@keyframes spin {
	0% {
		transform: rotate(0deg)
	}

	100% {
		transform: rotate(360deg)
	}
}
/*----------------------------------------------*/

@media(min-width:0px) and (max-width:395px) {
	.add_process_bottom {
		bottom: -90px
	}
}

@media(min-width:396px) and (max-width:767px) {
	.add_process_bottom {
		bottom: -56px
	}
}
.swal-modal {
	position: fixed;
	right: 30px;
	top: 20px;
	padding: 15px;
	padding-left: 100px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

	.swal-modal .swal-icon.swal-icon--warning {
		position: absolute;
		left: 22px;
		width: 50px;
		height: 50px;
		top: 25px;
		margin: 0 0;
	}

	.swal-modal .swal-title {
		text-align: left;
		display: inline-block;
		width: 100%;
		margin: 0 0 10px;
		padding: 0;
		font-size: 17px;
		font-weight: 400;
	}
.swal-icon.swal-icon--info {
	position: absolute;
	left: 22px;
	width: 50px;
	height: 50px;
	top: 25px;
	margin: 0 0;
}

	.swal-modal .swal-footer {
		margin: 0;
		padding: 0;
	}

	.swal-modal .swal-icon.swal-icon--warning span.swal-icon--warning__body {
		height: 17px;
	}
.swal-icon--info:after {
	content: "";
	position: absolute;
	left: 50%;
	background-color: #c9dae1;
	bottom: 8px;
}
.swal-icon--info:after {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin-left: -3px;
	top: 9px;
}
.swal-icon--info:before {
	width: 5px;
	height: 22px;
	bottom: 17px;
	border-radius: 2px;
	margin-left: -2px;
}
.swal-button-container{margin:5px 10px 0 0}
.swal-button-container .swal-button {  padding: 5px 15px;}
.toast.bg-success {
	z-index: 9999;
}
a#buttonToggle:after {
	font-family: 'IcoFont';
	position: absolute;
	right: 0;
	top: -3px;
	font-size: 20px;
	content: "\eac8";
	display: block;
}

a#buttonToggle {
	display: inline-block;
	padding-right: 25px;
	position: relative;
}
	a#buttonToggle.arrowsign:after {
		content: "\eacb";
	}
	a#buttonToggle:after {
		font-family: 'IcoFont';
		position: absolute;
		right: 0;
		top: -3px;
		font-size: 20px;
		content: "\eac8";
		display: block;
	}


a#buttonToggle {
	display: inline-block;
	padding-right: 25px;
	position: relative;
}

	a#buttonToggle.arrowsign:after {
		content: "\eacb";
	}

.modal .rider_form .arrowsignup {
	font-size: 16px;
	color: #333;
	font-weight: 400;
	position: relative;
	padding-right: 25px;
}

	.modal .rider_form .arrowsignup:after {
		position: absolute;
		right: 5px;
		top: 1px;
		content: "\eaa1";
		display: block;
		font-family: IcoFont;
		font-size: 20px;
	}

a#buttonToggle:after {
	font-family: 'IcoFont';
	position: absolute;
	right: 0;
	top: -3px;
	font-size: 20px;
	content: "\eac8";
	display: block;
}


a#buttonToggle {
	display: inline-block;
	padding-right: 25px;
	position: relative;
}

	a#buttonToggle.arrowsign:after {
		content: "\eacb";
	}

.modal .rider_form .arrowsignup {
	font-size: 16px;
	color: #333;
	font-weight: 400;
	position: relative;
	padding-right: 25px;
}

	.modal .rider_form .arrowsignup:after {
		position: absolute;
		right: 5px;
		top: 1px;
		content: "\eaa1";
		display: block;
		font-family: IcoFont;
		font-size: 20px;
	}
.rider_form .add_process .btn-primary {
	background: #5756a2;
	border: none;
	font-size: 15px;
	position: relative;
	width: 180px;
	border-radius: 4px;
	overflow: hidden;
	font-weight: 500;
	padding: 12px 12px 12px 30px
}
.rider_form .add_process .boot {
	color: #0d6efd;
	background-color: #fff;
	border-color: #0d6efd;
	font-size: 15px;
	width: 150px;
	border-radius: 4px;
	overflow: hidden;
	font-weight: 500;
	padding: 12px 12px 12px 30px
}

/*.rider_form i#eye {
	position: relative;
	right: -312px;
	top: -30px;
	background: transparent;
}*/

.rider_form .form-eye-icon {
	position: relative;
}

.btn-disabled,
.btn-disabled[disabled] {
	opacity: .4;
	cursor: default !important;
	pointer-events: none;
}

.rider-search-filter .btn-primary {
	padding: 0 32px;
	border-radius: 0 8px 8px 0;
}

.button-full button.btn {
	width: 100%;
}
a.btn-dropdown {
	color: red;
	position: relative;
	cursor:pointer;
}

/*input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type="number"] {
	-moz-appearance: textfield;
}*/
.top-section-head .btn-primary.disabled, .top-section-head .btn-primary:disabled {
	color: #fff;
	background-color: #5756a2;
	border-color: #5756a2;
	opacity: .4;
	cursor: not-allowed;
	pointer-events: inherit;
}
.rider_form i.form-eye-icon {
	position: absolute;
	right: 0;
	top: 28px;
	background: transparent;
	border: 0;
}

label.required {
	color: black;
}

label.custom {
	color: black;
}
a.btn-dropdown:after {
	font-family: 'IcoFont';
	position: absolute;
	top: 20px;
	right: -25px;
	font-size: 22px;
	content: "\ea6b";
	display: block;
}

a.btn-upArrow:after {
	font-family: 'IcoFont';
	position: absolute;
	top: 20px;
	right: -25px;
	font-size: 22px;
	content: "\ea6e";
	display: block;
}