@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* font-family: 'Roboto', sans-serif; */
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

a,
a:active,
a:hover,
a:visited {
  text-decoration: none;
  color: inherit;
}

.form-check-input:checked {
  background-color: var(--orange);
  border-color: var(--orange);
  width: 18px;
  height: 18px;
}



:root {
  --red: #FF0006;
  --yellow: #f7e85c;
  --white: #ffffff;
  --black: #000000;
  --blue: #123294;
  --green: #0E9700;
  --grey: #666666;
  --orange: #FF9938;
  --lightorange: #fdefe5;
  --lightgrey: #e6e6e6;
  --purple: #4F46E5;
  --lightpurple: #EBE9F2;
  --shadow: 0 5px 10px rgba(56, 56, 56, 0.1);
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #a6a6a6;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--purple);
}

.text_danger {
  font-weight: 600;
  color: #f0151f;
}

.text_success {
  font-weight: 600;
  color: #00ae23;
}

.text_warning {
  font-weight: 600;
  color: #b7a500;
}

.form-control[type=file] {
  height: auto;
}

.inputDisabled {
  background-color: #e9ecef;
}

/* Btn Styling  */
.main_btn, .resetpasswordButton .dt-button {
    font-size: 1rem;
    background-color: var(--orange);
    border-radius: 5px;
    padding: 0.5rem 2rem;
    font-weight: 500;
    color: var(--white) !important;
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid var(--white);
}

    .main_btn:hover, .resetpasswordButton .dt-button:hover, .resetpasswordButton .dt-button:focus {
        box-shadow: 0px 2px 4px var(--lightgrey);
        background: #f37500 !important;
    }
.resetpasswordButton .dt-button .dt-button {
    margin: 0;
}
  

    .main_btn:active, .resetpasswordButton .dt-button .dt-button:active {
        box-shadow: 0px 4px 8px var(--lightgrey);
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
    }

.delete_btn {
  font-size: 1rem;
  background-color: var(--red);
  border-radius: 5px;
  padding: 0.5rem 2rem;
  font-weight: 500;
  color: var(--white) !important;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--red);
}


.disabled_btn {
  opacity: 0.6;
  cursor: not-allowed !important;
}

.disabled_btn:hover {
  background-color: var(--orange);
  cursor: not-allowed !important;
}


.delete_btn:hover {
  box-shadow: 0px 4px 8px var(--lightgrey);
  background-color: #d10b0b;
}

.delete_btn:active {
  box-shadow: 0px 4px 8px var(--lightgrey);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.secondry_btn {
  font-size: 1rem;
  border-radius: 5px;
  padding: 0.5rem 2rem;
  font-weight: 500;
  transition: 0.3s;
  background-color: var(--orange);
  color: var(--white) !important;
  cursor: pointer;
  border: 1px solid var(--orange);
}

.outline_btn {
  font-size: 1rem;
  border-radius: 5px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid var(--black);
  color: var(--black);
  cursor: pointer;
  background-color: var(--white);
}

.outline_btn:hover {
  box-shadow: 0px 4px 8px var(--lightgrey);
  background-color: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
}

/* .disabled {
  background-color: #919191;
} */
.secondry_btn:hover {
  box-shadow: 0px 4px 8px var(--lightgrey);
  background-color: #c96100;
}

.secondry_btn:active {
  box-shadow: 0px 4px 8px var(--lightgrey);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.eye {
  position: relative;
}

.eye .main_password {
  font-weight: 700;
  font-size: 1.2rem;
  position: absolute;
  right: 1.8rem;
  top: 2.6rem;
  color: var(--grey);
}

.form-switch .form-check-input {
  width: 3em;
  height: 1.5rem;
  border: 1px solid var(--orange);
}

/* input[type="checkbox"] {
  height: 18px;
  width: 18px;
  border-radius: 8px;
  margin-right: 10px;
  margin-top: 1px;
} */

.form-check-input[type=radio] {
  padding: 0.8rem;
  border-radius: 8px;
  margin-right: 10px;
  margin-top: 1px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  height: 19px;
}

input[type="checkbox"]:checked {
  background-color: var(--orange);
}

input[type="checkbox"]:focus {
  box-shadow: none;
}

.main_form input[type="checkbox"] {
  padding: 0;
}

textarea.form-control:focus {
  box-shadow: none;
  border-color: var(--orange);
}

textarea.form-control {
  font-size: 0.9rem;
}

.main_form input::file-selector-button {
  font-weight: 500;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  background-color: var(--orange) !important;
  color: var(--white);
}

/* Delete modal pop css */
/* ===============Login CSS================= */
.login_outer {
  overflow: hidden;
}

.login_outer .login_bg {
  background-image: url(../images/login_bg.png);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.login_outer .login_bg .bg-text {
  position: absolute;
  left: 10rem;
}

.login_outer .login_bg .bg-text h1 {
  color: var(--white);
  font-size: 6rem;
  font-weight: 300;
  font-weight: 400;
  text-transform: capitalize;
}

.login_outer .login_bg .loginForm {
  display: flex;
  justify-content: flex-end;
}

.login_outer .login_form.signup_form {
  background-color: var(--white);
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border-radius: 15px;
  padding: 1rem 2rem 1rem;
  margin: auto;
}

.login_outer .login_form {
  background-color: var(--white);
  width: 65%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border-radius: 15px;
  padding: 3rem 3rem 7rem;
  margin:20px; auto;
}

.login_outer .login_form .logo {
  width: 130px;
  margin: auto;
  padding-top: 0.1rem
}

    .login_outer .login_form .form_body h3, .login_outer .login_form .form_body h1 {
        font-size: 1.5rem; color: var(--orange);
    }


.signup_form h1 {
    color: #000;
    display: block;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 20px auto 30px;
}

.login_outer .login_form .form_body h2 {
    color: var(--orange);
    font-size: 1.5rem;
    display: block;
    margin-top: 15px;
}

        .login_outer .submit_btn,
        .upgrdeplan-modal .submit_btn {
            background-color: var(--orange);
            box-shadow: none;
            color: var(--white);
            font-size: 1rem;
            width: 100%;
            padding: 0.8rem;
            border-radius: 50px;
            box-shadow: rgb(66 65 65 / 10%) 0px 0px 9px;
        }

.login_outer .submit_btn:hover {
  background-color: #cc6300;
}

.login_outer .login_form input.form-control {
  padding: 1.2rem;
  box-shadow: none;
  border: none;
  padding-left: 0;
  border-radius: 10px;
}

.login_outer .login_form select {
  padding: 1.2rem;
  box-shadow: none;
  border: none;
  padding-left: 10px;
  border-radius: 10px;
}

.login_outer div.input-group {
  border-bottom: 3px solid #373737;
  border-radius: 10px;
}

/* div.input-group:has(input.form-control:focus) {
  border-bottom: 3px solid var(--orange);
} */

.login_outer .login_form span.input-group-text {
  background: transparent;
  border-radius: 10px;
  border: none;
}

.login_outer .login_form .forget_text label {
  text-align: start;
  font-size: 0.9rem;
  font-weight: 500;
  color: #344054;
}

/* ===============Login CSS End================= */
/* ===============Admin CSS Start================= */
.sidebar {
  position: fixed;
  height: 100%;
  width: 300px;
  background: var(--white);
  transition: all 0.5s ease;
}

.sidebar.active {
  width: 83px;
}

.sidebar.active .nav-links {
  padding-right: 0;
}

.side_text {
  overflow: auto;
  height: calc(100% - 70px);
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.sidebar .logo-details {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e2e1e1;
}

.sidebar .logo-details i {
  min-width: 60px;
  text-align: center;
}

.sidebar .logo-details i img {
  width: 60px;
}

.sidebar .logo-details .logo_name {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  margin-left: 1rem;
}

.sidebar .nav-links {
  margin-top: 10px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 30px;
}

.sidebar .nav-links li {
  position: relative;
  list-style: none;
  margin-bottom: 5px;
}

    .sidebar .nav-links li a {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: all 0.4s ease;
        padding: 12px 0;
    }

.sidebar .nav-links li a.active {
  background: var(--lightorange);
  border-radius: 5px;
  font-weight: 500;
}

.sidebar .nav-links li a.active path {
  fill: var(--orange);
}

.sidebar .nav-links li a:hover {
  background: var(--lightorange);
  border-radius: 5px;
  font-weight: 500;
}

.sidebar .nav-links li a:hover path {
  fill: var(--orange);
}

.sidebar .nav-links li i {
  min-width: 40px;
  text-align: center;
  font-size: 18px;
  color: var(--orange);
}

.sidebar .nav-links li a.active .links_name {
  color: var(--orange);
  font-weight: 600;
}

.sidebar .nav-links li a:hover .links_name {
  color: var(--orange);
  font-weight: 500;
}

.sidebar .nav-links li a .links_name {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 400;
  margin-left: 0.6rem;
  white-space: nowrap;
}

.sidebar ol,
.sidebar ul {
  padding-left: 1.2rem;
}

.sidebar .nav-links .log_out {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.sidebar.active .nav-links li a .links_name {
  display: none;
}

.sidebar.active .nav-links li a {
  justify-content: center;
}

/* dropdown Css */
.drop_icon::after {
  content: "\f107";
  font-family: FontAwesome;
  font-weight: 700;
  font-size: 1.1rem;
  position: absolute;
  left: 250px;
}

a.dropdown_menu[aria-expanded="true"] .drop_icon::after {
  transform: rotate(180deg);
  transition: 0.3s;
}

.home-section {
  position: relative;
  background: #f7f8fa;
  min-height: 100vh;
  width: calc(100% - 300px);
  left: 300px;
  transition: all 0.5s ease;
}

.sidebar.active~.home-section {
  width: calc(100% - 84px);
  left: 84px;
}

.home-section .home-content {
  position: relative;
  padding-top: 100px;
/*  padding-top:65px;*/
}

.home-section nav.top_bar {
    display: flex;
    justify-content: space-between;
    /*  height: 65px;*/
    display: flex;
    align-items: center;
    position: fixed;
    width: calc(100% - 300px);
    left: 300px;
    z-index: 100;
    padding: 14px 15px;
    transition: all 0.5s ease;
    background-color: #f7f8fa;
    background: #fff;
    border-bottom: 1px solid #ff993840;
    /*box-shadow: 9px -3px 8px #ff9938;*/
}

.sidebar.active .logo_name {
  display: none;
}

.sidebar.active ol,
.sidebar.active ul {
  padding-left: 0rem;
}

.sidebar.active~.home-section nav.top_bar {
  left: 90px;
  width: calc(100% - 90px);
}

.home-section nav.top_bar .sidebar-button {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--orange);
}

nav.top_bar .sidebar-button i {
  font-size: 35px;
  margin-right: 10px;
}

.home-section nav.top_bar .profile-details {
  display: flex;
  align-items: center;
  border-radius: 6px;
  height: 60px;
}

.home-section nav.top_bar .profile-details .profile_image img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
}

.home-section nav .search-box {
  position: relative;
  height: 50px;
  max-width: 600px;
  width: 100%;
  margin: 0 20px;
}

nav .search-box input {
  height: 100%;
  width: 100%;
  outline: none;
  background: #f7f8fa;
  border: 2px solid #EBEBEB;
  border-radius: 10px;
  font-size: 1rem;
  padding: 0 15px;
 
}

nav .search-box .bx-search {
  position: absolute;
  height: 40px;
  width: 40px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 40px;
  text-align: center;
  color: #A4A4A4;
  font-size: 22px;
  transition: all 0.4s ease;
}

.home-section nav .profile-details {
  display: flex;
  align-items: center;
  border-radius: 6px;
  height: 50px;
  min-width: 190px;
  padding: 0 15px 0 2px;
}

nav .profile-details .admin_name {
  font-size: 15px;
  font-weight: 500;
  color: #4f466f;
  margin: 0 10px;
  white-space: nowrap;
}

/* ===============Home Content Start================= */
.home-section .home-content {
  position: relative;
 /* padding-top: 65px;*/
}

.home-content .userHello {
  margin: 0 20px;
}

.home-content .userHello h3 {
  font-size: 24px;
  font-weight: 600;
}

.home-content .userHello p {
  font-size: 1.1rem;
  color: var(--grey);
  letter-spacing: 1px;
}

.home-content .overview-boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
     margin-bottom: 26px;
    row-gap: 15px;
    width: 100%;
    padding: 0 20px;
 /*   align-self:baseline;*/
}

.home-content .overview-reportbx .overview-boxes {
    width: calc(97% / 2 - 00px);
    width: 49%;
    margin-bottom: 0px;
}
.overview-reportbx .overview-boxes .box {
    width: calc(97% / 2 - 00px);
}

.overview-boxes .box {
    display: flex;
    align-items: center;
   
    width: calc(100% / 4 - 20px);
    background: #fff;
    padding: 25px 0.9rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.overview-boxes .box-topic {
  font-size: 20px;
  font-weight: 500;
  color: #424242;
  font-size: 18px;
}

.home-content .box .number {
  display: inline-block;
  font-size: 28px;
  /* margin-top: -6px; */
  margin-top: 10px;
  font-weight: 600;
}

.home-content .box .boxIcon {
  display: flex;
  width: 100px;
  background: #DEF7E7;
  border-radius: 80px;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  aspect-ratio: 1/1;
}

.home-content .box .boxIcon.two {
  background: #D9DAE7;
}

.home-content .box .boxIcon.three {
  background: #FFECD9;
}

.home-content .box .boxIcon.four {
  background: #E5E3FB;
}

    .home-content .box .boxIcon.five {
        background: #ff7ead2b;
    }

    .home-content .box .boxIcon.six {
        background: #8255ff1f;
    }

.home-content .total-order {
  font-size: 20px;
  font-weight: 500;
}

.home-content .sales-boxes {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 0;
/*  margin-bottom: 26px;*/
  align-items: stretch;
}

/* left box */
.home-content .sales-boxes .recent-sales {
  width: calc(100% / 2 - 13px);
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Over pie chart CSS Start */
.flex-wrapper {
  display: flex;
  flex-flow: row nowrap;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.single-chart {
  width: 33%;
  justify-content: space-around;
}

.circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 80%;
  max-height: 300px;
  overflow: visible;
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 8;
}

.circle {
  fill: none;
  stroke-width: 7.5px;
  animation: progress 1s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.circular-chart.orange .circle {
  stroke: #FF5B5B;
}

.circular-chart.green .circle {
  stroke: #00B074;
}

.circular-chart.blue .circle {
  stroke: #2D9CDB;
}

.percentage {
  fill: #000000;
  font-size: 6px;
  text-anchor: middle;
  font-weight: 600;
}

p.pieText {
  text-align: center;
  margin-top: 28px;
  font-size: 1.1rem;
  color: #464255;
  font-weight: 500;
}

/* Over pie chart CSS End */
.sales-boxes .box .title {
  font-size: 1.3rem;
  font-weight: 500;
  /* margin-bottom: 10px; */
}

/* Right box */
.home-content .sales-boxes .top-sales {
  width: calc(100% / 2 - 13px);
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.home-content .organiZations-boxes {
    /*padding: 30px 20px;*/
    margin-bottom: 25px;
    margin-top: 10px;
    padding: 10px 20px;
}

.home-content .organiZations {
  width: 100%;
  background: #fff;
  /*padding: 20px 30px;
  */
  border-radius: 20px;
 
}

.organiZations-boxes .box .title {
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  flex-wrap:wrap;
}

.main_table_box {
  margin-top: 15px;
}

/* Data table Style Start*/
.organiZations select.form-select.form-select-sm {
  box-shadow: none;
}

.organiZations input.form-control.form-control-sm {
  box-shadow: none;
/*  padding: 7px;*/
/*margin-right:20px;*/
}

table {
  font-size: 0.9rem;
  color: var(--grey);
  vertical-align: middle;
  white-space: nowrap;
}

table td {
  vertical-align: middle;

}

.withoutPro table td {
  vertical-align: middle;
  padding: 0.5rem !important;
}

table thead tr th.sorting, table thead tr th {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
    background-color: #555555!important;
    padding: 0.7rem 0.5rem;
    white-space:nowrap;
}

table thead tr th.sorting:last-child {
  cursor: default;
}

table.dataTable thead > tr > th:last-child.sorting:after,
table.dataTable thead > tr > th:last-child.sorting:before,
.custome_sorting table.dataTable thead > tr > th:first-child.sorting:after, 
.custome_sorting table.dataTable thead > tr > th:first-child.sorting:before {
    display: none!important;
}

table.dataTable.table-striped>tbody>tr.odd>* {
  box-shadow: inset 0 0 0 9999px #f5f5f58e;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--orange);
  border-color: var(--orange);
}

.organiZations .profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.organiZations .profile img {
  width: 45px;
  height: 45px;
  overflow: hidden;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  flex-shrink: 0;
}

.organiZations .row.dt-row {
  margin-bottom: 0.8rem !important;
}

.organiZations .profile p {
  margin-bottom: 0;
  /* margin-left: 10px; */
  font-weight: 500;
  position: relative;
  /* padding-right: 95px; */
  white-space: nowrap;
  text-wrap:inherit!important;

}

.organiZations .action_button {
  display: flex;
  align-items: center;
}

.organiZations .action_button img {
  margin: 0 0.5rem;
}

/* Delete modal pop css Start*/
.modal-content {
  border: none;
}

.modal-header {
  background-color: var(--orange);
  color: var(--white);
}

.modal-header .btn-close {
  padding: 0.25em 0.5em;
  background: url(../images/cross.png);
  background-repeat: no-repeat;
  opacity: 1;
}

.modal-footer {
  border: none;
}

.modal-title {
  font-size: 1.1rem;
}

button:focus:not(:focus-visible) {
  box-shadow: none;
}

.delete_modal .del_icon {
  display: flex;
  flex-direction: column;
  align-items: center;

}

.delete_modal h3 {
  margin-top: 1rem;
  text-align: center;
}

.delete_modal p {
  font-size: 1.2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Oraganisation Image Upload Css */
/* Manage User Css End */
.avatar-upload {
  position: relative;
  max-width: 155px;
  margin: 0px auto;
}

.avatar-upload .avatar-edit {
  position: absolute;
  right: 10px;
  z-index: 1;
  bottom: 5px;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit input+label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: var(--red);
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}

#imagePreview {
  background-image: url(/assets/images/user_profile.jpg);
}

#imagePreview_edit {
  background-image: url(/assets/images/edit_profile.png);
}

.avatar-upload .avatar-edit input+label:hover {
  background: var(--red);
}

.avatar-upload .avatar-edit input+label:after {
  content: "\f067";
  font-family: "FontAwesome";
  color: var(--white);
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.3rem;
  margin: auto;
}

.edit_user .avatar-upload .avatar-edit input+label:after {
  content: "\f044";
  font-family: "FontAwesome";
  color: var(--white);
  position: absolute;
  top: 5px;
  left: 3px;
  right: 0;
  text-align: center;
  font-size: 1.2rem;
  margin: auto;
}

.avatar-upload .avatar-preview {
  width: 150px;
  height: 150px;
  position: relative;
  border-radius: 100%;
  padding: 5px;
  border: 2px solid #d8d8d8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Form Css */
.main_form label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--black);
  letter-spacing: 0.3px;
}

.main_form input {
  padding: 0px 15px;
  height: 42px;
  font-size: 14px;
  /* height: 40px; */
}

#addAttachment .main_form input[type="file"] {
  height: 57px;
}

.role_input .main_form input {
  font-size: 0.9rem;
  padding: 10px;
}

.main_form input:focus {
  box-shadow: none;
  border-color: var(--orange);
}

.main_form select:focus {
  box-shadow: none;
  border-color: var(--orange);
}

.main_form select:focus {
  box-shadow: none;
}

.main_form select {
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
  /* height: 40px; */
}

.main_form textarea {
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
  /* height: 40px; */
}

.main_form input.form-control.form-control-color {
  padding: 0.375rem;
  width: 70px;
  height: 45px;
}

.main_form .form-control-color::-webkit-color-swatch {
  height: 30px;
  border: none;
}

.images_box {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--lightgrey);
}

.images_box img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.oraganizationForm .form_head {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 12px 10px 7px 0;
  border-bottom: 2px solid var(--orange);
  width: max-content;
}

.Passfail {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.Passfail .pass {
  margin-bottom: 0;
  margin-left: 15px;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--green);
  margin-right: 15px;
}

.Passfail .fail {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--red);
}

/* Oraganization Form Start */
.oraganizationForm {
  padding-top: 20px;
}

/* Oraganization View Start */
.oraganizationView {
  padding-top: 20px;
}

.oraganizationView .organisationProfile {
  border: 1px solid #E9E9E9;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

.oraganizationView .organisationProfile .profileBg {
  background-image: url(../images/bg_proifle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 128px;
  position: relative;
}

.oraganizationView .organisationProfile .profileBg .profile_img {
  width: 135px;
  height: 135px;
  position: absolute;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  overflow: hidden;
  margin: auto;
  bottom: -50%;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-items: center;
}

.oraganizationView .organisationProfile .profileBg .profile_img img {
  width: 75%;
  margin: auto;
  text-align: center;
}

.oraganizationView .profileDetail {
  text-align: center;
  margin-top: 5rem;
  padding-bottom: 3rem;
}

.oraganizationView .profileDetail h2 {
  color: #404B4D;
  font-size: 1.8rem;
}

.oraganizationView .profileDetail p {
  color: #667085;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.oraganizationView .profileDetail .actionButtons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.oraganizationView .profileDetail .actionButtons a.main_btn.approveBtn {
  background-color: #00B074;
  border-color: #00B074;
}

.oraganizationView .profileDetail .actionButtons a.main_btn.approveBtn:hover {
  background-color: #069666;
}

.oraganizationView .profileDetail .actionButtons a.main_btn.pendingBtn {
  background-color: #FF9A2E;
  border-color: #FF9A2E;
}

.oraganizationView .profileDetail .actionButtons a.main_btn.pendingBtn:hover {
  background-color: #f3850f;
}

.organisationDetails {
  border: 1px solid #E9E9E9;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  padding: 20px;
}

.organisationDetails table {
  font-size: 1rem;
}

.organisationDetails table thead tr td {
  padding: 0.9rem;
  border-bottom: 1px solid #E9E9E9;
}

.organisationDetails table thead tr:last-child td {
  border-bottom: none;
}

.organisationDetails table thead tr td:nth-child(2) {
  font-weight: 600;
  color: var(--black);
}

.login_outer .login_form .upload_btn input.form-control {
  border: 1px solid #ced4da;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
  /* height: 40px; */
}

.login_outer .login_form .upload_btn input.form-control.form-control-color {
  padding: 0.375rem;
  width: 70px;
  height: 45px;
}

.login_outer .login_form .upload_btn .form-control-color::-webkit-color-swatch {
  height: 2em;
  border-radius: 0.25rem;
}

.signup_form span svg path {
  fill: #757575 !important;
}

/* ===============Home Content End================= */
nav .profile-details .admin_name {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0 10px;
  white-space: nowrap;
}

nav .profile-details i {
  font-size: 20px;
  color: #333;
}

.dropdown-menu {
  padding: 0;
}

.dropdown-menu li {
  border-bottom: 1px solid var(--orange);
}

.dropdown-menu li a {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.dropdown-menu li:hover a {
  color: #ffffff;
  background-color: var(--orange);
}

.profile_dropdown {
  padding: 0;
}

ol.dropdown-menu.profile_dropdown.show {
  padding: 0;
}

.profile_dropdown li {
  border-bottom: 1px solid var(--orange);
}

.profile_dropdown li:hover a,
.profile_dropdown li:hover i {
  color: #ffffff;
  background-color: var(--orange);
}

.profile_dropdown li a {
  padding: 0.7rem 2rem 0.7rem 1rem;
  font-size: 0.9rem;
}

.profile_dropdown li i {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--orange);
  vertical-align: middle;
}

/* Organazation Dashboard Css Start */
.organiZations-boxes button.nav-link {
  font-size: 1rem;
  border-radius: 5px;
  padding: 0.5rem 1.2rem;
  color: #797979;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--white);
  padding-bottom:20px;
}

.organiZations-boxes ul.nav-pills {
  border-bottom: 1px solid #ebebeb;
}

.organiZations-boxes .pills-addbtn-contner ul.nav-pills {
    border-bottom: none;
}


.organiZations-boxes .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    font-size: 1rem;
    background-color: transparent;
    border-radius: 0px;
    padding: 0.5rem 1.2rem;
    color: var(--orange);
    transition: 0.3s;
    cursor: pointer;
    border-bottom: 2px solid var(--orange);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    font-weight: 500;
    padding-bottom: 20px;
}

/* ------upliadproductimages------------*/
.Uplod-inspecimges_hr.upload__box {
    padding: 12px;
    min-height: 170px;
    border: 1px solid #ced4da;
    border-radius: 12px;
    overflow: auto;
    position: relative;
    margin-bottom: 1rem;
}

.Uplod-inspecimges_hr .upload__btn {
    float: right;
    text-align: center;
    position: absolute;
    right: 0.9rem;
    bottom: 10px;
}

.upload__inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.upload__img-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  row-gap:5px;
}

.upload__img-box {
  width: 90px;
  padding: 0 10px;
  margin-bottom: 12px;
}

.upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f44336;
  position: absolute;
  top: -9px;
  right: -8px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}

.upload__img-close:after {
  content: "✖";
  font-size: 0.9rem;
  color: white;
}

/* .img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
} */
.Uplod-inspecimges_hr .img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 60px;
    width: 60px;
}

.img-bg2 {
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 100%;
  position: relative;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Bread Crumb Css Start */
.mainBreadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

    .mainBreadcrumb .breadcrumb {margin-bottom:0;}

    .mainBreadcrumb ol li a {
        color: var(--black);
        font-weight: 600;
    }

/* Bread Crumb Css End */
/* Organazation Dashboard Css End */
/* -------------- Inner Pages ----------------- */
.inner-pages .organiZations {
  padding: 0px;
}

.inner-pages .main_card {
  padding: 0px 20px 20px 20px;
}

.inner-pages .organiZations-boxes .box .title, .home-content .report-bx .box .title {
    color: var(--white);
    background: var(--orange);
    padding: 10px 20px;
    border-radius: 20px 20px 0px 0px;
    -webkit-border-radius: 20px 20px 0px 0px;
    -moz-border-radius: 20px 20px 0px 0px;
    -ms-border-radius: 20px 20px 0px 0px;
    -o-border-radius: 20px 20px 0px 0px;
}

/* --------------Injury Claim Pagee CSS Start ---------*/
.MainStep {
  width: 100%;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 1px 35px 10px 35px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  /* min-height: 500px;
  height: auto !important; */
}

.MainStep header {
  font-size: 35px;
  font-weight: 600;
  margin: 0 0 30px 0;
}

.MainStep .form-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.MainStep .form-outer form {
  display: flex;
  width: calc(100% * 6);
}

.form-outer form .page {
  transition: margin-left 0.3s ease-in-out;
}

.form-outer form .page .title {
  text-align: left;
  font-weight: 500;
  z-index:1; position:relative;
}

.form-outer form .page .field {
  width: 100%;
  margin: 25px 0;
  display: flex;
  position: relative;
}

.stepButtons {
  position: absolute !important;
  top: -26px;
}

.stepButtons.\.nexBtn {
  top: 0;
}

form .page .field .label {
  position: absolute;
  top: -30px;
  font-weight: 500;
}

form .page .field input.invalid-input {
  border-color: var(--red);
}

form .page .field select {
  width: 100%;
  padding-left: 10px;
  padding: 0px 15px;
  height: 42px;
  font-size: 14px;
}

form .page .field button {
  font-size: 1rem;
  background-color: #ccc;
  font-weight: 500;
  color: var(--white);
  transition: 0.3s;
  cursor: pointer;
  border: 0px;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

form .page .field button i {
  z-index: 999;
}

form .page .field button:hover {
  box-shadow: 0px 2px 4px var(--lightgrey);
  background-color: var(--orange);
}

form .page .btns button.prev {
  margin-right: 3px;
}

.js-btn-prev {
  position: relative;
}

.js-btn-prev::before {
  content: "\f104";
  font-family: FontAwesome;
  font-weight: 700;
  font-size: 1.3rem;
  position: absolute;
  left: 18px;
}

.js-btn-next {
  position: relative;
}

.js-btn-next::before {
  content: "\f105";
  font-family: FontAwesome;
  font-weight: 700;
  font-size: 1.3rem;
  position: absolute;
  left: 18px;
}

form .page .btns button.next {
  margin-left: 3px;
  position: relative;
}

.MainStep .progress-bar {
  display: flex;
  margin: 20px 0 30px;
  user-select: none;
  flex-direction: row;
  position: relative;
}

.MainStep .progress-bar .step {
  text-align: center;
  width: 100%;
  position: relative;
}

.MainStep .progress-bar .step p {
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
}

.progress-bar .step .bullet {
  height: 40px;
  width: 40px;
  border: 2px solid #ddd;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  transition: 0.2s;
  font-weight: 500;
  font-size: 16px;
  line-height: 38px;
  background-color: var(--white);
}

.progress-bar .step .bullet.active {
  border-color: var(--green);
  background: var(--green);
}

.progress-bar .step .bullet span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 400;
  color: #ddd;
}

.progress-bar .step .bullet.active span {
  display: none;
}

.progress-bar .step .bullet:before,
.progress-bar .step .bullet:after {
  position: absolute;
  content: "";
  bottom: 18px;
  right: -220px;
  height: 2px;
  width: 220px;
  background: #dddddd;
}

.progress-bar .step .bullet.active:after {
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 0.3s linear forwards;
}

@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}

.progress-bar .step:last-child .bullet:before,
.progress-bar .step:last-child .bullet:after {
  display: none;
}

.progress-bar .step p.active {
  color: var(--orange);
  transition: 0.2s linear;
  font-weight: 600;
}

.progress-bar .step .check {
  position: absolute;
  left: 50%;
  top: 65%;
  font-size: 25px;
  transform: translate(-50%, -50%);
  display: none;
}

.progress-bar .step .check.active {
  display: block;
  color: #fff;
}

.form-outer .form_body {
  margin-top: 3rem;
}

/* --------------Injury Claim Pagee CSS End ---------*/
/* -------------Signature Pad CSS Start ---------*/
canvas {
  width: 100%;
  height: 100%;
  border: 1px solid #ced4da;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

canvas:focus {
  border: 1px solid var(--orange);
}

.signature-pad-container {
  width: 100%;
  height: 250px;
  position: relative;
  background-color: white;
  text-align: right;
}

#finish_button {
  z-index: 10;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1em;
  color: var(--orange);
  font-weight: 500;
  cursor: pointer;
}

/* -------------Signature Pad CSS End ---------*/
/* -------------Body Structure Css Start ---------*/
.body_structure {
  margin-top: 30px;
}

.body_structure .front_body {
  width: 50%;
  position: relative;
  margin-bottom: 1.5rem;
}

.body_structure .back_body {
  width: 50%;
  position: relative;
  margin-bottom: 1.5rem;
}

.body_structure .front_body .maincheckTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.body_structure .front_body .maincheckTitle .label {
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.body_structure .front_body .maincheckTitle:nth-child(2) {
  top: 5%;
  left: 55%;
}

.body_structure .front_body .maincheckTitle:nth-child(3) {
  top: 8%;
  right: 58%;
}

.body_structure .front_body .maincheckTitle:nth-child(4) {
  top: 18%;
  left: 72%;
}

.body_structure .front_body .maincheckTitle:nth-child(5) {
  top: 23%;
  right: 73%;
}

.body_structure .front_body .maincheckTitle:nth-child(6) {
  top: 32%;
  left: 81%;
}

.body_structure .front_body .maincheckTitle:nth-child(7) {
  top: 40%;
  right: 86%;
}

.body_structure .front_body .maincheckTitle:nth-child(8) {
  top: 42%;
  left: 96%;
}

.body_structure .front_body .maincheckTitle:nth-child(9) {
  top: 53%;
  right: 67%;
}

.body_structure .front_body .maincheckTitle:nth-child(10) {
  top: 66%;
  left: 65%;
}

.body_structure .front_body .maincheckTitle:nth-child(11) {
  top: 76%;
  right: 66%;
}

.body_structure .front_body .maincheckTitle:nth-child(12) {
  left: 67%;
  top: 89%;
}

.body_structure .front_body .maincheckTitle:nth-child(13) {
  right: 71%;
  top: 95%;
}

.body_structure .front_body .maincheckTitle input[type="checkbox"] {
  height: 22px;
  width: 22px;
  margin-right: 5px;
  margin-left: 5px;
}

.body_structure .front_body .maincheckTitle .checkline {
  width: 80px;
  border: 1px solid var(--orange);
  margin-right: 5px;
  margin-left: 5px;
}

.body_structure .back_body .maincheckTitle input[type="checkbox"] {
  height: 22px;
  width: 22px;
  margin-right: 5px;
  margin-left: 5px;
}

.body_structure .front_body .maincheckTitle .form-check {
  padding: 5px;
}

.body_structure .back_body .maincheckTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.body_structure .back_body .maincheckTitle .label {
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.body_structure .back_body .maincheckTitle .checkline {
  width: 80px;
  border: 1px solid var(--orange);
  margin-right: 5px;
  margin-left: 5px;
}

.body_structure .back_body .maincheckTitle .form-check {
  padding: 5px;
}

.body_structure .back_body .maincheckTitle:nth-child(2) {
  top: 3%;
  left: 56%;
}

.body_structure .back_body .maincheckTitle:nth-child(3) {
  top: 13%;
  right: 55%;
}

.body_structure .back_body .maincheckTitle:nth-child(4) {
  top: 20%;
  left: 61%;
}

.body_structure .back_body .maincheckTitle:nth-child(5) {
  top: 35%;
  right: 65%;
}

.body_structure .back_body .maincheckTitle:nth-child(6) {
  top: 37%;
  left: 83%;
}

.body_structure .back_body .maincheckTitle:nth-child(7) {
  top: 49%;
  right: 66%;
}

.body_structure .back_body .maincheckTitle:nth-child(8) {
  top: 49%;
  left: 90%;
}

.body_structure .back_body .maincheckTitle:nth-child(9) {
  top: 74%;
  right: 68%;
}

.uploadCerificate .plus_icon {
  padding-top: 1.7rem;
}

.uploadCerificate .minus_icon {
  padding-top: 1.7rem;
}

/* table thead tr th.sorting:last-child {
  width: 120px !important;
} */

.inspectionCheck .form-switch {
  display: -webkit-inline-box;
}

.inspectionCheck .form-switch label {
  font-size: 0.9rem;
  font-weight: 400;
}

.inspectionCheck .form-switch .checkLabel {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
}

.inspectionCheck .form-switch .checkLabel label {
  display: flex;
  justify-content: space-between;
  word-wrap: break-word;
  white-space: normal;
}

.inspectionCheck .form-switch .checkLabel input {
  margin-left: 10px;
  flex-shrink: 0;
}

.main_form .form-switch {
  display: -webkit-box;
}

.assignEmploye {
  position: relative;
}

.assignEmploye p {
  position: absolute;
  top: 57%;
  right: 5%;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
}

.assignEmploye select {
  color: var(--green);
}

.assignEmploye select option {
  color: black;
}

.assignEmploye select option:first-child {
  color: var(--green);
}

/* addInspection Css Start*/
.addInspection .main_form label {
  display: flex;
  text-align: left;
}

/* addInspection Css End*/
/* ------------Select Dropdown Start-----------------*/
.searchSelect .bootstrap-select:not(.input-group-btn),
.bootstrap-select[class*=col-] {
  display: block;
}

.searchSelect .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.searchSelect button.btn.dropdown-toggle.btn-light {
  background: white;
  outline: none !important;
  box-shadow: none;
  padding: 10px;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid #ced4da;
}

.searchSelect button.btn.dropdown-toggle.btn-light:focus,
.searchSelect button.btn.dropdown-toggle.btn-light:active {
  border: 1px solid var(--orange);
}

.searchSelect .dropdown-item.active {
  color: var(--black);
  background-color: var(--white);
}

.searchSelect .dropdown-item:hover {
  color: var(--black);
  background-color: var(--lightorange);
}

.searchSelect .dropdown-item:hover .searchSelect .bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  color: var(--white);
}

.searchSelect .bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  color: var(--orange);
  position: absolute;
  left: 20px;
}

.searchSelect .dropdown-menu li a {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  padding-left: 50px;
}

.addVehicleclaim {
  padding: 15px;
  background-color: #fff4f4;
  border-radius: 10px;
  border: 1px solid #dadada;
  margin-top: 1rem;
  position: relative;
}

.addPassengerMain {
  padding: 15px;
  background-color: #f9e4e4;
  border-radius: 10px;
  border: 1px solid #dadada;
  position: relative;
}

.addVehicleclaim .DelInternal {
  position: absolute;
  display: flex;
  padding: 10px;
  right: -12px;
  top: -15px;
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
  background-color: var(--red);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  justify-content: center;
  align-items: center;
}

.addPassengerMain .DelInternal {
  position: absolute;
  display: flex;
  padding: 10px;
  right: -12px;
  top: -15px;
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
  background-color: var(--red);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  justify-content: center;
  align-items: center;
}

.vehicleDetails {
  display: none;
}

.passengerDetails {
  display: none;
}

.passengerDetailsTwo {
  display: none;
}

.dollarIcon span.input-group-text {
  background-color: transparent;
  padding: 0;
  font-weight: 600;
  color: var(--grey);
  padding-left: 10px;
}

.dollarIcon input {
  border-left: 0;
}

.dollarIcon input:focus {
  border-color: #ced4da !important;
}

.dollarIcon:has(input.form-control:focus) {
  border-bottom: none !important;
}

.dollarIcon-disabled span.input-group-text {
  background-color: #e9ecef;
  padding: 0;
  font-weight: 600;
  color: var(--grey);
  padding-left: 10px;
}

.dollarIcon-disabled input {
  border-left: 0;
}

.dollarIcon-disabled:has(input.form-control:focus) {
  border-bottom: none !important;
}

/* ------------Select Dropdown End-----------------*/
.extra_table table thead tr th {
  border-bottom-width: 0 !important;
}

span.main_edit {
  position: absolute;
  top: -13px;
  left: 40px;
  background-color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* -------------Bodyrgb(61, 61, 61)ure Css End ---------*/
/* -------------Pricing Plan Start ---------*/
.pricing-plans {
  gap: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 30px;
}

.pricing-card {
  --col: #e4e4e7;
  position: relative;
  width: 360px;
  padding: 32px;
  padding-bottom: 96px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 0 32px transparent;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 2px solid var(--white);
}

.pricing-card.basic {
  --col: #FF9938;
  border-top: 5px solid var(--orange);
}

.pricing-card.standard {
  --col: #EC539C;
  border-top: 5px solid #EC539C;
}

.pricing-card.premium {
  --col: #5BC587;
  border-top: 5px solid #5BC587;
}

.pricing-card:hover {
  border-color: var(--col);
  background-color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-1rem) scale(1.02);
  transition: all 0.5s ease;
}

.pricing-card>*:not(:last-child) {
  margin-bottom: 0.5rem;
}

.pricing-card .heading h4 {
  padding-bottom: 12px;
  color: var(--col);
  font-size: 1.5rem;
  font-weight: 500;
}

.pricing-card .heading .planImage {
  width: 100%;
  height: 215px;
  margin-bottom: 1rem;
}

.pricing-card .heading p {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0;
}

.pricing-card .price {
  position: relative;
  color: var(--col);
  font-size: 3.3rem;
  font-weight: bold;
}

.pricing-card .price.customPrice {
  line-height: 0.7;
  margin-top: 1.6rem;
  margin-bottom: 1.5rem;
}

.pricing-card .features {
  padding: 0;
}

.pricing-card .price sub {
  bottom: 0.1rem;
  color: var(--grey);
  font-size: 0.9rem;
  font-weight: 400;
  right: 12px;
}

.pricing-card .features li,
.pack-detailsbx ul li {
  padding-bottom: 1.5rem;
  color: var(--grey);
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  list-style: none;
  position: relative;
  padding-left: 38px;
}

    .pricing-card .features li img,
    .pack-detailsbx ul li img {
        position: absolute;
        left: 0;
        top: -1px;
        max-width: 26px;
       
    }
    .pricing-card .features li img, .fleetManage .fleetCards .detailCard .features li img {
        display: none;
    }

    .pricing-card .features li::marker, .fleetManage .fleetCards .detailCard .features li::marker {
        content: '\f00c';
        font-family: 'FontAwesome';
        color: #5bc587;
         width: 26px; 
         height: 26px; 
         background:red;
        background: red;
        position: absolute;
        left: 0;
        top: -1px;
        max-width: 26px;
    }
    .fleetManage .fleetCards .detailCard .features li, .pricing-card .features li {
        padding-left: 10px!important;
    }

.fleetManage .fleetCards .detailCard .features li::marker {
    color: var(--orange);
}


        .pricing-card .features li i,
        .pricing-card .features li strong {
            color: #e4e4e7;
            font-size: 1rem;
            text-align: left;
        }

.pricing-card .features li strong {
  padding-left: 1rem;
}

.pricing-card .cta-btn {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid var(--col);
  color: var(--col);
  font-size: 20px;
  font-weight: 500;
  background-color: var(--white);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.pricing-card:hover .cta-btn {
  background-color: transparent;
  color: var(--white);
  transition: all 0.3s ease;
  background-color: var(--col);
}

/* -------------Pricing Plan End ---------*/
.img_preview_design img {
  width: 100%;
  max-height: 550px;
}

.InternalVehicle select {
  width: auto;
  display: inline-block;
  padding: 0.4rem 0.5rem;
  width: 70px !important;
}

.modal-backdrop {
  display: none;
}

.modal {
  background: rgba(0, 0, 0, 0.5);
}

.form-outer form .page {
  height: 100%;
}

.body_structure .form-check-input:disabled {
  opacity: 1;
}

/* -------------Support & Help Start ---------*/
.organiZations-boxes .supportHelp .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: var(--orange);
  padding: 0.7rem 1.5rem;
  color: var(--white);
  cursor: pointer;
  border-bottom: 0px solid var(--orange);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 1rem;
  border: 1px solid var(--white);
}

.organiZations-boxes .supportHelp .nav-pills .nav-link {
  margin-bottom: 1rem;
  padding: 0.7rem 1.5rem;
  text-align: start;
}

.organiZations-boxes .supportHelp ul.nav-pills {
  border-bottom: 0px solid #ebebeb;
  margin-bottom: 1rem;
}

.supportForm {
  width: 100%;
}

/*.inspectionCheck input[type="checkbox"]:checked {
  background-color: var(--green);
}

.inspectionCheck input[type="checkbox"] {
  background-color: var(--red);
}*/

/*.inspectionCheck .form-switch .form-check-input {
  background-image: url(../images/radio.svg);
}*/

/* -------------Support & Help  End ---------*/
/* ----------------Add Injury/Inspection UI Fixing ------------- */
.form-height .upload__box {
  height: unset;
  min-height: 42px;
  border-radius: 5px;
  overflow: unset;
  padding: 5px 15px;
}

.form-height .upload__box .upload__btn {
  right: 0;
  top: 0;
  border: 0;
  height: 42px;
  margin-top:15px;
}

.form-height .upload__img-box {
  width: unset;
  margin-bottom: unset;
}

.form-height .upload__box .img-bg {
  height: 30px;
  width: 30px;
  border-radius: 5px;
}

.form-height .upload__img-close {
  width: 15px;
  height: 15px;
  line-height: 12px;
  top: -4px;
  right: -5px;
}

.form-height .upload__img-close:after {
  font-size: 10px;
}

.form-height .signature-pad-container {
  height: 176px;
}

form .page .field button.submit-btn {
  height: unset;
  width: unset;
  border-radius: 5px;
  padding: 10px 30px;
  background-color: var(--orange);
}

.supportHelp .upload__box {
  height: 100px;
}

/* wizard form css */
.js-btn-prev {
  border-radius: 8px;
}

.js-btn-prev:hover {
  border: 1px solid var(--orange);
}

.multisteps-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.multisteps-form__progress {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.multisteps-form__progress-btn {
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transition-delay: 0s;
  position: relative;
  padding-top: 55px;
  color: rgba(108, 117, 125, 0.7);
  text-indent: 45px;
  border: none;
  background-color: transparent;
  outline: none !important;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 1rem;
}

.multisteps-form__progress-btn:before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 40px;
  height: 40px;
  content: '';
  border: 2px solid #E7E8EC;
  border-radius: 50%;
  background-color: #E7E8EC;
  box-sizing: border-box;
  z-index: 3;
}

.multisteps-form__progress-btn:after {
  position: absolute;
  top: 19px;
  left: calc(-31% - -6px / 2);
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transition-delay: 0s;
  display: block;
  width: 80%;
  height: 5px;
  content: '';
  background-color: #E7E8EC;
  z-index: 1;
}

.multisteps-form__progress-btn:first-child:after {
  display: none;
}

.multisteps-form__progress-btn.js-active {
  color: var(--orange);
}

.multisteps-form__progress-btn.js-active:before {
  /* -webkit-transform: translateX(-50%) scale(1.2);
  transform: translateX(-50%) scale(1.2);*/
  background-color: currentColor;
  border: var(--orange);
}

.multisteps-form__form {
  position: relative;
}

.multisteps-form__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  display: none;
}

.multisteps-form__panel.js-active {
  height: auto;
  opacity: 1;
  visibility: visible;
  display: block;
}

.multisteps-form__panel[data-animation="scaleOut"] {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.multisteps-form__panel[data-animation="scaleOut"].js-active {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.multisteps-form__panel[data-animation="slideHorz"] {
  left: 50px;
}

.multisteps-form__panel[data-animation="slideHorz"].js-active {
  transition-property: all;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
  transition-delay: 0s;
  left: 0;
}

.multisteps-form__panel[data-animation="slideVert"] {
  top: 30px;
}

.multisteps-form__panel[data-animation="slideVert"].js-active {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  top: 0;
}

.multisteps-form__panel[data-animation="fadeIn"].js-active {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0s;
}

.multisteps-form__panel[data-animation="scaleIn"] {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.multisteps-form__panel[data-animation="scaleIn"].js-active {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.multisteps-form__progress-btn.js-active::after {
  background: var(--orange);
}

.multisteps-form__progress-btn span {
  position: absolute;
  top: 8px;
  z-index: 9;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-indent: -56px;
}

#clear_button {
  z-index: 10;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1em;
  margin-right: 0px;
  color: var(--red);
  font-weight: 500;
  cursor: pointer;
}

/* App Download CSS Start */
header {
  position: fixed;
  top: 0;
  transition: top 0.3s ease-in-out;
  z-index: 9999;
  background-color: var(--white);
  width: 100%;
  left: 0;
  right: 0;
  -webkit-transition: top 0.3s ease-in-out;
  -moz-transition: top 0.3s ease-in-out;
  -ms-transition: top 0.3s ease-in-out;
  -o-transition: top 0.3s ease-in-out;
}

.nav-up {
  top: -110px;
}

.BannerSection {
  margin-top: 100px;
}

.appHeader .logo {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--orange);
  width: 80px;
}

.appHeader .nav-item {
  margin: 0 1rem;
}

.appHeader .nav-item .nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: var(--black);
}

.appHeader .nav-item .nav-link:hover,
.appHeader .nav-item .nav-link.active {
  font-weight: 500;
  color: var(--orange);
}

.appHeader .pricing_btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid #6183E4;
  color: #6183E4;
  background-color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  margin-right: 1rem;
}

.appHeader .pricing_btn:hover {
  color: var(--white);
  background-color: #6183E4;
}

.appHeader .free_btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--orange);
  color: var(--white);
  background-color: var(--orange);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  margin-right: 1rem;
}

.appHeader .free_btn:hover {
  color: var(--white);
  background-color: rgb(255, 81, 0);
  border: 2px solid rgb(255, 81, 0);
}

.mainApp section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.bannerText {
  padding-left: 1rem;
}

.bannerText h1 {
  font-size: 4rem;
  font-weight: 600;
  color: #0F172A;
  letter-spacing: 0.5px;
}

.bannerText p {
  color: #475569;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 1rem 0;
}

.bannerImg img {
  box-shadow: rgb(0 0 0 / 4%) 150px 208px 280px 0px;
  border-radius: 0 0 66px;
}

.headSection h3 {
  font-size: 2.6rem;
  text-align: center;
  color: var(--black);
  font-weight: 600;
  letter-spacing: 0.8px;
}

.headSection h3 span {
  color: var(--orange);
}

.headSection p {
  text-align: center;
  color: #191D23;
  letter-spacing: 0.3px;
  font-size: 1.2rem;
  padding: 0.5rem;
}

.headSection .togbtn {
  display: flex;
  justify-content: center;
}

.togbtn .form-switch {
  display: flex;
}

.OwnerCards {
  margin-top: 3rem;
}

.OwnerCards .ownerbox {
  width: 100%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
  height: 415px;
  position: relative;
}

.OwnerCards .ownerbox img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}


.OwnerCards .ownerText .textBox {
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  bottom: 0;
  position: absolute;
  z-index: 100;
  background: rgb(41, 41, 41);
  background: linear-gradient(0deg, rgba(41, 41, 41, 0.7455357142857143) 30%, rgba(22, 22, 22, 0.5886729691876751) 57%, rgba(0, 0, 0, 0) 97%, rgba(0, 212, 255, 0) 100%, rgba(31, 82, 92, 0) 100%);
  width: 100%;
}

.OwnerCards p.prodetail {
  font-size: 1.1rem;
}

.OwnerCards .ownerText .textBox h5 {
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.OwnerCards .ownerText .textBox p {
  color: #D4D4D8;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.OwnerCards .ownerText .textBox .prodetail {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 300;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  text-align: justify;
}

.Appdownloadlinks .bannerText p {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 500;
  padding: 0;
  margin: 0;
}

.Appdownloadlinks .bannerText h2 {
  color: var(--black);
  font-size: 5rem;
  font-weight: 400;
  padding: 1.5rem 0;
}

.contactForm .main_form label {
  color: #344054;
  font-size: 1rem;
}

.contactForm .main_form input {
  padding: 1.4rem 0.8rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  font-size: 1rem;
}

.contactForm .main_form textarea {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  font-size: 1rem;
}

.contactForm .main_form input[type=checkbox] {
  color: #344054;
  padding: 0.7rem;
  height: 18px;
  width: 18px;
}

button.messageBtn {
  width: 100%;
  padding: 0.8rem;
  border: none;
  background: var(--orange);
  color: var(--white);
  border-radius: 7px;
  margin-top: 1.5rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

button.messageBtn:hover {
  color: var(--white);
  background-color: rgb(255, 81, 0);
}

.footer-section {
  background-color: #232233;
  margin-top: 6rem;
}

.footer-section .logo {
  color: var(--orange);
  font-size: 2.5rem;
  font-weight: 500;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 120px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--white);
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 25px;
  margin-right: 20px;
  border-right: 1px solid white;
  padding-right: 20px;
}

.footer-social-icon a:last-child {
  border-right: none;
}

.footer-social-icon a:hover {
  color: var(--orange);
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3B5998;
}

.twitter-bg {
  background: #55ACEE;
}

.google-bg {
  background: #DD4B39;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--orange);
}

.footer-widget ul li {
  display: inline-block;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: var(--orange);
}

.footer-widget ul li a {
  color: var(--white);
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 20px 28px;
  border: none;
  background: var(--white);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.subscribe-form input:focus-visible {
  outline: none;
}

.subscribe-form button {
  position: absolute;
  right: 5px;
  background: var(--orange);
  padding: 13px 20px;
  border: 1px solid var(--orange);
  top: 5px;
  border-radius: 8px;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background-color: #232233;
  padding: 15px 0;
  border-top: 1px solid var(--white);
}

.copyright-text p {
  margin: 0;
  font-size: 1rem;
  color: var(--white);
}

.copyright-text p a {
  color: var(--orange);
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: var(--orange);
}

.footer-menu li a {
  font-size: 1rem;
  color: #878787;
}

.FooterTop {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  position: absolute;
  width: 100%;
  top: -22%;
}

.FooterTop .email {
  display: flex;
  align-items: center;
  justify-content: center;
}

.FooterTop .email img {
  margin-right: 1rem;
}

.FooterTop .phoneNo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.FooterTop .phoneNo img {
  margin-right: 1rem;
}

/* App Download CSS End */
.mainApp button.back-to-top {
  overflow: hidden;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  clear: both;
  position: fixed;
  cursor: pointer;
  border: none;
  outline: 0;
  z-index: 99;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.mainApp button.back-to-top:hover,
.mainApp button.back-to-top:active,
.mainApp button.back-to-top:focus {
  outline: 0;
}

.mainApp button.back-to-top::before,
.mainApp button.back-to-top::after {
  content: "";
  display: block;
  vertical-align: middle;
  border-bottom: solid 10px #EA5D5F;
  border-left: solid 10px transparent;
  line-height: 0;
  border-right: solid 10px transparent;
  height: 0;
  margin: 18px auto 0;
  width: 0;
  border-radius: 20px;
  visibility: hidden;
}

.mainApp button.back-to-top.show::after,
.mainApp button.back-to-top.show::before {
  visibility: visible;
}

.mainApp button.back-to-top::after {
  border-bottom-color: #fff;
  position: relative;
  top: -24px;
}

.mainApp button.back-to-top.show {
  display: block;
  background: #fff;
  color: #00ab6c;
  font-size: 25px;
  right: 25px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  visibility: visible;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

.mainApp button.back-to-top.show:active {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

.fleetManage {
  margin-top: 3rem;
  background-image: url(/assets/images/apphome/fleetbg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.fleetManage .fleetCards {
  margin-top: 40px;
}

.fleetManage .fleetCards .detailCard {
  position: relative;
  padding: 32px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 0 32px transparent;
  text-align: center;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 2px solid #EAECF0;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
  height: 100%;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.fleetManage .fleetCards .detailCard:hover {
  border: 2px solid var(--orange);
  box-shadow: rgba(111, 100, 100, 0.2) 0px 7px 29px 0px;
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
}

.fleetManage .fleetCards .detailCard .cardHeading .cardImage {
  margin-bottom: 1rem;
}

.fleetManage .fleetCards .detailCard .cardHeading .cardImage img {
  width: 80px;
}

.fleetManage .fleetCards .detailCard .cardHeading h3 {
  padding-bottom: 5px;
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 500;
}

.fleetManage .fleetCards .detailCard .cardHeading p {
  color: #667085;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}

.fleetManage .fleetCards .detailCard .features {
  padding: 0;
  margin-top: 1.5rem;
}

.fleetManage .fleetCards .detailCard .price sub {
  bottom: 0.1rem;
  color: var(--grey);
  font-size: 0.9rem;
  font-weight: 400;
  right: 12px;
}

.fleetManage .fleetCards .detailCard .features li {
  margin-bottom: 1.5rem;
  color: #504F58;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  list-style: none;
  padding-left: 38px;
  position: relative;
}

.fleetManage .fleetCards .detailCard .features li img {
  position: absolute;
  left: 0;
  top: -1px;
  max-width: 26px;
}

.fleetManage .fleetCards .detailCard .features li i,
.fleetManage .fleetCards .detailCard .features li strong {
  color: #e4e4e7;
  font-size: 1rem;
  text-align: left;
}

.fleetManage .fleetCards .detailCard .features li strong {
  padding-left: 1rem;
}

#sidebar_dropdown2 ul li a i {
  min-width: 40px;
}

#sidebar_dropdown2 ul li a span {
  margin-left: 0;
}

/* Form Builder */
.overview-boxes .form-wrap.form-builder .frmb-control li:hover {
  background-color: var(--orange);
  color: var(--white);
}

.overview-boxes .save-template {
  background-color: var(--orange);
}

.overview-boxes .clear-all {
  background-color: var(--black);
}

.overview-boxes .form-wrap.form-builder .stage-wrap.empty {
  border: 2px dashed var(--orange);
  background-color: rgba(255, 255, 255, 0.25);
}

.overview-boxes .form-wrap.form-builder .frmb li.form-field .field-label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--black);
  letter-spacing: 0.3px;
  display:inline-block;
}

.overview-boxes .form-wrap.form-builder .frmb li.form-field {
  /*padding: 1rem;*/
  border: 1px solid var(--white);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.overview-boxes .form-wrap.form-builder .frmb li.form-field:hover {
  border-color: var(--lightgrey);
  outline: 0;
  box-shadow: none;
}

.overview-boxes .form-wrap.form-builder .cb-wrap.sticky-controls {
  margin-left: 2rem;
}

.overview-boxes .form-control {
  padding: 0px 15px;
  height: 42px;
  font-size: 14px;
}

.overview-boxes .form-wrap.form-builder .frmb .field-actions .del-button:hover {
  background-color: var(--red);
  color: #fff;
}

.overview-boxes .form-wrap.form-builder .frmb .field-actions .toggle-form:hover {
  border-color: #ccc;
  background-color: var(--blue);
}

.overview-boxes .form-wrap.form-builder .frmb .field-actions .copy-button:hover {
  background-color: var(--green);
  color: #fff;
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .form-control {
  padding: 10px 15px;
  font-size: 14px;
  height: 40px;
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .form-control:focus {
  box-shadow: none;
  border-color: var(--orange);
  outline: 0;
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .form-control {
  padding: 10px 15px;
  font-size: 14px;
  height: 40px;
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .form-control[type=file] {
  height: 50px;
  border-radius: 7px;
 
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .form-control::file-selector-button {
  font-weight: 500;
  border-radius: 6px;
   background-color: var(--orange) !important;
  color: var(--white);
  padding: 10px 15px;
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .btn-default {
  font-size: 1rem;
  background-color: var(--orange);
  border-radius: 5px;
  padding: 0.5rem 2rem;
  font-weight: 500;
  color: var(--white) !important;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--white);
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .btn-danger {
  font-size: 1rem;
  background-color: var(--red);
  border-radius: 5px;
  padding: 0.5rem 2rem;
  font-weight: 500;
  color: var(--white) !important;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--white);
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .btn-info {
  font-size: 1rem;
  background-color: var(--yellow);
  border-radius: 5px;
  padding: 0.5rem 2rem;
  font-weight: 500;
  color: var(--white) !important;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--white);
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .btn-primary {
  font-size: 1rem;
  background-color: var(--black);
  border-radius: 5px;
  padding: 0.5rem 2rem;
  font-weight: 500;
  color: var(--white) !important;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--white);
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .btn-success {
  font-size: 1rem;
  background-color: var(--green);
  border-radius: 5px;
  padding: 0.5rem 2rem;
  font-weight: 500;
  color: var(--white) !important;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--white);
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .btn-warning {
  font-size: 1rem;
  background-color: var(--purple);
  border-radius: 5px;
  padding: 0.5rem 2rem;
  font-weight: 500;
  color: var(--white) !important;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--white);
}

.overview-boxes .form-wrap.form-builder .frmb .style-wrap button {
  font-size: 1rem;
  border-radius: 5px;
  padding: 0.5rem 2rem;
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
  outline: none;
}

.overview-boxes .form-wrap.form-builder .frmb .style-wrap button.selected {
  font-size: 1rem;
  border-radius: 5px;
  padding: 0.5rem 2rem;
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
  outline: none;
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .btn-default:hover {
  box-shadow: 0px 2px 4px var(--lightgrey);
  background-color: #f37500;
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap textarea {
  height: 80px !important;
}

.overview-boxes .form-wrap.form-builder .frmb .prev-holder label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--black);
  letter-spacing: 0.3px;
  display: flex;
  display: flex;
  flex-direction: row-reverse;
}

.overview-boxes .form-wrap.form-builder.formbuilder-embedded-bootstrap .input-wrap input[type=checkbox] {
  height: 18px;
  width: 18px;
  border-radius: 8px;
  margin-right: 10px;
}

.overview-boxes .form-wrap.form-builder .formbuilder-checkbox-group input[type=checkbox],
.overview-boxes .form-wrap.form-builder .formbuilder-checkbox-group input[type=radio],
.overview-boxes .form-wrap.form-builder .formbuilder-radio-group input[type=checkbox],
.overview-boxes .form-wrap.form-builder .formbuilder-radio-group input[type=radio] {
  margin: 0 10px 0 0;
}

.overview-boxes .form-wrap.form-builder .formbuilder-radio-group input[type=radio],
.overview-boxes .form-wrap.form-builder .formbuilder-checkbox-group input[type=checkbox] {
  width: 23px;
  height: 23px;
  accent-color: #e97200;
}

.overview-boxes .formbuilder-radio,
.overview-boxes .formbuilder-checkbox,
.overview-boxes .form-group .required-wrap {
  display: flex;
  align-content: center;
  margin-bottom: 5px;
}

.overview-boxes .formbuilder-checkbox input:checked {
  background-color: var(--orange);
}

/* .overview-boxes .btn.btn-default.get-data {
  display: none !important;
} */

./*overview-boxes .form-wrap.form-builder .frmb li.form-field {
  position: relative;
  padding: 10px 15px;
  clear: both;
  margin-left: 0;
  margin-bottom: 3px;
  background-color: #fff;
  transition: background-color 250ms ease-in-out, margin-top 400ms;
  width: 49%;
  margin-right: 1%;
  margin-bottom: 10px;
  min-height: 90px;
}*/

/*.overview-boxes .form-wrap.form-builder .stage-wrap {
  background-color: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  position: relative;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  width: calc(74% - 5px);
  align-items: flex-start;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  align-content: flex-start;
}*/

.overview-boxes .button-field.form-field {
  display: flex;
  align-items: flex-end;
  justify-content: end;
  width: 100%;
  min-width: 100%;
}

.overview-boxes .form-wrap.form-builder .frmb .prev-holder input[type=date] {
  width: 100%;
}

.overview-boxes .form-wrap.form-builder .frmb .prev-holder input[type=number] {
  width: 100%;
}

.overview-boxes .header-field {
  width: 100% !important;
  display: flex;
  align-items: center;
}

.overview-boxes .formbuilder-select:after {
  content: "\f107" !important;
  font-family: FontAwesome;
  font-size: 1.5rem;
  position: absolute;
  right: 30px;
  top: 43px;
  z-index: 9;
  visibility: visible !important;
  color: var(--grey);
}

.overview-boxes .formbuilder-icon-hidden {
  display: none;
}

.overview-boxes .form-wrap.form-builder .kc-toggle span::after {
  position: relative;
  content: "";
  width: 50%;
  height: 100%;
  left: 0;
  border-radius: 15px;
  background: var(--white);
  border: 1px solid var(--lightgrey);
  transition: transform 100ms;
  transform: translateX(0);
  
}

.overview-boxes .form-wrap.form-builder .kc-toggle span {
  position: relative;
  width: 48px;
  height: 24px;
  background: var(--white);
  display: inline-block;
  border-radius: 15px;
  border: none;
  padding: 2px;
  overflow: hidden;
  margin-right: 5px;
  will-change: transform;
 
  margin-left: 2rem;
}

.overview-boxes .form-wrap.form-builder .kc-toggle input:checked+span::before {
  background-color: var(--green);
  border-radius: 10px;
  height: 20px;
}

.overview-boxes .form-wrap.form-builder .kc-toggle span::before {
  border-radius: 4px;
  top: 2px;
  left: 2px;
  content: "";
  width: calc(100% - 4px);
  height: 20px;
  box-shadow: 0 0 1px 1px #b3b3b3 inset;
  background-color: var(--red);
  border-radius: 15px !important;
 
}

.overview-boxes .form-wrap.form-builder {
  position: relative;
  display: flex;
/*  flex-direction: row-reverse;*/
}

/*.form-builder-overlay {
  display: none !important;
}
*/
.page-link:focus {
  box-shadow: none;
}

button.dt-button.buttons-csv.buttons-html5, .download_multireport .dt-buttons button:nth-child(2) {
    background-color: var(--green) !important;
    color: var(--white);
    border: none;
    padding: 0.3rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

    button.dt-button.buttons-csv.buttons-html5:hover, .download_multireport .dt-buttons button:nth-child(2):hover {
        background-color: #006405;
    }

button.dt-button.buttons-excel.buttons-html5, .download_multireport .dt-buttons button:nth-child(2), button.dt-button.main_btn {
    background-color: var(--green);
    color: var(--white);
    border: none;
    border-radius: 5px;
    transition: all 0.3s;
    padding: .5em 1em;
}
    button.dt-button.main_btn {background-color:var(--orange);}

        button.dt-button.buttons-excel.buttons-html5:hover, .download_multireport .dt-buttons button:nth-child(2):hover, button.dt-button.main_btn:hover,
        button.dt-button.main_btn:hover:not(.disabled), button.dt-button.main_btn:focus:not(.disabled) {
            background-color: #006405;
            border: none;
            outline: none;
            text-shadow: none;
        }

            button.dt-button.main_btn:hover:not(.disabled), button.dt-button.main_btn:focus:not(.disabled) {
                background: var(--orange)!important;
            }

   


        button.dt-button.buttons-excel.buttons-html5:focus, .download_multireport .dt-buttons button:nth-child(2):focus, button.dt-button.main_btn:focus {
            border: none !important;
            outline: none;
            background: #006405;
            text-shadow: none;
        }

.packSection {
  display: flex;
  /*align-items: center;*/
}

.packSection .form-check-input[type=radio] {
  padding: 0.7rem;
  margin-right: 2px;
  margin-top: -1px;

}

.paymentPopup .main_btn {

  width: 100%;
  text-align: center;
  padding: 0.7rem 0;
}

.paymentCard .main_btn {

  width: 100%;
  text-align: center;
  padding: 0.7rem 0;
}

.policyText {
  font-size: 0.9rem;
  color: #ACACAC;
}

.frm-blder-page .home-content p {
  color: #4A4A4A;
  font-size: 20px;
  font-weight: 600;
}

.frm-blder-page .home-content a {
  padding: 13px 35px;
  background: var(--c);
  /*border-radius: 25px;*/
  color: white;
  background-color: var(--orange);
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  box-shadow: 0px 6px 12px 0px rgba(255, 153, 56, 0.30);
}

.form-bx #createDynamicForm .btn-group {
  z-index: 99999;
}

.d_none {
  display: none;
}

.created-form-bx {
  border-radius: 10px;
  border-bottom: 4px solid var(--Green, #22C55E);
  background: var(--White, #FFF);
  box-shadow: 0px 8px 16px 20px rgba(215, 239, 255, 0.12);
}

.created-form-bx {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.created-form-bx h5 {
  font-size: 16px;
  color: var(--black);

  font-family: 'poppins';
  text-align:left;
}
   /* .created-form-bx h5 label, .created-form-bx p label {
        font-size: 15px;
        font-weight: 500;
        flex-shrink: 0;
        color: #dc3545;
    }
    .created-form-bx p, .created-form-bx h5 {
        text-align: left;
        display: flex;
        gap: 5px;
        font-weight: 600;
    }*/

    .created-form-bx > a {
        background: var(--Green, #22C55E);
        padding: 8px 18px;
        border-radius: 4px;
        display: inline-block;
        font-size: 16px;
        color: white;
        margin-top: 15px;
        transition: all 0.5s ease-in-out;
    }

.manger-name a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
  text-decoration: underline;
  color: #0000EE;
}

.OrganizationLocation .buttons-csv,
.locationManager .buttons-csv {
  display: none;
}

.privacy-polcy .BannerSection h1 {
  font-size: 28px;
  font-weight: 700;
}

.privacy-polcy .BannerSection h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 30px 0 10px;
}

.privacy-polcy .BannerSection h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 10px;
}

.privacy-polcy .BannerSection h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.privacy-polcy .BannerSection p {
  font-size: 15px;
  text-align: justify;
}

.navbar-collapse.collapse.show {
  padding-bottom: 20px;
}



.flex-wrap {
  flex-wrap: wrap;
}


/* terms-condition page css */
.terms-conditionpage p a {
  text-decoration: underline;
  color: #0000EE;
}

.terms-conditionpage p span {
  font-weight: 600;
  font-size: 14px;
}


.terms-conditionpage table,
.terms-conditionpage td {
  border-collapse: collapse;
  width: 50%;
  padding: 10px;
  color: #000;
  font-weight: 600;
  border: 1px solid black;
  white-space: pre-wrap;
}

input[type="checkbox"] {
  height: 18px;
  width: 18px;
  border-radius: 8px;
  margin-right: 10px;
  margin-top: 1px;

}


/* Css from schin 25-04 */
.location-dropdown {
  border-radius: 0;
  padding: 0;
  border: none;

}

.scril-bx {
  max-height: 350px;
  overflow-y: auto;
}

.listing-drop label {
  margin-bottom: 0;
  font-size: 14px;
  color: #737578;
  font-weight: 500;
}

.location-dropdown h6 {
  background-color: #555555;
  color: white;
  padding: .5rem .5rem;
  font-size: 1rem;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.location-dropdown .listing-drop {
  background-color: var(--bs-table-bg);
  border-bottom: 1px solid #ddd;
  padding: 7px;
}

.location-dropdown .listing-drop:last-child {
  border-bottom: none;
}

.listing-drop input {
  flex-shrink: 0;
}

.discont-amt i {
  position: absolute;
  background: #e9ecef;
  bottom: 0;
  left: 0;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #212529;
  border-radius: 4px 0 0 4px;
}

.discont-amt input {
  padding-left: 50px;
}

.form-check-label a {
  cursor: pointer;
  color: var(--orange);
  text-decoration: underline;
}

.subscribe-pge .pricing-card {
  width: 25%;
}

.subscribe-pge .pricing-plans {
  padding: 50px 30px 0px;
  background: #f7f8fa;
}

.subscribe-pge .pricing-card .features li {
  padding-bottom: .8rem;
  font-size: 14px;
}

.subscribe-pge .login_form {
  padding: 1.5rem 1.5rem 4rem;
  width: 76%;
  margin:20px auto;
}

.subscribe-pge .packSection {
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}


.subscribe-pge .login_form .form_body h3 {
  /* font-size: 32px; */
  font-size: 1.7rem;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.subscribe-pge .form-check-inline {
  margin-right: 0;
}

.subscribe-pge .form-check-inline label {
  font-weight: bold;
}

.subscribe-pge .packSection .form-check-input[type=radio] {
  margin: 0px;
}

.subscribe-pge .form-label {
  margin-bottom: 0;
}

.subscribe-pge .login_form select {
  color: #757575;
}

.subscribe-pge .login_form input.form-control {
  padding-left: 5px;
}

.payment-stats-ge .login_form.signup_form {
  max-width: 550px;
  padding: 1rem 2rem 2rem;
  margin: auto;
}

.payment-stats-ge .signup_form .login_form.signup_form {
  box-shadow: 0 0 0 1px rgba(175, 175, 175, 0.2), 0 15px 35px 0 rgba(49, 49, 93, 0.08), 0 5px 15px 0 rgba(0, 0, 0, 0.06);
  padding: 5rem;
}


/* .payment-stats-ge .invoice-thumb {

  position: relative;
  margin: auto;
  display: inline-block;
  text-align: center;
} */

/* .invoice-thumb {
  position: relative;
} */

/* .InvoiceThumbnail-successMark svg {
  position: absolute;
  bottom: 0px;
  right: 19px;
  width: 25px;
  height: 25px;
} */

.invice-status {
  text-align: center;
  display: block;
  margin-top: 15px;
  text-transform: capitalize;
  color: #b1adad;
  font-weight: 500;
}

.invoice-amout {
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.InvoiceDetails-table {
  width: 100%;
  margin-top: 20px
}

.InvoiceDetails-table tr td {
  border-bottom: 1px solid #ddd;
  padding: 10px;
  font-size: 15px;
}


.InvoiceDetails-table tr td:nth-child(2) {
  text-align: right;
  color: #000;
  font-weight: 600;
  /* white-space: break-spaces; */
}

.InvoiceDetails-table tr:last-child td {
  border-bottom: none;
}

.payment-stats-ge .login_form h1 {
  font-size: 25px;
  margin: 25px 0;
  font-weight: 600;
}

.invoicebtns {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}

.invoicebtns a {
  font-size: 14px;
  padding: 10px 15px;
  cursor: pointer;
}

.invoicebtns a:first-child {
  background: transparent;
  color: var(--orange) !important;
  border: 1px solid #f37500;
}

.invoicebtns a:first-child:hover {
  color: white !important;
  background: #f37500 !important;
}

.change-stock:hover path,
.change-stock.active path {
  fill: none !important;
  stroke: var(--orange) !important;
}

.pyment-sucesful label:first-child,
.pyment-sucesful,.pyment-failed {
    margin-bottom: 0;
    background: #def7e7;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    color: #00b074!important;
    font-size: 13px;
    border: 1px solid #00b074;
    font-weight: 500;
}


.box .staus.pyment-sucesful {
    background: none;
    border: none;
}

.pyment-failed {
    background: rgb(220 53 69 / 10%);
    color: #dc3545!important;
    border-color: #dc3545;
}

.staus.pyment-sucesful {
  position: absolute;
  right: 20px;
  top: 10px;
}

.pack-duration {
  font-size: 14px;
  display: block;
  color: #fe7c00;
  font-weight: 500;
}

.hr_table_wrap {
  overflow: auto;
}

.hr_tblMeta_r {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  /* flex-direction: column; */
  align-items: end;
}


.priceTool .hr_tblMeta_r,
#Paymenthistory_Table_wrapper .hr_tblMeta_r,
#vehicle_table_wrapper .hr_tblMeta_r {
  flex-direction: column;
}

#vehicle_table_wrapper .hr_tblMeta_r .main_table_box {
  margin-top: 0;
}

button.dt-button.buttons-csv.buttons-html5 span:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: '\f1c3';
  margin-right: 7px;
}

.hr-org-detail-modal .organiZations select.form-select.form-select-sm {
  padding: .30rem 2.25rem .30rem .75rem;
}

/* 11.06.2024 mange price tool css start here hr */
/* #plansname-chart {
  height: inherit;
} */

.mangeplan_box .pd_bx {
  padding: 0 30px 20px;
}

.mangeplan_box {
  background: #fff;
  border-radius: 20px;

  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
}

.plan-name_bx {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed #AA9F9F;
  padding-bottom: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.plan-name_bx:last-child {
  border-bottom: none;
}

.squirebx {
  background: #ff9938;
  height: 15px;
  width: 15px;
  border-radius: 4px;
}

.pricename_bx {
  display: flex;
  align-items: center;
  gap: 10px;
}

.busnes-squre {
  background: #ec539c;
}

.blueclr {
  color: #ec539c !important;
}

.custom-squre {
  background: #5bc587;
}

.cutome_clr {
  color: #5bc587 !important;
}

.pricename_bx span {
  font-size: 16px;
  font-weight: 600;
}

.pack-price {
  color: #ff9938;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0;
}

.pack-price a i {
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
}

.pack-price span {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.topsling_filter_bx {
  display: flex;
  contain: content;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.topseling_box .pd_bx {
  padding: 0 10px 20px;
}

.filter_lft,
.filter_right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter_lft a {
  border-radius: 4px;
  padding: 4px 12px;
  border: 1px solid #CED4DA;
  font-size: 15px;
  color: #484848;
  font-weight: 500;
  display: inline-block;
}

.filter_lft .active {
  background: #FFEBD7;
  border-color: #FFEBD7;
}

.filter_right input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px 12px 4px 33px;
  font-size: 14px;
  max-width: 135px;
  height: 36px;
}

.filter_right input::placeholder {
  color: #484848;
  font-weight: 500;
}

.fa-calendar {
  position: absolute;
  left: 10px;
  color: #484848;
 top: 10px;
}

.datepicker td,
.datepicker th {
  text-align: center;
  padding: 8px 12px;
  font-size: 14px;
}

/* .datepicker-dropdown.dropdown-menu {
  top: 280px !important;
} */


.datepicker-dropdown.dropdown-menu {
  z-index: 101 !important;
}

.home-section nav.top_bar .alertbx .profile_image {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: red; */
    border: 3px solid #fff;
    box-shadow: 2px 1px 1px #00000054;
    background: #f47f20;
  /*  border-bottom: 1px solid #00000054*/
}

.home-section nav.top_bar .alertbx .alert-count {
  position: absolute;
  right: 0px;
  background: red;
  width: 23px;
  height: 23px;
  border-radius: 50%;
    color: white;
  font-size: 13px;
  font-weight: 600;
  top: 7px;
  text-align: center;
  line-height: 24px;
}

.home-section nav.top_bar .alertbx {
  justify-content: end;
  position: relative;
}

.nav_right_side {
  display: flex;
  gap: 20px;
}

nav .alertbx i {
  color: white;
  -webkit-animation: ring 4s .7s ease-in-out infinite;
  -webkit-transform-origin: 50% 4px;
  -moz-animation: ring 4s .7s ease-in-out infinite;
  -moz-transform-origin: 50% 4px;
  animation: ring 4s .7s ease-in-out infinite;
  transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
  0% {
    -webkit-transform: rotateZ(0);
  }

  1% {
    -webkit-transform: rotateZ(30deg);
  }

  3% {
    -webkit-transform: rotateZ(-28deg);
  }

  5% {
    -webkit-transform: rotateZ(34deg);
  }

  7% {
    -webkit-transform: rotateZ(-32deg);
  }

  9% {
    -webkit-transform: rotateZ(30deg);
  }

  11% {
    -webkit-transform: rotateZ(-28deg);
  }

  13% {
    -webkit-transform: rotateZ(26deg);
  }

  15% {
    -webkit-transform: rotateZ(-24deg);
  }

  17% {
    -webkit-transform: rotateZ(22deg);
  }

  19% {
    -webkit-transform: rotateZ(-20deg);
  }

  21% {
    -webkit-transform: rotateZ(18deg);
  }

  23% {
    -webkit-transform: rotateZ(-16deg);
  }

  25% {
    -webkit-transform: rotateZ(14deg);
  }

  27% {
    -webkit-transform: rotateZ(-12deg);
  }

  29% {
    -webkit-transform: rotateZ(10deg);
  }

  31% {
    -webkit-transform: rotateZ(-8deg);
  }

  33% {
    -webkit-transform: rotateZ(6deg);
  }

  35% {
    -webkit-transform: rotateZ(-4deg);
  }

  37% {
    -webkit-transform: rotateZ(2deg);
  }

  39% {
    -webkit-transform: rotateZ(-1deg);
  }

  41% {
    -webkit-transform: rotateZ(1deg);
  }

  43% {
    -webkit-transform: rotateZ(0);
  }

  100% {
    -webkit-transform: rotateZ(0);
  }
}

@-moz-keyframes ring {
  0% {
    -moz-transform: rotate(0);
  }

  1% {
    -moz-transform: rotate(30deg);
  }

  3% {
    -moz-transform: rotate(-28deg);
  }

  5% {
    -moz-transform: rotate(34deg);
  }

  7% {
    -moz-transform: rotate(-32deg);
  }

  9% {
    -moz-transform: rotate(30deg);
  }

  11% {
    -moz-transform: rotate(-28deg);
  }

  13% {
    -moz-transform: rotate(26deg);
  }

  15% {
    -moz-transform: rotate(-24deg);
  }

  17% {
    -moz-transform: rotate(22deg);
  }

  19% {
    -moz-transform: rotate(-20deg);
  }

  21% {
    -moz-transform: rotate(18deg);
  }

  23% {
    -moz-transform: rotate(-16deg);
  }

  25% {
    -moz-transform: rotate(14deg);
  }

  27% {
    -moz-transform: rotate(-12deg);
  }

  29% {
    -moz-transform: rotate(10deg);
  }

  31% {
    -moz-transform: rotate(-8deg);
  }

  33% {
    -moz-transform: rotate(6deg);
  }

  35% {
    -moz-transform: rotate(-4deg);
  }

  37% {
    -moz-transform: rotate(2deg);
  }

  39% {
    -moz-transform: rotate(-1deg);
  }

  41% {
    -moz-transform: rotate(1deg);
  }

  43% {
    -moz-transform: rotate(0);
  }

  100% {
    -moz-transform: rotate(0);
  }
}

@keyframes ring {
  0% {
    transform: rotate(0);
  }

  1% {
    transform: rotate(30deg);
  }

  3% {
    transform: rotate(-28deg);
  }

  5% {
    transform: rotate(34deg);
  }

  7% {
    transform: rotate(-32deg);
  }

  9% {
    transform: rotate(30deg);
  }

  11% {
    transform: rotate(-28deg);
  }

  13% {
    transform: rotate(26deg);
  }

  15% {
    transform: rotate(-24deg);
  }

  17% {
    transform: rotate(22deg);
  }

  19% {
    transform: rotate(-20deg);
  }

  21% {
    transform: rotate(18deg);
  }

  23% {
    transform: rotate(-16deg);
  }

  25% {
    transform: rotate(14deg);
  }

  27% {
    transform: rotate(-12deg);
  }

  29% {
    transform: rotate(10deg);
  }

  31% {
    transform: rotate(-8deg);
  }

  33% {
    transform: rotate(6deg);
  }

  35% {
    transform: rotate(-4deg);
  }

  37% {
    transform: rotate(2deg);
  }

  39% {
    transform: rotate(-1deg);
  }

  41% {
    transform: rotate(1deg);
  }

  43% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(0);
  }
}

.srchinput {
  display: flex;
  gap: 10px;
  align-items: center;
}

.srchinput input {
  width: 220px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
}

.tble-c-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alertbx .dropdown-menu.show {
  right: -287px !important;
  width: 350px !important;
  max-height: 470px;
  overflow-y: auto;
  box-shadow:var(--shadow);
  border:1px solid #f1f1f1;
  /* padding: 10px 0 20px; */
 /* padding: 10px 0 0px;*/
}

.notidropdown .dropdown-menu.show {
    right: inherit !important;
}

.profile_dropdown li .noticard {
    position: relative;
    padding: 0.7rem;
   /* box-shadow: var(--shadow);*/
    margin: 10px;
    border-radius: 6px;
    display: block;
    width: auto;
    border: 1px solid #fff6f6;
    border-left: 5px solid #ff9938;
   
}

.orgimg {
  width: 55px;
  height: 55px;
  display: flex;
  background: #f4f4f6;
  border-radius: 50px;
  flex-shrink: 0;
  border: 1px solid #ddd;

  text-align: center;
}

.orgimg img {
  max-width: 35px;
  margin: auto;
}

.orgnization_name {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    /*  color: var(--bs-orange);*/
    color: #4c4c4c;
}

.noticard_conent p {
    font-size: 13px;
    word-wrap: break-word;
    margin-bottom: 0;
    white-space: normal;
    line-height: 18px;
    color: #898989;
}

.alertbx .profile_dropdown li:first-child a:hover {
  background: none;
  color: #f47f20;
}

.alertbx .profile_dropdown li .viewnoti {
    text-align: right;
    color: #f47f20;
    font-weight: 600;
    display: flex;
  
    text-decoration: underline;
   
    padding: 10px 0 0 15px;
}

.alertbx .profile_dropdown li {
    /*  border-bottom: 1px dashed #959292;*/
    border-bottom: none;
    position: relative;
}
/*    .alertbx .profile_dropdown li .noticard:after {
        content: '';
        position: absolute;
        background: #ff9938;
        width: 5px;
      
        border-radius: 0 20px 20px 0px;
        height: 70%;
        top: 0;
        bottom: 0;
        margin: auto;
    }*/

        .alertbx .profile_dropdown li:first-child:after {display:none;}

    .alertbx .profile_dropdown li:hover a {
        background: #ff993812;
        color: #000;
    }

.alertbx .profile_dropdown li:last-child,
.alertbx .profile_dropdown li:first-child {
  border-bottom: none;
}

.hr_shadow {
  filter: drop-shadow(6px 14px 6px #ddd);
}

.pack-img {
  max-width: 450px;
  margin: auto;
  /* padding: 45px 0 20px; */
  padding: 20px 0 0px;
}

.pack-detailsbx {
  padding-top: 40px;
}

.pack-detailsbx ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.pack-detailsbx ul li {
  width: 50%;
}

.pck-btns {
  display: flex;
  gap: 12px;
  z-index: 99;
  justify-content: end;
  flex-wrap: wrap;
}

.pck-btns a {
  padding: 10px 20px;
  cursor: pointer;
  display: inline-block;
}

.pck-btns .cancel-btn {
  background: var(--red);
  opacity: 0.7;
}

.pck-btns a:hover,
.create_cpack:hover {
  opacity: 1;
}

.create_cpack {
  background: #28a745;
  color: white !important;
  opacity: 0.8;
  border: 1px solid #28a745;
}

.create_cpack:hover {
  opacity: 1;
  background: #28a745;
  border-color: #28a745;
}

.pack-detailsbx h4,
.subscription-hding span {
  display: block;
  font-weight: 700;
  margin: 0;
  font-size: 26px;
}

.subscription-hding span {
  color: #ec539c;
}

.packdetails-bxex .row .col-md-7 {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.subscription-hding h4 span {
  font-size: 15px;
  font-weight: 600;
  margin-top: 5px;
}

.subscription-hding {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  padding-bottom: 15px;
}

table.inputs td {
  padding: 5px;
}

.notibx {
  border: 1px solid lch(66.08 78.67 57.73 / 0.5);
  /* border: 1px solid #ddd; */


  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 15px;
}


.noti_img_msg,
.notibx {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.notibx:hover {
  background: lch(66.08 78.67 57.73 / 0.04);
}

.notibx .orgimg {
  border-radius: 8px;
}

.notibx .noticard_conent p {
  white-space: unset;
  font-size: 14px;
  font-weight: 500;
}

.noti_date {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #ff9400;
  background: hsl(35deg 98% 50% / 10%);
  padding: 4px 9px;
  border-radius: 4px;
  border: 1px solid #ff9400;
}

.hk_inner {
  display: flex;
  gap: 10px;
  display: none;
}

.hk_inner input {
  width: auto;
}

.create_cpack.disabled {
  background-color: #cccccc;
  color: #000 !important;
  border: 1px solid #ccc;
  opacity: 1;
  cursor: not-allowed;
}

.create_cpack.disabled:hover {
  box-shadow: none;
  cursor: not-allowed;
}

.cancel-subsc-model img {
  max-width: 250px;
}

.cancel-subsc-model h4 {
  color: #CF3838;
  font-weight: 600;
  font-size: 23px;
  line-height: 30px;
  margin: 20px 0 15px;
}

.cancel-subsc-model p {
  font-size: 15px;
  font-weight: 500;
  color: #888888;
  max-width: 400px;
  margin: auto;
}

.planbxes.pricing-card {
    width: 32%;
    background: rgb(255 161 71 / 5%);
    border-radius: 8px;
    min-height: 80px;
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 10px;
    text-align: left;
    border: 1.5px solid var(--col);
    box-shadow: 0 -6px transparent;
    justify-content: flex-end;
}

.planbxes.pricing-card:hover {
  transform: unset;
  box-shadow: unset;
}

.planbxes .form-check-label {
  margin-bottom: 10px;
  display: block;
}

.planbxes.pricing-card .form-check-input {
  appearance: auto;
}

.form-check-input:focus,
.upgrdeplan-modal .form-control:focus,
.upgrdeplan-modal .form-select:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.planbxes:has(input:checked).planbxes {
  border: 1.5px solid var(--col);
  background: rgb(255 161 71 / 5%);
  box-shadow: 0 -6px var(--col);

}

.upgrdeplan-modal .login_form {
  padding: 0;
  width: 100%;
}

.subscribe-pge sub {
  color: var(--col);
  font-size: 0.9rem;
  font-weight: 400;
}

.upgrdeplan-modal .modal-dialog {
  max-width: 670px;
}

.planbxes p {
  margin: 0;
  text-align: left;
  font-size: 15px;
}

/* #feature_Table.dataTable > tbody > tr> *  {    border-top: 1px solid rgba(0, 0, 0, 0.15); border-top: 1px solid rgba(0, 0, 0, 0.15); border-left: 1px solid rgba(0, 0, 0, 0.15);} */
#feature_Table.dataTable.cell-border>tbody>tr>* {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

#feature_Table.dataTable.cell-border>tbody>tr>*:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

#feature_Table.dataTable>tbody>tr:last-child>* {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

#feature_Table.dataTable>tbody>tr,
#feature_Table_wrapper table thead tr th.sorting {
  text-align: center;
}

.organiZations #feature_Table .action_button {
  justify-content: center;
}

.permisionbx {
  display: block;
}

.permison-lbel {
  display: flex;
  gap: 10px;
  border-bottom: 1px dashed #ddd;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.permisionbx:last-child {
  border-bottom: none;
}

.subsription-resume-modal p {
  max-width: 100%;
  line-height: 25px;
  font-weight: 400;
}
/* .subsription-resume-modal .modal-footer {justify-content: center;} */

.subsription-resume-modal img {
  max-width: 100%;
}

.duedate-amt .dueamt {
  font-size: 15px !important;
  font-weight: 600 !important;
  margin-top: 5px;
  color: #0e9700 !important;
}

.free-subscription {
  color: #00b074;
  font-size: 13px;
  padding: 2px 8px;
  border-radius: 0px 0px 8px 8px;
  cursor: pointer;
  text-align: center;
}

.freesubcription-modal .del_icon {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  border-bottom: 1px dashed #ddd;
}

.freesubcription-modal .del_icon p {
  color: #000;
  font-weight: 500;
}

.organiZations .profile .free-tag {
  max-width: 50px;
  width: 100%;
  margin-right: 50px;
}

.subscription-togle input[type="checkbox"] {
  margin-right: 0;
  border-color: #2EBC4F;
}

.subscription-togle input[type="checkbox"]:checked {
  background-color: #2EBC4F;
}
/* Scheduler_modal CSS */

.scheduler_modal .modal-content {
  min-width: 650px;
}
.mailer-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: 10px 10px 10px #ddd;
  text-align: center;
  box-shadow: 0 3px 20px rgb(0 0 0 / 0.1);
}

.overlayer {
  inset: 0;
  position: absolute;
  background: hsl(0deg 0% 0% / 60%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 100%;
  overflow: hidden;
  opacity: 0;
  transition: all 0.52s ease-in-out;
  flex-direction: column;
  gap: 10px;
}
.overlayer span {
  display: block;
  background: #f37500;
  padding: 7px 25px;
  border-radius: 50px;
    cursor: pointer;
}

.mailer-img:hover .overlayer {
  top: 0;
  overflow: visible;
  opacity: 1;
}

.mailer-img>span {
  display: block;
  padding: 10px;
  background: #f47f20;
  color: white;
  border-radius: 8px 8px 0 0;
}

.edittemplte-modal table {
  color: unset;
  word-wrap: unset;
}

.main_btn>input {
  inset: 0;
}

/* fleet tracking screen  css  */
.overlayer .delte-templte {
  background: #c9302c;
}

.mapbx iframe {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  height: 650px;
  width: 100%;
  vertical-align: middle;
}

.activ-circle {
  background: #51B869;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.activedriver_bx {
  height: 650px;
  overflow: auto;
}

.inner-pages .organiZations-boxes .box .activedriver_bx .title {
  background: none;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  padding: 20px 15px 15px;
  border-bottom: 1px solid #ddd;
  background: var(--white);
  position: sticky;
}

.driverpic h5,
.drivr_prark-chekbx .form-check h5 {
  display: inline-block;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.dirverbx label, .dirverbx .userprifle-ticketno,
.drivr_prark-chekbx,
.drivr_prark-chekbx .form-check {
    display: flex;
    gap: 15px;
    align-items: center;
}

.drivr_prark-chekbx .form-check {
  gap: 10px;
}
    .drivr_prark-chekbx{gap:0;}
    .drivr_prark-chekbx > label {
        padding: 8px 15px;
        border-radius: 8px;
        border: 1px solid #ddd;
    }

.dirverbx .form-check-input,
.drivr_prark-chekbx .form-check-input {
  width: 25px;
  border: 1px solid #000;
  height: 25px;
  margin-right: 0;
}

.activedriver_bx .dirverbx {
  border-bottom: 1px dashed #C5BFBF;
  padding: 10px; 15px;
  position:relative;
  transition:all 0.5s ease-in-out;
}

.activedriver_bx .dirverbx:last-child {
  border-bottom: none;
}

.mapserchbx {
  max-width: 450px;
  position: absolute;
  left: 30px;
  top: 30px;
  width: 100%;
}

.mapserchbx>input {
  width: 100%;
  outline: none;
  height: 50px;
  background: var(--White, #FFF);
  box-shadow: 1px 4px 4px 0px rgba(116, 113, 113, 0.26);
  border-radius: 8px;
  border: 1px solid #BBB3B3;
  padding: 13px;
  font-size: 13px;
}

    .mapserchbx:before {
        width: 2px;
        height: 28px;
        content: '';
        position: absolute;
        background: #7f7f7f26;
        bottom: 0;
        top: 10px;
        display: inline-block;
        right: 46px;
    }

.mapserchbx:after {
  content: "\f002";
  color: #7f7f7f61;
  font-family: "FontAwesome";
  right: 0;
  position: absolute;
  font-size: 22px;
  top: 7px;
  right: 15px;
  margin: auto;
  font-weight: 300;
}

.templtedelete_modal .del_icon {
  gap: 15px;
}

.templtedelete_modal .del_icon h5 {
  font-weight: 600;
  text-align: center;
  color: #e23d41;
}

.templtedelete_modal .del_icon p {
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
}

.f-upload {
  display: none;
}

.pushnoti-card {
  border: 1px solid var(--orange);
  display: block;
    padding: 25px 10px 15px 20px;
  border-radius: 16px;
}

.pushnoti-card span {
  margin: 0;
  background: #ffffff;
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  position: absolute;
  top: -12px;
  padding: 0 10px 0 0;
}

.noti-permison {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px dashed var(--orange);
  padding-bottom: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}
.pushnoti-card .noti-permison:last-child  { border-bottom: none;
  padding: 0;
  margin: 0;
}
body {padding: 0!important;}

.grow-wrap {
    display: grid;
}

    .grow-wrap::after {
        content: attr(data-replicated-value) " ";
        white-space: pre-wrap;
        visibility: hidden;
    }

    .grow-wrap > textarea,
    .grow-wrap::after {
        border: 1px solid black;
        padding: 0.5rem;
        font: inherit;
        grid-area: 1 / 1 / 2 / 2;
    }


/*.filterdashboard #employeeListTable_filter label, .filterdashboard #vehicleListTable_filter label, .filterdashboard #vehicleListTable_length, .filterdashboard #vehicleType-filter, .filterdashboard #jobTitle-filter, .filterdashboard #employeeListTable_length {
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: none;
    justify-content: end;*/
    /*  font-size: 12px;*/
/*}

.filterdashboard #employeeListTable_filter label, .filterdashboard #employeeListTable_length, .filterdashboard #vehicleListTable_length, .filterdashboard #vehicleListTable_filter label {
    flex-wrap: wrap;
}

.filterdashboard #employeeListTable_length, .filterdashboard #vehicleListTable_length {
    justify-content: start;
}

.filterdashboard .form-select {
    font-size: 13px;
}

.filterdashboard #jobTitleFilter, .filterdashboard #vehicleTypeFilter {
    min-width: 120px;
}*/
.filterdashboard .dataTables_length {
    display: flex;
    gap: 20px;
}

 

.dasboardtable {gap:10px;}

#jobTitle-filter,
#vehicleType-filter, .extrafilter, #status-filter {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filterdashboard .dataTables_filter {
    display: flex;
    gap: 20px;
    align-items: center;
/*   justify-content:end;*/
}
.filterdashboard div#organizationListTable_filter, #tblMain_filter {
    justify-content: end;
}


#tblMain_wrapper .hr_tblMeta_r, #vehicleTrackingTable_wrapper .hr_tblMeta_r, .colmn-direction .dataTables_length, .colmn-direction .hr_tblMeta_r, .filterdashboard .dataTables_length#vehicleTrackingTable_length {
    flex-direction: column;
}
    #tblMain_wrapper .hr_tblMeta_r {gap:0;}

    .filterdashboard .srchstasfilter .dataTables_filter {
        justify-content: end;
    }
.informative_description {
    background: hsl(29deg 100% 61% / 10%);
    padding:  15px 10px;
    border-radius: 8px;
    display:flex; gap:10px;
}
    .informative_description svg{flex-shrink:0; width:20px; height:20px!important;}
    .informative_description p {
        color: #BE6D1F;
        font-size: 13px; margin:0;
    }
/*    =================================== vehicle tracking screen===================================*/

.vehicle_moment {
    text-align: right;
}

    .vehicle_moment img {
        max-width: 60px;
    }

.dirverbx {
    display: flex;
    justify-content: space-between; align-items:center;
}

.dname-v_no h6 {
    margin-bottom: 5px;
}

    .dname-v_no h6 i {
        display: inline-block;
        width: 10px;
        height: 10px;
    }

.dname-v_no span {
    font-size: 15px;
    font-weight: 600;
    color: var(--orange)
}

.dname-v_no .spedtrace {color:inherit;}

    .dname-v_no .assigndriver {
        color: #2962ff;
        text-decoration: underline;
    }

.no-scroll {
    height: unset;
    overflow: unset;
}

.drivers_bxes {
    max-height: 522px;
    overflow: auto;
}

.spedtrace {
    display: block;
    font-weight: 600;
    font-size: 14px;
}
.listsearcbar {
    display: flex;
    padding: 15px;
}
    .listsearcbar > input {
               border-radius: .375rem 0 0 .375rem;
        font-size: 13px;
        box-shadow: none !important;
    }
    .listsearcbar > select {
        box-shadow: none !important;
        border-radius: 0 .375rem .375rem 0;
        width: calc(100%- 108px);
    }

.dirverbx.active:after {
    content: '';
    position: absolute;
    left: 0;
    width: 5px;
    background: #f47f20;
    top: 0;
    bottom: 0;
    border-radius: 0 20px 20px 0;
   
}
.gm-style .gm-style-iw-c 
{
    padding-left:0;
    padding-right:0;
}
.gm-style-iw-chr {
    display: none !important;
}
  
    .gm-style-iw-d {
        overflow: unset !important;
        max-height: 453px;
        padding: 5px;
        font-size: 13px;
        font-weight: 500;
        outline: none;
    }
        .gm-style-iw-d b {
            color: var(--orange);
        }

        .tutorialbx {
            overflow: inherit;
            border: unset;
            background: white;
        }

    .tutorialbx span {
        cursor: pointer;
        background: rgb(244 127 32 / 80%);
        transition: all 0.3s ease-in-out;
    }

        .tutorialbx span:hover {
            background: rgb(244 127 32 / 100%);
        }

.vehicletraking_table {margin-top:15px;}
.select-checbox input{margin:0!important; cursor:pointer;}
.overview-reportbx{display:flex; gap:10px; justify-content:space-between; padding: 0 20px;  flex-wrap:wrap;}
.home-content .overview-reportbx .overview-boxes {
    padding: 0 ;
    margin-bottom: 0;
}
.home-content .report-bx {
    width: 49%;
    margin: 0;
    padding: 0;
        background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.pills-addbtn-contner {
    border-bottom: 1px solid #ebebeb;
     display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap:wrap; gap:10px;
}
.addexport-btns div a{display:inline-block}
.addexport-btns div:nth-child(2), .addexport-btns div:nth-child(2) {
    display: none;
}

.staus.pyment-sucesful label:nth-child(2) {
   font-weight:600;
    color: var(--orange);
    padding: 2px 8px;
    border-radius: 4px;
    color: #00b074;
    font-size: 13px;
    border: 1px solid #FF9938;
    background: hsl(29deg 87% 57% / 10%);
    color: #fe7c00;
    text-transform:uppercase;
}
.report-no {
    color: #0d6efd;
}
#todayreport_Table tr:last-child td, .overview-reportbx #organiZations_Table tr:last-child td {
    border-bottom: none;
}
    .maintenancetype_bx_scrol .table tbody {
        display: block;
        max-height: 400px;
        overflow-y: scroll;
    }

.maintenancetype_bx_scrol .input-group {
    padding-right: .5rem !important;
}

.maintenancetype_bx_scrol thead, .maintenancetype_bx_scrol tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

    .overview-reportbx .table > :not(:first-child), .maintenancetype_bx_scrol .table > :not(:first-child) {
        border-top: none !important;
    }

.overview-reportbx .table tr td span {
    display: inline-block;
    font-weight: 600;
    color: #ff7c00;
    min-width: 90px;
}
/*.recentactive-table_bx {max-height:435px;}*/
.recentactive-table_bx table thead{
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
}

.uplodlable-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
    .uplodlable-button {position:inherit; float:inherit;}
/* ------upload images in stapper form UI fixing------------*/

.upload__box {
    padding: 12px;
    height: 170px;
    border: 1px solid #ced4da;
    border-radius: 12px;
    overflow: auto;
    position: relative;
    margin-bottom: 1rem;
}

.upload__btn {
    float: right;
    text-align: center;
    position: absolute;
    right: 0.9rem;
    bottom: 10px;
}
.Uplod-inspecimges_hr.upload__box {
    padding: 12px;
    min-height: 170px;
    border: 1px solid #ced4da;
    border-radius: 12px;
    overflow: auto;
    position: relative;
    margin-bottom: 1rem;
}

.form-height .Uplod-inspecimges_hr .upload__btn {
    top: inherit;
    right: 0.9rem;
}

.form-height .Uplod-inspecimges_hr .upload__img-box {
    width: 90px;
    padding: 0 10px;
    margin-bottom: 12px;
}

.Uplod-inspecimges_hr .upload__btn {
    float: right;
    text-align: center;
    position: absolute;
    right: 0.9rem;
    bottom: 10px;
}
.form-height .Uplod-inspecimges_hr .img-bg, .img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 60px;
    width: 60px;
}
.main_form .selectf-lebel {
    margin-bottom: 10px;
    display: block;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.aprov-checbx{font-weight:500;}
.pd_bx.orgchart_bx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.orgchart_bx #plansname-chart {  
    width: 45%;
    min-height: 294px !important;
    display: flex;
    align-items: center;
}

.orgmageprice-card {padding:0!important; margin:0;}
/*.org_planname {
    width: 53%;
}*/
.orgmageprice-card .box {
    width: calc(100% / 2 - 10px);
    min-height:171px;
}

.dropdown-bxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
}
    .dropdown-bxes .dropdown-chekbx {
        width: 30%;
        padding: 7px 7px 7px 13px;
        border-radius: 50px;
        display:flex; align-items:center;
    }     
        .dropdown-bxes .dropdown-chekbx:has(input:checked).dropdown-chekbx {
            border: 2px dashed #F1981A;
            background: #FFE1B6;
        }

        .dropdown-bxes .dropdown-chekbx input {
            width: 25px;
            height: 25px;
            border-radius: 50%;
        }
    .dropdown-bxes .dropdown-chekbx label {margin:0; gap:10px;}

.dirverbx label .driverpic {
    width: 50px;
    height: 50px;
}

.dirverbx label .driverpic img{width:100%;}
.organizationname_query h5 {
    margin: 0;
    /*  font-size: 1.10rem;*/
    font-weight: 500;
    font-size: 15px;
    color: #797878;
}

    .organizationname_query h5 span {
        display: block;
        font-size: 14px;
        color: #ff9938;
        font-weight: 600;
        margin-top:5px;
    }

.organizationname_query p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    color: #7c7373;
    order:1;
    
}

.org_list-srchbar .mapserchbx {
    position: inherit;
    margin-top: 15px;
    max-width: inherit;
    inset: inherit;
    padding: 0 15px;
}

    .org_list-srchbar .mapserchbx > input {
        box-shadow: none;
    }
    .org_list-srchbar .mapserchbx:after, .org_list-srchbar .mapserchbx:before {
        display: none;
    }
.raisedticket_page .activedriver_bx {
    height: inherit;
}
.organizationlist_bx {
    max-height: 620px;
    overflow: auto; margin-top:15px;
}
.chathistory-bx {
    background: #f5f5f5;
    height: 746px;
   border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
        position:relative;
}

.chating_header {
    padding: 15px 20px;
   
    background: white;
    border-bottom: 1px solid #ddd;
}
.conversationbx ul {
    padding: 0 20px;
    max-height: 560px;
    overflow: auto;
}
    .conversationbx ul li {
        display: inline-flex;
        gap: 15px;
        max-width: 70%;
        margin-top: 15px;
        align-items: end;
        width: 100%;
    }

        .conversationbx ul li .user_img img {
            width: 40px;
            height: 40px;
            object-fit: cover;
            overflow: hidden;
            background: #ffffff;
            overflow: hidden;
            border-radius: 50%;
            border: 1px solid #fe9838;
            object-position: center;
        }

        .orgconversation p {
            background: #ffffff;
            padding: 10px;
            font-size: 14px;
            margin: 0;
            border-radius: 20px 20px 20px 0px;
            border: 1px solid #ddd;
            color: #3e3e3e;
        }
.orgconversation span{
    display: inline-block;
    color: #ab9a9a;
}
.conversationbx ul .msgreply {
    float: inline-end;
    flex-direction: row-reverse;
}

    .msgreply .orgconversation p {
        border-radius: 20px 20px 0px 20px; color:white; background:#000;
    }
.typerepliy {
    position: relative !important;
    max-width: 95%;
    margin: auto;
}

    .typerepliy input {
        width: 100%;
        padding: 15px 100px 15px 20px;
        border-radius: 50px;
        font-size: 14px;
    }
.typerepliy {
    position: absolute !important;
    margin: auto;
    right: 0;
    left: 0;
    bottom: 15px;
}
    .typerepliy i {
        background: #ff9938;
        border-radius: 50%;
             height: 35px;
        width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
               cursor: pointer;
    }

    .typerepliy .fa-paperclip {
     
        background: none;
        font-size: 24px;
        font-weight: 500;
        color: #8f8686;
    }
        .recong-colors span {
        display: inline-block;
        margin-right: 5px;
        font-size: 14px;
        font-weight: 500;
  
    }
.organizationlist_bx .unreadmsg:after {
    content: '';
    background: #ff9938;
    width: 4px;
    left: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    height: 75%;
    margin: auto;
}
.organizationlist_bx .activechat {
    background: #ff993817;
}
.send-attachicons {
    position: absolute;
    right: 15px;
    bottom: 9px;
    display: flex;
    gap: 10px;
}
.recog-colors-tictraisebtn {
 display:flex;
 gap:10px; 
 align-items:center;

}
.recong-colors {
    border: 1px solid #ddd;
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 5px 11px;
    border-radius: 4px;
    background: white;
}
.org_list-srchbar .listsearcbar {
    padding: 0;
}
.profileviewmodal .oraganizationView .profileDetail a, 
.profileviewmodal .oraganizationView .profileDetail p {
    margin-bottom: 15px;
    display: block;
    font-size: 16px;
    color:#000;
    display:flex; gap:5px; align-items:center;
}
    .profileviewmodal .oraganizationView .profileDetail p i,
    .profileviewmodal .oraganizationView .profileDetail a i {
        background: var(--orange);
        padding: 10px;
        width: 30px;
        height: 30px;
        display: flex;
            align-items: center;
        justify-content: center;  
        color: white;
        font-size: 20px;
        border-radius: 4px;
    }
.profileviewmodal .oraganizationView .organisationProfile .profileBg .profile_img {
    margin: inherit;
    left: 2rem;
    right: inherit;
    border-radius: 0 0 12px;
    padding: 5px;
}
    .profileviewmodal .oraganizationView .organisationProfile .profileBg .profile_img img { width:100%;}


.profileviewmodal .oraganizationView .profileDetail h2 {
    font-size: 18px;
    text-align: left;
    color: #000;
}
.profileviewmodal .oraganizationView .profileDetail {
    padding-left: 2rem; padding-bottom:1rem;
}

.attached-img  img{
    
   height: 40px;
    width: 40px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.conversationbx ul .msgreply.attachment_msg .attached-img {
    flex-shrink: 0
}
.conversationbx ul .msgreply.onlyatachment {
    flex-flow: column-reverse;
    gap: 0px; margin-top:30px;
}
    .msgreply.onlyatachment .attached-img img{
        max-width: 200px;
        width: 100%; height:auto;
    }
.additional-discount-deails h4 {
    margin-bottom: 30px;
}
.additional-discount-deails h4, .contacdt-direct h6 {
    color: #000;
    display: block;
    margin-bottom: 55px;
    font-size: 2.6rem;
    line-height: 60px;
    font-weight: 400;
}
.contacdt-direct h6, .contacdt-direct p {
    text-align: center;
    margin: 0;
    font-size: 1.2rem;
    padding: 0.5rem;
    line-height:inherit;
}


.additional-discount-deails h4 a {
    display: inline-block;
    background: #ff9938;
    padding: 12px 18px;
    font-size: 17px;
    border-radius: 5px;
    color: white;
    line-height: initial;
    margin-top: 15px;
}


.signupbtn-sec {text-align:center;}

.signupbtn-sec span {
    display: block; margin:10px auto;
}
.freetriallabel-signup {
    background: red;
    padding: 7px 19px;
    border-radius: 20px 0;
    color: white;
    animation: glow 1.4s ease-out infinite; max-width:70%;
}
@keyframes glow {
    0% {
        box-shadow: 0 0 0 0 #dc143c;
    }

    50% {
        box-shadow: 0 0 10px 0 #dc143c;
    }
}
.efforlesmange-flet {
    background: url(../images/background-errorless.png);
    background-repeat: no-repeat;
    margin: auto;
    background-size: cover;
    padding: 10px 50px;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.customer-countlink {
    font-size: 18px;
    color: var(--orange);
    font-weight: 500;
    text-decoration: underline;
}
.import-customerlist {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    background: var(--orange);
    padding: 5px 13px;
    border-radius: 50px;
    color: white;
    text-decoration: underline;
}
.insuredexpire-cusotmer_bx p {
    margin: 0;
    color: red;
    font-size: 20px;
}


.form-builder-overlay {
    /* display: none !important; */
    z-index: 1056 !important;
}
#createDynamicForm .form-wrap.form-builder .rowWrapper:not(.tempRowWrapper), #createDynamicForm .colWrapper {
    padding: 0;
    align-items: end;
}

.delete_modal #createDynamicForm p {
    text-align: left;
}

.form-builder-dialog {
    z-index: 1065 !important;
}
#modelInputPopUp .modal-xl {
    --bs-modal-width: 80%;
}



.delete_modal #createDynamicForm p {
    text-align: left;
}

.form-builder-dialog {
    z-index: 1065 !important;
}
#createDynamicForm .form-wrap.form-builder .cb-wrap .form-actions { display:none;
}
.fname-category {
    max-width: calc(100% - 15%);
    margin-bottom: 20px;
}

.created-form-bx {
    padding: 15px 20px 30px;
    border-radius: 10px;
    border: 1px solid var(--orange);
    border-bottom: 4px solid var(--orange);
    background: #fff;
    position: relative;
    text-align: center;
    min-height: 237px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.editdisabed-btns {
    display: flex;
    gap: 10px 5px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}
.publisedform-btn {
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 12px;
    font-size: 15px;
    margin-bottom: 20px;
    text-align: right;
    display: block;
    width:100%;
    font-weight: 600;
}
.created-form-bx a {
    background: var(--orange);
    padding: 8px 18px;
    border-radius: 4px;
    display: inline-block;
    font-size: 16px;
    color: white!important;
    transition: all 0.5s ease-in-out;
}
.created-form-bx.createnewfom_bx {
    border: 4px dashed #ddd;
    background: #ffffff;
}

.resetpasswordButton .dt-button {
    background: #0d6efd;
    opacity: 0.8;
    margin: 0 !important;
    padding: 0.5rem 1rem;
}
    .resetpasswordButton .dt-button:hover, .resetpasswordButton button.dt-button:focus:not(.disabled) {
        opacity: 1;
        background: #0d6efd !important;
        border-color: #0d6efd !important;
    }
.addexport-btns >div {display:flex; gap:5px;}

#createDynamicForm > div .frmb {
    /*min-height: 500px;*/
    max-height: 600px;
    border: 2px dashed var(--orange);
    overflow-y: auto;
    padding:10px;
}

.rederedformresult .rendered-form.formbuilder-embedded-bootstrap .formbuilder-select.form-group {
    position: relative;
}
.rederedformresult .rendered-form.formbuilder-embedded-bootstrap .form-group .form-control {
    height: 42px;
}

.rederedformresult .overview-boxes .rendered-form.formbuilder-embedded-bootstrap .formbuilder-select:after {
    top: 28px;
    right: 20px;
}
.rederedformresult .overview-boxes .rendered-form.formbuilder-embedded-bootstrap input[type=file]::file-selector-button {
  
    height: 40px;
}
.rederedformresult .fname-category { max-width:100%;
}
.rendered-form label {margin:0;}

.rederedformresult .overview-boxes .formbuilder-radio {  align-items:center; margin:0;
}
.errormsg{text-transform:capitalize; color:}

.rendered-form label.error {
    color: var(--red) !important;
}

.rederedformresult .overview-boxes .formbuilder-radio, .overview-boxes .formbuilder-checkbox {
    flex-wrap: wrap;
}
.rederedformresult .overview-boxes .formbuilder-radio label.error, .overview-boxes .formbuilder-checkbox label.error {
    order: 3;
    margin-left: 5px;
    width:100%;
}
.viewfilebtn {
    gap: 5px;
    flex-wrap: wrap;
    width: inherit;
    background: #ff9938;
    padding: 5px 15px;
    border-radius: 4px;
    color: white;
    margin-right: 5px;
}
   
    .viewfilebtn:hover{color:white;}
.viewfilebtn:after {
    content: '\f06e ';
    font-family: 'FontAwesome';
}

.usergrementbx {
    align-items: center;
    display: inline-flex;
    justify-content: end;
    margin: 20px 0;
    font-weight: 600;
    text-decoration: underline;
    color: var(--orange);
}
    .usergrementbx .label {
        cursor: pointer;
    }

.useragerment_modal .modal-body h6 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}
.useragerment_modal .modal-body textarea { display:block; width:100%;
}
.useraceptence{font-weight:600; margin-bottom:0;}

.subscription-btn .bg-danger {
    font-size: 14px;
    padding: 7px 10px;
}

.pac-container {
    z-index: 999999 !important;
}

.form-outer form .page .title i, .infoicon svg{
    width: 25px;
    height: 25px;
    /*background: #0d6efd;*/
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    font-weight: 300;
}

    .infoicon svg {width:20px;}


    .form-select.my-select {
        padding: unset;
    }
    .form-select.my-select > .dropdown-toggle {background:unset;}
    .form-select.my-select .dropdown-toggle::after {
        display: none;
    }
    .form-select.my-select .dropdown-menu.inner, .form-select.my-select .filter-option-inner-inner {
        text-transform: uppercase;
    }
    .form-select.my-select .dropdown-toggle:focus, .form-select.my-select > select.mobile-device:focus + .dropdown-toggle {outline:none!important; }

.tooltip-inner {
    max-width: 100% !important;
    text-align:left;
}
/*.bottom_footer_table {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.dataTables_wrapper .bottom_footer_table .dataTables_info {
    padding-top: 0;
}*/


.activetext, .inactivetext {
    text-decoration: underline!important;
    font-weight: 500;
}
.accidentedsvg {transition:all 0.5s ease-in-out; cursor:pointer;}
.accidentedsvg:hover {
    cursor: pointer !important
}
    .activetext:hover, .inactivetext:hover {
        text-decoration: inherit;
    }