

*{
    margin: 0px; padding: 0px;
}
:root{
    --mainColor: rgb(37, 102, 255);
    --mainGrey: grey;
    --mainGreen: rgb(49, 186, 4);
    --tableTop: rgba(6, 177, 177, 0.178);
    --gold: rgb(226, 163, 3);
}

html {
  scrollbar-width: 2px;               /* Firefox */
  scrollbar-color: #888 #f1f1f100;       /* Firefox thumb + track */
  scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e9e9e9;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* for mobile smoothness */
}

a{
    text-decoration: none;
    color: inherit;
}
a:hover{
    text-decoration: none;
    color: inherit;
}

ul , ol {
    list-style: none;
    margin: 0; padding: 0;
}
p{
    margin: 0px; padding: 0px;
}

@media (max-width: 784px) {
    p{
        font-size: 14px;
    }
    h3{
        font-size: 20px;
    }
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 3px;                         /* Width of vertical scrollbar */
  height: 3px;                        /* Height of horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1;                 /* Track background */
}

::-webkit-scrollbar-thumb {
  background-color: #888;              /* Thumb color */
  width: 3px; 
  border-radius: 10px;                 /* Rounded edges */
  border: 2px solid #f1f1f1;           /* Space between thumb and track */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #1061e3;              /* Darker on hover */
}

.btn:focus,
.btn:active,
.btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

form .inputHint{
    color: gray;
    font-size: 13px; line-height: 18px; padding-top: 4px;
}



/* header */
.header{
    position: fixed;
    display: flex; flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    height: 60px; width: 100%;
    background-color: #e9e9e9;
    top: 0; right: 0; left: 0;
    z-index: 100;
}
.header .userdetails{
    display: flex; flex-direction: row;
    align-items: center;
}
.header .logo {display: flex; flex-direction: row; align-items: center;}
.header .logo h3{
    display: flex; margin: 0px;
    font-weight: bold;
}
.header .logo img{height: 38px; margin-right: 10px;}
.header .logo i{ font-size: 28px; margin-right: 10px; color: var(--mainColor);}
.header .userdetails .username{display: flex; flex-direction: column; padding-right: 10px; font-size: 18px; justify-content: end; align-items: end;}
.header .userdetails .username p:nth-child(2) {font-size: 12px; margin: 0px;}
.header .userdetails .notificationbtn{display: flex; position: relative; background-color: rgba(223, 160, 23, 0.322); border-radius: 50%; height: 38px; width: 38px;}
.header .userdetails .notificationbtn .badge{
    display: flex; position:absolute; font-size: 12px;  top: -5px; right: -10px; border-radius: 50%; color: var(--mainColor);
}
.header .userdetails .notificationbtn i{color: rgb(144, 92, 2); font-size: 15px;}
.header .userdetails .profileicon img{ height: 45px; }
.header .userdetails .dropdown .btn{
    display: flex; flex-direction: row; align-items: center; 
}
.header .userdetails .dropdown .dropdown-toggle::after { display: none !important; }
.header .userdetails .dropdown li i{padding-right: 10px; color: white;}
.header .userdetails .dropdown li {padding: 0px 4px; }
.header .userdetails .dropdown .dropdown-menu{
    background-color: black; color: white;
}
.header .userdetails .dropdown .dropdown-menu li a{ color: white !important; }
.header .userdetails .dropdown .dropdown-menu li button{ color: white !important; }
.header .userdetails .dropdown .dropdown-menu li :hover { color: white !important; background-color: rgb(7, 166, 78); border-radius: 3px;}

.mobilemenubtn{display: none; }

@media (max-width: 764px) {
    .header .logo img{display: none;}
    .mobilemenubtn{ display: flex; padding: 0px;}
    .mobilemenubtn i{font-size: 40px; color: black;}
    .header .logo h3{ display: none; }
    .header{padding: 0px 6px;}
}

.backTop{
    display:flex; position: fixed;
    background-color: var(--mainColor);
    z-index: 99; bottom: 40px; right: 40px;
}
.backTop:hover{background-color: var(--gold);}
.backTop i{color: white;}

.emptyDiv{
    display: flex; flex-direction: column;
    height: 200px; width: 100%;
    justify-content: center; align-items: center;
}
.emptyDiv img{
    height: 90px;
}




/* Main content */
.mainContent {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%; height: 100vh;
}
.leftbar{
    display: flex;
    width: 250px; min-width: 250px;
    height: 100%;
    padding: 60px 10px 10px 10px;
}
.rightbar{
    flex: 1;
    display: flex; flex-direction: column;
    height: 100%;
    padding: 60px 0px 10px 5px;
    overflow-y: scroll;
}
/* left side bar*/
.leftbar .leftdiv {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border-radius: 10px;
    padding-top: 10px;
    background-color: white;
}
.leftdiv .leftdivtopbtns a{
    display: flex; flex-direction: row;
    align-items: center;  justify-content: start;
    padding: 10px 10px; margin: 10px 5px 0px 5px;
    border: none; border-radius: 6px;
    background-color: white;
    transition: 200ms;
}
.leftdiv .leftdivtopbtns a i{
    font-size: 16px;
    padding-right: 10px;
}
.leftdiv .leftdivtopbtns .isActive {
    padding: 10px 10px;
    background-color: var(--mainColor);
    color: white;
}
.leftdiv .leftdivtopbtns a:hover{
    padding: 10px 10px;
    transition: 200ms;
    background-color: rgba(35, 131, 255, 0.169);
    color: blue;
}
.appversion{
    padding: 20px 10px;
    font-size: 12px; text-align: start;
}
.appversion i{
    background-color: rgba(128, 128, 128, 0.189); color: rgb(88, 88, 88);
    padding: 5px; border-radius: 3px; margin-right: 5px; cursor: pointer;
}
.appversion i:hover{
    background-color: rgba(128, 128, 128, 0.189); color: blue;
    padding: 5px; border-radius: 3px; margin-right: 5px; cursor: pointer;
}


@media (max-width: 764px) {
    .leftbar {
        display: none;
    }
}

.leftmobilenav{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobilenav .leftdivtopbtns a{
    display: flex; flex-direction: row;
    align-items: center;  justify-content: start;
    padding: 10px 10px; margin: 10px 5px 0px 5px;
    border: none; border-radius: 6px;
    background-color: white;
    transition: 200ms;
}
.mobilenav .leftdivtopbtns a i{
    font-size: 16px;
    padding-right: 10px;
}
.mobilenav .leftdivtopbtns .isActive {
    padding: 10px 10px;
    background-color: var(--mainColor);
    color: white;
}
.mobilenav .leftdivtopbtns a:hover{
    padding: 10px 10px;
    transition: 200ms;
    background-color: rgba(35, 131, 255, 0.169);
    color: blue;
}




/* center */
.rightbar .centerdiv{
    display: flex; 
    flex-direction: column;
    padding: 0px 5px; width: 100%; height: 100%;
}
.centerdiv .dashboarddiv{
    display: flex; flex-direction: column;
    background-color: white;
    border-radius: 10px;
    width: 100%; padding: 12px;
}
.centerdiv .dashboarddiv .dashdata{
    display: flex; flex-direction: row;
    padding: 10px 0px 0px 0px; 
    justify-content: space-between;
}
.centerdiv .dashboarddiv .dashdiv {
    padding: 0px 10px;
}
.centerdiv .dashboarddiv .dashdata .datacontainer{
    display: flex; flex-direction: column;
    padding: 15px 10px; 
    /* border: 1px solid rgba(128, 128, 128, 0.367); */
    border-radius: 10px; height: 110px; margin-bottom: 10px;
    /* box-shadow: 1px 3px 10px rgba(128, 128, 128, 0.11); */
}
.centerdiv .dashboarddiv .dashdata .datacontainer i{
    font-size: 15px; margin-right: 6px;
    padding: 7px 8px; border-radius: 5px;
}
.centerdiv .dashboarddiv .dashdata .datacontainer p{
        font-size: 15px;
    }

.dashdata .dashdiv:nth-child(1) .datacontainer { background-color: rgba(11, 202, 119, 0.236); }
.dashdata .dashdiv:nth-child(2) .datacontainer { background-color: rgba(0, 136, 255, 0.145); }
.dashdata .dashdiv:nth-child(3) .datacontainer { background-color: rgba(6, 177, 177, 0.178); }
.dashdata .dashdiv:nth-child(4) .datacontainer { background-color: rgba(202, 147, 9, 0.218);}

.dashdata .dashdiv:nth-child(1) i { color: green; background-color: rgba(0, 197, 0, 0.389); }
.dashdata .dashdiv:nth-child(2) i { color: blue; background-color: rgba(0, 0, 255, 0.145); }
.dashdata .dashdiv:nth-child(3) i { color: rgb(2, 87, 87); background-color: rgba(6, 177, 177, 0.373); }
.dashdata .dashdiv:nth-child(4) i { color: rgb(157, 116, 11); background-color: rgba(218, 165, 32, 0.218);}


@media (max-width: 1230px) and (min-width: 991px) {
    .centerdiv .dashboarddiv .dashdata .datacontainer p{
        font-size: 12px;
    }
    .centerdiv .dashboarddiv .dashdata .datacontainer{
        height: 110px;
        padding: 15px 5px;
    }
    .centerdiv .dashboarddiv .dashdiv {
        padding: 0px 6px;
    }
}


.centerdiv .monthly {
    display: flex; flex-direction: column;
    background-color: white;
    border-radius: 10px;
    width: 100%; padding: 12px;
    margin-top: 20px;
}
.centerdiv .monthlist {
    display: flex; flex-direction: column;
    padding: 15px 0px;
}
.monthlist .monthlistitem {
    display: flex; flex-direction: row; justify-content: space-between; align-items: center;
    padding: 6px 10px 8px 5px; border-radius: 0px; margin-bottom: 4px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.243);
}
.monthlist .monthlistitemtitle {
    display: flex; flex-direction: row; justify-content: space-between;
    padding: 5px 10px 5px 0px; border-radius: 0px; margin-bottom: 4px;
    background-color: var(--tableTop);
    color: black;
}
.monthlist .monthlistitemtitle div{ width: 21%; }
.monthlist .monthlistitemtitle .billstatus{
    width: 100px; 
}
.monthlist .monthlistitem i{
    color: black;
}
.monthlist .monthlistitemtitle .month{ padding-left: 5px; }
/* .monthlist .monthlistitem:nth-child(odd) { background-color: rgba(172, 172, 172, 0.157); } */
.monthlist .monthlistitem div{ width: 21%;}
.monthlist .monthlistitem .status{
    display: flex; align-self: center; justify-content: center;
    width: 100px; font-size: 14px;
    color: green; background-color: rgba(3, 171, 3, 0.133);
    border-radius: 10px;
}
.monthlist .monthlistitem .pending{
    color: red; background-color: rgba(164, 1, 1, 0.102);
}
.monthlist .monthlistitem:hover{background-color: var(--tableTop); cursor: pointer; transition: 200ms;}
.monthlysearch {
    display: flex; flex-direction: row;
    justify-content: space-between; width: 100%;
}
.monthlysearch .monthsearch {
    display: flex; flex-direction: row;
    width: 50%; justify-content: end;
}
.monthlysearch .monthlytitle i{color: var(--gold); }
.monthlysearch .monthsearch input{
    height: 45px; flex: 1;
     outline: none; padding: 0px 20px;
    border: 1px solid rgba(128, 128, 128, 0.517); border-radius: 5px;
}
.monthlysearch .monthsearch button{
    background-color: var(--mainColor); border: none; height: 45px;
    border-radius: 5px; margin-left: 10px; width: 50px; min-width: 50px;
}
.monthlysearch .monthsearch button:hover{
    background-color: var(--mainGreen); transition: 200ms;
}
.monthlysearch .monthsearch button i{
    font-size: 18px; color: white;
}
.monthlysearch .refresh{font-size: 25px; color: white;}

@media (max-width: 1100px) {
    .monthlist .monthlistitem .amount, .monthlistitemtitle .amount {
        display: none; 
    }
    .monthlist .monthlistitem  div, .monthlistitemtitle div {
        width: 26%;
    }
}
@media (max-width: 764px) {
    .centerdiv .monthly { padding: 10px; }
    .centerdiv .monthlist {  padding: 0px; }
    .monthlysearch{ display: flex; flex-direction: column; }
    .monthlysearch .monthsearch{ width: 100%; margin-bottom: 15px; margin-top: 10px; }
    .monthlistitem .status, .monthlistitemtitle .billstatus { width: 70px !important; }
    .monthlistitem .count, .monthlistitemtitle .count { display: flex; }
    .monthlist .monthlistitem  div, .monthlist .monthlistitemtitle div { width: 35%; }
    .monthlistitemtitle div { padding: 0px 3px 0px 2px; }
}



/* agents */
.agentsboard{
    display: flex; flex-direction: row;
}
.agentsdata {
    display: flex; flex-direction: row;
    justify-content: space-between; align-items: center;
}
.agentsboard {
    display: flex; flex-direction: row;
    justify-content: space-between; width: 100%;
    padding-top: 15px;
}
.agentsearch  {
    display: flex; flex-direction: row;
    width: 60%; justify-content: end;
}
.agentsearch form {
    display: flex;
    flex-direction: row; flex: 1;
}
.agentsearch input{
    height: 45px; flex: 1; min-width: 0;   
    outline: none; padding: 0px 20px;
    border: none; border-radius: 5px;
    background-color: white;
}
.agentsearch  .search{
    background-color: var(--mainColor); border: none; height: 45px;
    border-radius: 5px; margin-left: 10px; width: 50px; min-width: 50px;
}
.agentsearch button:hover{
    background-color: rgb(0, 160, 0); transition: 200ms;
}
.agentsearch .search i{
    font-size: 18px; color: white;
}
.agentsearch  .newagent{
    background-color: var(--gold); border: none; height: 45px;
    border-radius: 5px; margin-left: 10px; padding: 0px 15px; color: white;
}

.centerdiv .agents {
    display: flex; flex-direction: column;
    background-color: white;
    border-radius: 10px;
    width: 100%; padding: 12px;
    margin-top: 20px;
}
.centerdiv .agentlist {
    display: flex; flex-direction: column;
    padding: 15px 0px;
}
.agentlist .agentlistitem {
    display: flex; flex-direction: row; justify-content: space-between; align-items: center;
    transition: 200ms;
    padding: 6px 10px 8px 5px; border-radius: 0px; margin-bottom: 4px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.243);
}
.agentlist .agentlistitemtitle {
    display: flex; flex-direction: row; justify-content: space-between;
    padding: 5px 10px 5px 3px; border-radius: 0px; margin-bottom: 4px;
    background-color: var(--tableTop);
    color: black;
}
.agentlist .agentlistitemtitle div{ width: 23.5%; }
.agentlist .agentlistitem div{ width: 23.5%; }
.agentlist .agentlistitem .index, .agentlist .agentlistitemtitle .index {
    width: 50px;
}
.agentlist .agentlistitem:hover { background-color: var(--tableTop); transition: 200ms; cursor: pointer; }


@media (max-width: 1100px) {
    .agentlist .agentlistitem  div, .agentlist .agentlistitemtitle div {
        width: 26%;
    }
    .agentsearch  .newagent .new{ display: none ;}
    .agentsearch  {
        display: flex; flex-direction: row;
        width: 80%; justify-content: end;
    }
    .agentlistitemtitle .type, .agentlistitem .type {  display: none; }
}
@media (max-width: 764px) {
    .centerdiv .agents { padding: 10px; }
    .centerdiv .agentlist {  padding: 0px; }
    .agentlistitem .username, .agentlistitemtitle .username { display: none; }
    .agentlist .agentlistitem  div, .agentlist .agentlistitemtitle div { width: 40%; }
    .agentlistitemtitle div { padding: 0px 3px 0px 3px; }
    .agentlistitemtitle .type, .agentlistitem .type { display: none; }
    .agentsboard  { display: flex; flex-direction: column; }
    .agentsearch  {
        display: flex; flex-direction: row;
        width: 100%; justify-content: end; margin-top: 10px;
    }
    .agentsearch  .newagent span{ display: none ;}
    .agentsearch  .newagent { min-width: 40px; padding: 0px 5px; }
    .agentlist .agentlistitem .index, .agentlist .agentlistitemtitle .index {  width: 40px; }
}

/* agent statement*/
.agentstatementlist{
    display: none;
}
.bookinglist .agentstatementTitle{display: none;}
.bookinglist .cargolistTitle{display: none;}



/* audit trail*/
.agentlist .trailItem div{width: 30%; font-size: 14px;}
.agentlist .trailItem {padding: 2px 3px !important;}
.agentlist .trailItem .date{width: 130px; font-size: 13px;}
.agentlist .trailNo{width: 60px !important;}

.agentlist .collapse .delete{
    width: 50px; margin-top: 10px;
    background-color: rgba(255, 0, 0, 0.191); color: red;
}
.agentlist .collapse .delete:hover{background-color: red; color: white; transition: 200ms;}

@media (max-width: 991px) {
    .agentlist .trailNo{width: 40px !important; }
    .agentlist .trailItem div{width: 45%;}
    .agentlist .trailuser {
        display: none !important;
    }
    .agentlist  .trailIp{width: 26% !important; min-width: 100px;}
}
@media (max-width: 500px) {
    .agentlist .trailItem div{width: 40%;}
    .agentlist .trailItem p{font-size: 11px !important;}
    .agentlist .trailItem .date{width: 100px; font-size: 13px;}
}







/* agent form*/

.newagentform{
    display: none; position: fixed;
    align-items: center; justify-content: center;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(0, 0, 0, 0.664);
    z-index: 101;
}
.newagentformToggle{
    display: flex;
}
.newagentform .agentformdiv{
    display: flex; flex-direction: column;
    width: 80%; height: auto; max-height: 90%;
    overflow-y: scroll;
    border-radius: 10px;
    background-color: white;
}

.newagentformtitle{
    display: flex; flex-direction: row;
    align-items: center; margin-bottom: 10px;
}
.newagentformtitle img{ height: 40px; padding-right: 10px; }
.newagentformtitle h3{ margin: 0; }

/* form area */
.agentformdiv form{
    padding:28px 32px; display:flex;  flex-direction:column; 
}
.agentformdiv form label{ margin:10px 0px; }

.agentformdiv form input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="date"], input[type="url"], select, textarea{
    width:100%; padding:12px 14px; border-radius: 8px; height: 45px;
    border:1px solid #c4c4c4; background:linear-gradient(180deg, #ffffff, #fbfeff);
    outline:none; font-size:14px; color:#0f172a; transition:box-shadow .15s, border-color .15s;
}
.agentformdiv .phoneinputdiv{
    display: flex; flex-direction: row;
}
.agentformdiv .phoneinputdiv select {
    width: 65px; min-width: 65px; padding: 0px 10px; margin-right: 20px; font-weight: bold;
    background-color: rgb(215, 215, 215) !important;
    appearance: none;          /* Remove default arrow */
    -webkit-appearance: none;  /* Safari */
    -moz-appearance: none;
    outline: none;
    cursor: pointer;
}
.agentformdiv form input:focus, textarea:focus{ 
    box-shadow:0 4px 18px rgba(14, 14, 165, 0.12); border-color:#0e5ca599
}

.agentformdiv form textarea{
    min-height:110px; resize:vertical
}
.agentformdiv form .small{font-size:12px; color:gray}

.agentformdiv form .actions{display:flex; flex-direction: row; align-items:center; margin-top: 20px;}
.agentformdiv form .actions .btn{
    padding: 10px 20px; margin-right: 20px;
    background-color: var(--mainColor); color: white;
}
.agentformdiv form .actions .btn:hover{
    background-color: var(--mainGreen); transition: 200ms;
}
.agentformdiv form .actions .btn:nth-child(2){
    padding: 10px 20px; margin-right: 20px;
    background-color: rgba(177, 2, 2, 0.21); color: red;
}
.agentformdiv form .actions .btn:nth-child(2):hover{
    transition: 200ms; background-color: red; color: white;
}
.agentformdiv form .actions .btn:nth-child(3){
    padding: 10px 20px; margin-right: 20px;
    background-color: red; color: white;
}
.agentformdiv form .field{display:flex; flex-direction:column}

    /* responsive */
@media (max-width:900px){
   .agentformdiv form{padding:15px}
   .newagentform .agentformdiv{
        display: flex; flex-direction: column;
        width: 90%; height: auto; max-height: 90%;
        overflow-y: scroll;
        border-radius: 10px;
        background-color: white;
    }
}

@media (max-width: 764px) {
    .agentformdiv form .actions{
        display: flex; flex-wrap: wrap;
    }
     .agentformdiv form .actions .btn{
        margin-bottom: 10px;
     }
}

@media (max-width:420px){
    .agentformdiv form input, select, textarea{padding:10px}
}

/* subtle helpers */
.agentformdiv form .hint{font-size:13px; color:rgba(15,23,42,0.6)}



/* vehicles */

.vehiclestatus{
    background-color: rgb(5, 180, 5); color: white;
    width: 100px !important; 
    text-align: center; border-radius: 3px;
}
.notactive {
    background-color: red !important;
}
.vehiclestatustitle{
    width: 100px !important; 
    text-align: center; border-radius: 3px;
}


/* vehicle form */


.newvehicleform{
    display: none; position: fixed;
    align-items: center; justify-content: center;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(0, 0, 0, 0.664);
    z-index: 101;
}
.newvehicleformToggle{
    display: flex;
}
.newvehicleform .vehicleformdiv{
    display: flex; flex-direction: column;
    width: 80%; height: auto; max-height: 90%;
    overflow-y: scroll;
    border-radius: 10px;
    background-color: white;
}

/* edit form */
.editvehicleform{
    display: none; position: fixed;
    align-items: center; justify-content: center;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(0, 0, 0, 0.664);
    z-index: 101;
}
.editvehicleformToggle{
    display: flex;
}
.editvehicleform .editvehicleformdiv{
    display: flex; flex-direction: column;
    width: 80%; height: auto; max-height: 90%;
    overflow-y: scroll;
    border-radius: 10px;
    background-color: white;
}

.newvehicleformtitle{
    display: flex; flex-direction: row;
    align-items: center; margin-bottom: 10px;
}
.newvehicleformtitle img{ height: 40px;  padding-right: 10px; }
.newvehicleformtitle h3{ margin: 0;}

/* form area */
.vehicleformdiv form{
    padding:28px 32px; display:flex;  flex-direction:column; 
}
.vehicleformdiv form label{ margin:10px 0px; }

.vehicleformdiv form input[type="text"],  select{
    width:100%; padding:12px 14px; border-radius: 8px; height: 45px;
    border:1px solid #c4c4c4; background:linear-gradient(180deg, #ffffff, #fbfeff);
    outline:none; font-size:14px; color:#0f172a; transition:box-shadow .15s, border-color .15s;
}
.vehicleformdiv .phoneinputdiv{
    display: flex; flex-direction: row;
}

.vehicleformdiv form .actions{display:flex; align-items:center; margin-top: 20px;}
.vehicleformdiv form .actions .btn{
    padding: 10px 20px; margin-right: 20px;
    background-color: var(--mainColor); color: white;
}
.vehicleformdiv form .actions .btn:hover{
    background-color: var(--mainGreen); transition: 200ms;
}
.vehicleformdiv form .actions .btn:nth-child(2){
    padding: 10px 20px; margin-right: 20px;
    background-color: rgba(177, 2, 2, 0.21); color: red;
}
.vehicleformdiv form .actions .btn:nth-child(2):hover{
    transition: 200ms; background-color: red; color: white;
}
.vehicleformdiv form .actions .btn:nth-child(3){
    padding: 10px 20px; margin-right: 20px;
    background-color: red; color: white;
}
.vehicleformdiv form .field{display:flex; flex-direction:column}

    /* responsive */
@media (max-width:900px){
   .vehicleformdiv form{padding:15px}
   .newvehicleform .vehicleformdiv{
        display: flex; flex-direction: column;
        width: 90%; height: auto; max-height: 90%;
        overflow-y: scroll;
        border-radius: 10px;
        background-color: white;
    }
}

@media (max-width: 764px) {
    .vehicleformdiv form .actions{
        display: flex; flex-wrap: wrap;
    }
     .vehicleformdiv form .actions .btn{
        margin-bottom: 10px;
     }
}

@media (max-width:420px){
    .vehicleformdiv form input, select, textarea{padding:10px}
}

/* subtle helpers */
.vehicleformdiv form .hint{font-size:13px; color:rgba(15,23,42,0.6)}






/* bookings */

.centerdiv .bookingsboard {
    display: flex; flex-direction: row; justify-content: space-between;
    padding-top: 15px;
}
.centerdiv .bookingsboard .bookingsbtns button{
    margin-left: 20px; padding: 10px 20px;
    border-radius: 6px; border: 1px solid gray;
    background-color: green;
}
.bookingsboard .bookingsbtns button:nth-child(1) {
    background-color: rgb(8, 175, 50); color: white;  border: none;
}
.bookingsboard .bookingsbtns button:nth-child(2) {
    background-color: rgb(10, 153, 196); color: white; border: none;
}
.bookingsboard .bookingsbtns button:nth-child(3) {
    background-color: black; color: white; border: none;
}
.bookingsboard .bookingsbtns button:hover{
    background-color: var(--mainGreen); transition: 200ms;
}
@media (max-width:600px){
    .centerdiv .bookingsboard {
        flex-direction: column; 
    }
    .centerdiv .bookingsboard .bookingsbtns button {
        margin: 5px 0px; padding: 10px 10px;
    }
}


.bookingsearch {
    display: flex; flex-direction: row;
    justify-content: space-between;
}
.searchfield{
    display: flex; flex-direction: row;
    align-items: center;  margin-bottom: 13px;
}
.searchfield input{
    height: 45px; width: 100%; border-radius: 6px; outline: none;
    border: 1px solid rgba(128, 128, 128, 0.463); padding: 0px 10px;
}
.searchfield button {
    height: 45px; width: 100%; border-radius: 6px;
    border: none;
    background-color: var(--mainColor); color: white;
}
.searchfield button i{padding-right: 15px; color: white;}
.searchfield button:hover{background-color: var(--mainGreen); transition: 200ms;}
.searchfield p{
    margin-right: 10px;
}
.searchfield input:focus, textarea:focus{ 
    box-shadow:0 4px 18px rgba(14, 14, 165, 0.12); border-color:#0e5ca599;
    border: 1px solid #0e5ca599;
}

.centerdiv .bookings {
    display: flex; flex-direction: column;
    background-color: white;
    border-radius: 10px;
    width: 100%; padding: 12px;
    margin-top: 20px;
}

.centerdiv .bookinglist {
    display: flex; flex-direction: column;
    padding: 15px 0px;
}
.bookinglist .bookinglistitem {
    display: flex; flex-direction: row; justify-content: space-between; align-items: center;
    cursor: pointer;
    padding: 6px 10px 8px 5px; border-radius: 0px; margin-bottom: 4px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.243);
}
.bookinglist .bookinglistitemtitle {
    display: flex; flex-direction: row; justify-content: space-between;
    padding: 5px 10px 5px 5px; border-radius: 0px; margin-bottom: 4px;
    background-color: var(--tableTop);
    color: black;
}
.bookinglist .bookinglistitemtitle div{ width: 21%; }
.bookinglist .bookinglistitem div, .bookinglist .bookinglistitemtitle div{ width: 24%;}
.bookinglist .bookinglistitem .fare, .bookinglist .bookinglistitemtitle .fare{
    display: flex; justify-content: end;
    width: 100px; 
}
.bookinglist .bookinglistitem:hover{background-color: var(--tableTop); transition: 200ms;}
.bookinglistitem .date, .bookinglistitemtitle .date {  width: 100px !important;}
.bookinglist .bookinglistitem .fromto, .bookinglist .bookinglistitemtitle .fromto{ width: 28%;}

@media (max-width: 1100px) {
    .bookinglistitem .agent, .bookinglistitemtitle .agent {
        display: none; 
    }
}
@media (max-width: 1100px) and (min-width: 764px) {
    .bookinglistitem .date, .bookinglistitemtitle .date { display: none;  }
    .bookinglist .bookinglistitem div, .bookinglist .bookinglistitemtitle div{ width: 38% !important;}
    .bookinglist .bookinglistitem .fare, .bookinglist .bookinglistitemtitle .fare{
    display: flex; justify-content: end;
    width: 100px !important; 
}
}
@media (max-width: 764px) {
    .centerdiv .bookings { padding: 10px; }
    .bookinglistitem .date, .bookinglistitemtitle .date { display: none;  }
    .bookinglist .bookinglistitem .ticketId, .bookinglist .bookinglistitemtitle .ticketId{ width: 115px;}
    .bookinglist .bookinglistitem .fare, .bookinglist .bookinglistitemtitle .fare{ width: 55px;}
    .bookinglist .bookinglistitem .fromto, .bookinglist .bookinglistitemtitle .fromto{ width: 40%;}
    .bookinglist .bookinglistitem p, .bookinglist .bookinglistitemtitle p{ font-size: 12px;}
}


.autocomplete-container {
    position: relative;
}
.bookings .autocomplete-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    background: #fff;
    max-height: 200px;
    overflow-y: auto; border-radius: 6px;
    z-index: 1000;
}
.bookings .autocomplete-item {
    padding: 8px; border-radius: 6px;
    cursor: pointer;
}
.bookings .autocomplete-item:hover {
    background: var(--mainColor); color: white;
}

.bookings .agentsList {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    border: 1px solid #ccc;
    background: #fff;
    max-height: 200px; padding: 5px;
    overflow-y: auto; border-radius: 6px;
    z-index: 1000;
}
.bookings .agentsList li{padding: 4px 4px; width: 100%; cursor: pointer;}
.bookings .agentsList li:hover{background-color: var(--mainColor); color: white;}
.companiesList{
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    border: 1px solid #ccc;
    background: #fff;
    max-height: 200px; padding: 5px;
    overflow-y: auto; border-radius: 6px;
    z-index: 1000;
}
.companiesList li{padding: 4px 4px; width: 100%; cursor: pointer;}
.companiesList li span{display: none;}
.companiesList li:hover{background-color: var(--mainColor); color: white;}



.viewticket {
    display: none; flex-direction: column; justify-content: center;
    align-items: center; position: fixed;
    z-index: 102; top: 0; bottom: 0; right: 0; left: 0;
    background-color: rgba(0, 0, 0, 0.495);
}
.viewticket .ticketdisplay{
    width: 352px; max-height: 93%; height: auto;
    overflow-y: scroll;
    background-color: white;
    display: flex; flex-direction: column;
    border-radius: 4px;
    padding: 15px 10px;
}
.viewticket .ticketdisplay h3{
    text-align: center;  margin: 0px;
    font-weight: bold;
}
.viewticket .ticketdisplay p{
    font-size: 14px; font-weight: 300;
}
.viewticket .ticketdisplay .ticketsinglerow{
    display: flex; flex-direction: column;
    align-items: center; font-size: 17px; padding-bottom: 17px;
}
.viewticket .ticketdisplay .ticketrow{
    display: flex; flex-direction: row;
    align-items: center; justify-content: space-between;
}
.viewticket .ticketbuttons{
    display: flex; flex-direction: row;
    justify-content: space-between; padding: 0px 0px;
}
.viewticket .ticketbuttons button:nth-child(1) {
    background-color: black; padding: 10px 20px;
    width: 45%; color: white;
}
.viewticket .ticketbuttons button:nth-child(2) {
    background-color: rgba(255, 0, 0, 0.198); padding: 10px 20px;
    width: 48%; color: red;
}
.viewticket .ticketbuttons button:nth-child(2):hover{
    background-color: red; color: white; transition: 200ms;
}








/* set new password */
.setpasswordcontainer {
    display: flex; flex-direction: column;
    justify-content: center; height: 100vh;
    align-items: center;
    width: 100vw;
}
.setpasswordcontainer .form-container {
  width: 440px;
  background-color: #fff;
  padding: 32px 24px;
  font-size: 14px;
  font-family: inherit;
  color: #212121;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.084), 0px 2px 3px rgba(0, 0, 0, 0.168);
}

.setpasswordcontainer .form-container button:active {
  scale: 0.95;
}

.setpasswordcontainer .form-container .logo-container {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.setpasswordcontainer .form-container .form {
  display: flex;
  flex-direction: column;
}

.setpasswordcontainer .form-container .form-group {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 2px;
}

.setpasswordcontainer .form-container .form-group label {
  display: block;
  margin-bottom: 5px;
}

.setpasswordcontainer .form-container .form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  font-family: inherit;
  border: 1px solid #ccc;
}

.setpasswordcontainer .form-container .form-group input::placeholder {
  opacity: 0.5;
}

.setpasswordcontainer .form-container .form-group input:focus {
  outline: none;
  border-color: #1778f2;
}

.setpasswordcontainer .form-container .form-submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  color: #fff;
  background-color: #212121;
  border: none;
  width: 100%;
  padding: 12px 16px;
  font-size: inherit;
  gap: 8px;
  margin: 12px 0;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084), 0px 2px 3px rgba(0, 0, 0, 0.168);
}

.setpasswordcontainer .form-container .form-submit-btn:hover {
  background-color: var(--mainColor); transition: 200ms;
}

.setpasswordcontainer .form-container .link {
  color: #1778f2;
  text-decoration: none;
}
.setpasswordcontainer .form-container .logo-container i{color: black;}

.setpasswordcontainer .form-container .signup-link { align-self: center;  font-weight: 500; }

.setpasswordcontainer .form-container .signup-link .link { font-weight: 400; }

.setpasswordcontainer .form-container .link:hover {  text-decoration: underline; }
.setpasswordcontainer .form-container .form-group .passwordinput{display: flex; position: relative;}
.setpasswordcontainer .form-container .form-group i{
    position: absolute;
    display: flex; bottom: 10px; right: 12px; height: 25px; width: 25px;
    justify-content: center; align-items: center; font-size: 20px;
}

@media (max-width: 764px) {
    .setpasswordcontainer .form-container{
        width: 95%;
    }
}

.setpasswordcontainer .form-container .formerror{
    display: flex; flex-direction: row; align-items: center;
    background-color: rgba(255, 0, 0, 0.106);
    height: 50px; border-radius: 8px;
}
.setpasswordcontainer .form-container .formerror div{
    width: 6px; height: 50px; background-color: red;
    border-radius: 8px 0px 0px 8px; margin-right: 10px;
}
.setpasswordcontainer .form-container .formerror p{
    color: red;
}
.setpasswordcontainer .form-container .logo-container p {
    font-size: 15px; font-weight: 400; color: gray; padding-top: 10px;
}
.setpasswordcontainer .form-container .logo-container img{
    height: 30px; border-radius: 5px;
}




/* loader */
.loadingDiv {
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; background-color: rgb(235, 235, 235);
    position: fixed; top: 0; bottom: 0; left: 0; right: 0;
    z-index: 10001;
}
.loadingDiv .loader {
 width: 60px;
 height: 60px;
}

.loadingDiv .loader::before {
 content: "";
 box-sizing: border-box;
 position: absolute;
 width: 60px;
 height: 60px;
 border-radius: 50%;
 border-top: 2px solid var(--mainColor);
 border-right: 2px solid transparent;
 animation: spinner8217 0.8s linear infinite;
}

@keyframes spinner8217 {
 to {
  transform: rotate(360deg);
 }
}






/* message info*/
.messageinfo{
    display: flex; flex-direction: column;
    position: fixed;
    justify-content: center; align-items: center;
    background-color: rgba(0, 0, 0, 0.619); 
    top: 0; bottom: 0; right: 0; left: 0;
    z-index: 1002;
}
.messageinfo .messagecard {
  display: flex;
  align-items: center; justify-content: center;
  position: relative;
  text-align: center;
  border-radius: 0.5rem;
  width: 290px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background-color: #fff;
}



.messageinfo .messageheader {padding: 1.25rem 1rem 1rem 1rem;}

.messageinfo .image {
  display: flex;  margin-left: auto;  margin-right: auto;
  background-color: #e2feee00;  flex-shrink: 0;
  justify-content: center;  align-items: center;
  width: 3rem;  height: 3rem;
  border-radius: 9999px;
  animation: animate .6s linear alternate-reverse infinite;  transition: .6s ease;
}
.messageinfo .image img{height: 3rem;}

.messageinfo .image svg {
  color: #0afa2a;  width: 2rem;  height: 2rem;
}

.messageinfo .messagecontent {
  margin-top: 0.75rem;  text-align: center;
}

.messageinfo .title {
  color: #066e29;
  font-size: 1rem;  font-weight: 600;  line-height: 1.5rem;
}

.messageinfo .message {
  margin-top: 0.5rem;  color: #595b5f;
  font-size: 0.875rem;  line-height: 1.25rem;
}

.messageinfo .messageactions {  margin: 0.75rem 1rem;}

.messageinfo .history {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background-color: #1aa06d;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.messageinfo .track {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  color: #242525;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #D1D5DB;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@keyframes animate {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.09);
  }
}



































/* new styles ********************************************* */


/* otp form*/

.verificationOtp{
    display: flex; flex-direction: column; position: fixed;
    top: 0; bottom: 0; right: 0; left: 0;
    justify-content: center; align-items: center;
    z-index: 1000;
}
.verificationOtp .otpformdiv{
    display: flex; flex-direction: column;
    background-color: white; padding: 10px;
    width: 400px; height: auto; border-radius: 10px;
}
.verificationOtp .otpformdiv .info{
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
}
.verificationOtp .otpformdiv .info img{height: 30px; width: 30px; margin-bottom: 20px;}
.verificationOtp .otpformdiv .info .title{font-size: 23px; font-weight: bold; padding: 10px 0px;}
.verificationOtp .otpformdiv .info .description{color: rgb(91, 91, 91); line-height: 20px; padding: 0px 0px 20px 0px; }
.verificationOtp .otpformdiv .input-fields input{
    font-size: 30px; font-weight: bold; height: 50px; text-align: center;
}
.verificationOtp .otpformdiv .action-btns button{
    background-color: var(--mainColor); height: 50px;
    width: 100%; margin: 10px 0px 10px 0px; color: white;
}
.verificationOtp .otpformdiv .action-btns button:hover{background-color: var(--mainGreen); transition: 200ms;}
.verificationOtp .otpformdiv .action-btns i{color: white; padding-right: 20px;}


@media (max-width: 764px) {
    .verificationOtp .otpformdiv{width: 90%;}
}

.verificationOtp .formerror{
    display: flex; flex-direction: row; align-items: center;
    background-color: rgba(255, 0, 0, 0.106);
    height: 50px; border-radius: 8px;
}
.verificationOtp .formerror div{
    width: 6px; height: 50px; background-color: red;
    border-radius: 8px 0px 0px 8px; margin-right: 10px;
}
.verificationOtp .formerror p{
    color: red; line-height: 20px;
}
.verificationOtp .otp-link { display: flex; justify-content: center; align-self: center;  font-weight: 500; }
.verificationOtp .otp-link .link { font-weight: 400; color: var(--mainColor); padding-left: 10px;}
.verificationOtp .otp-link .link:hover {  text-decoration: underline; }


.passcodeVerify .verificationOtp .action-btns .cancel{
    background-color: rgba(255, 0, 0, 0.245) !important; color: red;
}
.passcodeVerify .verificationOtp .action-btns .cancel:hover{
    background-color: red !important; color: white; transition: 200ms;
}
.agentformdiv .passcodeVerify{
    visibility: hidden;
}







