@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap');
body,
textarea {
 font-family: 'Poppins', sans-serif;
 font-weight:400;
 font-size:15px;
 color: #1f1f1f;
 margin: 0 auto;
}
*{
  box-sizing:border-box;
}
.btn{
  font-size:15px;
  font-weight:400;
  padding:10px 16px;
  border-radius:5px;
  transition: 0.5s;
  border-width: 1px;
  border-style: solid;
}
.btn-primary{
  background-color:#723dff ;
  border-color: #723dff;
  color: #fff;
}
.btn-primary:hover{
  background-color:#723dff ;
  color: #fff;
}
.btn-check:focus+.btn-primary, 
.btn-primary:focus {
  color: #fff;
  background-color: #723dff;
  border-color: #723dff;
  box-shadow: inherit;
}
.btn-check:active+.btn-primary:focus, 
.btn-check:checked+.btn-primary:focus, 
.btn-primary.active:focus, 
.btn-primary:active:focus, 
.show>.btn-primary.dropdown-toggle:focus{
  box-shadow: inherit;
}

a{
  text-decoration:none;
  transition: 0.5s;
  color: #1f1f1f;
}
a:hover{
  color: #723dff;
}
figure{
  margin:0;
}
img{
  max-width:100%;
}
p{
  margin:0;
  color: #878787;
  font-size: 14px;
}
ul{
  padding:0;
  list-style:none;
  margin:0;
}
ul li{
  list-style:none;
  margin: 0;
}
h1,h2,h3,h4,h5,h6{
  margin:0 0 10px;
  color: #1f1f1f;
}
.dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 8px rgba(0,0,0,0.12);
  border: 0;
}
.dropdown-menu .dropdown-item {
  padding: 8px 15px;
  font-size: 14px;
  border-top: 1px solid #ccc;
}
.dropdown-menu li:first-child .dropdown-item{
  border-top: 0;
}
.dropdown-menu .dropdown-item:hover{
  background-color:#723dff;
  color: #fff;
  border-radius: 5px;
  border-color: #723dff;
}
footer{
  margin-top: 20px;
  padding: 12px 0;
  background-color: #fff;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}
footer p{
  margin:0;
  text-align: center;
}
header {
  padding: 8px 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_logo {
  width: 140px;
}
.header_inner .navbar {
  padding: 0;
}
.header_inner .navbar-nav .nav-link{
  padding: 0 2px;
  margin: 0 14px;
  color: #1D1D1D;
  position: relative;
}
.header_inner .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  background-color: #723dff;
  width: 0px;
  margin: auto;
  height: 2px;
  border-radius: 10px;
  transition: 0.5s;
}
.header_inner .navbar-nav .nav-link:hover::before, 
.header_inner .navbar-nav .nav-link.active::before {
  width: 100%;
}
.header_inner .navbar-nav .nav-link.active{
  color: #723dff;
}
.right_side_header {
  display: flex;
  align-items: center;
}
.header_setting {
  margin-right: 10px;
}
.header_setting svg{
  width: 24px;
  height: 24px;
  fill: #666666;
  cursor: pointer;
}
.right_side_user a {
  display: flex;
  align-items: center;
}
.right_side_user {
  width: 110px;
}
.right_side_user img{
  width: 34px;
  height: 34px;
  border-radius: 50px;
  overflow: hidden;
} 
.right_side_user span{
  display: block;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 6px;
  font-size: 14px;
  font-weight: 500;
}
.header_inner .dropdown-menu {
  padding: 0;
  margin-top: 14px;
}


.main_content {
  background-color: #f6f6f6;
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
}
.custom_title {
  font-size: 24px;
  font-weight: 600;  
  margin-bottom: 25px;
  position: relative;
}
.custom_form .form-group{
  margin-bottom: 18px;
}
.custom_form .form-group label{
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
}
.custom_form .form-control,
.custom_form .form-select{
  height: 45px;
  background-color:#f6f6f6;
  border-color: #b7b7b7;
  font-size: 14px;
  border-radius: 5px;
  transition: 0.5s;
}
.custom_form .form-control:focus,
.custom_form .form-select:focus{
  color: #723dff;
  background-color: #f6f6f6;;
  border-color: #723dff;
  outline: 0;
  box-shadow: inherit;
  border-radius: 10px;
}
.custom_form .form-control::placeholder:focus,
.custom_form textarea::placeholder:focus{
  color: #723dff;
}
.custom_form .form-check-input[type=checkbox]{
  width: 20px;
  height: 20px;
  position: relative;
  margin: 0;
  margin-right: 5px;
  border-radius: 5px;
}
.custom_form .form-check-input:checked{
  background-color: #723dff;
  border-color: #723dff;
}
.custom_form .form-check-input:focus{
  box-shadow: inherit;
}
.custom_form  .form-check-label{
  padding: 1px 0 0;
  margin: 0;
  font-size: 14px;
}
.custom_form textarea{
  min-height: 150px;
}
.custom_form .btn {
  display: block;
  width: 100%;
  padding: 14px 15px;
  font-size: 18px;
}
.custom_form .form-checkbox label{
  display: inline-block;
}
/*Commomn Table*/
.table{
  border-color:#a7a7a7;
  border-top-color:#723dff;
  font-size: 14px;
}
.table-responsive thead tr th {
  background: #723dff;
  color: #fff;
  font-weight: 500;
  border-color: #dfdfdf;
}
.table-responsive tr th,
.table-responsive tr td{
  padding: 8px 14px;
  vertical-align: middle;
}
.table tr td a{
  position: relative;
}
.table_common_color{
  color: #723dff;
  font-weight: 600;
  display: block;
  font-size: 14px;
}
.table .btn {
  font-size: 12px;
  padding: 8px 14px;
  text-transform: capitalize;
  font-weight: 500;
}
.tabel-user-img {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50px;
  overflow: hidden;
  object-fit: cover;
}
.table thead .form-check-input{
  border-color: #fff;
  background-color: #fff;
  width: 18px;
  height: 18px;
}
.table tbody .form-check-input{
  width: 16px;
  height: 16px;
}
.table .form-check-input:checked {
  background-color: #ffa700;
  border-color: #ffa700;
}
.table .action-button > a {
  display: inline-block;
  vertical-align: middle;
}
.table .action-button > a > i{
  width: 30px;
  height: 30px;
  line-height: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px;
  border-radius: 5px;
  color: #fff;
  background:#723dff;
  border: 1px solid #723dff;
  transition: 0.5s;
}
.table .action-button > a > i svg{
  fill: #fff;
  width: 20px;
}
.table .action-button > a:hover  > i svg{
  fill: #723dff;
}
.table .action-button > a:hover > i {
  background-color: transparent;
  color: #723dff;
}
.delete-btn {
  position: relative;
}
.delete-btn .tooltiptext {
  visibility: hidden;
  width: auto;
  background-color: black;
  color: #fff;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  font-size: 13px;
  font-weight: 400;
  top: -42px;
  left: -10px;
  margin: auto;
  text-align: center;
  overflow: visible;
}
.delete-btn:hover .tooltiptext {
  visibility: visible;
}
.delete-btn .tooltiptext:after, 
.delete-btn .tooltiptext:before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
  left: 0;
  right: 0;
  margin: auto;
  width: 0px;
  top: 29px;
}
.new_user {
  position: absolute;
  left: -8px;
  top: -9px;
  background: #23ae00;
  text-transform: capitalize;
  font-size: 11px;
  color: #fff;
  padding: 2px 3px;
  text-decoration: blink;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 0.6s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
  border-radius: 3px;
}
@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.5;}
}
/*Modal*/
.delete-modal .modal-content {
  border: 0;
  border-radius: 5px;
  overflow: hidden;
}
.delete-modal .delete-content {
  text-align: center;
  padding: 30px 15px 0;
}
.delete-content .delete-img {
  width: 50px;
  margin-bottom: 18px;
}
.delete-content .delete-img {
  width: 50px;
  margin-bottom: 18px;
}
.delete-content p {
  margin-bottom: 18px;
}
.delete-content-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 -15px;
}
.delete-modal .delete-content button {
  padding: 12px 0;
  width: 50%;
  border-radius: 0;
}

/*Search Fittler*/
.fillter_box {
  background: #ebebeb;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 25px;
}
.fillter_box > ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 -10px;
}
.fillter_box > ul > li{
  width: 20%;
  padding: 0 10px;
}
.fillter_box .btn{
  font-size: 14px;
  height: 45px;
}
.fillter_box .form-control, 
.fillter_box .form-select {
 background-color: #ebebeb;
  border-color: #4f4f4f;
 }
 .fillter_box .form-group{
  margin-bottom: 0;
 }
 /*Search Box*/
 .search_box .custom_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search_box .custom_form .form-group label{
  margin-right: 10px;
  display: inline-block;
}
.search_box .custom_form .form-group select{
  display: inline-block;
  width: 70px;
  height: 40px;
}
.search_box .custom_form .input_group{
  display: inline-block;
  width: 220px;
  position: relative;
}
.search_box .custom_form .form-group input{
  height: 40px;
  padding-right: 45px;
}
.search_box .custom_form .form-group svg {
  position: absolute;
  right: 0;
  background: #723dff;
  width: 38px;
  height: 38px;
  top: 0.5px;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
}
/*paghination*/
.pagination_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.pagination_section nav {
  flex: 1;
  margin-left: 10px;
}
.pagination_section .pagination{
  justify-content: flex-end;
}
.page-link{
  background-color: #f6f6f6;
  border: 1px solid #c6c6c6;
  color: #723dff;
  padding: 8px 16px;
  font-size: 14px;
}
.page-item.active .page-link{
  background-color: #723dff;
  border-color: #723dff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  background-color: #e9e9e9;
 }
 .page-link:focus{
  box-shadow: inherit;
 }
 .custom_title .new_count {
  background-color: #723dff;
  border-radius: 50px;
  padding:4px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  line-height: 24px;
  text-align: center;
  margin-left: -8px;
  margin-top: -4px;
  text-decoration: blink;
	-webkit-animation-name: blinkers;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}
@-webkit-keyframes blinkers {
  from {background:#723dff;}
  to {background:red;}
}


.booking_content_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.booking_content_title .custom_title {
  margin: 0;
}
.right_side_content{
  flex: 1;
  text-align: right;
  padding-left: 20px;
}
.booking_content_title .btn{
  height: 44px;
}
.dropdown_menu {
  background-color: #E6E6E6;
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  line-height: 40px;
}
.dropdown_menu svg{
  width: 24px;
  height: 24px;
}

.booking_setup_step > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.booking_setup_step > ul li {
  padding-right:100px;
  position: relative;
}
.booking_setup_step > ul li:last-child{
  padding-right: 0;
}
.booking_setup_step_inner a{
  width: 50px;
  height: 50px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 21px;
  font-weight: 500;
  color: #9F9F9F;
}
.booking_setup_step > ul li.active .booking_setup_step_inner a{
  border-color: #723DFF;
  background-color: #723DFF;
  color: #fff;
}
.booking_setup_step > ul li::after{
  content: '';
  position: absolute;
  left: 50px;
  width: 100px;
  height: 4px;
  background-color: #ccc;
  bottom: 25px;
}
.booking_setup_step > ul li.active::after{
  background-color: #723DFF;
}
.booking_setup_step > ul li:last-child::after{
  display: none;
}
.text-primary {
  color: #723dff!important;
}
.booking_genral_info{
  background: #FFFFFF;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 15px ;
  margin-bottom: 25px;
}
.booking_genral_info .qd_table{
  margin: 0;
}
.booking_genral_info ._gen_title {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 600;
}
.qd_table > :not(caption) >* >* {
  border-bottom-style:dashed;
  border-color: #ccc;
}
.qd_table tr td{
  padding: 12px 6px;
}
.qd_table tr td strong{
  font-weight: 600;
}
.qd_table tr:last-child td{
  border-bottom: 0;
}
.final_btn {
  margin-bottom: 25px;
}
.booking_genral_info iframe {
  width: 100%;
  height: 300px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.booking_genral_info .booking_genral_info_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.booking_genral_info .booking_genral_info_title ._gen_title{
  margin: 0;
}
.booking_genral_info .booking_genral_info_title a{
  color: #723dff;
  font-weight: 600;
}
.car_img img{
  border-radius: 10px;
}


._document_left {
  border: 1px dashed #BEBEBE;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
}
._document_left_img {
  background: #EFEFEF;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  border-radius: 5px;
  overflow: hidden;
}
._document_left {
  border: 1px dashed #BEBEBE;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  width: 100%;
}
._document_left_img svg {
  width: 25px;
  height: 25px;
}
.booking_genral_info ._label {
  background: #FF9900;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  padding: 4px 8px;
  margin-right: 8px;
}
.booking_genral_info_documents {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
._document_left p {
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  flex: 1;
}
.doc_right_bar{
  margin-right: 10px;
}
._document_right .btn {
  border-radius: 50px;
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-block;
  line-height: 32px;
}
._document_right .btn svg {
  width: 18px;
  height: 18px;
}
._document_right .btn-danger svg {
  width: 14px;
  height: 14px;
}
._document_right {
  margin-left: 14px;
}
._document_left_img img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
  overflow: hidden;
  cursor: pointer;
}
._admin_car_images {
  position: relative;
  margin-top: 15px;
}
._admin_car_images img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  overflow: hidden;
}
.car_handover img{
  height: 180px;
}
._admin_car_images_type{
  position: absolute;
  top: 0px;
  display: flex;
  flex-direction: column;
  left: 10px;
}
._admin_car_images_type .btn {
  font-size: 13px;
  padding: 8px;
  margin-top: 10px;
}
.booking_genral_info_upload label {
  display: block;
  margin-bottom: 8px;
}
.booking_genral_info_upload {
  margin: 10px 6px 6px;
}
.final_payment_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.final_payment_title ._gen_title{
  margin-bottom: 0;
  flex: 1;
  padding-right: 15px;
}
.final_payment_title .btn {
  font-size: 14px;
  padding: 6px 14px;
}
.total_final_payment table {
  font-size: 24px;
  font-weight: 600;
}
.total_final_payment table {
  margin: 0;
  display: inline-block;
  width: 100%;
}
.total_final_payment table tbody tr td:first-child {
  width: 210px;
  font-size: 16px;
  font-weight: 400;
}
/**Login Page**/  
.login_bg {
  background-color:#eef9ff;
}
.login .row {
  align-items: center;
  height: 100vh;
  margin: 0;
}
.login-left {
  text-align: center;
  margin: auto;
}
.login-right-main {
  height: 100vh;
  align-items: center;
  background-color: #fff;
  display: flex;
}
.login-right {
  width: 100%;
  padding: 0px 40px;
}
.logo-login {
  text-align: center;
  margin-bottom: 30px;
}
.logo-login img {
  max-width: 100%;
  height: 55px;
  margin: auto;
} 
.login-right h3 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.login-right p {
  text-align: center;
}
.custom-form-section {
  margin-top: 25px;
}

.forgot-password {
  margin-top: 10px;
  display: block;
  color: #723dff;
  font-weight: 500;
}
.login-right .custom_form input{
  background-color:transparent;
}
.login-right .custom_form .btn {
  padding: 12px 15px;
  font-size: 18px;
}
.login-right .custom-form-section .form-group {
  position: relative;
}
.custom-form-section .toggle-password {
  position: absolute;
  right:10px;
  bottom:42px;
  font-size:18px;
  cursor: pointer;
}
.custom-form-section .toggle-password svg{
  width: 20px;
  height: 20px;
}

.custom_form_two_row {
  background: #f6f6f6;
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #b7b7b7;
  padding: 0 5px;
}
.custom_form_two_row > *:first-child{
  border-right: 2px solid #b7b7b7;
}
.custom_form_two_row > * {
  border: 0;
  border-radius: 0 !important;
}
.booking_genral_info_car {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  height: 220px;
  object-fit: cover;
  object-position: center;
}
.upload_img {
  display: flex;
  align-items: center;
  justify-content:space-between;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}
.upload_img img {
  width: 58px;
  margin-right: 10px;
}
.upload_img span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 15px;
}
.cross_button {
  margin-right: 8px;
}

.cross_img_icon svg {
  width: 24px;
  height: 24px;
  background: #723dff;
  border-radius: 50px;
  overflow: hidden;
  fill: #fff;
  border: 1px solid #723dff;
}
.cross_img_icon {
  position: absolute;
  right: 6px;
  top: 6px;
}
.car_check_time_image ._admin_car_images img {
  height: 140px;
  object-fit: cover;
}
.car_check_time_image ._admin_car_images_type .btn {
  font-size: 11px;

  padding: 4px;
  margin-top: 5px;
  margin-right: 5px;
}
.car_check_time_image ._admin_car_images_type{
  flex-direction: inherit
}
.car_check_time_image ._admin_car_images_type {
  flex-direction: inherit;
  width: 80%;
  left: 5px;
}
.car_check_time_image ._admin_car_images{
  margin-top: 0;
}
.car_user_section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.car_user_left {
  width: 100px;
  margin-right: 10px;
  border-radius: 6px;
  overflow: hidden;
}
.car_user_right {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 120px;
}

.licance_plate {
  display: flex;
  align-items: center;
  width: 145px;
  border: 1px solid #000;
  border-radius: 10px;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

.licance_plate_city {
  width: 38px;
  background-color: #723dff;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  border-radius: 5px;
  padding: 3px 0;
  margin-right: 5px;
}
.licance_plate_number{
  flex: 1;
}
.car_deatils_board_box{
  text-align: center;
  margin-bottom: 30px;
}
.car_deatils_board_box h6 {
  font-size: 18px;
  padding: 14px 10px 20px;
  border-radius: 20px 20px  0 0;
  font-weight: 600;
  color: #fff !important;
  margin: 0;
}
.car_deatils_board_box_main {
  background: #FFFFFF;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 15px 10px;
  margin-top: -8px;
}
.car_deatils_board_box_main p {
  color: #000;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 2px;
}
.car_deatils_board_box_main span {
  font-size: 15px;
}


.card_dashboard_trunover {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card_dashboard_trunover h4 {
  margin: 0;
  font-size: 18px;
  flex: 1;
  padding-right: 10px;
}
.card_dashboard_trunover .select_box > a {
  border: 1px solid #b5aeae;
  border-radius: 5px;
  padding: 7px 13px;
  color: #393939;
  font-size: 14px;
}

.card_dashboard_trunover{
  margin-bottom: 15px;
}

.car_deatils h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.car_deatils_dashboard_board .car_deatils {
  background: #FFFFFF;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}
.chart_img{
  margin-top: 8px;
}
.chart_img img{
  width: 100%;
  height: 80px;
  object-fit: cover;
}


.table-responsive::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
  padding: 0;
  height: 10px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background-color: rgba(52,58,64,.2);
  border-radius: 10px;
  border: 2px solid #fff;
  padding: 0;
  height: 10px;
}
.table-responsive::-webkit-scrollbar {
  -webkit-appearance: none;
  padding: 0;
  height: 12px;
}


.map_img{
  padding: 25px 0 5px;
}

.sale_analytisc {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.sale_analytisc_inner {
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.sale_analytisc_inner h4{
  margin: 0 6px 0 0;
  font-size: 24px;
  color: #723dff;
}
.sale_analytisc_inner span{
  font-size: 14px;
}

.report_tab {
  text-align: center;
  margin-bottom: 14px;
}}
.report_tab p {
  font-size: 13px;
}

.report_tab h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 4px 0 0;
}

.badge-success-subtle {
  color: #51d28c;
  background-color: rgba(81,210,140,.1);
}
p span.text-success{
  font-weight: 600;
}

._btn_gernrat{
  margin-top: 12px;
}
._btn_gernrat .btn{
  font-size: 13px;
  padding: 5px 10px;
}
.map_img img {
  width: 100%;
  object-fit: cover;
}

._coupon_code .coupon-card h3{
  font-size: 25px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
}
._coupon_code .coupon-card p{
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}
._coupon_code .coupon-row{
  display: flex;
  align-items: center;
  margin: 20px auto;
  width: fit-content;
}
._coupon_code #cpnCode{
  border: 1px dashed #fff;
  padding: 10px 20px;
  border-right: 0;
}
._coupon_code #cpnBtn{
  border: 1px solid #fff;
  background: #fff;
  padding: 10px 20px;
  color: #7158fe;
  cursor: pointer;
}
._coupon_code .circle1,._coupon_code .circle2{
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
._coupon_code .circle1{
  left: -15px;
}
._coupon_code .circle2{
  right: -15px;
}
._coupon_code .coupon-card{
  background: linear-gradient(135deg, #723dff, #9d4de6);
  color: #fff;
  text-align: center;
  padding: 28px 60px;
  border-radius: 15px;
  box-shadow: 0 10px 10px 0 rgba(0,0,0,0.15);
  position: relative;
}
.rantal_calender{
  width: 100%;
  display: block;
}

.rantal_calender .car_rental_table {
  overflow-x: scroll !important;
}
.rantal_calender .mb5 {
  margin-bottom: 1.5rem;
}
.rantal_calender .mb3 {
  margin-bottom: .6rem;
}
.car_reantl_box_date{
  padding: 10px 15px;
  border-radius: 5px;  
  margin-right: 6px;
}
.rantal_calender .text-heading {
  color:#3d475c;
}
.rantal_calender .bg-warning-subtle {
  background-color: #fff1d4 ;
}
.rantal_calender .bg-success-subtle {
  background-color: #cff1e6 ;
}
.rantal_calender .bg-primary-subtle {
  background-color: #dcdcfe ;
}
.rantal_calender .bg-secondary-subtle {
  background-color: #f8f9fa ;
}
.rantal_calender .bg-danger-subtle{
  background-color: #fdeeee;
}
.rantal_calender .car_rantal_label{
  margin-bottom: 10px;
  font-weight: 600;
  display: block;
}

.rantal_calender .car_rental_table::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
  padding: 0;
  height: 10px;
}
.rantal_calender .car_rental_table::-webkit-scrollbar-thumb {
  background-color: rgba(52,58,64,.2);
  border-radius: 10px;
  border: 2px solid #fff;
  padding: 0;
  height: 10px;
}
.rantal_calender .car_rental_table::-webkit-scrollbar {
  -webkit-appearance: none;
  padding: 0;
  height: 12px;
}
.rantal_calender .booking_genral_info {
  margin-bottom: 0px;
}

/**Vertical Header**/
.header_humburger_btn svg {
  width: 36px;
  height: 36px;
  background: #763ffd;
  border-radius: 6px;
  fill: #fff;
  padding: 5px;
}

/**Vertical Sidebar**/
header.vertical_header {
  position: fixed;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 9;
  left: 0;
  padding-left: 260px;
  transition: 0.5s;
}
.menu-closed  header.vertical_header {
  padding-left: 70px;
}
.menu-left-side {
  position: fixed;
  left: 0;
  top: 0px;
  background: white;
  height: 100%;
  overflow-x: auto;
  width: 250px;
  text-align: left;
  transition: 0.5s;
  z-index: 9;
  box-shadow: 4px 7px 5px rgba(0,0,0,.10);
}
.menu-left-side.open {
  width: 60px;
}
.menu-left-side ::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
  padding: 0;
  width: 10px;
}
.menu-left-side ::-webkit-scrollbar-thumb {
  background-color: rgba(52,58,64,.2);
  border-radius: 10px;
  border: 2px solid #fff;
  padding: 0;
  height: 10px;
  width: 10px;
}
.menu-left-side ::-webkit-scrollbar {
  -webkit-appearance: none;
  padding: 0;
  height: 12px;
  width: 10px;
}
.menu-closed .navbar-top .logo {
  display: none;
}
.menu-closed .navbar-top .logo_icon {
  display: block;
}
.navbar-top {
  padding: 5px;
  border-bottom: 1px solid #ccc;
  height: 62px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.navbar-top img {
  max-height: 34px;
  max-width: 100%;
  transition: 0.5s;
}
.navbar-top .logo_icon {
  display: none;
  width: 40px;
}
.navigation-menu {
  margin-top: 10px;
  overflow-y: auto;
  height: calc(100% - 96px);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.navigation-menu > li > a {
  padding: 10px 8px;
  display: block;
  margin:0 5px;
  margin-top: 5px;
  border-radius: 5px;
  color:#1f1f1f;
  position: relative;
  cursor: pointer;
  padding-right: 30px;
  transition: 0.5s;
  z-index: 1;
}

.navigation-menu > li > a.active,
.navigation-menu > li > a:hover {
  background: rgb(127 66 248 / 14%);
  color: #723dff;
  font-weight: 500;
}

.menu-left-side .sub-menu-list {
  margin: 8px 5px 5px;
  background: #f1f1f1;
  border-radius: 5px;
  padding: 0 12px;
}
.navigation-menu li {
  position: relative;
  white-space: nowrap;
}
.menu-left-side .sub-menu-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url(../images/right_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
  height: 14px;
  width: 14px;
  top: 12px;
}

.menu-left-side .sub-menu-list a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid #ccc;
  position: relative;
  padding-left: 22px;
}
.menu-left-side .sub-menu-list li:first-child a {
  border-top: 0;
}
.menu-left-side .sub-menu::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  content: '';
  background-repeat: no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
  background-position: center;
  position: absolute;
  right: 5px;
  transform: rotate(180deg);
  top: 15px ;
}
.navigation-menu > li > .sub-menu.collapsed::after {
  transform: rotate(0deg);
}
body.vertical_menu {
  padding-left: 260px;
  transition: 0.5s;
  padding-top: 50px;
}
body.vertical_menu.menu-closed{
  padding-left: 70px;
}
.navigation-menu > li > a > i{
  vertical-align: text-bottom;
}
.navigation-menu > li > a svg {
  width: 18px;
  height: 18px;
}
.navigation-menu > li > a > span{
  margin-left: 5px;
}
.menu-left-side.open .navigation-menu li a span {
  display: none;
  transition: 0.9s;
}
.menu-left-side.open .navigation-menu li a svg {
  width: 25px;
  height: 25px;
}
.menu-closed .menu-left-side .sub-menu:after {
  opacity: 0;
}
.menu-closed .menu-left-side .sub-menu-list{
  display: none;
}
.vertical_menu .container {
  max-width: 100%;
  width: 100%;
}


/**User Profile**/
.user_profile_photo_left {
  margin-right: 15px;
}
.user_profile_photo_left figure img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.user_profile_photo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.user_profile_photo_right {
  flex: 1;
}
.verified_img {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.verified_img_left img {
  width: 110px;
  margin-right: 10px;
}
.user_profile_photo_right {
  flex: 1;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.verified_img_right {
  background: #2196F3;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
}
.verified_img_right svg {
  fill: #fff;
}
.verified_img_right svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}
.user_profile_photo_right p {
  margin-top: 8px;
}

.car_deatils_card_main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.car_deatils_card_main_left {
  width: 120px;
  font-weight: 500;
  font-size: 14px;
}
.car_deatils_card ul > li {
  margin-top: 10px;
}
.car_deatils_card_main_right {
  text-align: right;
  font-size: 13px;
}


.user_fund_right .knobs,
.user_fund_right .layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.user_fund_right .button {
  position: relative;
  width: 74px;
  height: 36px;
  overflow: hidden;
}
.user_fund_right .button.r,
.user_fund_right .button.r .layer {
  border-radius: 100px;
}
.user_fund_right .button.b2 {
  border-radius: 2px;
}
.user_fund_right .checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.user_fund_right .knobs {
  z-index: 2;
}
.user_fund_right .layer {
  width: 100%;
  background-color: #ebf7fc;
  transition: 0.3s ease all;
  z-index: 1;
}
.user_fund_right #button-3 .knobs:before {
  content: "YES";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  padding: 0px;
  background-color: #03a9f4;
  border-radius: 50%;
  transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

.user_fund_right #button-3 .checkbox:active + .knobs:before {
  width: 46px;
  border-radius: 100px;
}

.user_fund_right #button-3 .checkbox:checked:active + .knobs:before {
  margin-left: -26px;
}

.user_fund_right #button-3 .checkbox:checked + .knobs:before {
  content: "NO";
  left: 42px;
  background-color: #f44336;
}

.user_fund_right #button-3 .checkbox:checked ~ .layer {
  background-color: #fcebeb;
}
.user_fund {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 18px;
  width: 100%;
}

.user_fund_left {
  flex: 1;
  margin-right: 10px;
}
.user_fund_left {
  flex: 1;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.user_fund_left svg {
  width: 36px;
  height: 36px;
  margin-right: 11px;
  fill: #03a9f4;
}
.user_fund_right span {
  margin-bottom: 5px;
  display: block;
}
.user_fund_left span {
  font-weight: 600;
}
.user_deatil_coupon .coupon-card {
  padding: 15px 20px;
}
.user_deatil_coupon h3 {
  font-size: 18px !important;
  margin-bottom: 0 !important;
}
.user_deatil_coupon .coupon-row {
  margin: 6px auto 10px;
}
.user_deatil_coupon .circle1, 
.user_deatil_coupon .circle2 {
  width: 40px;
  height: 40px;
}
.auto_login .btn {
  font-size: 14px;
  padding: 8px 16px;
}
.user_deatil_coupon ._coupon_code .coupon-row {
  margin: 5px auto;
}
.user_deatil_coupon #cpnCode {
  padding: 8px 6px;
  font-size: 12px;
}
.user_deatil_coupon #cpnBtn {
  padding: 8px 6px;
  font-size: 12px;
}
.user_deatil_coupon .coupon-card p{
  font-size: 12px;
}
.user_deatil_coupon ._btn_title {
  display: block;
  margin-bottom: 10px;
}

.approve_contact_img {
  padding: 8px;
  position: relative;
  margin-bottom: 12px;
}
.uplod_docment_file .col-md-3 {
  padding: 0 5px;
}
.approve_contact_img img {
  border-radius: 10px;
  overflow: hidden;
  height: 170px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.approve_btn {
  position: absolute;
  right: 16px;
  top: 16px;
}
.approve_btn ._btn {
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  background: green;
  border-radius: 50px;
  text-align: center;
  line-height: 26px;
  padding: 0 4px;
}
.approve_btn ._btn svg{
  fill: #fff;
}
.approve_btn ._btn.unaprrove {
  background: red;
}

.map_user_live iframe {
  height: 280px;
  border-radius: 10px;
}


.user_car_runing_inner .days {
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user_car_runing_inner {
  border: 1px solid #ccc;
  padding: 14px;
  border-radius: 10px;
  margin-top: 15px;
}
.user_car_runing_inner h5 {
  font-size: 18px;
}

.driver_name {
  background: #ededed;
  display: inline-block;
  padding: 6px;
  border-radius: 5px;
}
.user_car_runing_inner > span{
  display: block;
  margin-bottom: 5px;
}
.speding_times {
  margin-top: 15px;
}
.speding_times span{
  background: #ffd667;
  padding: 12px 10px;
  border-radius: 5px;
}
.speding_times span {
  background: #ffe2cb;
  padding: 8px 10px;
  border-radius: 5px;
  color: #ed6f02;
}

.car_stopage {
  margin-top: 24px;
}
.car_stopage {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}
.car_stopage_left {
  margin-right: 5px;
}
.car_stopage_right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.car_stopage_right span {

  position: relative;
}
.car_stopage_right span:first-child{
  padding-right: 20px;
}
.car_stopage_right span:first-child::after {
  content: '';
  position: absolute;
  right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  background-color: #bbb7b7;
  top: 6px;
}
.stopage_timer {
  width: 100%;
  display: flex;
  margin-top: 10px;
}
.stopage_timer span {
  height: 4px;
}
.stopage_timer .green {
  background: #008000;
  width: 40px;
}
.stopage_timer .yello {
  background-color: #ffa700;
  width: 30px;
}
.stopage_timer .red {
  background: #ff0000;
  width: 60px;
}
.opt_section {
  text-align: center;
  margin-bottom: 10px;
  background: #d5ffd9;
}
.opt_section h5 {
  font-size: 20px;
  font-weight: 600;
}
.opt_section p {
  margin-top: 8px;
  color: #000;
  font-weight: 600;
  font-size: 16px;
}
.opt_section svg{
  width: 40px;
  height: 40px;
}
.booking_listing{
  margin-bottom: 14px;
}
.booking_listing {
  display: flex;
  align-items: center;
}
.booking_listing  h4{
  margin-bottom: 0;
}
.booking_listing span{
  padding-left: 30px;
  font-size: 18px;
}
.right_side_bar_menu_option {
  position: fixed;
  right: -100%;
  width: 280px;
  z-index: 9;
  background: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(0,0,0,.06),0 1px 0 0 rgba(0,0,0,.02);
  box-shadow: 0 0 24px 0 rgba(0,0,0,.06),0 1px 0 0 rgba(0,0,0,.02);
  top: 0;
  height: 100%;
  transition: ease-in-out 0.6s;
}
.right_side_bar_menu_option.open{
  right:0;
}
.right_side_bar {
  background: #763ffd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 10px;
}
.right_side_bar h3 {
  font-size: 18px;
  margin: 0;
  color: #fff;
}
.right_side_bar a {
  width: 24px;
  height: 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.right_side_bar a svg{
  width: 14px;
  height: 14px;
  color: #763ffd;
}
.right_side_bar_inner{
  padding:0 20px;
}
.right_side_bar_inner h6 {
  margin: 15px 0px 18px;
  font-size: 18px;
  font-weight: 600;
}
.right_side_bar_inner .btn{
  width: 100%;
}
.right_side_bar_inner .btn-info {
  color: #000;
  background-color: #c2c2c2;
  border-color: #c2c2c2;
}
.table span strong {
  font-weight: 500;
}
.custom_form #add-more-btn,
.form-group button#DeleteRow {
  font-size: 16px;
  padding: 10px;
}

.monthly_tenurter {
  background: #fff;
  text-align: center;
  border-radius: 10px;
  box-shadow: 1px 0 6px rgba(0,0,0,.15);
  padding: 8px;
  width: 64px;
  display: inline-block;
  margin-right: 6px;
  cursor: pointer;
}
.monthly_tenurter h4 {
  margin-bottom: 2px;
  font-size: 20px;
  font-weight: 600;
}
.monthly_tenurter span {
  font-size: 14px;
}
._form_add {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.monthly_tenurter.active {
  border: 2px solid #723dff;
  background: rgba(141,101,255,.10);
  color:#723dff !important;
}
.monthly_tenurter.active span,
.monthly_tenurter.active h4{
  color:#723dff !important;
}
.image_preview_thumb{
  position: relative;
}
.btn_upload .btn-primary {
  font-size: 16px;
  padding: 12px 0;
}

.booking_genral_info .custom_edit {
  border: 0;
  font-weight: 600;
  color: #212529;
  padding: 0;
}
.booking_genral_info .custom_edit::placeholder{
  color: #212529
}
.booking_genral_info .custom_edit:focus,
.booking_genral_info .custom_edit:focus-visible{
  border: 1px solid #723DFF;
  outline: 0;
  border-radius: 5px;
  padding: 2px 5px;
}
/*Tabs*/

.booking_listing .nav-tabs {
  border-bottom: 0;
  margin-left: 5px;
}
.booking_listing .nav-tabs .nav-link{
  padding: 8px 12px;
  font-size: 14px;
  border: 0;
  margin-left: 10px;
  transition: 0.5s;
  color: #1f1f1f;
}
.booking_listing .nav-tabs .nav-link.active,
.booking_listing .nav-tabs .nav-link:hover {
  background-color: #723dff;
  border-radius: 50px;
  color: #fff;
}
.booking_listing .nav-tabs .nav-link {
  border: 0;
}
.upload_btn {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  border:3px dashed #763ffd;
  border-radius: 10px;
  margin-bottom: 20px;position: relative;
}
.upload_btn svg {
  width: 45px;
  height: 45px;
  margin-bottom: 9px;
  background: #763ffd;
  border-radius: 50px;
  padding: 0 10px;
  fill: #fff;
  border: 1px solid #fff;
}
.upload_btn input {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  top:0;
}
.upload_btn p {
  font-size: 16px;
  font-weight: 600;
  color: #763ffd;
}
/*Delivery Boy*/
.selfi_section_header {
  padding: 10px;
  background: #f6f6f6;
}
.selfi_section_header {
  font-size: 15px;
  font-weight: 600;
}
._selfi_section .row {
  margin: 0;
}
.selfi_image {
  background: #fff;
  box-shadow: 0 1px 9px rgba(0,0,0,.14);
  min-height: 80px;
  padding: 10px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  text-align: left;
  margin-top: 18px;
  border-radius: 10px;
  position: relative;
} 
._selfi_section .row .col {
  padding: 0 4px;
}
.selfi_image h3 {
  font-size: 16px;
  margin-bottom: 5px;
  text-align: left;
}
.selfi_image span{
  font-size: 12px;
}
.selfi_section_header svg {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  display: inline-block;
}
.selfi_right_check {
  position: absolute;
  right: 8px;
  top: 8px;
}
.selfi_right_check  svg{
  width: 20px;
  height: 20px;
  fill:#763ffd;
}
.selfi_inner{
  padding:12px 10px;
}
.selfi_inner p{
  font-size: 13px;
}
.selfi_default_photo {
  margin-top: 10px;
}
.selfi_default_photo img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  height: 180px;
  object-fit: cover;
}
.car_ongoing_deatils{
  text-align: center;
}
.car_ongoing_deatils h6{
  margin-bottom:10px;
  font-weight: 600;
}
.car_ongoing_deatils h4{
  margin-bottom: 6px;
  font-size: 15px;
}
.help_call {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  background: #f3f3f3;
  padding: 8px;
  border-radius: 5px;
}
.help_call a svg {
  width: 18px;
  height: 18px;
  display: block;
  text-align: center;
  margin:0 auto 6px;
  fill:#763ffd;
}
.help_call li {
  width: 33.33%;
  text-align: center;
  font-size: 13px;
}
.location_tab {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 14px;
}
.location_tab_left {
  flex: 1;
  text-align: left;
}
.location_tab_left h5 {
  margin-bottom: 4px;
  font-size: 14px;
}
.location_tab_right {
  width: 110px;
  overflow: hidden;
}
.location_tab_right iframe {
  width: 100%;
  height: 76px;
  border-radius: 5px;
  margin-left: 4px;
}
.location_tab_right a {
  font-size: 13px;
  color: #763ffd;
  font-weight:600;
}
.develiry_car_tab {
  text-align: left;
}
.location_tab_inner_left h4 {
  font-size: 18px;
}
.location_tab_inner_left {
  display: flex;
  align-items: flex-start;
  margin-top: 12px;
}
.location_tab_inner_left figure {
  width: 100px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 10px;
  height: 60px;
}
.location_tab_inner_left figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.location_tab_inner_left a{
  color: #763ffd;
  font-weight: 500;
}
.location_tab_inner_left h5 {
  font-size: 14px;
  margin-bottom: 2px;
}
.payment_method_develry {
  text-align: left;
  margin-top: 14px;
  background: #f3f3f3;
  padding: 10px;
  border-radius: 5px;
}
.payment_method_develry h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.payment_method_develry table {
  width: 100%;
  font-size: 13px;
}
.payment_method_develry table tr th{
  font-weight: 400;
  padding:2px 4px;
}
.payment_method_develry table tr td{
  font-weight: 600;
  padding:2px 4px;
}
.payment_method_develry ._total{
  color: #763ffd;
}
.car_ongoing_deatils ._btn{
  margin-top: 12px;
}
.car_ongoing_deatils ._btn .btn.btn-primary {
  display: block;
  font-size: 14px;
  padding:10px 6px;
}
._live_location iframe {
  width: 100%;
  height: calc( 100vh - 195px);
}
.addres_section {
  text-align: left;
}
.allow_acsess {
  padding: 12px 0 0;
  text-align: center;
}
.allow_acsess h5 {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding: 0 10px 10px;
  margin-bottom: 0;
}
.allow_acsess h5 svg {
  display: block;
  text-align: center;
  margin: 0 auto  10px;
  width: 24px;
  height: 24px;
  fill: #763ffd;
}
.allow_acsess ul > li > a {
  border-bottom: 1px solid #763ffd;
  display: block;
  padding: 8px;
  padding-top: 12px;
  color: #763ffd;
}
.allow_acsess ul > li:last-child > a{
  border-bottom: 0;
}

.sucees_popup h5 svg {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 50px;
  fill: #198754;
}
.sucees_popup h5 {
  border: 0;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 5px;
  color: #198754;
}
.allow_acsess.sucees_popup .btn-success {
  display: block;
  margin: 0px 15px 16px;
  border-radius: 50px;
}
.allow_acsess.sucees_popup p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 500;
}
._car_image > ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -5px;
}
._car_image > ul > li{
  width: 50%;
  padding: 0 5px 10px;
  overflow: hidden;
}
._car_image > ul > li > a{
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  display: block;
}
._car_image > ul > li > a img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  height: 160px;
  object-fit: cover;
  object-position: center;
}
._car_image > ul > li input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  bottom: 0;
}
.car_imags_anlge > ul > li > a img {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  background: white;
  border: 1px solid #ccc;
}
.car_imags_cross svg {
  background: #723dff;
  width: 22px;
  height: 22px;
  padding: 5px;
  fill: #fff;
  border-radius: 50px;
  position: absolute;
  right: 6px;
  top: 6px;
}
.admin_coupon_issue {
  border: 3px dashed #723dff;
  border-radius: 10px;
  padding: 20px;
  margin: 15px;
  min-height: 280px;
  background-color: #fff;
}
.coupon_name h4 {
  font-size: 20px;
  margin-bottom: 6px;
}
.coupon_name p {
  font-size: 16px;
}
.coupon_code span {
  background: #723dff;
  padding: 10px;
  display: inline-block;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px dashed #fff;
  color: #fff;
  font-weight: 600;
}
.coupon_date {
  margin: 10px 0 5px;
  font-weight: 600;
  color: #723dff;
  font-size: 17px;
}


@media (max-width:767px){
  .login-right-main{
    height: auto;
    padding: 20px 0;
  }
  .login-left > img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #eef9ff;
    padding: 20px 15px; 
  }
  .logo-login img {
    height: 30px;
  } 
  .login-right {
    width: 100%;
    padding: 0px 10px;
  }
  .logo-login {
    margin-bottom: 15px;
  }

  .login-right h3{
    font-size: 22px;
  }
  .custom_form .form-group label{
    font-size: 13px;
  }
  .custom_form .form-control, .custom_form .form-select {
    height: 40px;
    font-size: 13px;
  }
  .custom-form-section .toggle-password svg {
    width: 16px;
    height: 16px;
  }
  .custom-form-section .toggle-password{
    right: 6px;
    bottom: 34px;
  }
  .forgot-password {
    margin-top: 8px;
    font-size: 13px;
  }
  .login-right .custom_form .btn {
    padding: 10px 10px;
    font-size: 15px;
  }
  .custom-form-section {
    margin-top: 20px;
  }

} 

