@import url('https://fonts.googleapis.com/css2?family=Montserrat: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=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&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&family=Tai+Heritage+Pro:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

:root {
    --blue: #494949;
    --white: #fff;
    --gray: #f5f5f5;
    --black1: #000;
    --black2: #999;
}

body {
    min-height: 100vh;
    overflow-x: auto;
}

.container-main {
    position: relative;
    width: 100%;
}

.navigation {
    position: fixed;
    width: 250px;
    height: 100%;
    background-color: #595959;
    /* border-bottom: 1px solid #c7c4c4; */
    transition: 0.5s;
    overflow: hidden;
}

.navigation.active {
    width: 70px;
}

.navigation ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.navigation ul li {
    position: relative;
    width: 100%;
    list-style: none;
    /* border-top-left-radius: 30px;
    border-bottom-left-radius: 30px; */
}

.navigation ul li:hover,
.navigation ul li .hovered {
    background-color: #797979;
}

.navigation ul li:nth-child(1) {
    padding-bottom: 10px;
    pointer-events: none;
    background-color: #494949;
}

.navigation ul li a {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    text-decoration: none;
    color: var(--white);
    border-bottom: 1px solid #747474;
}

.navigation ul li:hover a,
.navigation ul li .hovered a {
    color: var(--white);
}

.navigation ul li a .icon {
    position: relative;
    display: block;
    min-width: 50px;
    height: 50px;
    line-height: 60px;
    text-align: center;
}

.navigation ul li a .icon ion-icon {
    font-size: 1.3em;
}

.navigation ul li a .title {
    position: relative;
    display: block;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
    text-align: start;
    white-space: nowrap;
}

.main {
    position: absolute;
    width: calc(100% - 250px);
    left: 250px;
    min-height: 100vh;
    background-color: var(--white);
    transition: 0.5s;
    overflow-x: hidden;
}

.main.active {
    width: calc(100% - 60px);
    left: 60px;
}

.topbar {
    width: calc(100% - 250px);
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: fixed;
    z-index: 1;
    background-color: white;
    left: 250px;
    transition: 0.5s;
}

.topbar.active {
    width: calc(100% - 60px);
    left: 60px;
}

.toggle {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    cursor: pointer;
}

.search {
    position: relative;
    width: 350px;
    margin: 0 10px;
}

.search label {
    position: relative;
    width: 100%;
}

.search label input {
    width: 100%;
    /* height: 40px; */
    /* border-radius: 40px; */
    padding: 5px 20px 5px 5px;
    outline: none;
    border-bottom: 1px solid var(--black2);
    border-top: 0;
    border-left: 0;
    border-right: 0;
    font-size: 0.9em;
}

.search label ion-icon {
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 1.2em;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.user {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.user img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    padding: 20px;
    margin-top: 45px;
}

#dropdownMenuButton:focus {
    outline: 0;
}

#dropdownMenuButton ion-icon {
    font-size: 2.5em;
    opacity: 0.7;
    padding-top: 5px;
    cursor: pointer;
}

.dropdown-menu {
    margin-left: -120px !important;
    border-radius: 0 !important;
    margin-top: 5px !important;
    text-align: center !important;
}

.dropdown-item {
    border-bottom: 1px solid #dfd8d8 !important;
    font-size: 0.9em;
}

.dropdown-item:last-child {
    border-bottom: 0 !important;
}

.gpit-p {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 20px;
    font-size: 13px;
    color: #fff;
    font-weight: 100;
}

.gpit-p a {
    color: #fff;
    font-weight: 500;
}

.gpit-p.remove {
    display: none;
}


.top-head {
    text-align: center;
    margin-top: -30px;
}

.main-logo {
    float: right;
    padding-top: 15px;
}

.top-head h2 {
    color: #008000;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: -10px;
}

.top-head h1 {
    color: #008000;
    font-size: 4rem;
    letter-spacing: 28px;
    padding-left: 24px;
}

.model {
    padding-bottom: 20px;
}

.model h3 {
    font-size: 1.2rem;
    text-align: center;
    /* font-weight: 300; */
    padding-bottom: 10px;
    color: red;
}

.vehicle-model {
    border: 0;
    padding: 15px 10px;
    letter-spacing: 5px;
    font-weight: 400;
    width: 100%;
}

.vehicle-model.active {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    font-size: 1.3rem;
    font-weight: 500;
}

.letter {
    background-color: #70d6ff;
}

.number {
    background-color: #ff70a6;
}

.sinhala {
    background-color: #ffd670;
}

.chassy {
    background-color: #55d6c2;
}

.chassy-input {
    width: auto;
}

.form-control-field {
    padding-top: 4rem;
    text-align: center;
}

.form-control-field input {
    outline: 0;
    padding: 0 10px 0;
    font-size: 3rem;
    background-color: transparent;
    border: 1px solid #f9dde2;
    text-align: center;
    color: #444;
    font-weight: 100;
}

.form-control-field h3 {
    font-size: 1.2rem;
    text-align: center;
    font-weight: 300;
    padding-bottom: 10px;
}

.letter-input {
    display: flex;
    justify-content: center;
}

.text-no {
    width: 8rem;
    text-transform: uppercase;
}

.number-no {
    width: 10rem;
}

.line {
    width: 15px;
    height: 4px;
    background-color: gray;
    margin: 35px 10px;
}

.submit-btn {
    /* float: right; */
    border: 0;
    background-color: #008000;
    color: #fff;
    display: none;
    padding: 3px 15px;
    font-size: 1.5rem;
    font-weight: 400;
    height: 50px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -53px;
    left: 13px;
}

.reset-btn {
    /* float: right; */
    border: 0 !important;
    background-color: transparent !important;
    color: #008000;
    display: none;
    padding: 3px 9px;
    font-size: 1.5rem;
    font-weight: 400;
    height: 50px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -53px;
    right: 13px;
    width: 30%;
}

@keyframes buttonm {
    0% {
        color: #eee;
    }

    25% {
        color: #aaa;
    }

    50% {
        color: #666;
    }

    100% {
        color: #008000;
    }
}

.submit-btn i,
.submit-btn1 i {
    font-size: 2rem;
    padding-left: 10px;
}

.submit-btn1 {
    float: right;
    margin-bottom: 1rem;
    border: 0;
    background-color: #008000;
    color: #fff;
    margin-top: 3rem;
    display: flex;
    padding: 3px 15px;
    font-size: 1.5rem;
    font-weight: 300;
    /* margin-right: 40px; */
    height: 50px;
    /* animation-name: buttonm;
    animation-duration: 30s; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 7%;
    bottom: 5%;
}

.sri {
    font-size: 1.5rem;
    padding: 15px;
    color: gray;
}

.vehicle-no {
    text-align: left;
    font-weight: 300;
    font-size: 2rem;
}

.customer-info input {
    outline: 0;
    padding: 5px 10px;
    font-size: 0.9rem;
    background-color: transparent;
    border: 1px solid #f9dde2;
    color: #777;
    margin-top: 10px;
    width: 90%;
    font-weight: 300;
}


.emoji {
    padding-top: 3rem;
    justify-content: center;
    display: flex;
}

.emoji img {
    cursor: pointer;
    width: 70%;
}

#emoji-click.active {
    -webkit-transform: scale(2);
    transform: scale(2);
    cursor: zoom-out;
}

.back {
    float: left;
    margin-bottom: 1rem;
    border: 0;
    background-color: #3c9f9a;
    color: #fff;
    padding: 6px 15px;
    font-size: 1.5rem;
    margin-top: 3rem;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 7%;
    bottom: 5%;
}

.back i {
    font-size: 2rem;
    padding-right: 10px;
}

.improve {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #393939;
    letter-spacing: 2px;
    margin-top: 2rem;
}

.improve-btn {
    border: 0;
    padding: 20px 10px;
    letter-spacing: 5px;
    font-weight: 600;
    width: 100%;
    color: #fff;
    font-size: 1.3rem;
    margin-top: 5rem;
    position: relative;
    text-align: left;
}

.improve-btn input {
    position: absolute;
    right: 5px;
    top: 5px;
    outline: 0;
    box-shadow: none;
    cursor: pointer;
}

.improve-btn ion-icon {
    position: absolute;
    right: 8px;
    color: gray;
    top: 38px;
    font-size: 2rem;
}

.service-btn {
    background-color: #ff6766;
}

.customer-btn {
    background-color: #0e7d76;
}

.time-btn {
    background-color: #ff9002;
}

.rate {
    text-align: center;
    font-weight: 300;
    font-size: 2rem;
}

.num-boxs {
    display: flex;
    gap: 5rem;
    justify-content: center;
    margin-top: 5rem;
}

.num-boxs-head {
    font-weight: 400;
    font-size: 1.3rem;
    margin-top: 5rem;
    text-align: right;
    text-transform: capitalize;
}

.num-box {
    width: 70px;
    height: 70px;
    /* background-color: #999; */

    cursor: pointer;
    background-image: url("/src/img/strn.png");
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    display: grid;
}

.num-box p {
    padding: 9px 19px;
    color: #fff;
    font-size: 1.4rem;
    align-content: center;
    margin-top: 18%;
    margin: auto;
}

.rate-value {
    display: flex;
    justify-content: space-between;
}

.rate-value p {
    font-size: 0.85rem;
    padding-top: 10px;
}

.done-btn {
    border: 0;
    background-color: #007aff;
    color: #fff;
    padding: 6px 15px;
    float: right;
    margin-top: 3rem;
    margin-right: 5rem;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 8%;
    right: 4%;
}

.done-btn ion-icon {
    font-size: 1.5rem;
    padding-right: 10px;
}

.done-btn span {
    display: inline-block;
}


.login-main {
    position: relative;
}

.login-sec {
    display: table;
    height: 100%;
    margin: auto;
    width: 400px;
}

.main-card {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.main-card img {
    padding-bottom: 20px;
    margin-top: -50px;
}

.card {
    border-radius: 0;
    border: 1px solid #dddfe2;
}

.login-form {
    text-align: center;
    padding: 20px;
}

.login-form h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    /* padding-top: 15px; */
    color: #595959;
}

.user-sec {
    display: flex;
}

.user-sec span {
    padding-top: 15px;
    padding-right: 10px;
    text-transform: capitalize;
    font-size: 1.5rem;
    font-weight: 400;
}

.email-input {
    display: grid;
    text-align: left;
    padding-top: 25px;
}

.email-input label {
    font-size: 1.4rem;
    font-weight: 500;
}

.email-input input {
    border: 0;
    border-bottom: 1px solid #dddfe2;
    outline: 0;
}

.login-btn {
    padding: 30px 0 10px;
}

.login-btn button {
    width: 100%;
    border: 0;
    background-color: #008000;
    padding: 5px 0;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0.8;
    text-decoration: none;
}

.gpit {
    position: absolute;
    bottom: 0;
    right: 50%;
    font-size: 13px;
    transform: translate(50%);
}

.card-header {
    display: flex;
    padding-bottom: 10px;
    border-bottom: none !important;
    padding: 0.75rem 0 !important;
    background-color: transparent !important;
    margin-bottom: 10px !important;
}

.card-header h4 {
    padding: 10px 0 0 10px;
    font-size: 16px;
    text-transform: capitalize;
}

.main-icon {
    width: 40px;
    height: 40px;
    background-color: #e91e63;
    text-align: center;
    padding: 10px 0;
    border-radius: 3px;
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(233, 30, 99, 0.4);
}

.main-icon ion-icon {
    color: #fff;
    font-size: 20px;
}

.tbl-div {
    margin-top: 25px;
}

.select-customer {
    margin: 25px 0;
    width: 90%;
    float: left;
}

.selectize-input {
    border: 0 !important;
    outline: 0 !important;
    border-bottom: 1px solid #dddfe2 !important;
    box-shadow: none !important;
}

.main-con {
    font-weight: 600;
    min-width: 150px;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    border: 1px solid #ddd !important;
}

iframe {
    width: 100%;
    height: 74vh;
}

#tick {
    width: 20%;
    margin: auto;
    align-content: center;
    display: grid;
}

input.ratecheckbox {
    width: 40px;
    height: 40px;
    pointer-events: none;
    margin-top: 28px;
}

.embed-container {
    position: relative;
    padding-bottom: 70.75%;
    height: 0;
    overflow: hidden;
}

.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.second-form {
    width: 100%;
    margin-top: -130px;
    /* height: 100vh; */
    /* overflow-x: hidden; */
}

.rate-value {
    display: flex;
    justify-content: space-between;
}

.endmessage {
    position: relative;
    z-index: 1000;
    margin-top: 10%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

.endmessage h1 {
    text-transform: uppercase;
    color: #008000;
}

.endmessage h2 {
    font-weight: 300;
    color: #008000;
    text-transform: capitalize;
}

.sessionoutalert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: 0px;
    padding: 5px;
    margin: 50;
    width: 400px;
    height: 200px;
}

.timeoutcon {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    text-align: center;
    padding-top: 4rem;
}

.timeoutcon p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #222;
    text-align: center;
}

.timeoutcon form {
    text-align: right;
    padding-right: 4rem;
}

.timeoutcon form button {
    border: 0;
    background-color: transparent;
    padding: 5px 15px 1px;
    color: #008000;
    text-transform: uppercase;
}

.search_vehicle_no {
    height: 50px;
    width: 300px;
    margin: auto;
    border: 1px solid #f9dde2;
    cursor: text;
}

.input-numeric-container {
    background: #fff;
    padding: 1em;
    margin: 1em auto;
    /* max-width: 350px; */
}

.input-numeric {
    width: 15rem;
    padding: 0.2em;
    margin-bottom: 0.8em;
    box-sizing: border-box;
    border: 1px solid silver;
    outline-color: #4CAF50;
    text-align: center;
    /* margin: auto; */
    display: flex;
    outline: 0;
    color: #444;
    /* font-weight: 200; */
    padding: 0 10px 0;
    font-size: 2.6rem;
    letter-spacing: 2px;
    box-shadow: inset 0px 0px 15px 3px #d5cfcf;
}

.table-numeric {
    width: 100%;
    border-collapse: collapse;
}

.table-numeric td {
    vertical-align: top;
    text-align: center;
    width: 33.33333333333%;
    border: 0;
}

.table-numeric button {
    position: relative;
    cursor: pointer;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 1.4em 0.3em;
    font-size: 1em;
    border-radius: 0.1em;
    outline: none;
    user-select: none;
}

.table-numeric button:active {
    top: 2px;
}

.key {
    background: #fff;
    border: 2px solid #d8d6d6;
}

.key-del {
    background: #fff;
    border: 2px solid #d8d6d6;
    padding: 23px 6px 15px !important;
}

/* 
.key-del div{
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    background: gray;
    width: 40%;
} */

.key-clear {
    background: #fff;
    border: 2px solid #d8d6d6;
}

button[disabled] {
    opacity: 0.5;
    cursor: no-drop;
}

[data-numeric="hidden"] .table-numeric {
    display: none;
}


.vehicle_no_search {
    /* border: 1px solid silver; */
    /* padding: 10px; */
    cursor: pointer;
    color: #aeabab;
    margin-top: 5px;
    font-weight: 300;
    letter-spacing: 5px;
    font-size: 2rem;
    text-transform: uppercase;
}

.input-main {
    display: flex;
    margin-top: 5px;
    text-align: center;
    justify-content: center;
}

.material-symbols-outlined {
    font-weight: 200;

}

.vehicle_search_list {
    margin-top: -16.1rem;
    text-align: right;
    display: none;
}

.search_list {
    text-align: center;
    padding-left: 25px;
    max-height: 230px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-top: -3rem;
}

.search_list::-webkit-scrollbar {
    width: 6px;
}

.search_list::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 3px;
}

.search_list::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.search_list {
    scrollbar-width: thin;
    scrollbar-color: #888 #f0f0f0;
    border-radius: 3px;
}

/* .search_list::-webkit-scrollbar-thumb {
    background-color: #888; 
    border-radius: 3px; 
} */

.search_list::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.vehicle_no_search div:hover {
    color: #595959;
}

.sec-con {
    position: relative;
}

.sec-con button {
    position: absolute;
    top: 15px;
    right: 168px;
}

.sec-con span {
    display: flex;
    justify-content: center;
    color: #444;
    margin-top: -20px;
    font-weight: 500;
    letter-spacing: 5px;
    font-size: 2rem;
    text-transform: uppercase;
}

.customer_details {
    font-size: .9rem;
    font-weight: 300;
}

.address {
    margin-top: -9px;
}

.cus_phone {
    font-size: 1rem;
    letter-spacing: 5.5px;
    font-weight: 500;
    margin-bottom: -3px;
}

.adviser {
    margin-top: -8px;
}

.adviser_name {
    font-weight: 400;
    padding-left: 2px;
}

.alert-warning {
    color: #664d03;
    background-color: transparent !important;
    border-color: transparent !important;
    /* text-align: center; */
    position: fixed;
    bottom: 0;
    left: 40%;
}

.search_list_div {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-top: -5px;
    max-height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.search_list_div div {
    letter-spacing: 3px;
    padding: 5px;
    cursor: pointer;
}

.search_list_div div:hover {
    font-weight: 600;
}

.cus_details {
    position: relative
}

.cus_details img {
    position: absolute;
    top: 45px;
    right: 0;
    cursor: pointer;
}

.cus_details_input {
    display: grid;
    padding-bottom: 15px;
}

.cus_details_input label {
    font-weight: 500;
}

.cus_details_input input,
.cus_details_input select {
    outline: 0;
    border: 0;
    border-bottom: 1px solid #c9c9c9;
    box-shadow: none;
}

.modal-open .modal-backdrop {
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
}

.cus_details_input select {
    margin: 15px 0;
    padding-bottom: 10px;
}

.vehicle-item {
    cursor: pointer;
    transition: opacity 0.3s;
}

.bold {
    font-weight: 500;
    opacity: 1;
    color: #777;
}

.faded {
    opacity: 0.5;
}

.title {
    font-weight: 400;
    font-size: 16px;
}

input {
    outline: 0;
}

/* Style the tab */
.tab {
    overflow: hidden;
    /* border: 1px solid #ccc; */
    background-color: #f1f1f1;
    width: 100%;
    margin-top: 10px;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    width: 33.33%;
    outline: 0;
    background-color: #ccc;
    text-transform: capitalize;
}

.tab button:focus {
    outline: 0;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #aaa;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    /* border: 1px solid #ccc; */
    border-top: none;
    width: 100%;
    margin-top: 20px;
}

.select-advisor {
    width: 91%;
    margin-top: 5px;
    padding: 5px 0;
}

.select-advisor:focus {
    outline: 0;
}


.chartbtn {
    text-align: center;
    padding: 5px;
    font-weight: 400;
    background-color: #dbdbdb;
}

#myChart {
    margin-top: 0px;
}

.select {
    background-color: transparent;
    width: max-content;
    width: 100%;
    outline: 0;
}


.filtercon {
    padding: 5px;
    background-color: white;
    width: max-content;
}

.filterdropdown {

    list-style-type: none;
}

.filteritems:hover {
    background-color: rgb(236, 236, 236);
}

.billing-cycle {
    width: 100%;
    height: 140px;
    padding: 10px 20px;
    color: #fff;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* border:1px solid gray; */
    /* border-radius: 10px; */
}

.card_icon {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 60px !important;
    font-weight: 300 !important;
}