﻿@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url('https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css');
@import url(https://fonts.googleapis.com/css?family=Oswald:700);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif);

.color-black {
    color: black !important;
}

.inv-img {
    position: sticky;
    top: 20px;
}
.image-container2 {
    position: relative;
    width: 100%;
    height: auto;
}

.spin432 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 40px;
    height: 40px;
    animation: spin432 1s linear infinite;
    z-index: 9999;
}

@keyframes spin432 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Adjust the z-index as needed */
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3f55d1;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




.navbar-close {
    display: none;
}

.NavBurger {
    display: none;
}

.navbar-show {
    display: block !important;
}

.custom-img {
    height: 30px;
    width: 30px;
}


body {
    margin: 0;
    font-family: Arial
}

.topnav {
    overflow: hidden;
    background-color: #5e72e4;
}




@media print {
    .topnav,
    .btn,
    .btn-primary btn-sm,
    #myTopnav {
        display: none !important;
    }
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.active {
    background-color: #3f55d1;
    color: white;
}

.topnav .icon {
    display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

    .dropdown .dropbtn {
        font-size: 17px;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }

.dropdown-content {
    display: none;
    position: fixed;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9999;
}

    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

.topnav a:hover, .dropdown:hover .dropbtn {
    color: black;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child), .dropdown .dropbtn {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {

    .topnav.responsive {
        position: relative;
    }

        .topnav.responsive .icon {
            position: absolute;
            right: 0;
            top: 0;
        }

        .topnav.responsive a {
            float: none;
            display: block;
            text-align: left;
        }

        .topnav.responsive .dropdown {
            float: none;
        }

        .topnav.responsive .dropdown-content {
            position: relative;
        }

        .topnav.responsive .dropdown .dropbtn {
            display: block;
            width: 100%;
            text-align: left;
        }
}

@media screen and (max-width: 1199px) {
    .NavBurger {
        display: block;
    }

    .navbar-vertical.navbar-expand-xs {
        position: relative !important;
    }
}


.login-screen {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background-color: #fff;
    font-family: Montserrat;
    overflow-x: hidden;
}

article,
aside,
details,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    text-decoration: none;
}

img {
    border: none;
}

*:focus {
    outline: none;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.bg-illustration {
    position: relative;
    height: 97vh;
    width: 1194px;
    background: url("LoginImage.png") no-repeat center center scroll;
    background-size: cover;
    float: left;
    -webkit-animation: bgslide 2.3s forwards;
    animation: bgslide 2.3s forwards;
}

    .bg-illustration img {
        width: 248px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        height: auto;
        margin: 19px 0 0 25px;
    }

@-webkit-keyframes bgslide {
    from {
        left: -100%;
        width: 0;
        opacity: 0;
    }

    to {
        left: 0;
        width: 1194px;
        opacity: 1;
    }
}

@keyframes bgslide {
    from {
        left: -100%;
        width: 0;
        opacity: 0;
    }

    to {
        left: 0;
        width: 1194px;
        opacity: 1;
    }
}


.login {
    max-height: 100vh;
    overflow-Y: auto;
    float: left;
    margin: 0 auto;
    width: calc(100% - 1194px);
}

    .login .container {
        width: 505px;
        margin: 0 auto;
        position: relative;
    }

        .login .container h1 {
            margin-top: 100px;
            font-size: 35px;
            font-weight: bolder;
        }

        .login .container .login-form {
            /* margin-top: 112px;*/
        }

            .login .container .login-form .form {
                display: -ms-grid;
                display: grid;
            }

                .login .container .login-form .form input {
                    font-size: 16px;
                    font-weight: normal;
                    background: rgba(57, 57, 57, 0.07);
                    margin: 12.5px 0;
                    height: 68px;
                    border: none;
                    padding: 0 30px;
                    border-radius: 10px;
                }

                .login .container .login-form .form .btn-auth {
                    background: -webkit-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
                    background: -o-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
                    background: linear-gradient(-20deg, #3f55d1 0%, #f3f3f3 100%);
                    border: none;
                    /*margin-top: 124px;*/
                    margin-bottom: 20px;
                    width: 241px;
                    height: 58px;
                    text-transform: uppercase;
                    color: white;
                    border-radius: 10px;
                    position: relative;
                    z-index: 2;
                    font-weight: bold;
                    font-size: 20px;
                }

                    .login .container .login-form .form .btn-auth:hover::after {
                        opacity: 1;
                    }

                    .login .container .login-form .form .btn-auth::after {
                        content: "";
                        position: absolute;
                        z-index: -1;
                        border-radius: 10px;
                        opacity: 0;
                        top: 0;
                        left: 0;
                        -webkit-transition: 0.3s ease-in-out;
                        -o-transition: 0.3s ease-in-out;
                        transition: 0.3s ease-in-out;
                        right: 0;
                        bottom: 0;
                        background: -webkit-gradient(linear, left bottom, left top, from(#09203f), to(#537895));
                        background: -webkit-linear-gradient(bottom, #09203f 0%, #537895 100%);
                        background: -o-linear-gradient(bottom, #09203f 0%, #537895 100%);
                        background: linear-gradient(to top, #09203f 0%, #537895 100%);
                    }

        .login .container .remember-form {
            position: relative;
            margin-top: -30px;
        }

            .login .container .remember-form input[type=checkbox] {
                margin-top: 9px;
            }

            .login .container .remember-form span {
                font-size: 18px;
                font-weight: normal;
                position: absolute;
                top: 32px;
                color: #3B3B3B;
                margin-left: 15px;
            }

        .login .container .forget-pass {
            position: absolute;
            right: 0;
            margin-top: 189px;
        }

            .login .container .forget-pass a {
                font-size: 16px;
                position: relative;
                font-weight: normal;
                color: #918F8F;
            }

                .login .container .forget-pass a::after {
                    content: "";
                    position: absolute;
                    height: 2px;
                    width: 100%;
                    border-radius: 100px;
                    background: -webkit-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
                    background: -o-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
                    background: linear-gradient(-20deg, #f794a4 0%, #fdd6bd 100%);
                    bottom: -4px;
                    left: 0;
                    -webkit-transition: 0.3s;
                    -o-transition: 0.3s;
                    transition: 0.3s;
                    opacity: 0;
                    right: 0;
                }

                .login .container .forget-pass a:hover::after {
                    opacity: 1;
                }

@media only screen and (min-width: 1024px) and (max-width: 1680px) {
    .bg-illustration {
        width: 50%;
        -webkit-animation: none;
        animation: none;
    }

    .login {
        width: 50%;
    }
}
/* Display 12", iPad PRO Portrait, iPad landscape */
@media only screen and (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }

    @-webkit-keyframes slideIn {
        from {
            left: -100%;
            opacity: 0;
        }

        to {
            left: 0;
            opacity: 1;
        }
    }

    @keyframes slideIn {
        from {
            left: -100%;
            opacity: 0;
        }

        to {
            left: 0;
            opacity: 1;
        }
    }

    .bg-illustration {
        float: none;
        background: url("LoginImage.png") center center;
        background-size: cover;
        -webkit-animation: slideIn 0.8s ease-in-out forwards;
        animation: slideIn 0.8s ease-in-out forwards;
        width: 100%;
        height: 190px;
        text-align: center;
    }

        .bg-illustration img {
            width: 100px;
            height: auto;
            margin: 20px auto !important;
            text-align: center;
        }

        .bg-illustration .burger-btn {
            left: 33px;
            top: 29px;
            display: block;
            position: absolute;
        }

            .bg-illustration .burger-btn span {
                display: block;
                height: 4px;
                margin: 6px;
                background-color: #fff;
            }

                .bg-illustration .burger-btn span:nth-child(1) {
                    width: 37px;
                }

                .bg-illustration .burger-btn span:nth-child(2) {
                    width: 28px;
                }

                .bg-illustration .burger-btn span:nth-child(3) {
                    width: 20px;
                }

    .login {
        float: none;
        margin: 0 auto;
        width: 100%;
    }

        .login .container {
            -webkit-animation: slideIn 0.8s ease-in-out forwards;
            animation: slideIn 0.8s ease-in-out forwards;
            width: 85%;
            float: none;
        }

            .login .container h1 {
                font-size: 25px;
                margin-top: 40px;
            }

            .login .container .login-form {
                /*  margin-top: 90px;*/
            }

                .login .container .login-form .form input {
                    height: 45px;
                }

                .login .container .login-form .form .btn-auth {
                    height: 45px;
                    /* margin-top: 100px;*/
                }

                .login .container .login-form .remember-form {
                    position: relative;
                    margin-top: -14px;
                }

                    .login .container .login-form .remember-form span {
                        font-size: 16px;
                        margin-top: 22px;
                        top: inherit;
                    }

    .forget-pass {
        position: absolute;
        right: inherit;
        left: 0;
        bottom: -40px;
        margin: 0 !important;
    }

        .forget-pass a {
            font-size: 16px;
            position: relative;
            font-weight: normal;
            color: #918F8F;
        }

            .forget-pass a::after {
                content: "";
                position: absolute;
                height: 2px;
                width: 100%;
                border-radius: 100px;
                background: -webkit-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
                background: -o-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
                background: linear-gradient(-20deg, #f794a4 0%, #fdd6bd 100%);
                bottom: -4px;
                left: 0;
                -webkit-transition: 0.3s;
                -o-transition: 0.3s;
                transition: 0.3s;
                opacity: 0;
                right: 0;
            }

            .forget-pass a:hover::after {
                opacity: 1;
            }
}

@import url(https://fonts.googleapis.com/css?family=Raleway:700);

.error {
    box-sizing: border-box;
    height: 100%;
    font-family: 'Raleway', sans-serif;
    background-color: #3f55d1;
    height: 100%;
    padding: 10px;
    a

{
    color: #212529 !important;
    text-decoration: none;
}

a:hover {
    color: #FFFFFF !important;
    text-decoration: none;
}

.text-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 5em;
    font-weight: 700;
    color: #fff;
}

.subtitle {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.isi {
    font-size: 18px;
    text-align: center;
    margin: 30px;
    padding: 20px;
    color: white;
}

.buttons {
    margin: 30px;
    font-weight: 700;
    border: 2px solid #212529;
    text-decoration: none;
    padding: 15px;
    text-transform: uppercase;
    color: #212529;
    border-radius: 26px;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    .buttons:hover

{
    background-color: #EE4B5E;
    color: white;
    transition: all 0.2s ease-in-out;
}

}
}

.question {
    .allign-item-center

{
    text-align: center !important;
}

.btnhoo:hover {
    color: blue !important;
}

}


.forms-de {
    input [type=text], select, textarea

{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
    font-size: 14px;
}

input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}


    input[type=submit]:hover {
        background-color: #45a049;
    }

.container {
    border-radius: 5px;
    background-color: #f8f9fa;
    padding: 20px;
}

.custom-pad {
    padding: 5px;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .col-6 {
        width: 100%;
    }
    .col-lgg-6{
        max-width:100% !important;
    }
}

}

.font-colors {
    color: black !important;
}

.custom-modal {
    /* Add your modal styles here */
    /*body

{
    overflow: hidden;*/ /* Prevent scrolling when modal is open */
    /*}*/

    .modal-overlay

{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100001; /* Ensure a higher z-index value */
    backdrop-filter: blur(8px); /* Blur the background content */
}

.modal-content {
    background: white;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1001; /* Ensure a higher z-index value */
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.close-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.modal-body {
    padding: 10px 0;
}

@media screen and (max-width: 768px) {
    .modal-overlay {
        overflow: auto;
        align-items: normal;
    }

    .modal-content {
        height: 820px;
    }
}

}

.tabItem.active[b-gd96puohnh] {
    overflow: hidden;
    cursor: pointer;
    outline: 0;
    border: solid 1px #fff;
    text-align: center;
}

.tabItem {
    color: #fff;
}

.tabsHeader {
    display: none !important;
}

@media (max-width: 600px) {
    /* Adjust styling for small screens */
    .tabItem {
        width: 100% !important;
    }
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700');
@import url('https://fonts.googleapis.com/css?family=Catamaran:400,800');

.custom_404 {
    .error-container

{
    text-align: center;
    font-size: 106px;
    font-family: 'Catamaran', sans-serif;
    font-weight: 800;
    margin: 70px 15px;
}

.error-container > span {
    display: inline-block;
    position: relative;
}

    .error-container > span.four {
        width: 136px;
        height: 43px;
        border-radius: 999px;
        background: linear-gradient(140deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.07) 43%, transparent 44%, transparent 100%), linear-gradient(105deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.06) 41%, rgba(0, 0, 0, 0.07) 76%, transparent 77%, transparent 100%), linear-gradient(to right, #d89ca4, #e27b7e);
    }

        .error-container > span.four:before,
        .error-container > span.four:after {
            content: '';
            display: block;
            position: absolute;
            border-radius: 999px;
        }

        .error-container > span.four:before {
            width: 43px;
            height: 156px;
            left: 60px;
            bottom: -43px;
            background: linear-gradient(128deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.07) 40%, transparent 41%, transparent 100%), linear-gradient(116deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.07) 50%, transparent 51%, transparent 100%), linear-gradient(to top, #99749D, #B895AB, #CC9AA6, #D7969E, #E0787F);
        }

        .error-container > span.four:after {
            width: 137px;
            height: 43px;
            transform: rotate(-49.5deg);
            left: -18px;
            bottom: 36px;
            background: linear-gradient(to right, #99749D, #B895AB, #CC9AA6, #D7969E, #E0787F);
        }

    .error-container > span.zero {
        vertical-align: text-top;
        width: 156px;
        height: 156px;
        border-radius: 999px;
        background: linear-gradient(-45deg, transparent 0%, rgba(0, 0, 0, 0.06) 50%, transparent 51%, transparent 100%), linear-gradient(to top right, #99749D, #99749D, #B895AB, #CC9AA6, #D7969E, #ED8687, #ED8687);
        overflow: hidden;
        animation: bgshadow 5s infinite;
    }

        .error-container > span.zero:before {
            content: '';
            display: block;
            position: absolute;
            transform: rotate(45deg);
            width: 90px;
            height: 90px;
            background-color: transparent;
            left: 0px;
            bottom: 0px;
            background: linear-gradient(95deg, transparent 0%, transparent 8%, rgba(0, 0, 0, 0.07) 9%, transparent 50%, transparent 100%), linear-gradient(85deg, transparent 0%, transparent 19%, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.07) 91%, transparent 92%, transparent 100%);
        }

        .error-container > span.zero:after {
            content: '';
            display: block;
            position: absolute;
            border-radius: 999px;
            width: 70px;
            height: 70px;
            left: 43px;
            bottom: 43px;
            background: #FDFAF5;
            box-shadow: -2px 2px 2px 0px rgba(0, 0, 0, 0.1);
        }

.screen-reader-text {
    position: absolute;
    top: -9999em;
    left: -9999em;
}

@keyframes bgshadow {
    0% {
        box-shadow: inset -160px 160px 0px 5px rgba(0, 0, 0, 0.4);
    }

    45% {
        box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    }

    55% {
        box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    }

    100% {
        box-shadow: inset 160px -160px 0px 5px rgba(0, 0, 0, 0.4);
    }
}

/* demo stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: #FDFAF5;
    margin-bottom: 50px;
}

html, button, input, select, textarea {
    font-family: 'Montserrat', Helvetica, sans-serif;
    color: #bbb;
}

h1 {
    text-align: center;
    margin: 30px 15px;
}

.zoom-area {
    max-width: 490px;
    margin: 30px auto 30px;
    font-size: 19px;
    text-align: center;
}

.link-container {
    text-align: center;
}

a.more-link {
    text-transform: uppercase;
    font-size: 13px;
    background-color: #de7e85;
    padding: 10px 15px;
    border-radius: 0;
    color: #fff;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    line-height: 1.5;
    text-decoration: none;
    margin-top: 50px;
    letter-spacing: 1px;
}

}

.inspectionprint {
    body

{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 10px;
}

@media print {
    header, footer {
        display: none !important;
    }

    body {
        margin: 0;
        padding: 0;
    }

    .topnav,
    #myTopnav {
        display: none !important;
    }
}

.container {
    background-color: #ffffff; /* White background for center */
}

.left-section, .right-section {
    flex: 1;
    background-color: rgb(136, 153, 171); /* Light gray background for left and right sections */
}

.report-section {
    width: 100%; /* Adjust width as needed */
    margin-top: 20px;
}

h1, h2 {
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 5px;
    text-align: left;
    padding-left: 20px;
}

th {
    background-color: #f2f2f2;
}

.icon {
    width: 16px; /* Adjust size as needed */
    height: 16px; /* Adjust size as needed */
    vertical-align: middle;
}

.signature-container {
    display: flex;
    justify-content: space-between; /* Adjust as needed */
}

.signature {
    width: 30%; /* Adjust the width of each signature place */
    border-top: 1px solid black; /* Add a line beneath each signature place */
    margin-bottom: 20px; /* Add space between signature places */
    margin-top: 50px;
    text-align: center;
    margin-left: 10px;
}

.inline-span {
    display: inline-block;
    margin: 10px 5px 5px 5px; /* Top, right, bottom, left margin */
}

}


.fleet-cards {
    *

{
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10rem;
    background-color: #f7f8fc;
    font-family: "Roboto", sans-serif;
    color: #10182f;
}

.container {
    display: flex;
    /*    justify-content: space-evenly;
*/ flex-wrap: wrap;
}

.card {
    margin-top: 5px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(10, 10, 10, 0.2);
    overflow: hidden;
    width: 320px;
    position: relative;
}



.card-header {
    position: absolute;
    top: 5px;
    right: 5px;
    padding-top: 10px;
    padding-right: 10px;
}

.card-footer {
    position: absolute;
    width: 100%;
    right: 4px;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5px;
    min-height: auto;
}

.tag {
    background: #cccccc;
    border-radius: 50px;
    font-size: 12px;
    margin: 0;
    color: #fff;
    padding: 2px 10px;
    text-transform: uppercase;
}

.btn {
    background: #cccccc;
    border-radius: 80px;
    font-size: 12px;
    margin: 0;
    color: #fff;
    padding: 2px 10px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.tag-danger {
    background-color: #D4403A;
}

.tag-btn {
    background-color: #5e72e4;
    cursor: pointer;
}

.tag-success {
    background-color: #3A833A;
}

.tag-yellow {
    background-color: #8B8000;
}

.card-body p {
    font-size: 13px;
    margin: 0 0 10px;
}

.user {
    display: flex;
    margin-top: auto;
}


    .user img {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

.user-info h5 {
    margin: 0;
}

.user-info small {
    color: #545d7a;
}

.edit-icon {
    cursor: pointer;
}

.delete-icon {
    cursor: pointer;
}

}



.table-test {
    table

{
    width: 900px;
    border-collapse: collapse;
    margin: 50px auto;
}

th {
    background: #3498db;
    color: white;
    font-weight: bold;
}

td, th {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    text-align: center;
    font-size: 18px;
}

.tbl-accordion-header a {
    color: #28c76f !important;
}

.tbl-accordion-body {
    display: none;
    background: #e0e2ec;
}

    .tbl-accordion-body td {
        border-bottom: 0px;
    }

    .tbl-accordion-body tr:last-child {
        border-bottom: 1px solid #ccc;
    }

}


.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Uncommented to ensure the container is full-height */
}

.dataloading {
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 2%; /* Uncommented to maintain the circle shape */
    background: #e0e2ee;
    opacity: 0.2;
    animation: fadeInOut 2s ease-in-out infinite; /* The infinite animation duration for continuous loop */
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.2; /* Starts and ends with lower opacity */
    }

    50% {
        opacity: 1; /* Higher opacity in the middle for fading effect */
    }
}

.reason-text {
    margin-top: -245px !important;
}

@media screen and (max-width: 768px) {
    .reason-text {
        margin-top: 0px !important;
    }
}

@media screen and (max-width:1670px) {
    .widt {
        max-width: 1270px !important;
        max-height: 430px !important;
    }
}

@media (max-width: 768px) {
    .search-container {
        position: static !important;
        padding-left: 20px !important;
        margin-bottom: 10px !important; /* Add some space below the search container */
    }

    .reports {
        display: block !important;
    }

    .fpart {
        width: 100% !important;
    }

        .fpart div {
            width: 100% !important;
        }

    .lpart {
        width: 100% !important;
    }
        .lpart div {
            width: 100% !important;
        }
    .pctablet{
        display:none;
    }
    .mobile {
        display: block;
    }
}
@media (min-width: 768px) {
    .pctablet {
        display: block;
    }
    .mobile {
        display: none;
    }
   
}

    @media (max-width: 576px) {
        .numbers h5 {
            font-size: xx-large;
        }

        .row {
            flex-wrap: wrap;
        }

        .col-12.col-md-4 {
            flex: 0 0 33.3333%;
            max-width: 33.3333%;
        }

        .col-12.col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .newcard {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px; /* Adjust height as needed */
        }

        p.text-sm {
            font-size: smaller;
            text-align: center;
            color: black;
        }

        .icon {
            display: none;
        }

       

        .g-4 {
            --bs-gutter-y: -0.5rem;
            --bs-gutter-x: 0.5rem;
        }

        .newcard {
            padding: 0;
        }
    }

    @media (min-width: 577px) {
        

        .row-cols-1 {
            display: flex;
            flex-wrap: nowrap;
        }

        .col-12.col-md-4, .col-12.col-md-6 {
            flex: 0 0 auto;
            max-width: auto;
        }

        .col {
            flex: 1;
        }

        .newcard {
            height: auto; /* Default height */
        }

        .card .row {
            display: flex;
            /*align-items: center;*/
        }

        .card .col-8, .card .col-4 {
            display: flex;
            align-items: center;
        }

        .numbers {
            text-align: left;
        }

        .icon {
            display: block;
        }
    }

@media screen and (max-width: 768px) {
 

    .col-lgg-6 {
        max-width: 100% !important;
    }
}

.bus-popup {
    padding: 13px;
    border-radius: 5px;
    scrollbar-color: #5e72e4 white;
    scrollbar-color: black;
    z-index: 1000;
    position: absolute;
    
    overflow-y: scroll;
    background: white;
    text-align: justify;
    
}



@keyframes floatRightToLeft {
    0% {
        transform: translateX(100%); /* Start outside the right boundary */
    }

    100% {
        transform: translateX(-80%); /* End outside the left boundary */
    }
}

.filter-slider-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px; /* Adjust width as needed */
    z-index:9999;
    background-color: #f8f9fa;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    transform: translateX(100%); /* Start off-screen */
    transition: transform 0.3s ease-in-out;
}

.filter-header {
    padding: 7px;
    background-color: #5e72e4;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .filter-header h4 {
        color: white;
        font-size: 25px;
    }
.filter-content {
    padding: 1rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
   /* font-size: 1.5rem;*/
    cursor: pointer;
    font-size: smaller;
}

.filter-input {
    display: none;
}


.wifi-speed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

    .wifi-speed .modal-content {
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        width: 300px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .wifi-speed h2 {
        color: #d9534f;
    }

    .wifi-speed p {
        color: #555;
    }

    .wifi-speed button {
        background-color: #d9534f;
        color: #fff;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }

        .wifi-speed button:hover {
            background-color: #c9302c;
        }
