@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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');
:root {
    --zk-bg-color: #fff;
    --zk-light-text: #1E293B;
    --zk-dark-text: #f3f3f3;
    --zk-desc-text: #63738A;
    --zk-text-gray: #94A3B8;
    --zk-text-disabled: #999999;

    --zk-primary-color: #2563EB;
    --zk-secondary-color: #363636;
    --zk-purple-color: #9C25EB;
    --zk-orange-color: #EBA625;
    --zk-green-color: #33ca1f;
    --zk-blue-color: #8CAFFD;
    --zk-red-color: #EF4444;
    --zk-lightgray-color: rgba(0,0,0,.1);
    
    --zk-navbar-left: #1F2937;
    --zk-navbar-text: #fff;
    --zk-navbar-line: #1E293B;

    --zk-primary-color-l: #c8dee6;
    --zk-secondary-color-l: #464646;


    --zk-danger-color: #d63832;
    --zk-success-color: #dcfcde;
    --zk-success-text: rgb(22 101 52);
    --zk-notification-color: #337fdb;
    --zk-alert-color: #e2c93a;

    --zk-font-family: "Inter", sans-serif;
    --zk-font-weight: 400;
    --zk-font-size: 12px;

    --zk-border-radius: 6px;
    --zk-default-border: solid 1px rgba(0,0,0,0.2);
    --zk-default-shadow: 2px 0 12px rgba(0,0,0,0.15);

    --zk-pm1: 6px;
    --zk-pm2: 8px;
    --zk-pm3: 12px;
    --zk-pm4: 24px;
    --zk-pm5: 32px;
}

body[data-theme="dark"] {
    
    --zk-bg-color: #202020;
    --zk-light-text: #e2e2e2;
    --zk-dark-text: #303030;
    --zk-desc-text: #7b828b;
    --zk-text-gray: #a9b0bb;
    --zk-text-disabled: #999999;

    background: linear-gradient(90deg, #2b2d30 10%, #3e3e3f 50%, #2b2d30 100%);
    
}

body[data-theme="dark"] .bd-text-white i {
    color: #e2e2e2;;
}

body[data-theme="dark"] .bd-hr-black {
    background-color: rgba(255,255,255,.2);
}

body[data-theme="dark"] .bd-modal-content {
    background: #3D3D3E;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
        
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    overflow: hidden;
    font-family: var(--zk-font-family) !important;
    font-weight: var(--zk-font-weight);
    font-size: var(--zk-font-size);
    color: var(--zk-light-text);
    background: linear-gradient(90deg,#E6F2FF 10%, #F8FAFC 50%, #E6F2FF 100%);
}

.mobile-app {
    display: flex;
    justify-content: center;
}

button {
    font-family: var(--zk-font-family);
}

.login_page {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(240, 240, 240);
    background: var(--zk-light-bg);
}

.login-logo {
    width: 100%;
    max-width: 332px;
    margin-bottom: 32px;
    text-align: center;
}

.login_container {
    width: auto;
    height: auto;
    background: rgba(255,255,255,0.8);
    border-radius: var(--zk-border-radius);
    border: var(--zk-default-border);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--zk-default-shadow);
    padding: 40px;
}

.login_logo {
    width: 200px;
    margin-bottom: var(--zk-pm3);
}

.login_logo img {
    width: 100%;
    height: auto;
}

.login_right_header {
    font-weight: 700;
    font-size: 1.4em;
    margin-bottom: var(--zk-pm4);
}

.login_form {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login_form_group {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: var(--zk-pm4);
    
}

.input_group {
    width: 100%;
    position: relative;
}

.input_group .input_icon {
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0 var(--zk-border-radius) var(--zk-border-radius) 0;
    border: solid 1px var(--zk-primary-color);
    background: var(--zk-primary-color);
    color: var(--zk-dark-text);
    height: 100%;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_form_group label {
    font-weight: 400;
    font-size: 0.9em;
}

input[type="text"], input[type="email"], input[type="password"],
input[type="date"], input[type="datetime"], select, input[type="number"],
textarea {
    box-sizing: border-box;
    border: var(--zk-default-border);
    border-radius: var(--zk-border-radius);
    width: 100%;
    height: 40px;
    padding: 0 10px;
    font-family: var(--zk-font-family);
    font-weight: 300;
    color: rgba(0,0,0,0.75);
    background: transparent;
    resize: none;
}

input[type="file"]::file-selector-button {
    font-family: var(--zk-font-family) !important;
    background: var(--zk-primary-color) !important;
    color: var(--zk-dark-text) !important;
    font-size: .85em !important;
    border-radius: 4px !important;
    width: 100px !important;
    height: 26px !important;
    font-weight: 400 !important;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    z-index: 2;
}

input[type="search"] {
    width: 350px !important;
}

input[type=file]::file-selector-button {
    box-sizing: border-box;
    height: 34px;
    padding: 6px 12px;
    border-radius: var(--zk-border-radius);
    font-family: var(--zk-font-family);
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 1px 0 12px rgba(0, 0, 0, 0.15);
    gap: 6px;
    background: var(--zk-primary-color);
    border: solid 1px var(--zk-primary-color);
    color: var(--zk-dark-text);
}

input[type=file]::file-selector-button:hover {
    opacity: .9;
}

input.login_input {
    padding-inline: 10px 42px;
}

input.login_input:focus {
    border-color: var(--zk-primary-color);
}

.login_form_submit {
    box-sizing: border-box;
    width: 100%;
}

.login_error_msg {
    font-size: 0.9em;
    margin-top: var(--zk-pm1);
    color: var(--zk-danger-color);
    height: 14px;
}

main.view {
    width: 100%;
    max-width: 600px;
    height: 100%;
}

.gp-1 {
    gap: 6px;
}

.gp-2 {
    gap: 12px;
}

.gp-3 {
    gap: 24px;
}

.fs-7 {
    font-size: .9rem !important;
}

.fs-8 {
    font-size: .8rem !important;
}

.fs-9 {
    font-size: .7rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

.hover-click {
    transition: all .1s ease-in-out;
}

.hover-click:hover {
    border-width: 10px !important;
}

.bd-btn {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    border-radius: var(--zk-border-radius);
    font-family: var(--zk-font-family);
    font-size: 1.2em;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 1px 0 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: .1s all ease-in-out;
}

.bd-btn:disabled {
    background: var(--zk-text-gray);
}

.bd-btn:hover {
    opacity: .9;
}

.bd-btn:disabled {
    opacity: 1;
}



.bd-btn-primary {
    background: linear-gradient(90deg, #2563EB 0%, #1D52C7 100% );
    color: #fff;

}

.bd-btn-secondary {
    background: var(--zk-secondary-color);;
    border: solid 1px var(--zk-secondary-color);
    color: #fff;
}

.bd-btn-secondary-outline {
    background: transparent;
    border: solid 1px var(--zk-secondary-color);
    color: var(--zk-secondary-color);
}

.bd-text-primary {
    color: var(--zk-primary-color);
}

.bd-text-secondary {
    color: var(--zk-secondary-color);
}

.bd-text-dark {
    color: var(--zk-light-text);
}

.bd-text-gray {
    color: var(--zk-desc-text);
}

.bd-text-white {
    color: var(--zk-dark-text);
}

.bd-text-white-always {
    color: #f3f3f3;
}

.bd-text-purple {
    color: var(--zk-purple-color);
}

.bd-text-orange {
    color: var(--zk-orange-color);
}

.bd-text-green {
    color: var(--zk-green-color);
}

.bd-text-red {
    color: var(--zk-red-color);
}

.bd-text-disabled {
    color: var(--zk-text-disabled);
}

.bd-bg-gray {
    background: var(--zk-desc-text);
}

.bd-bg-white {
    background: var(--zk-bg-color);
}

.bd-bg-primary {
    background: var(--zk-primary-color);
}

.bd-bg-green {
    background: var(--zk-green-color);
}

.bd-bg-purple {
    background: var(--zk-purple-color);
}

.bd-bg-orange {
    background: var(--zk-orange-color);
}

.bd-bg-blue {
    background: var(--zk-blue-color);
}

.bd-bg-red {
    background: var(--zk-red-color);
}

.bd-bg-disabled {
    background: var(--zk-lightgray-color);
}

.bd-bg-gradient {
    background: linear-gradient(90deg, #2563EB 0%, #1D52C7 100%);
}

.bd-shadow-main {
    box-shadow: 0 0 8px 1px rgba(0,0,0,.1)
}

.bd-border-transparent {
    border: solid 1px transparent
}

.bd-border-radius {
    border-radius: 8px;
}

.bd-border-circle {
    border-radius: 50%;
}

.bd-hr-white {
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,.5);
}

.bd-hr-black {
    height: 1px;
    width: 100%;
    background: rgba(0,0,0,.2);
}

.select-border:hover, .select-border:focus {
    box-shadow: 0 0 8px 1px rgba(37, 99, 235, .2);
    border: solid 1px var(--zk-primary-color);
    transition: all .1s ease-in-out;
}

.bd-border-bottom {
    border-bottom: solid 1px rgba(0, 0, 0, .15);
}

.bd-border-top {
    border-top: solid 1px rgba(0, 0, 0, .15);
}
.px-4 {
    padding: 0 1rem !important;
}

.px-4.mb-extra {
    padding-bottom: 154px !important;
}

.bd-upload-file {
    border: dashed 1px var(--zk-desc-text);
    border-radius: 8px;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.bd-hidden {
    display: none;
}

.bottom-navigation {
    width: 100%;
    background: var(--zk-bg-color);
    height: 72px;
    border-top: solid 1px rgba(0, 0, 0, .15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    bottom: 0;
    left: 0
}

#nav-footer > a.selected {
    color: var(--zk-primary-color);
}

.bd-route-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    width: max-content;
    padding: 5px 15px;
    border-radius: 8px;
}

.bd-route-badge-green {
    background: rgba(177, 255, 166, .4);
    color: var(--zk-green-color);
}

.bd-route-badge-gray {
    background: rgba(226, 232, 240, .4);
    color: var(--zk-desc-text);
}

.bd-route-badge-orange {
    background: rgba(235, 166, 37, .4);
    color: var(--zk-orange-color)
}

.bd-center-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bd-center-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bd-route-details {
    overflow: hidden;
    transition: all .3s ease-in-out;
    max-height: 450px;
}

.bd-route-details.hide {
    max-height: 0;
}

.bd-modal {
    position: absolute !important;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bd-modal-content {
    border-top: solid 20px var(--zk-primary-color);
    border-radius: 8px;
    width: 80%;
    background: var(--zk-bg-color);
    padding: var(--zk-pm4);
    text-align: center;
    
}

.bd-modal.hide {
    display: none;
}

.lodaer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.35);
    z-index: 9999;
}

.lodaer-container.hide {
    display: none;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #FFF #FFF transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent #FF3D00 #FF3D00;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}