@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

html {
    scroll-behavior: smooth;
}

.form-label {
    margin-bottom: 0px !important;
}

.common-bg {
    background-color: #324854 !important;
}

.menu-bar .menu .dropdown .dropdown-menu {
    margin: 0px;
    padding: 0px;
    position: absolute;
    width: 237px !important;
    inset: 0px auto auto 0px;
    transform: translate(12px, 51px);
}

.dropdown-item i {
    padding: 6px;
    color: #fff;
    border-radius: 6px;
    margin-right: 10px;
    background: #324854;
}

.dropdown-item:hover i {
    color: #324854;
    background: #fff;
}

body.dark {
    --body-color: #18191a;
    --sidebar-color: #242526;
    --primary-color: #3a3b3c;
    --primary-color-light: #3a3b3c;
    --toggle-color: #fff;
    --text-color: #ccc;
}

.container-own {
    display: flex;
    padding-left: 285px;
    transition: .5s;
}

#menu__toggle {
    opacity: 0;
}

/* ===== Sidebar ===== */

.sidebar {
    margin: 10px 0px 0px 5px;
    position: fixed;
    top: 0;
    left: 0;
    height: 97%;
    width: 280px;
    padding: 10px;
    background: var(--sidebar-color);
    transition: var(--tran-05);
    z-index: 100;
    background-color: #e4c06f;
    color: #fff;
    /* padding-top: 80px; */
    border-radius: 19px;
    transition: .5s;

    &.close {
        width: 100px;
        padding: 10px 20px;
    }

    &.close .sale-manage {
        background-color: #00000000 !important;
        padding: 0 !important;
    }

    li {
        height: 50px;
        list-style: none;
        display: flex;
        align-items: center;
        margin-top: 10px;
    }

    header .image {
        min-width: 60px;
        border-radius: 6px;
    }

    .icon {
        min-width: 60px;
        border-radius: 6px;
        min-width: 60px;
        border-radius: 6px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .text,
    .icon {
        color: var(--text-color);
        transition: var(--tran-03);
    }

    .text {
        font-size: 15px;
        font-weight: 300;
        white-space: nowrap;
        opacity: 1;
        color: #fff;
    }

    &.close .text {
        opacity: 0;
    }

    header {
        top: 20px;
        position: relative;
        margin-bottom: 80px;

        .image-text {
            display: flex;
            align-items: center;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }
    }
}


/* ===== Reusable code - Here ===== */

/* =========================== */

header .image-text {
    .name {
        margin-top: 2px;
        font-size: 18px;
        font-weight: 600;
    }

    .profession {
        font-size: 16px;
        margin-top: -2px;
        display: block;
    }
}

.sidebar header {
    .image {
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            width: 50px;
            border-radius: 35px;
        }
    }

    .toggle {
        position: absolute;
        right: -24px;
        transform: translateY(-50%) rotate(180deg);
        height: 25px;
        width: 25px;
        background-color: var(--primary-color);
        color: var(--sidebar-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        cursor: pointer;
        transition: var(--tran-05);
        background-color: #e4c06f;
        color: #ffff;
        border: 2px solid #fff;
    }
}

body.dark .sidebar header .toggle {
    color: var(--text-color);
}

.sidebar {
    &.close .toggle {
        right: -32px;
        transform: translateY(-50%) rotate(0deg);
    }

    .menu {
        margin-top: 15px;
    }

    li {
        &.search-box {
            border-radius: 6px;
            background-color: var(--primary-color-light);
            cursor: pointer;
            transition: var(--tran-05);

            input {
                height: 100%;
                width: 100%;
                outline: none;
                border: none;
                background-color: var(--primary-color-light);
                color: var(--text-color);
                border-radius: 6px;
                font-size: 17px;
                font-weight: 500;
                transition: var(--tran-05);
            }
        }

        a {
            list-style: none;
            height: 100%;
            background-color: transparent;
            display: flex;
            align-items: center;
            height: 100%;
            width: 100%;
            border-radius: 6px;
            text-decoration: none;
            transition: var(--tran-03);

            &:hover {
                background-color: var(--primary-color);

                .icon,
                .text {
                    color: var(--sidebar-color);
                }
            }
        }
    }
}

body.dark .sidebar li a:hover {

    .icon,
    .text {
        color: var(--text-color);
    }
}

.sidebar .menu-bar {
    width: 100%;
    /* height: 100%; */
    display: flex;
    overflow-y: scroll;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 55px);
}

.menu-bar::-webkit-scrollbar {
    display: none;
}

.sidebar .menu-bar .mode {
    border-radius: 6px;
    background-color: var(--primary-color-light);
    position: relative;
    transition: var(--tran-05);
}

.menu-bar .mode .sun-moon {
    height: 50px;
    width: 60px;
}

.mode .sun-moon i {
    position: absolute;

    &.sun {
        opacity: 0;
    }
}

body.dark .mode .sun-moon i {
    &.sun {
        opacity: 1;
    }

    &.moon {
        opacity: 0;
    }
}

.menu-bar .bottom-content .toggle-switch {
    position: absolute;
    right: 0;
    height: 100%;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
}

.toggle-switch .switch {
    position: relative;
    height: 22px;
    width: 40px;
    border-radius: 25px;
    background-color: var(--toggle-color);
    transition: var(--tran-05);
}

.switch::before {
    content: "";
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    background-color: var(--sidebar-color);
    transition: var(--tran-04);
}

body.dark .switch::before {
    left: 20px;
}

.menu-links {
    padding-left: 60px;
}

.nav-link {
    color: #000 !important;
    transition: .4s !important;
}

.nav-link:hover {
    background-color: #344955 !important;
    color: #fff !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    border-radius: 8px !important;
}

.nav-link a {
    color: #fff !important;
    transition: .4s;
}

.nav-text {
    color: #000 !important;
    transition: .4s !important;
}

.nav-link:hover .nav-text {
    color: #fff !important;
    text-shadow: 2px 0px 11px white !important;
}

.sale-manage {
    padding: 15px 10px !important;
    margin: 0px 12px 0px 12px !important;
    background-color: #344955 !important;
    border-radius: 10px !important;
    text-shadow: 2px 0px 30px white !important;
    color: #fff !important;
}

.menu-p {
    font-weight: 200;
    margin: 0px 15px;
}

.sale-manage img {
    border-radius: 10px;
    margin: 0px 12px 0px 0px;
}

.sale-manage p {
    font-size: 13px;
}

.bg-yello {
    background-color: #e4c06f !important;
    border: none !important;
    width: 215px !important;
}


.layout {
    z-index: 1;
}

.layout .header {
    display: flex;
    align-items: center;
    padding: 20px;
}

.layout .content {
    padding: 12px 50px;
    display: flex;
    flex-direction: column;
}

.layout .footer {
    text-align: center;
    margin-top: auto;
    margin-bottom: 20px;
    padding: 20px;
}


@keyframes swing {

    0%,
    30%,
    50%,
    70%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }
}

.layout .sidebar .menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.layout .sidebar .menu .menu-header {
    font-weight: 600;
    padding: 10px 25px;
    font-size: 0.8em;
    letter-spacing: 2px;
    transition: opacity 0.3s;
    opacity: 0.5;
}

.layout .sidebar .menu .menu-item a {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 20px;
    color: #7d84ab;
}

.layout .sidebar .menu .menu-item a .menu-icon {
    font-size: 1.2rem;
    width: 35px;
    min-width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
    border-radius: 2px;
    transition: color 0.3s;
}

.layout .sidebar .menu .menu-item a .menu-icon i {
    display: inline-block;
}

.layout .sidebar .menu .menu-item a .menu-title {
    font-size: 0.9em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-grow: 1;
    transition: color 0.3s;
}

.layout .sidebar .menu .menu-item a .menu-prefix,
.layout .sidebar .menu .menu-item a .menu-suffix {
    display: inline-block;
    padding: 5px;
    opacity: 1;
    transition: opacity 0.3s;
}

.layout .sidebar .menu .menu-item a:hover .menu-title {
    color: #dee2ec;
}

.layout .sidebar .menu .menu-item a:hover .menu-icon {
    color: #dee2ec;
}

.layout .sidebar .menu .menu-item a:hover .menu-icon i {
    animation: swing ease-in-out 0.5s 1 alternate;
}

.layout .sidebar .menu .menu-item a:hover::after {
    border-color: #dee2ec !important;
}

.layout .sidebar .menu .menu-item.sub-menu {
    position: relative;
}

.layout .sidebar .menu .menu-item.sub-menu>a::after {
    content: "";
    transition: transform 0.3s;
    border-right: 2px solid currentcolor;
    border-bottom: 2px solid currentcolor;
    width: 5px;
    height: 5px;
    transform: rotate(-45deg);
}

.layout .sidebar .menu .menu-item.sub-menu>.sub-menu-list {
    padding-left: 20px;
    display: none;
    overflow: hidden;
    z-index: 999;
}

.layout .sidebar .menu .menu-item.sub-menu.open>a {
    color: #dee2ec;
}

.layout .sidebar .menu .menu-item.sub-menu.open>a::after {
    transform: rotate(45deg);
}

.layout .sidebar .menu .menu-item.active>a .menu-title {
    color: #dee2ec;
}

.layout .sidebar .menu .menu-item.active>a::after {
    border-color: #dee2ec;
}

.layout .sidebar .menu .menu-item.active>a .menu-icon {
    color: #dee2ec;
}

.layout .sidebar .menu>ul>.sub-menu>.sub-menu-list {
    background-color: #0b1a2c;
}

.layout .sidebar .menu.icon-shape-circle .menu-item a .menu-icon,
.layout .sidebar .menu.icon-shape-rounded .menu-item a .menu-icon,
.layout .sidebar .menu.icon-shape-square .menu-item a .menu-icon {
    background-color: #0b1a2c;
}

.layout .sidebar .menu.icon-shape-circle .menu-item a .menu-icon {
    border-radius: 50%;
}

.layout .sidebar .menu.icon-shape-rounded .menu-item a .menu-icon {
    border-radius: 4px;
}

.layout .sidebar .menu.icon-shape-square .menu-item a .menu-icon {
    border-radius: 0;
}

.layout .sidebar:not(.collapsed) .menu>ul>.menu-item.sub-menu>.sub-menu-list {
    visibility: visible !important;
    position: static !important;
    transform: translate(0, 0) !important;
}

.layout .sidebar.collapsed .menu>ul>.menu-header {
    opacity: 0;
}

.layout .sidebar.collapsed .menu>ul>.menu-item>a .menu-prefix,
.layout .sidebar.collapsed .menu>ul>.menu-item>a .menu-suffix {
    opacity: 0;
}

.layout .sidebar.collapsed .menu>ul>.menu-item.sub-menu>a::after {
    content: "";
    width: 5px;
    height: 5px;
    background-color: currentcolor;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 50%;
    border: none;
    transform: translateY(-50%);
}

.layout .sidebar.collapsed .menu>ul>.menu-item.sub-menu>a:hover::after {
    background-color: #dee2ec;
}

.layout .sidebar.collapsed .menu>ul>.menu-item.sub-menu>.sub-menu-list {
    transition: none !important;
    width: 200px;
    margin-left: 3px !important;
    border-radius: 4px;
    display: block !important;
}

.layout .sidebar.collapsed .menu>ul>.menu-item.active>a::after {
    background-color: #dee2ec;
}

.layout .sidebar.has-bg-image .menu.icon-shape-circle .menu-item a .menu-icon,
.layout .sidebar.has-bg-image .menu.icon-shape-rounded .menu-item a .menu-icon,
.layout .sidebar.has-bg-image .menu.icon-shape-square .menu-item a .menu-icon {
    background-color: rgba(11, 26, 44, 0.6);
}

.layout .sidebar.has-bg-image:not(.collapsed) .menu>ul>.sub-menu>.sub-menu-list {
    background-color: rgba(11, 26, 44, 0.6);
}

.layout.rtl .sidebar .menu .menu-item a .menu-icon {
    margin-left: 10px;
    margin-right: 0;
}

.layout.rtl .sidebar .menu .menu-item.sub-menu>a::after {
    transform: rotate(135deg);
}

.layout.rtl .sidebar .menu .menu-item.sub-menu>.sub-menu-list {
    padding-left: 0;
    padding-right: 20px;
}

.layout.rtl .sidebar .menu .menu-item.sub-menu.open>a::after {
    transform: rotate(45deg);
}

.layout.rtl .sidebar.collapsed .menu>ul>.menu-item.sub-menu a::after {
    right: auto;
    left: 10px;
}

.layout.rtl .sidebar.collapsed .menu>ul>.menu-item.sub-menu>.sub-menu-list {
    margin-left: -3px !important;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

@media (max-width: 576px) {
    #btn-collapse {
        display: none;
    }
}

.layout .sidebar .pro-sidebar-logo {
    display: flex;
    align-items: center;
}

.layout .sidebar .pro-sidebar-logo>div {
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    font-size: 24px;
    font-weight: 700;
    background-color: #ff8100;
    margin-right: 10px;
}

.layout .sidebar .pro-sidebar-logo>h5 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 20px;
    line-height: 30px;
    transition: opacity 0.3s;
    opacity: 1;
}

.layout .sidebar .footer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8em;
    padding: 20px 0;
    border-radius: 8px;
    width: 180px;
    min-width: 190px;
    margin: 0 auto;
    background-color: #162d4a;
}

.layout .sidebar .footer-box img.react-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.layout .sidebar .footer-box a {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.layout .sidebar .sidebar-collapser {
    transition: left, right, 0.3s;
    position: fixed;
    left: 260px;
    top: 40px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #00829f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    transform: translateX(50%);
    z-index: 111;
    cursor: pointer;
    color: white;
    box-shadow: 1px 1px 4px #0c1e35;
}

.layout .sidebar.collapsed .pro-sidebar-logo>h5 {
    opacity: 0;
}

.layout .sidebar.collapsed .footer-box {
    display: none;
}

.layout .sidebar.collapsed .sidebar-collapser {
    left: 60px;
}

.layout .sidebar.collapsed .sidebar-collapser i {
    transform: rotate(180deg);
}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #6c757d;
}

.badge.primary {
    background-color: #ab2dff;
}

.badge.secondary {
    background-color: #079b0b;
}

.sidebar-toggler {
    position: fixed;
    right: 20px;
    top: 20px;
}

.social-links a {
    margin: 0 10px;
    color: #3f4750;
}


/* Login Form Styling Starts */

.form-container {
    width: 100%;
    display: flex;
    min-height: 100vh;
}

.form-container .login-content {
    width: 60%;
}

.form-container .login-form {
    width: 40%;
}

.form-container .login-content {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/loginForm.png");
}

.login-container {
    width: 65%;
    margin: 0px auto;
}

.login-container img {
    padding: 20px 0px;
}

.login-container h2 {
    font-size: 26px;
    font-weight: 700;
    text-align: left;
    color: #E8C46B;
    margin-bottom: 10px;
}

.login-container p {
    font-weight: 500;
    color: #333333;
    text-align: left;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.login-container .login-btn {
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 12px 10px;
    margin-bottom: 10px;
    border-radius: 30px;
    background-color: #324854;
    border: 2px solid #324854;
}

.login-container .login-btn:hover {
    background-color: transparent;
}

.login-container .login-btn:hover button {
    color: #324854;
}

.login-container .login-btn button {
    border: none;
    outline: none;
    color: #fff;
    text-decoration: none;
    background: transparent;
}

.input-group input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333333;
    padding: 16px 50px;
    margin-bottom: 10px;
    border-radius: 30px;
    background-color: #E2E2E2 !important;
}

.input-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin: -4px 0px 0px 26px;
}

.input-group .form-check-input {
    width: auto;
    margin: 0px 0px 0px 5px;
}

.input-group input::placeholder {
    padding: 0px 10px;
}

.input-group i {
    top: 45%;
    left: 20px;
    z-index: 1;
    font-size: 18px;
    color: #aeaeae;
    position: absolute;
    transform: translateY(-50%);
}

.forgot-password {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    color: #333333;
    text-align: center;
    text-decoration: none;
}

.forgot-password:hover {
    color: #000;
    text-decoration: none;
}

.card .card-header .btnact {
    color: #fff;
    border-radius: 4px;
    background-color: #324955;
}

.form-container .login-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container .login-content .content h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-container .login-content .content p {
    color: #fff;
    margin-bottom: 30px !important;
}

.form-container .login-content .content a {
    color: #fff;
    padding: 6px 20px;
    border-radius: 25px;
    transition: all .3s;
    text-decoration: none;
    background-color: #324854;
    border: 2px solid #324854;
}

.form-container .login-content .content a:hover {
    color: #fff;
    background-color: transparent;
}

/* Login Form Styling Ends */





/* Dashboard Page Styling Starts  */

.home .cards-parent {
    width: 97%;
    margin: 10px auto;
}

.home .cards-parent .child-card .card {
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #E8C46B;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home .cards-parent .child-card .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home .cards-parent .child-card .card .card-body {
    min-height: 150px;
    max-height: 200px;
}

.home .cards-parent .child-card .card .card-body .card-text {
    color: #334954;
    font-weight: 700;
    padding-bottom: 2px;
}

.home .cards-parent .child-card .card .card-body .card-content {
    font-size: 15px;
}

.home .cards-parent .card .card-body img {
    width: 25%;
    padding-top: 10px;
    margin-bottom: 5px;
}

.salesOrder-parent {
    width: 97%;
    margin: 20px auto;
}

.salesOrder-parent .tabs {
    padding: 13px 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #E8C46B;
}

.salesOrder-parent .charts .firstTab .chart-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

.salesOrder-parent .charts .firstTab .chart-container .chart-number {
    font-size: 30px;
    font-weight: 600;
    color: #344955;
}

.salesOrder-parent .charts .secondTab .chart-container .chart-number {
    font-size: 30px;
    font-weight: 600;
    color: #344955;
}

.salesOrder-parent .charts .secondTab .chart-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

.salesOrder-parent .charts .firstTab {
    width: 49%;
    display: flex;
    padding: 20px;
    border-radius: 20px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 10px 0px #E8C46B;
}

.salesOrder-parent .charts .secondTab {
    width: 49%;
    display: flex;
    padding: 20px;
    border-radius: 20px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 10px 0px #E8C46B;
}

.tabs {
    gap: 30px;
    display: flex;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.tab {
    border: none;
    cursor: pointer;
    padding: 12px 25px;
    border-radius: 18px;
}

.tab.active {
    color: white;
    font-weight: 500;
    background-color: #324955;
}

.tab:hover {
    color: white;
    background-color: #324955;
}

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

#salesChart {
    width: 60%;
}

#salesDoughnutChart {
    width: 60%;
}

#ordersChart {
    width: 60%;
}

.chart-container h3 {
    margin-bottom: 10px;
}

.chart-number {
    font-size: 24px;
    margin-bottom: 10px;
}

.chart-legend {
    padding: 0;
    list-style: none;
    margin-top: 10px;
}

.chart-legend li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.legend-color {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border-radius: 3px;
}

.legend-color.new {
    background-color: #324955;
}

.legend-color.returning {
    background-color: #566573;
}

.legend-color.inactive {
    background-color: #f7d9aa;
}

form .box-body .description_row {
    display: flex;
    align-items: end;
}

form .box-body .description_row button {
    color: #fff;
    background-color: #324955;
}

.addBtn {
    top: 33px;
    right: 15px;
    color: #fff;
    position: absolute;
    border-radius: 4px;
    background-color: #324955;
}

.addBtn:hover a {
    color: #fff;
}

.addBtn a {
    color: #fff;
    padding: 7px 8px;
    text-decoration: none;
}

.legend-color.prepaid {
    background-color: #f7d9aa;
}

.legend-color.postpaid {
    background-color: #324955;
}

.datesTab {
    width: 97%;
    display: flex;
    margin: 10px auto;
    padding: 13px 20px;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #E8C46B;
}

.date-inputs {
    display: flex;
    align-items: center;
}

.date-inputs span {
    margin: 0px 5px;
    font-weight: 700;
}

.date-button {
    border: none;
    width: 150px;
    color: #000;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    padding: 8px 20px;
    border-radius: 20px;
    background-color: #ccc;
}

.date-button::placeholder {
    color: #000;
}

.search-section {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.search-input {
    border: none;
    color: #000;
    flex-grow: 1;
    outline: none;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #e0dddd;
}

.search-button {
    border: none;
    position: relative;
    border-radius: 20px;
}

.search-button i {
    top: -8px;
    right: 11px;
    position: absolute;
}

.lineChart-parent {
    width: 97%;
    margin: 20px auto;
    border-radius: 20px;
    padding: 10px 0px 15px 0px;
    box-shadow: 0px 0px 10px 0px #E8C46B;
}

.lineChart-parent canvas {
    width: 100% !important;
    max-height: 82% !important;
}

.lineChart-parent .top-content {
    width: 100%;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    justify-content: space-between;
}

.lineChart-parent .top-content .content-heading h3 {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

.lineChart-parent .top-content .side-dots i {
    font-size: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #344955;
}

.Charts-box .costumer-shipMood {
    gap: 20px;
    width: 97%;
    display: flex;
    margin: 0px auto;
    align-items: flex-start;
    justify-content: space-between;
}

.Charts-box .costumer-shipMood .firstChart {
    width: 50%;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #E8C46B;
}

.Charts-box .costumer-shipMood .firstChart .topDiv {
    width: 100%;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    justify-content: space-between;
}

.Charts-box .costumer-shipMood .firstChart .content-heading h3 {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

.Charts-box .costumer-shipMood .firstChart .side-dots i {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

.Charts-box .costumer-shipMood .firstChart canvas {
    padding: 0px 15px;
}

.Charts-box .costumer-shipMood .secondChart canvas {
    width: 74% !important;
    height: 74% !important;
    padding: 13px 0px;
}

.Charts-box .costumer-shipMood .secondChart {
    width: 50%;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #E8C46B;
}

.Charts-box .costumer-shipMood .secondChart .topDiv {
    width: 100%;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    justify-content: space-between;
}

.Charts-box .costumer-shipMood .secondChart .content-heading h3 {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

.Charts-box .costumer-shipMood .secondChart .side-dots i {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

.Charts-box .years-costumerCount {
    gap: 20px;
    width: 97%;
    display: flex;
    margin: 20px auto;
    align-items: flex-start;
    justify-content: space-between;
}

.Charts-box .years-costumerCount .firstChart {
    width: 50%;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #E8C46B;
}

.Charts-box .years-costumerCount .firstChart .topDiv {
    width: 100%;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    justify-content: space-between;
}

.Charts-box .years-costumerCount .firstChart .content-heading h3 {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

.Charts-box .years-costumerCount .firstChart .side-dots i {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

.Charts-box .years-costumerCount .firstChart canvas {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0px 30px;
    max-width: 300px;
    max-height: 255px;
}

.Charts-box .years-costumerCount .secondChart {
    width: 50%;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #E8C46B;
}

.Charts-box .years-costumerCount .secondChart .topDiv {
    width: 100%;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    justify-content: space-between;
}

.Charts-box .years-costumerCount .secondChart canvas {
    padding: 0px 25px;
}

.Charts-box .years-costumerCount .secondChart .content-heading h3 {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

.Charts-box .years-costumerCount .secondChart .side-dots i {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

.mapChart {
    width: 97%;
    padding: 20px;
    margin: 20px auto;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #E8C46B;
}

.mapChart .map-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mapChart .map-content .map-heading h3 {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

.saleAgent {
    width: 97%;
    padding: 20px;
    margin: 20px auto;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #E8C46B;
}

.saleAgent .salesAgent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.saleAgent .salesAgent-content .salesAgent-heading h3 {
    font-size: 20px;
    font-weight: 600;
    color: #344955;
}

/* Dashboard Page Styling End  */

.home {
    width: 97%;
    padding: 0px 0px;
}

.home .greet {
    padding: 0px 10px;
    font-size: 20px;
    font-weight: 500;
}

.main-home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 40px 0px 0px;
}

.mdk-h h1 {
    margin: 0px;
    font-size: 35px;
    font-weight: 800;
    color: #e4c06f;
    letter-spacing: 2px;
    padding: 0px 10px;
}

.home-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-header p {
    font-size: 14px;
}

.home-header p i {
    margin-right: 5px;
}

.home-header img {
    width: 70px;
}

.bell a i {
    font-size: 20px;
    background-color: rgba(0, 0, 255, 0.178);
    padding: 10px;
    border-radius: 25px;
}

.bell a {
    color: blue;
}

input {
    color: #fff;
}

.hr-line {
    opacity: 1 !important;
    height: 2px !important;
    color: #324854 !important;
}

.inp input::placeholder {
    font-weight: 500;
}

.inp .customer-input {
    display: flex;
    align-items: center;
}

.customer-parent {
    width: 98%;
    padding: 20px 35px;
    border-radius: 20px;
    background-size: cover;
    margin: 0px 0px 10px 0px;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px 0px #E8C46B;
    background-image: url("../images/BackWaves.jpg");
}

.customer-parent h1 {
    font-size: 35px;
    font-weight: 800;
    text-align: center;
    color: #e4c06f;
    margin-bottom: 0px !important;
}

.customer-parent .customer-container input {
    border: 0;
    padding: 7px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #e4c06f;
}

.customer-parent .customer-container select {
    border: 0;
    padding: 7px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #e4c06f;
}

.customer-parent .customer-container .customer-details {
    gap: 25px;
    width: 100%;
    display: flex;
    align-items: end;
}

.customer-parent .customer-container .last-child {
    width: 70%;
    margin: 0px auto;
}

.customer-parent .customer-container .last-child .last-input input {
    width: 100%;
}

.customer-parent .customer-container .customer-Comments {
    gap: 25px;
    width: 100%;
    display: flex;
    align-items: end;
}

.customer-parent .customer-container .customer-Comments .agent-comments,
.hod-comments {
    width: 50%;
}

.customer-parent .customer-container .customer-Comments .agent-comments input {
    width: 100%;
}

.customer-parent .customer-container .customer-Comments .hod-comments input {
    width: 100%;
}

.customer-parent .customer-container .customer-details .slab-info {
    gap: 10px;
    width: 100%;
    display: flex;
    align-items: end;
}

.customer-parent .customer-container .customer-details .slab-info .first-feild,
.second-feild {
    width: 50%;
}

.customer-parent .customer-container .customer-details .customer-select {
    width: 25%;
}

.customer-parent .customer-container .customer-details .customer-input {
    width: 25%;
}

.customer-parent .customer-container .customer-details .customer-select select {
    width: 100%;
}

.customer-parent .customer-container .customer-details .customer-input input {
    width: 100%;
}

.customer-parent .customer-container .customer-details .customer-firstInput {
    width: 30%;
}

.customer-parent .customer-container .customer-details .customer-firstInput input,
select {
    width: 100%;
}

.customer-parent .customer-container .customer-details .customer-secondInput {
    width: 70%;
}

.customer-parent .customer-container .customer-details .customer-secondInput input,
select {
    width: 100%;
}

.vechicle-management {
    width: 98%;
    padding: 20px 35px;
    border-radius: 20px;
    background-size: cover;
    margin: 0px 0px 10px 0px;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px 0px #E8C46B;
    background: url("../images/BackWaves.jpg");
}

.vechicle-management h1 {
    font-size: 35px;
    font-weight: 800;
    text-align: center;
    color: #e4c06f;
    margin-bottom: 0px !important;
}

.vechicle-management .vechicle-info .inputs-container {
    gap: 25px;
    width: 100%;
    display: flex;
    align-items: center;
}

.vechicle-management .vechicle-info .inputs-container .auction-input {
    width: 50%;
}

.vechicle-management .vechicle-info .inputs-container .auction-input input {
    width: 100%;
    background-color: #FEFD0A;
}

.vechicle-management .vechicle-info .inputs-container .input-feilds {
    width: 30%;
}

.vechicle-management .vechicle-info .inputs-container .select-feilds {
    width: 25%;
}

.vechicle-management .vechicle-info .inputs-container .select-feilds input {
    width: 100%;
}

.vechicle-management .vechicle-info .inputs-container .select-feilds select {
    border: 0;
    width: 100%;
    padding: 7px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #e4c06f;
}

.vechicle-management .vechicle-info .inputs-container .vechicle-input {
    gap: 25px;
    width: 50%;
    display: flex;
    align-items: center;
}

.vechicle-management .vechicle-info .inputs-container .vechicle-input .input-feilds {
    width: 50%;
}

.vechicle-management .vechicle-info .inputs-container .input-feilds input {
    width: 100%;
}

.vechicle-management .vechicle-info .inputs-container .input-parent {
    gap: 15px;
    width: 50%;
    display: flex;
    align-items: flex-end;
}

.vechicle-management .vechicle-info .inputs-container input {
    border: 0;
    padding: 7px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #e4c06f;
}

.vechicle-management .vechicle-info .inputs-container .input-parent .input1st-child {
    width: 30%;
}

.vechicle-management .vechicle-info .inputs-container .input-parent .input1st-child input {
    width: 100%;
}

.vechicle-management .vechicle-info .inputs-container .input-parent .input2st-child {
    width: 40%;
}

.vechicle-management .vechicle-info .inputs-container .input-parent .input2st-child input {
    width: 100%;
}






.inp input {
    border: 0;
    width: 100%;
    padding: 7px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #e4c06f;
}

.car-inp-1 {
    width: 143px !important;
}

.car-inp-2 {
    width: 170px !important;
}

.car-inp-3 {
    width: 143px !important;
}

.inp select {
    width: 215px;
    padding: 7px 10px;
    background-color: #e4c06f;
    color: #fff;
    border: 0;
    border-radius: 20px;
    outline: none;
    margin-bottom: 15px;
}

.bda-inp {
    width: 466px !important;
    background-color: yellow !important;
}

.wd-inp {
    width: 200px;
}

.cust-inp-2 {
    margin: 0px 15px;
    width: 700px !important;
}

.payment-inp {
    width: 683px !important;
}

.slab-inp-1 {
    width: 108px !important;
}

.slab-inp-2 {
    width: 108px !important;
}

.agent-inp {
    width: 465px !important;
}

.hod-inp {
    width: 466px !important;
}

.empty-inp {
    margin: 0px 125px;
    width: 700px !important;
}

.total-box {
    width: 100%;
    background-color: #C79F3D;
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 40px;
}

label {
    font-weight: 600;
}

.total-box label {
    color: #fff;
}

.total-box input {
    border: 1px solid #fff;
}

.total-inp-border {
    border: 1px solid #fff;
}

.total-inp-col-2 input {
    padding: 9px 7px;
    width: 232px !important;
}

.increase input::placeholder {
    width: 100px;
    background-color: red;
    color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-left: 10px;
}

.fob-inp input {
    background-color: yellow;
}

.total-2 {
    width: 98%;
    padding: 15px 30px;
    border-radius: 20px;
    background-size: cover;
    margin: 10px 25px 15px 0px;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px 0px #E8C46B;
    background: url("../images/Group\ 1000002954.jpg");
}

.print-btn-col {
    width: 100%;
}

.print-btn-col button {
    padding: 8px 25px;
    border: 2px solid #8cb9e6;
    background-color: #8cb9e6;
    color: #fff;
    border-radius: 30px;
    margin-left: 10px;
    float: right;
    transition: .4s;
}

.print-btn-col button a {
    color: #fff;
    text-decoration: none;
}

.print-btn-col button:hover {
    background-color: transparent;
}

.print-btn-col button:hover a {
    color: #629cd6;
}

.cust-info-inp input {
    width: 100px;
}

.inp p {
    font-weight: 600;
}

.customer-information {
    gap: 10px;
    width: 99%;
    display: flex;
    margin: 0px 0px 30px 0px;
    justify-content: space-between;
}


.customer-information .customer-data {
    width: 60%;
}

.customer-information .customer-data h1 {
    font-size: 35px;
    font-weight: 800;
    color: #e4c06f;
    text-align: center;
    margin-bottom: 0px;
}

.customer-information .customer-data {
    padding: 20px;
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px 0px #E8C46B;
    background-image: url("../images/BackWaves.jpg");
}

.customer-information .employe_addressInfo .address {
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px 0px #E8C46B;
    background-image: url("../images/BackWaves.jpg");
}

.customer-information .employe_addressInfo .information {
    padding: 20px;
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px 0px #E8C46B;
    background-image: url("../images/BackWaves.jpg");
}

.customer-information .employe_addressInfo .information .employe_info_btn {
    text-align: center;
}

.customer-information .employe_addressInfo .information .employe_info_btn button {
    color: #fff;
    padding: 9px 25px;
    border-radius: 25px;
    text-decoration: none;
    background-color: #8ABAEC;
    border: 1px solid #8ABAEC;
}

.customer-information .employe_addressInfo .information .employe_info_btn:hover button {
    color: #8ABAEC;
    border: 1px solid #8ABAEC;
    background-color: transparent;
}

.customer-information .employe_addressInfo {
    width: 40%;
}

.customer-information .employe_addressInfo .address h1 {
    font-size: 34px;
    font-weight: 800;
    color: #e4c06f;
    text-align: center;
    margin-bottom: 0px;
}

.customer-information .employe_addressInfo .information h1 {
    font-size: 32px;
    font-weight: 800;
    color: #e4c06f;
    text-align: center;
    margin-bottom: 0px;
}

.customer-information .customer-data .main-container .inputs-container {
    gap: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.customer-information .customer-data .main-container .inputs-container .rowsInput {
    width: 25%;
}

.customer-information .customer-data .main-container .inputs-container .rowsInput input {
    border: 0;
    width: 100%;
    padding: 8px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #e4c06f;
}

.customer-information .employe_addressInfo .address .addressMain-container .address-row {
    gap: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.customer-information .employe_addressInfo .address .addressMain-container .address-row .address-feilds {
    width: 25%;
}

.customer-information .employe_addressInfo .address .addressMain-container .address-row .address-feilds input {
    border: 0;
    width: 100%;
    padding: 8px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #e4c06f;
}

.customer-information .employe_addressInfo .address .addressMain-container .address-row .address-feilds select {
    border: 0;
    width: 100%;
    padding: 8px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #e4c06f;
}

.customer-information .employe_addressInfo .information .addressMain-container .address-row {
    gap: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.customer-information .employe_addressInfo .information .addressMain-container .address-row .address-feilds {
    width: 25%;
}

.customer-information .employe_addressInfo .information .addressMain-container .address-row .address-feilds input {
    border: 0;
    width: 100%;
    padding: 8px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #e4c06f;
}

.customer-information .employe_addressInfo .information .addressMain-container .address-row .address-feilds select {
    border: 0;
    width: 100%;
    padding: 8px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #e4c06f;
}


.port-container {
    width: 99%;
    padding: 20px 30px;
    border-radius: 20px;
    background-size: cover;
    margin: 0px 0px 30px 0px;
    background-repeat: no-repeat;
    background-image: url("../images/BackWaves.jpg");
    box-shadow: 0px 0px 10px 0px #E8C46B;
}

.port-container h1 {
    font-size: 35px;
    font-weight: 800;
    color: #e4c06f;
    text-align: center;
    margin-bottom: 0px;
}

.port-container .port-info .portInner-child {
    gap: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.port-container .port-info .portInner-child .firstChild {
    width: 30%;
}

.port-container .port-info .portInner-child .firstChild input {
    border: 0;
    width: 100%;
    padding: 8px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #e4c06f;
}

.port-container .port-info .portInner-child .secondChild {
    width: 70%;
}

.port-container .port-info .portInner-child .secondChild input {
    border: 0;
    width: 100%;
    padding: 8px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #e4c06f;
}

.vehicles-parent {
    width: 99%;
    padding: 20px 35px;
    border-radius: 20px;
    margin: 0px 0px 30px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/BackWaves.jpg");
    box-shadow: rgb(232, 196, 107) 0px 0px 10px 0px;
}

.vehicles-parent .vehicle-header h1 {
    font-size: 35px;
    font-weight: 800;
    color: #e4c06f;
    text-align: center;
    margin-bottom: 0px !important;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details {
    gap: 25px;
    width: 100%;
    display: flex;
    align-items: center;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input {
    width: 25%;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .short-dropdown {
    gap: 10px;
    width: 25%;
    display: flex;
    align-items: center;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .short-dropdown .nc .commom-bg {
    color: #fff;
    margin-left: 10px;
    padding: 0px 20px;
    border-radius: 25px;
    background-color: #324854;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .commom-bg {
    background-color: #324854;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .search-btn {
    color: #fff;
    outline: none;
    padding: 7px 20px;
    border-radius: 25px;
    text-decoration: none;
    border: 2px solid #8cb9e6;
    background-color: #8cb9e6;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .search-btn:hover {
    color: #8cb9e6;
    border: 2px solid #8cb9e6;
    background-color: transparent;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .ship-invoice {
    width: 50%;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .ship-invoice select {
    border: 0;
    width: 100%;
    padding: 7px;
    outline: none;
    margin-bottom: 15px;
    border-radius: 20px;
    background-color: #e4c06f;

}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .nc {
    width: 50%;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .nc select {
    border: 0;
    width: 100%;
    padding: 7px;
    outline: none;
    margin-bottom: 15px;
    border-radius: 20px;
    background-color: #e4c06f;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input input {
    border: 0;
    width: 100%;
    padding: 8px;
    outline: none;
    margin-bottom: 15px;
    border-radius: 20px;
    background-color: #e4c06f;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-dropdown {
    width: 25%;
}

.home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-dropdown select {
    border: 0;
    width: 100%;
    padding: 8px;
    outline: none;
    margin-bottom: 15px;
    border-radius: 20px;
    background-color: #e4c06f;
}


.rg-container-2 {
    width: 99%;
    margin-bottom: 15px;
    border-radius: 20px;
    box-shadow: rgb(232, 196, 107) 0px 0px 10px 0px;
}

.rg-container-2 table.rg-table tr {
    color: #213138;
    border-bottom: none !important;
}

.rg-container-2 .rg-table {
    width: 100%;
    box-shadow: none;
    margin: 0px 0px 10px 0px;
}

.rg-container-2 table tbody tr td {
    padding: 10px 5px !important;
}

.rg-container-2 table tbody tr td .req-btn {
    color: #fff;
    outline: none;
    padding: 6px 20px;
    border-radius: 25px;
    text-decoration: none;
    border: 1px solid #8cb9e6;
    background-color: #8cb9e6;
}

.cust-info-select select {
    width: 100px;
}

.rg-container {
    margin: 30px 0px 30px 0px;
}

.rg-container-own {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 3;
    color: #222;
    border: 0;
    border-radius: 8px;
    height: 380px;
    overflow: auto;
    margin: 10px 20px 0px 0px !important;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.rg-container-own::-webkit-scrollbar {
    width: 3px;
    border-radius: 50px;
    padding: 20px 0px;
}

.rg-container-own::-webkit-scrollbar-thumb {
    background-color: #C79F3D;
    border-radius: 50px;

}

.rg-header {
    margin-bottom: 24px;
    text-align: left;
}

.rg-header>* {
    display: block;
}

.rg-hed {
    font-weight: bold;
    font-size: 1.4em;
}

.rg-dek {
    font-size: 1em;
}

.rg-source {
    margin: 0;
    font-size: 1.6rem;
    text-align: right;
}

.rg-source .pre-colon {
    text-transform: uppercase;
}

.rg-source .post-colon {
    font-weight: bold;
}

/* table */
table.rg-table {
    width: 99%;
    margin-bottom: 0.5em;
    font-size: 1em;
    border-collapse: collapse;
    border-spacing: 0;
    overflow-x: scroll;
    box-shadow: 1px 0px 7px #E8C46B;
}

table.rg-table tr {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-align: left;
    color: #333;
}

table.rg-table thead {
    border-bottom: 1px solid #C3D1D7;
}

table.rg-table tr {
    border-bottom: 1px solid #C3D1D7;
    color: #213138;
}

table.rg-table tr.highlight {
    background-color: #C3D1D7 !important;
}

table.rg-table.zebra tr:nth-child(even) {
    background-color: #C3D1D7;
}

table.rg-table th {
    font-weight: bold;
    padding: 0.35em;
    font-size: 0.9em;
    padding: 10px 11px;
    text-align: center;
}

table.rg-table td {
    padding: 0.35em;
    font-size: 0.9em;
    padding: 10px 15px;
    text-align: center;
}

table.rg-table .highlight td {
    font-weight: bold;
}

.transaction-log {
    margin: 10px 20px 0px 0px !important;
    background-repeat: no-repeat;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.log-color {
    background-color: #E8C46B;
}

.flex-inp-2 {
    width: 100%;
    display: flex;
    gap: 20px;
    /* justify-content: space-between; */
}

.flex-2-ad {
    width: 300px !important;
}

.flex-2-ad-2 {
    width: 690px !important;
}

.inp-adj {
    width: 215px;
}

.inp-adj-2 {
    width: 215px !important;
}

.inp-search-btn {
    padding: 5px 30px;
    border-radius: 50px;
    border: 2px solid #e4c06f;
    background-color: #e4c06f;
    color: #fff;
    transition: .4s;
}

.inp-search-btn:hover {
    background-color: transparent;
    color: #000;
}

.inp-second {
    width: 130px;
    padding: 8px;
    outline: none;
    border: 0;
    background-color: #e4c06f;
    border-radius: 20px;
    margin-bottom: 10px;
}

.inp-second::placeholder {
    color: #fff
}

.inp-second-c {
    width: 130px;
    padding: 8px;
    outline: none;
    border: 0;
    background-color: #324854;
    border-radius: 20px;
    margin-bottom: 10px;
}

.inp-second-c::placeholder {
    color: #fff;
}

.rg-container-own-2 {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 3;
    color: #222;
    border: 0;
    border-radius: 8px;
    height: 310px;
    overflow: auto;
    margin: 10px 20px 0px 0px !important;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.rg-container-own-2::-webkit-scrollbar {
    width: 3px;
    border-radius: 50px;
    padding: 20px 0px;
}

.rg-container-own-2::-webkit-scrollbar-thumb {
    background-color: #C79F3D;
    border-radius: 50px;

}

.inp-input-9 {
    width: 758px;
    padding: 7px 10px;
    background-color: #e4c06f;
    color: #fff;
    border: 0;
    border-radius: 20px;
    outline: none;
}


.total-tab {
    width: 98%;
    padding: 15px 30px;
    border-radius: 20px;
    background-size: cover;
    margin: 10px 0px 15px 0px;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px 0px #E8C46B;
    background: url("../images/Group\ 1000002954.jpg");
}

.total-tab h1 {
    font-size: 35px;
    font-weight: 800;
    color: #e4c06f;
    text-align: center;
    margin-bottom: 0px;
}

.total-tab .employ-data .box-inputs {
    width: 100%;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    background-color: #C79F3D;
}

.total-tab .employ-data .box-inputs .employ-inputs {
    gap: 25px;
    width: 100%;
    display: flex;
    align-items: center;
}

.total-tab .employ-data .box-inputs .last-inputFeild {
    gap: 5px;
    width: 100%;
    display: flex;
    align-items: center;
}

.total-tab .employ-data .box-inputs .employ-inputs .inputs-childs {
    width: 25%;
}

.total-tab .employ-data .box-inputs .last-inputFeild .input-lable {
    width: 16%;
}

.total-tab .employ-data .box-inputs .last-inputFeild .last-input {
    width: 84%;
}

.total-tab .employ-data .box-inputs .employ-inputs .inputs-childs label {
    color: #fff;
    margin-bottom: 5px;
}

.total-tab .employ-data .box-inputs .employ-inputs .inputs-childs input {
    width: 100%;
    padding: 7px;
    outline: none;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid #fff;
    background-color: #e4c06f;
}

.total-tab .employ-data .box-inputs .last-inputFeild .input-lable label {
    color: #fff;
}

.total-tab .employ-data .box-inputs .last-inputFeild .last-input input {
    width: 100%;
    padding: 7px;
    outline: none;
    border-radius: 20px;
    border: 1px solid #fff;
    background-color: #e4c06f;
}


.total-tab .bottom-input .firstRow-input {
    gap: 25px;
    width: 100%;
    display: flex;
    align-items: center;
}

.total-tab .bottom-input .firstRow-input .value-inputs {
    width: 25%;
}

.total-tab .bottom-input .firstRow-input .value-inputs input {
    width: 100%;
    border: none;
    padding: 7px;
    outline: none;
    margin-bottom: 15px;
    border-radius: 20px;
    background-color: #e4c06f;
}


.total-tab .bottom-input .firstRow-input .innerText input::placeholder {
    width: 100px;
    color: #fff;
    padding: 0px 10px;
    background-color: #ED1C25;
    border-radius: 20px 0px 0px 20px;
}

.total-tab .bottom-input .firstRow-input .inner-colorFirst input {
    background-color: #FEFD0A;
}

.total-tab .bottom-input .secondRow-input .total-inputs .inner-colorSecond input {
    background-color: #82FB0E;
}

.total-tab .bottom-input .secondRow-input {
    gap: 25px;
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.total-tab .bottom-input .secondRow-input .value-inputs,
.total-inputs {
    width: 25%;
}

.total-tab .bottom-input .secondRow-input .value-inputs input {
    width: 100%;
    border: none;
    padding: 7px;
    outline: none;
    margin-bottom: 15px;
    border-radius: 20px;
    background-color: #e4c06f;
}

.total-tab .bottom-input .secondRow-input .total-inputs input {
    width: 100%;
    border: none;
    padding: 7px;
    outline: none;
    border-radius: 20px;
    background-color: #e4c06f;
}

.total-tab .employ-data .button-row {
    width: 100%;
    display: flex;
    margin: 30px 0px;
    align-items: center;
    justify-content: end;
}

.total-tab .employ-data .button-row .firstBtn {
    margin: 0px 10px;
}

.total-tab .employ-data .button-row .firstBtn a {
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    border: 1px solid #8ABAEC;
    background-color: #8ABAEC;
}

.total-tab .employ-data .button-row .firstBtn:hover a {
    color: #8ABAEC;
    border: 1px solid #8ABAEC;
    background-color: transparent;
}

.total-tab .employ-data .button-row .secondBtn:hover a {
    color: #8ABAEC;
    border: 1px solid #8ABAEC;
    background-color: transparent;
}

.total-tab .employ-data .button-row .secondBtn a {
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    border: 1px solid #8ABAEC;
    background-color: #8ABAEC;
}

.bottom_inputTable {
    padding: 15px;
    border-radius: 20px;
    width: 99% !important;
    background-size: cover;
    margin: 0px 0px 30px 0px;
    margin: 0px 0px 20px 0px;
    background-repeat: no-repeat;
    background-image: url("../images/BackWaves.jpg");
    box-shadow: rgb(232, 196, 107) 0px 0px 10px 0px;
}

.bottom_inputTable .table-responsive {
    width: 100% !important;
}

.bottom_inputTable .table-responsive table tr td input {
    width: 100%;
}

.bottom_inputTable .table-responsive table tbody tr td input::placeholder {
    color: #fff;
    font-size: 14px;
}

.bottom_inputTable .table-responsive table tbody tr td .common-input-one {
    border: none;
    outline: none;
    padding: 7px 10px;
    border-radius: 25px;
    background-color: #e4c06f;
}

.bottom_inputTable .table-responsive table tbody tr td .common-input-two {
    border: none;
    outline: none;
    padding: 7px 10px;
    border-radius: 25px;
    background-color: #324854;
}

.bottom_inputTable .table-responsive table tbody tr .checkBox {
    padding: 16px 10px;
}

.bottom_inputTable .table-responsive table tbody tr .req-button {
    padding: 16px 10px;
}

.bottom_inputTable .table-responsive table tbody tr td a {
    color: #fff;
    padding: 5px 20px;
    border-radius: 25px;
    text-decoration: none;
    border: 2px solid #8cb9e6;
    background-color: #8cb9e6;
}

.bottom_inputTable .table-responsive table tbody tr .req-button:hover a {
    color: #8cb9e6;
    border: 2px solid #8cb9e6;
    background-color: transparent;
}

.bottom_inputTable .table-responsive {
    width: 100% !important;
}

.bottom_inputTable .table-responsive .table {
    width: 100% !important;
}

.bottom_inputTable .table-responsive table {
    width: 100% !important;
}

.input-group i {
    top: 44%;
    left: 22px;
    font-size: 18px;
}

#ordersChart {
    width: 76px;
    height: 76px;
    display: block;
    box-sizing: border-box;
}

#salesDoughnutChart {
    width: 76px;
    height: 76px;
    display: block;
    box-sizing: border-box;
}

#salesDoughnutChart {
    height: 145px;
    width: 145px;
    display: block;
    box-sizing: border-box;
}

#ordersChart {
    height: 145px;
    width: 145px;
    display: block;
    box-sizing: border-box;
}

@media (max-width:600px) {

    input::placeholder {
        font-size: 11px;
        padding: 0px 10px;
    }

    .sidebar {
        width: 239px;
    }

    .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
        font-size: 13px;
    }

    .sidebar {
        &.close {
            width: 70px;
            padding: 10px;
        }
    }

    .sidebar header {
        & .image {
            img {
                width: 40px;
                border-radius: 35px;
            }
        }
    }

    .menu__btn {
        display: contents;
    }

    .sidebar header {
        margin-bottom: 25px;
    }

    .sidebar {
        & header {
            .image-text {
                display: flex;
                align-items: center;
                margin: 0px -3px;
            }
        }
    }

    .sidebar {
        &.close .sale-manage {
            background-color: #00000000 !important;
            padding: 0 !important;
            margin: 0px 13px !important;
        }
    }

    .sale-manage img {
        width: 25px;
        border-radius: 10px;
        margin: 0px 20px 0px 0px;
    }

    .sidebar .menu-bar {
        width: 100%;
        display: flex;
        overflow-y: scroll;
        flex-direction: column;
        justify-content: space-between;
        height: calc(100% - 100px);
    }

    .sidebar {
        &.close .toggle {
            right: -21px;
            transform: translateY(-50%) rotate(0deg);
        }
    }

    .mdk-h h1 {
        padding: 0px;
        font-size: 30px;
        color: #e4c06f;
        margin: 15px 0px 0px 0px;
    }

    .home-header img {
        width: 50px;
    }

    .home-header p {
        margin: 0px;
        font-size: 13px;
    }

    .home .greet {
        font-size: 16px;
        font-weight: 500;
        padding: 0px 10px;
        text-align: center;
    }

    .vechicle-management h1 {
        font-size: 17px;
        font-weight: 800;
        color: #e4c06f;
        text-align: center;
        margin-bottom: 0px !important;
    }

    .vechicle-management {
        width: 99%;
        padding: 15px 7px;
        margin: 0px;
    }

    .input-group label {
        font-size: 12px;
        font-weight: 500;
        color: #333333;
        margin: -2px 0px 0px 26px;
    }

    .hr-line {
        margin: 9px 0px;
        height: 2px !important;
    }

    .vechicle-management .vechicle-info .inputs-container input {
        padding: 2px;
        margin-bottom: 0px;
    }

    .vechicle-management .vechicle-info .inputs-container .select-feilds select {
        padding: 2px;
        margin-bottom: 7px;
    }

    .vechicle-management .vechicle-info .inputs-container {
        gap: 5px;
        width: 100%;
        flex-wrap: wrap;
    }

    .vechicle-management .vechicle-info .inputs-container .vechicle-input {
        gap: 5px;
        width: 100%;
        align-items: end;
        margin-bottom: 10px;
    }

    .vechicle-management .vechicle-info .inputs-container .select-feilds {
        width: 49%;
    }

    .vechicle-management .vechicle-info .inputs-container .input-parent {
        gap: 5px;
        width: 100%;
        margin-bottom: 6px;
    }

    .vechicle-management .vechicle-info .inputs-container .auction-input {
        width: 100%;
    }

    .sidebar header {
        .toggle {
            height: 20px;
            width: 20px;
            font-size: 10px;
        }
    }

    .customer-parent h1 {
        font-size: 23px;
        margin-bottom: 0px !important;
    }

    .customer-parent {
        width: 99%;
        margin: 15px 0px;
        padding: 15px 7px;
    }

    .customer-parent .customer-container input {
        padding: 2px;
        margin-bottom: 7px;
    }

    .customer-parent .customer-container .customer-details {
        gap: 5px;
        flex-wrap: wrap;
    }

    .customer-parent .customer-container select {
        padding: 2px;
        margin-bottom: 7px;
    }

    .customer-parent .customer-container .customer-details .customer-secondInput {
        width: 50%;
    }

    .customer-parent .customer-container .customer-details .customer-firstInput {
        width: 48%;
    }

    .customer-parent .customer-container .customer-details .customer-select {
        width: 49%;
    }

    .customer-parent .customer-container .customer-details .customer-input {
        width: 49%;
    }

    .customer-parent .customer-container .customer-details .slab-info {
        gap: 3px;
    }

    .customer-parent .customer-container .customer-Comments {
        gap: 5px;
    }

    .customer-parent .customer-container .last-child {
        width: 85%;
        margin: 0px auto;
    }

    .total-tab h1 {
        font-size: 23px;
        margin-bottom: 0px;
    }

    .total-tab {
        width: 99%;
        padding: 15px 7px;
        margin: 10px 0px 15px 0px;
    }

    .total-tab .employ-data .box-inputs {
        width: 100%;
        padding: 10px 5px;
        margin-bottom: 20px;
    }

    .total-tab .employ-data .box-inputs .employ-inputs .inputs-childs input {
        padding: 2px;
        margin-bottom: 10px;
    }

    .total-tab .employ-data .box-inputs .employ-inputs {
        gap: 5px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .total-tab .employ-data .box-inputs .employ-inputs .inputs-childs {
        width: 49%;
    }

    .total-tab .employ-data .box-inputs .last-inputFeild .last-input input {
        padding: 2px;
    }

    .total-tab .employ-data .box-inputs .last-inputFeild .input-lable {
        width: 40%;
    }

    .total-tab .employ-data .box-inputs .last-inputFeild .last-input {
        width: 58%;
    }

    .total-tab .bottom-input .firstRow-input {
        gap: 5px;
        flex-wrap: wrap;
    }

    .total-tab .bottom-input .firstRow-input .value-inputs {
        width: 49%;
    }

    .total-tab .bottom-input .firstRow-input .value-inputs input {
        padding: 2px;
        margin-bottom: 10px;
    }

    .total-tab .bottom-input .firstRow-input .innerText input {
        padding: 2px 7px;
    }

    .total-tab .bottom-input .firstRow-input .innerText input::placeholder {
        width: 50px;
        font-size: 11px;
    }

    .total-tab .bottom-input .firstRow-input .inner-colorFirst input::placeholder {
        font-size: 11px;
    }

    .total-tab .bottom-input .secondRow-input {
        gap: 5px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .total-tab .bottom-input .secondRow-input .value-inputs,
    .total-inputs {
        width: 49%;
    }

    .total-tab .bottom-input .secondRow-input .value-inputs input {
        padding: 2px;
        margin-bottom: 10px;
    }

    .total-tab .bottom-input .secondRow-input .total-inputs input {
        padding: 2px;
    }

    .total-tab .employ-data .button-row .firstBtn a {
        font-size: 13px;
        padding: 6px 10px;
    }

    .total-tab .employ-data .button-row .secondBtn a {
        font-size: 13px;
        padding: 6px 20px;
    }

    table.rg-table tr {
        border-bottom: 1px solid #C3D1D7;
        color: #213138;
        display: flex;
        flex-wrap: wrap;
    }

    .main-home {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0px 0px 0px 0px;
    }

    .inp-second {
        width: 248px;
    }

    .inp-second-c {
        width: 248px;
    }

    .flex-inp-2 {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .flex-2-ad {
        width: 225px !important;
    }

    .flex-2-ad-2 {
        width: 225px !important;
    }

    .inp input {
        width: 235px !important;
        padding: 5px 15px;
        outline: none;
        border: 0;
        background-color: #e4c06f;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .car-inp-1 {
        width: 230px !important;
    }

    .car-inp-2 {
        width: 230px !important;
    }

    .car-inp-3 {
        width: 230px !important;
    }

    .inp select {
        width: 130px !important;
        padding: 0px 10px;
        background-color: #e4c06f;
        color: #fff;
        border: 0;
        border-radius: 20px;
        outline: none;
        margin-bottom: 20px;
    }

    .payment-inp {
        width: 235px !important;
    }

    .total-2 {
        width: 93%;
        padding: 40px 0px;
        margin: 10px 50px 0px 0px;
        border-radius: 20px;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    }

    .total-box {
        padding: 20px 6px;
    }

    .inp input {
        width: 102px !important;
        padding: 5px 15px;
        outline: none;
        border: 0;
        background-color: #e4c06f;
        border-radius: 20px;
        margin-bottom: 10px;
    }

    .print-btn-col button {
        padding: 9px 23px;
        margin-bottom: 10px;
        font-size: 11px;
        border: 2px solid #8cb9e6;
        background-color: #8cb9e6;
        color: #fff;
        border-radius: 30px;
        margin-left: 10px;
        float: left;
        transition: .4s;
    }

    .inp-input-9 {
        width: 190px !important;
    }

    .container-own {
        padding-left: 67px !important;
    }

    .nbsp-786 {
        display: none;
    }

    .inp p {
        font-size: 12px;
        font-weight: 600;
    }

    .inp p {
        font-size: 10px;
        font-weight: 600;
    }

    table.rg-table {
        width: 99%;
    }

    .inp-search-btn {
        padding: 0px 29px;
    }

    .inp input {
        width: 130px !important;
        padding: 0px 15px;
    }

    .total-inp-col-2 input {
        width: 200px !important;
    }

    .total-inp-col-2 {
        margin: 0px 11px;
    }

    /* All Vehicles Css */
    .vehicles-parent {
        width: 99%;
        padding: 15px 9px;
        margin: 0px 0px 20px 0px;
    }

    .vehicles-parent .vehicle-header h1 {
        font-size: 23px;
        margin-bottom: 0px !important;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details {
        gap: 5px;
        flex-wrap: wrap;
        align-items: end;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input input {
        padding: 2px;
        margin-bottom: 0px;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-dropdown select {
        padding: 2px;
        margin-bottom: 0px;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input {
        width: 49%;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-dropdown {
        width: 49%;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .short-dropdown {
        gap: 2px;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .ship-invoice select {
        padding: 2px;
        margin-bottom: 0px;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .nc select {
        padding: 2px;
        margin-bottom: 0px;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .search-btn {
        font-size: 13px;
        padding: 5px 40px 0px 40px;
    }

    .vehicles-parent input::placeholder {
        font-size: 10px;
        padding: 0px 10px;
    }

    .bottom_inputTable {
        padding: 15px 9px;
        width: 99% !important;
        margin: 0px 0px 20px 0px;
    }

    .bottom_inputTable .table-responsive table tbody tr {
        padding: 7px 2px;
    }

    .bottom_inputTable .table-responsive table tbody td {
        padding: 9px 2px;
    }

    .bottom_inputTable .table-responsive table thead tr th {
        font-size: 12px;
        padding: 5px;
    }

    .bottom_inputTable .table-responsive table tbody tr td a {
        font-size: 13px;
        padding: 2px 10px;
    }

    .bottom_inputTable .table-responsive table tbody tr td input::placeholder {
        font-size: 10px;
        padding: 0px 10px;
    }

    .bottom_inputTable .table-responsive table tbody tr td .common-input-one {
        width: 80px;
        padding: 2px;
    }

    .bottom_inputTable .table-responsive table tbody tr td .common-input-two {
        width: 95px;
        padding: 2px;
    }

    .bottom_inputTable .table-responsive table tbody tr .checkBox {
        padding: 12px 0px;
    }

    .bottom_inputTable .table-responsive table tbody tr .req-button {
        padding: 10px 5px;
    }

    .home {
        width: 95%;
        padding: 0px 0px;
    }

    .customer-information {
        display: flex;
        flex-wrap: wrap;
        margin: 0px 0px 20px 0px;
    }

    .customer-information .customer-data {
        width: 100%;
        padding: 10px;
    }

    .customer-information .customer-data .main-container .inputs-container .rowsInput input {
        padding: 2px;
        margin-bottom: 0px;
    }

    .customer-information .customer-data h1 {
        font-size: 23px;
        margin-bottom: 0px;
    }

    .customer-information .customer-data .main-container .inputs-container {
        gap: 5px;
        flex-wrap: wrap;
    }

    .customer-information .customer-data .main-container .inputs-container .rowsInput {
        width: 49%;
    }

    .customer-information .employe_addressInfo {
        width: 100%;
    }

    .customer-information .employe_addressInfo .address h1 {
        font-size: 23px;
        margin-bottom: 0px;
    }

    .customer-information .employe_addressInfo .address .addressMain-container .address-row .address-feilds select {
        padding: 2px;
        margin-bottom: 0px;
    }

    .customer-information .employe_addressInfo .address .addressMain-container .address-row .address-feilds input {
        padding: 2px;
        margin-bottom: 10px;
    }

    .customer-information .employe_addressInfo .address {
        padding: 10px;
        margin-bottom: 10px;
    }

    .customer-information .employe_addressInfo .address .addressMain-container .address-row {
        gap: 5px;
        flex-wrap: wrap;
        align-items: baseline;
    }

    .customer-information .employe_addressInfo .address .addressMain-container .address-row .address-feilds {
        width: 49%;
    }

    .customer-information .employe_addressInfo .information h1 {
        font-size: 23px;
        margin-bottom: 0px;
    }

    .customer-information .employe_addressInfo .information {
        padding: 10px;
    }

    .customer-information .employe_addressInfo .information .addressMain-container .address-row .address-feilds input {
        padding: 2px;
        margin-bottom: 10px;
    }

    .customer-information .employe_addressInfo .information .addressMain-container .address-row .address-feilds select {
        padding: 2px;
        margin-bottom: 0px;
    }

    .customer-information .employe_addressInfo .information .addressMain-container .address-row {
        gap: 5px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .customer-information .employe_addressInfo .information .addressMain-container .address-row .address-feilds {
        width: 49%;
    }

    .customer-information .employe_addressInfo .information .employe_info_btn button {
        font-size: 13px;
        padding: 5px 15px;
    }

    .port-container {
        padding: 10px;
        margin: 0px 0px 20px 0px;
    }

    .port-container h1 {
        font-size: 23px;
        margin-bottom: 0px;
    }

    .port-container .port-info .portInner-child .firstChild input {
        padding: 2px;
        margin-bottom: 10px;
    }

    .port-container .port-info .portInner-child .secondChild input {
        padding: 2px;
        margin-bottom: 10px;
    }

    .port-container .port-info .portInner-child {
        gap: 5px;
    }

    .form-container .login-content {
        width: 46%;
    }

    .form-container .login-form {
        width: 54%;
    }

    .form-container .login-content .content h1 {
        color: #fff;
        margin-bottom: 5px;
        font-size: 15px;
        text-align: center;
    }

    .form-container .login-content .content p {
        color: #fff;
        font-size: 8px;
        text-align: center;
        margin-bottom: 15px !important;
    }

    .form-container .login-content .content {
        text-align: center;
    }

    .form-container .login-content .content a {
        font-size: 10px;
        padding: 5px 15px;
    }

    .login-container {
        width: 95%;
        padding: 60px 0px;
        margin: 0px auto;
    }

    .login-container img {
        width: 40%;
        padding: 0px;
        margin: 9px auto;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .login-container p {
        text-align: center;
        margin-bottom: 10px;
    }

    .login-container h2 {
        text-align: center;
        margin-bottom: 0px;
    }

    .input-group input {
        font-size: 13px;
        margin-bottom: 0px;
        padding: 10px 0px 10px 28px;
        background-color: #E2E2E2 !important;
    }

    .input-group i {
        top: 50%;
        left: 10px;
        font-size: 12px;
    }

    .login-container .login-btn {
        font-size: 12px;
        padding: 7px 10px;
        margin-bottom: 0px;
    }

    .forgot-password {
        font-size: 12px;
        margin-top: 5px;
    }

    .home .cards-parent {
        width: 95%;
        margin: 10px auto;
    }

    .home .cards-parent .child-card .card {
        margin-bottom: 10px;
    }

    .salesOrder-parent {
        width: 95%;
        margin: 20px auto;
    }

    .salesOrder-parent .tabs {
        display: flex;
        padding: 10px;
        flex-wrap: wrap;
        border-radius: 7px;
        justify-content: space-between;
    }

    .tab {
        border: none;
        font-size: 13px;
        padding: 4px 6px;
        border-radius: 5px;
    }

    .tabs {
        gap: 7px;
        margin-bottom: 15px;
    }

    .salesOrder-parent .charts .firstTab {
        width: 100%;
        margin: 5px auto;
        align-items: center;
    }

    .salesOrder-parent .charts .secondTab {
        width: 100%;
        margin: 5px auto;
        align-items: center;
    }

    .charts {
        display: flex;
        flex-wrap: wrap;
    }

    #salesDoughnutChart {
        width: 76px !important;
        height: 76px !important;
        display: block;
        box-sizing: border-box;
    }

    .date-inputs {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .date-button {
        width: 45%;
        font-size: 13px;
        padding: 7px 2px;
        border-radius: 13px;
    }

    .datesTab {
        width: 95%;
        padding: 10px;
        flex-wrap: wrap;
        border-radius: 14px;
    }

    .search-section {
        width: 100%;
        display: flex;
        margin: 10px 0px;
        align-items: center;
    }

    .search-input {
        border-radius: 9px;
    }

    .lineChart-parent {
        width: 95%;
        border-radius: 15px;
        padding: 10px 0px 10px 0px;
    }

    .Charts-box .costumer-shipMood {
        gap: 10px;
        width: 95%;
        display: flex;
        flex-wrap: wrap;
        margin: 0px auto;
        align-items: flex-start;
    }

    .Charts-box .costumer-shipMood .firstChart {
        width: 100%;
        border-radius: 12px;
    }

    .Charts-box .costumer-shipMood .secondChart {
        width: 100%;
        border-radius: 12px;
    }

    .Charts-box .years-costumerCount {
        gap: 10px;
        width: 95%;
        display: flex;
        flex-wrap: wrap;
        margin: 20px auto;
        align-items: flex-start;
        justify-content: space-between;
    }

    .Charts-box .years-costumerCount .firstChart {
        width: 100%;
        border-radius: 12px;
    }

    .Charts-box .years-costumerCount .secondChart {
        width: 100%;
        border-radius: 12px;
    }

    .Charts-box .years-costumerCount .secondChart canvas {
        padding: 0px;
    }

    .mapChart {
        width: 95%;
        padding: 10px;
        border-radius: 12px;
    }

    .saleAgent {
        width: 95%;
        padding: 10px;
        border-radius: 12px;
    }

}

@media (min-width:600px) and (max-width:768px) {

    .mdk-h h1 {
        width: 222px;
        font-size: 29px;
        padding: 0px;
    }

    .home-header {
        gap: 0px;
        display: flex;
        padding: 10px 0px;
        align-items: center;
    }

    .home-header img {
        width: 60px;
    }

    .vechicle-management {
        width: 99%;
        padding: 15px;
        margin: 0px 0px 20px 0px;
    }

    .home .greet {
        font-size: 16px;
        padding: 0px 10px;
    }

    .main-home {
        display: flex;
        padding: 0px 10px;
        align-items: center;
        margin: 0px 0px 0px 0px;
        justify-content: space-between;
    }

    .form-label {
        font-size: 13px;
    }

    .vechicle-management h1 {
        font-size: 26px;
        margin-bottom: 0px !important;
    }

    .vechicle-management .vechicle-info .inputs-container .vechicle-input {
        gap: 10px;
        width: 50%;
    }

    .vechicle-management .vechicle-info .inputs-container {
        gap: 10px;
        width: 100%;
        align-items: flex-end;
    }

    .vechicle-management .vechicle-info .inputs-container .input-parent {
        gap: 10px;
        width: 50%;
    }

    .vechicle-management .vechicle-info .inputs-container input {
        padding: 4px;
        margin-bottom: 15px;
    }

    .vechicle-management .vechicle-info .inputs-container .select-feilds select {
        padding: 4px;
        margin-bottom: 15px;
    }

    .customer-parent h1 {
        font-size: 26px;
        margin-bottom: 0px !important;
    }

    .customer-parent {
        width: 99%;
        padding: 15px;
        margin: 0px 0px 20px 0px;
    }

    .customer-parent .customer-container .customer-details {
        gap: 10px;
        width: 100%;
    }

    .customer-parent .customer-container input {
        padding: 4px;
        margin-bottom: 15px;
    }

    .customer-parent .customer-container select {
        padding: 4px;
        margin-bottom: 15px;
    }

    .customer-parent .customer-container .customer-details .slab-info {
        gap: 4px;
    }

    .customer-parent .customer-container .customer-Comments {
        gap: 10px;
    }

    .customer-parent .customer-container .last-child {
        width: 80%;
        margin: 0px auto;
    }

    .total-tab h1 {
        font-size: 26px;
        margin-bottom: 0px;
    }

    .total-tab {
        width: 99%;
        padding: 15px;
        margin: 0px 0px 20px 0px;
    }

    .total-tab .employ-data .box-inputs {
        padding: 15px;
        margin-bottom: 30px;
    }

    .total-tab .employ-data .box-inputs .employ-inputs {
        gap: 10px;
    }

    .total-tab .employ-data .box-inputs .employ-inputs .inputs-childs input {
        padding: 3px;
        margin-bottom: 15px;
    }

    .total-tab .employ-data .box-inputs .last-inputFeild .input-lable {
        width: 30%;
    }

    .total-tab .employ-data .box-inputs .last-inputFeild .last-input {
        width: 70%;
    }

    .total-tab .employ-data .box-inputs .last-inputFeild .last-input input {
        padding: 2px;
    }

    .total-tab .bottom-input .firstRow-input {
        gap: 10px;
    }

    .total-tab .bottom-input .firstRow-input .value-inputs input {
        padding: 4px;
        margin-bottom: 15px;
    }

    .total-tab .bottom-input .secondRow-input {
        gap: 10px;
        align-items: baseline;
    }

    .total-tab .bottom-input .secondRow-input .value-inputs input {
        padding: 4px;
        margin-bottom: 15px;
    }

    .total-tab .bottom-input .firstRow-input .value-inputs input::placeholder {
        font-size: 11px;
    }

    .total-tab .bottom-input .secondRow-input .total-inputs input {
        padding: 4px;
    }

    .total-tab .bottom-input .secondRow-input .value-inputs input::placeholder {
        font-size: 11px;
    }

    .total-tab .bottom-input .secondRow-input .total-inputs input::placeholder {
        font-size: 11px;
    }

    .total-tab .employ-data .button-row .firstBtn a {
        font-size: 13px;
        padding: 7px 12px;
    }

    .total-tab .employ-data .button-row .secondBtn a {
        font-size: 13px;
        padding: 7px 30px;
    }

    .vehicles-parent .vehicle-header h1 {
        font-size: 27px;
        margin-bottom: 0px !important;
    }

    .vehicles-parent {
        width: 99%;
        padding: 15px;
        margin: 0px 0px 20px 0px;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details {
        gap: 10px;
        flex-wrap: wrap;
        align-items: end;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input {
        width: 48%;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input input {
        padding: 4px;
        margin-bottom: 0px;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-dropdown select {
        padding: 4px;
        margin-bottom: 15px;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-dropdown {
        width: 48%;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .short-dropdown {
        gap: 3px;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .ship-invoice select {
        padding: 4px;
        margin-bottom: 15px;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .nc select {
        padding: 4px;
        margin-bottom: 15px;
    }

    .home .vehicles-parent .vehicle-header .all-vehicles .vehicles-details .vehicle-input .search-btn {
        padding: 6px 75px 0px 75px;
    }

    .bottom_inputTable .table-responsive table tbody tr td .common-input-one {
        width: 80px;
        padding: 4px;
    }

    .bottom_inputTable .table-responsive table tbody tr td .common-input-two {
        width: 120px;
        padding: 4px;
    }

    .bottom_inputTable .table-responsive table tbody tr .checkBox {
        padding: 13px 10px;
    }

    .bottom_inputTable .table-responsive table tbody tr td a {
        font-size: 14px;
        padding: 4px 20px;
    }

    .bottom_inputTable .table-responsive table tbody tr .req-button {
        padding: 12px 8px;
    }

    .customer-information {
        flex-wrap: wrap;
        margin: 0px 0px 20px 0px;
    }

    .customer-information .customer-data {
        width: 100%;
        padding: 15px;
    }

    .customer-information .customer-data h1 {
        font-size: 26px;
        margin-bottom: 0px;
    }

    .customer-information .customer-data .main-container .inputs-container {
        gap: 5px;
    }

    .customer-information .customer-data .main-container .inputs-container .rowsInput input {
        padding: 4px;
        margin-bottom: 15px;
    }

    .home-header p {
        font-size: 12px;
    }

    .customer-information .employe_addressInfo {
        width: 100%;
    }

    .customer-information .employe_addressInfo .address {
        padding: 15px;
        margin-bottom: 10px;
    }

    .customer-information .employe_addressInfo .address h1 {
        font-size: 26px;
        margin-bottom: 0px;
    }

    .customer-information .employe_addressInfo .address .addressMain-container .address-row {
        gap: 5px;
    }

    .customer-information .employe_addressInfo .address .addressMain-container .address-row .address-feilds select {
        padding: 4px;
        margin-bottom: 15px;
    }

    .customer-information .employe_addressInfo .address .addressMain-container .address-row .address-feilds input {
        padding: 4px;
        margin-bottom: 15px;
    }

    .customer-information .employe_addressInfo .information h1 {
        font-size: 26px;
        margin-bottom: 0px;
    }

    .customer-information .employe_addressInfo .information {
        padding: 15px;
    }

    .customer-information .employe_addressInfo .information .addressMain-container .address-row .address-feilds select {
        padding: 4px;
        margin-bottom: 15px;
    }

    .customer-information .employe_addressInfo .information .addressMain-container .address-row .address-feilds input {
        padding: 4px;
        margin-bottom: 15px;
    }

    .customer-information .employe_addressInfo .information .addressMain-container .address-row {
        gap: 5px;
    }

    .customer-information .employe_addressInfo .information .employe_info_btn button {
        font-size: 14px;
        padding: 5px 20px;
    }

    .port-container {
        padding: 15px;
        margin: 0px 0px 20px 0px;
    }

    .port-container h1 {
        font-size: 28px;
    }

    .port-container .port-info .portInner-child {
        gap: 5px;
    }

    .port-container .port-info .portInner-child .firstChild input {
        padding: 4px;
        margin-bottom: 15px;
    }

    .port-container .port-info .portInner-child .secondChild input {
        padding: 4px;
        margin-bottom: 15px;
    }

    .login-container {
        width: 85%;
        margin: 0px auto;
    }

    .form-container .login-content .content h1 {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .form-container .login-content .content p {
        color: #fff;
        font-size: 12px;
        margin-bottom: 15px !important;
    }

    .form-container .login-content .content a {
        font-size: 12px;
        padding: 5px 15px;
    }

    .login-container p {
        text-align: left;
        margin-bottom: 15px;
    }

    .input-group input {
        margin-bottom: 10px;
        padding: 13px 0px 13px 50px;
        background-color: #E2E2E2 !important;
    }

    .login-container .login-btn {
        padding: 8px 10px;
        margin-bottom: 5px;
    }

    .login-container img {
        width: 33%;
        padding: 20px 0px 20px 0px;
    }

    .salesOrder-parent .charts .secondTab {
        width: 50%;
        align-items: center;
    }

    .Charts-box .costumer-shipMood .firstChart {
        height: 300px;
    }

    .Charts-box .years-costumerCount .secondChart {
        height: 307px !important;
    }

    #topCustomers {
        width: 317px;
        height: 225px;
        display: block;
        box-sizing: border-box;
    }
}

@media (min-width:992px) {

    .vechicle-management {
        width: 99%;
        padding: 15px;
        margin: 0px 0px 20px 0px;
    }

    .vechicle-management h1 {
        font-size: 30px;
        margin-bottom: 0px !important;
    }

    .vechicle-management .vechicle-info .inputs-container .vechicle-input {
        gap: 15px;
        width: 50%;
    }

    .vechicle-management .vechicle-info .inputs-container {
        gap: 15px;
    }

    .vechicle-management .vechicle-info .inputs-container .input-parent {
        gap: 10px;
        width: 51%;
    }

    .customer-parent h1 {
        font-size: 30px;
        margin-bottom: 0px !important;
    }

    .customer-parent {
        width: 99%;
        padding: 20px;
        margin: 0px 0px 20px 0px;
    }

    .customer-parent .customer-container .customer-details {
        gap: 15px;
    }

    .form-label {
        font-size: 14px;
        margin-bottom: 0px !important;
    }

    .customer-parent .customer-container .customer-details .slab-info {
        gap: 5px;
    }

    .customer-parent .customer-container .customer-Comments {
        gap: 15px;
    }

    .total-tab h1 {
        font-size: 30px;
        margin-bottom: 0px;
    }

    .total-tab {
        width: 99%;
        padding: 15px;
        margin: 0px 0px 20px 0px;
    }

    .total-tab .employ-data .box-inputs {
        width: 100%;
        padding: 15px;
        margin-bottom: 30px;
    }

    .total-tab .employ-data .box-inputs .employ-inputs {
        gap: 15px;
    }

    .total-tab .employ-data .box-inputs .last-inputFeild .input-lable {
        width: 20%;
    }

    .total-tab .employ-data .box-inputs .last-inputFeild .last-input {
        width: 80%;
    }

    .total-tab .bottom-input .firstRow-input {
        gap: 15px;
    }

    .total-tab .bottom-input .secondRow-input {
        gap: 15px;
    }

    .total-tab .employ-data .button-row .firstBtn a {
        font-size: 14px;
        padding: 8px 18px;
    }

    .total-tab .employ-data .button-row .secondBtn a {
        font-size: 14px;
        padding: 8px 35px;
    }

    .bottom_inputTable .table-responsive table tbody tr td .common-input-one {
        width: 100px;
        padding: 8px;
    }

    .bottom_inputTable .table-responsive table tbody tr td .common-input-two {
        width: 120px;
        padding: 8px;
    }

    .customer-information .employe_addressInfo .address {
        padding: 10px;
        margin-bottom: 10px;
    }

    .customer-information .employe_addressInfo .address .addressMain-container .address-row {
        gap: 5px;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .customer-information .customer-data {
        padding: 10px;
    }

    .customer-information .customer-data h1 {
        font-size: 34px;
        margin-bottom: 0px;
    }

    .customer-information .employe_addressInfo .information {
        padding: 10px;
    }

    .customer-information .employe_addressInfo .information .employe_info_btn button {
        font-size: 15px;
        padding: 5px 20px;
    }

    .port-container {
        padding: 10px;
        margin: 0px 0px 20px 0px;
    }

    .port-container .port-info .portInner-child {
        gap: 10px;
    }

    .port-container .port-info .portInner-child .firstChild input {
        padding: 7px;
    }

    .port-container .port-info .portInner-child .secondChild input {
        padding: 7px;
    }

}

@media (min-width:1200px) {

    .vechicle-management h1 {
        font-size: 35px;
        font-weight: 800;
        text-align: center;
        color: #e4c06f;
        margin-bottom: 0px !important;
    }

    .vechicle-management {
        width: 99%;
        padding: 20px 35px;
        border-radius: 20px;
        background-size: cover;
        margin: 0px 0px 30px 0px;
        background-repeat: no-repeat;
        box-shadow: 0px 0px 10px 0px #E8C46B;
        background: url("../images/BackWaves.jpg");
    }

    .form-label {
        font-size: 16px;
        margin-bottom: 0px !important;
    }

    .vechicle-management .vechicle-info .inputs-container .vechicle-input {
        gap: 25px;
        width: 50%;
        display: flex;
        align-items: center;
    }

    .vechicle-management .vechicle-info .inputs-container {
        gap: 25px;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .vechicle-management .vechicle-info .inputs-container .input-parent {
        gap: 15px;
        width: 50%;
        display: flex;
        align-items: flex-end;
    }

    .vechicle-management .vechicle-info .inputs-container input {
        border: 0;
        padding: 8px;
        outline: none;
        border-radius: 20px;
        margin-bottom: 15px;
        background-color: #e4c06f;
    }

    .vechicle-management .vechicle-info .inputs-container .select-feilds select {
        border: 0;
        width: 100%;
        padding: 8px;
        outline: none;
        border-radius: 20px;
        margin-bottom: 15px;
        background-color: #e4c06f;
    }


    .customer-parent h1 {
        font-size: 35px;
        font-weight: 800;
        text-align: center;
        color: #e4c06f;
        margin-bottom: 0px !important;
    }

    .customer-parent {
        width: 99%;
        padding: 20px 35px;
        border-radius: 20px;
        background-size: cover;
        margin: 0px 0px 30px 0px;
        background-repeat: no-repeat;
        box-shadow: 0px 0px 30px 0px #E8C46B;
        background: url("../images/BackWaves.jpg");
    }

    .customer-parent .customer-container .customer-details {
        gap: 25px;
        width: 100%;
        display: flex;
        align-items: end;
    }

    .customer-parent .customer-container input {
        border: 0;
        padding: 8px;
        outline: none;
        border-radius: 20px;
        margin-bottom: 15px;
        background-color: #e4c06f;
    }

    .customer-parent .customer-container select {
        border: 0;
        padding: 8px;
        outline: none;
        border-radius: 20px;
        margin-bottom: 15px;
        background-color: #e4c06f;
    }

    .customer-parent .customer-container .customer-details {
        gap: 25px;
        width: 100%;
        display: flex;
        align-items: end;
    }

    .total-tab .bottom-input .firstRow-input .value-inputs input {
        width: 100%;
        border: none;
        padding: 8px;
        outline: none;
        margin-bottom: 15px;
        border-radius: 20px;
        background-color: #e4c06f;
    }

    .total-tab .bottom-input .secondRow-input .value-inputs input {
        width: 100%;
        border: none;
        padding: 8px;
        outline: none;
        margin-bottom: 15px;
        border-radius: 20px;
        background-color: #e4c06f;
    }

    .customer-parent .customer-container .last-child {
        width: 70%;
        margin: 0px auto;
    }

    .total-tab .bottom-input .secondRow-input .total-inputs input {
        width: 100%;
        border: none;
        padding: 8px;
        outline: none;
        border-radius: 20px;
        background-color: #e4c06f;
    }

    .total-tab h1 {
        font-size: 35px;
        font-weight: 800;
        color: #e4c06f;
        text-align: center;
        margin-bottom: 0px;
    }

    .total-tab {
        width: 99%;
        padding: 15px 30px;
        border-radius: 20px;
        background-size: cover;
        margin: 10px 0px 15px 0px;
        background-repeat: no-repeat;
        box-shadow: 0px 0px 30px 0px #E8C46B;
        background: url("../images/BackWaves.jpg");
    }

    .total-tab .employ-data .box-inputs .employ-inputs {
        gap: 25px;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .total-tab .bottom-input .firstRow-input {
        gap: 25px;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .total-tab .bottom-input .secondRow-input {
        gap: 25px;
        width: 100%;
        display: flex;
        align-items: flex-start;
    }

    .total-tab .employ-data .box-inputs {
        width: 100%;
        padding: 20px 30px;
        border-radius: 10px;
        margin-bottom: 40px;
        background-color: #C79F3D;
    }

    .total-tab .employ-data .button-row .firstBtn a {
        color: #fff;
        padding: 11px 20px;
        border-radius: 25px;
        text-decoration: none;
        border: 1px solid #8ABAEC;
        background-color: #8ABAEC;
    }

    .total-tab .employ-data .button-row .secondBtn a {
        color: #fff;
        padding: 11px 30px;
        border-radius: 25px;
        text-decoration: none;
        border: 1px solid #8ABAEC;
        background-color: #8ABAEC;
    }

    .bottom_inputTable .table-responsive table tbody tr td .common-input-one {
        width: 100%;
        padding: 8px;
    }

    .bottom_inputTable .table-responsive table tbody tr td .common-input-two {
        width: 100%;
        padding: 8px;
    }

    .bottom_inputTable .table-responsive table tbody tr td a {
        color: #fff;
        padding: 5px 20px;
        border-radius: 25px;
        text-decoration: none;
        border: 2px solid #8cb9e6;
        background-color: #8cb9e6;
    }

    .customer-information .customer-data {
        padding: 20px 35px;
    }

    .customer-information .employe_addressInfo .address {
        padding: 20px;
        margin-bottom: 10px;
    }

    .customer-information .employe_addressInfo .information {
        padding: 20px;
    }

    .port-container {
        padding: 20px 30px;
        margin: 0px 0px 20px 0px;
    }

    .port-container .port-info .portInner-child .firstChild input {
        padding: 8px;
    }

    .port-container .port-info .portInner-child .secondChild input {
        padding: 8px;
    }

}