@import url("https://fonts.googleapis.com/css2?family=Akshar:wght@300&family=Anek+Odia:wght@400;500&display=swap");

*,
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'DefaultFont'!important;
    src: url('../fonts/GOTHIC.TTF') format('truetype')!important;
}

body {
    font-family: "Ubuntu", sans-serif;
}

.container {
    width: 1500px;
    max-width: 1500px;
    overflow: hidden;
    margin: auto auto;
    padding: 0;
}

.main-page {
    display: flex;
}

@media screen and (max-width: 1500px) {
    .container {
        width: 100%;
        max-width: 100%;
    }
}

.fs-14 {
    font-size: 14px;
}

.fs-12 {
    font-size: 12px;
}

.input {
    border-radius: 8px;
    padding: 9px 16px 9px 14px;
    gap: 10px;
    border: 1px solid #e5e9eb;
}

    .input:focus {
        outline: 1px solid #1f35d0;
    }

.input-validation-error {
    outline: 1px solid #fb4132;
}

.err-input {
    outline: 1px solid #fb4132;
}

.checkbox {
    position: relative;
    width: 20px;
    height: 20px;
}

    .checkbox input {
        display: none;
    }

    .checkbox .lbl-ck {
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        border-radius: 5px;
        margin-right: 13px;
        border: 1.5px solid #b1b5c3;
        cursor: pointer;
    }

        .checkbox .lbl-ck::after {
            content: "";
            position: absolute;
            display: none;
        }

    .checkbox input:checked ~ .lbl-ck {
        background-color: #007df9;
        border: 1px solid #007df9;
    }

        .checkbox input:checked ~ .lbl-ck:after {
            display: block;
            left: 7px;
            top: 3px;
            width: 3px;
            height: 8px;
            border: solid white;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

.ip-ck {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    margin-right: 13px;
}

    .ip-ck:checked {
        background: #007df9;
    }

.btn {
    justify-content: center;
    align-items: center;
    padding: 8px 28px;
    border-radius: 4px;
    width: 99px;
    height: 40px;
    border: none;
    cursor: pointer;
}

    .btn:hover {
        opacity: 0.8;
    }

.btn-primary {
    background: #0066ff;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

    .btn-primary:hover {
        opacity: 0.8;
    }

.btn-default {
    background: #d8dae5;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #696f8c;
}

    .btn-default:hover {
        opacity: 0.8;
    }

.btns {
    background: #1f35d0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff!important;
    padding: 16px;
    gap: 12px;
    height: 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.0125em;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

    .btns:hover {
        opacity: 0.8;
    }

.btns-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-disable {
    background: #7986e3;
    opacity: 0.5;
    cursor: no-drop !important;
}

.btn-error {
    background: #e93842;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    padding: 2px 12px;
    color: #ffffff;
    border-radius: 8px;
}

    .btn-error:hover {
        opacity: 0.8;
    }

.btn-ghost {
    background: #141416;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    padding: 4px 12px;
    color: #f6f8f9;
    border-radius: 8px;
    white-space: nowrap;
}

    .btn-ghost:hover {
        opacity: 0.8;
    }

.btn-ghost-disable {
    background: #696f8c;
    cursor: no-drop;
    opacity: 0.8;
}

.btn-secondary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #141416;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #141416;
    cursor: pointer;
}

    .btn-secondary:hover {
        opacity: 0.8;
    }

.mt-10 {
    margin-top: 10px;
}

.mt-12 {
    margin-top: 12px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-15 {
    margin-left: 15px;
}

.cs-pt {
    cursor: pointer;
}

.ds-none {
    display: none !important;
}

.ds-bl {
    display: block !important;
}

.m-10 {
    margin: 0 10px;
}

.mh-600 {
    min-height: 600px;
}

.select {
    position: relative;
    min-width: 150px;
    background: #ffffff;
}

    .select .op-select {
        position: relative;
        padding: 9px 16px 9px 16px;
        height: 42px;
        border-radius: 8px;
        width: 100%;
        color: #141416;
        font-weight: 400;
        font-size: 14px;
        border: 1px solid #b1b5c4;
        line-height: 24px;
        cursor: pointer;
    }

    .select .options {
        width: 100%;
        margin-top: 0px;
        border: 1px solid #e5e9eb;
        position: absolute;
        top: 42px;
        background: #ffffff;
        z-index: 10;
        filter: drop-shadow(0px 7px 29px rgba(100, 100, 111, 0.2));
        border-radius: 10px;
    }

        .select .options .option {
            padding: 8px 14px;
            cursor: pointer;
        }

            .select .options .option:hover {
                background: #f6f8f9;
            }

    .select .img-drop {
        position: absolute;
        top: 8px;
        right: 14px;
    }

    .select .arrow-up {
        display: none;
    }

.active-select .op-select {
    outline: none;
    border: 1.5px solid #1f35d0;
    box-shadow: 0px 2px 8px rgba(31, 53, 208, 0.2);
    border-radius: 12px;
}

.active-select .arrow-down {
    display: none;
}

.active-select .arrow-up {
    display: block;
}

.nav-bar {
    width: 240px;
    max-width: 240px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f6f8f9;
    border: 1px solid #e5e9eb;
    padding: 35px 0px;
    position: relative;
}

    .nav-bar .close {
        display: none;
    }

    .nav-bar .logo {
        width: 150px;
    }

    .nav-bar .wrapper-nav {
        margin-top: 35px;
        width: 100%;
    }

        .nav-bar .wrapper-nav .group-menu {
            width: 100%;
        }

            .nav-bar .wrapper-nav .group-menu .menu {
                width: 100%;
                padding: 10px 24px;
                cursor: pointer;
            }

                .nav-bar .wrapper-nav .group-menu .menu .menu-item {
                    display: flex;
                    align-items: center;
                }

                    .nav-bar .wrapper-nav .group-menu .menu .menu-item .txt-menu {
                        font-weight: 400;
                        font-size: 16px;
                        line-height: 24px;
                        margin-left: 14px;
                    }

                .nav-bar .wrapper-nav .group-menu .menu .menu-dropdown {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                }

                    .nav-bar .wrapper-nav .group-menu .menu .menu-dropdown .menu-dropdown-group {
                        display: flex;
                        align-items: center;
                    }

                .nav-bar .wrapper-nav .group-menu .menu .menu-dropdown-item {
                    display: flex;
                    align-items: center;
                }

            .nav-bar .wrapper-nav .group-menu .menu-dr-item {
                width: 100%;
                padding: 0 24px 0 36px;
            }

                .nav-bar .wrapper-nav .group-menu .menu-dr-item .menu-dropdown-item .hr-ver {
                    border-left: 1px solid #e5e9eb;
                    height: 44px;
                }

                .nav-bar .wrapper-nav .group-menu .menu-dr-item .menu-dropdown-item .txt-menu {
                    margin-left: 26px;
                }

            .nav-bar .wrapper-nav .group-menu .active {
                background: #e9ebfa;
                border-right: 3px solid #4c5dd9;
            }

                .nav-bar .wrapper-nav .group-menu .active .menu-item .txt-menu {
                    font-size: 14px;
                    color: #1f35d0;
                }

            .nav-bar .wrapper-nav .group-menu .active-dropdown {
                border-right: none;
                background: transparent;
            }

                .nav-bar .wrapper-nav .group-menu .active-dropdown .menu-item .txt-menu {
                    font-size: 16px;
                    color: #1f35d0;
                }

        .nav-bar .wrapper-nav .hr-menu {
            border: 1px solid #e5e9eb;
            margin: 20px 0px;
        }

    .nav-bar .btn-nav {
        margin-top: 40px;
    }

        .nav-bar .btn-nav button {
            background: #4c5dd9;
        }

@media screen and (max-width: 1200px) {
    .nav-bar {
        position: fixed;
        height: 100vh;
        z-index: 11;
        top: 0;
        left: 0;
        overflow: auto;
        transition: 0.3s all;
        transform: translateX(-100%);
    }

        .nav-bar .close {
            display: block;
            position: absolute;
            top: 10px;
            right: 15px;
            cursor: pointer;
        }

        .nav-bar .wrapper-nav .group-menu .menu {
            width: 97%;
        }
}

.navbar-mb {
    transform: translateX(0%);
}

.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e9eb;
    padding: 0px 24px 10px 28px;
}

    .header .breadcrumb-group {
        display: flex;
        align-items: center;
    }

        .header .breadcrumb-group .menu-navbar {
            width: 30px;
            height: 30px;
            cursor: pointer;
            display: none;
            margin-right: 10px;
        }

            .header .breadcrumb-group .menu-navbar .img-menu {
                width: 100%;
            }

        .header .breadcrumb-group .txt-bre-group {
            display: flex;
            align-items: center;
        }

            .header .breadcrumb-group .txt-bre-group .txt-breadcrumb {
                font-weight: 400;
                color: #353945;
                cursor: pointer;
            }

            .header .breadcrumb-group .txt-bre-group .mr-5 {
                margin: 0 5px;
            }

            .header .breadcrumb-group .txt-bre-group .last-br {
                color: #b1b5c4;
            }

    .header .user-group {
        position: relative;
    }

        .header .user-group .main-user {
            display: flex;
            align-items: center;
        }

            .header .user-group .main-user .title-user {
                font-weight: 400;
                line-height: 24px;
                color: #777e90;
            }

            .header .user-group .main-user .username {
                color: #141416;
            }

            .header .user-group .main-user .avatar-header {
                margin: 0 17px;
            }

            .header .user-group .main-user .ml-20 {
                margin-left: 20px;
            }

        .header .user-group .wrapper-noti {
            position: absolute;
            top: 50px;
            right: -5px;
            background: #ffffff;
            z-index: 99;
            filter: drop-shadow(0px 7px 29px rgba(100, 100, 111, 0.2));
            width: 325px;
            height: auto;
            display: none;
        }

            .header .user-group .wrapper-noti .header-noti {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 13px 12px 13px 18px;
                border: 1px solid #e5e9eb;
            }

                .header .user-group .wrapper-noti .header-noti .txt-noti {
                    font-weight: 700;
                    line-height: 16px;
                }

                .header .user-group .wrapper-noti .header-noti .option-noti {
                    display: flex;
                    align-items: center;
                }

            .header .user-group .wrapper-noti .main-noti .noti-item {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                border: 1px solid #e5e9eb;
                border-top: none;
                padding: 12px 12px 12px 18px;
            }

                .header .user-group .wrapper-noti .main-noti .noti-item .left-noti {
                    display: flex;
                    align-items: center;
                }

                    .header .user-group .wrapper-noti .main-noti .noti-item .left-noti .content-noti {
                        margin-left: 10px;
                    }

                        .header .user-group .wrapper-noti .main-noti .noti-item .left-noti .content-noti .content-item {
                            font-weight: 400;
                            font-size: 14px;
                            line-height: 24px;
                            color: #777e90;
                        }

                .header .user-group .wrapper-noti .main-noti .noti-item .not-read {
                    width: 8px;
                    height: 8px;
                    border-radius: 50%;
                    background: #58c52b;
                }

            .header .user-group .wrapper-noti .view-all {
                width: 100%;
                height: 40px;
                padding: 12px 5px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #e5e9eb;
            }

                .header .user-group .wrapper-noti .view-all .txt-viewall {
                    color: #4c5dd9;
                    font-weight: 700;
                    font-size: 14px;
                    line-height: 16px;
                    text-decoration: none;
                }

        .header .user-group .show-noti {
            display: block;
        }


.p-list-menu {
    text-align: center;
    color: #4c5dd9;
    font-weight: 700;
    font-size: 15px;
    line-height: 16px;
    text-decoration: none;
    margin-right: 30px;
}

.spn-display-name{
    font-size: 12px;
}

.spn-display-region {
    font-size: 12px;
    margin-top: -2px;
    margin-bottom: 2px;
    display: block;
}

.wrapper-list-menu {
    position: absolute;
    top: 50px;
    right: -5px;
    background: #ffffff;
    z-index: 99;
    filter: drop-shadow(0px 7px 29px rgba(100, 100, 111, 0.2));
    width: 110px;
    height: auto;
    display: none;
}

    .wrapper-list-menu.header-noti {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 12px 13px 18px;
        border: 1px solid #e5e9eb;
    }

        .wrapper-list-menu .header-noti .txt-noti {
            font-weight: 700;
            line-height: 16px;
        }

        .wrapper-list-menu .header-noti .option-noti {
            display: flex;
            align-items: center;
        }

    .wrapper-list-menu .main-noti .noti-item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid #e5e9eb;
        border-top: none;
        padding: 12px 12px 12px 18px;
        cursor: pointer;
    }

        .wrapper-list-menu.main-noti .noti-item .left-noti {
            display: flex;
            align-items: center;
        }

            .wrapper-list-menu .main-noti .noti-item .left-noti .content-noti {
                margin-left: 10px;
            }

                .wrapper-list-menu .main-noti .noti-item .left-noti .content-noti .content-item {
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 24px;
                    color: #777e90;
                }

        .wrapper-list-menu .main-noti .noti-item .not-read {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #58c52b;
        }

    .wrapper-list-menu.view-all {
        width: 100%;
        height: 40px;
        padding: 12px 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #e5e9eb;
    }

        .wrapper-list-menu .view-all .txt-viewall {
            color: #4c5dd9;
            font-weight: 700;
            font-size: 14px;
            line-height: 16px;
            text-decoration: none;
        }

.show-list-menu {
    display: block;
}

@media screen and (max-width: 1200px) {
    .header .breadcrumb-group .menu-navbar {
        display: block;
    }
}

@media screen and (max-width: 645px) {
    .header {
        padding: 0px 10px 10px 10px;
    }

        .header .user-group .main-user .title-user,
        .header .user-group .main-user .username {
            display: none;
        }
}

@media screen and (max-width: 450px) {
    .header .breadcrumb-group {
        flex-direction: column;
        align-items: start;
    }
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .avatar .avatar-user {
        font-weight: 700;
        font-size: 16px;
        color: #ffffff;
    }

.bg-gr {
    background: #1f35d0;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

@media screen and (max-width: 900px) {
    .table {
        width: 900px;
        min-width: 900px;
        overflow: auto;
    }
}

.table .tr .th {
    padding: 8px 16px;
    color: #141416;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    border: 1px solid #f6f8f9;
}

.table .tr .txt-left {
    text-align: left;
    padding: 8px 10px;
}

.table .tr .txt-center {
    text-align: center;
}

.table .tr .td {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #353945;
}

.table .tr-header {
    background: #f6f8f9;
}

.table .tr:nth-last-child(even) {
    background: #f6f8f9;
}

.table .tr:hover {
    background: #e9ebfa;
}

    .table .tr:hover .td {
        color: #1f35d0;
    }

.table .tr-header:hover {
    background: #f6f8f9;
}

    .table .tr-header:hover .td {
        color: #353945;
    }

.loading-tb td {
    opacity: 0.5;
}

.pagination-group {
    padding: 17px 24px 0px 28px;
    display: flex;
    justify-content: space-between;
}

    .pagination-group .num-page {
        color: #777e90;
    }

    .pagination-group .pagination {
        display: flex;
        align-items: center;
    }

        .pagination-group .pagination .pagin-item {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            width: 36px;
            height: 36px;
            padding: 6px 13.5px;
            gap: 5px;
        }

            .pagination-group .pagination .pagin-item span {
                color: #b1b5c3;
            }

            .pagination-group .pagination .pagin-item .active {
                font-weight: 700;
                color: #1f35d0;
            }

@media screen and (max-width: 645px) {
    .pagination-group {
        padding: 17px 10px 0 10px;
    }
}

.footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px 65px;
    margin-bottom: -2px;
    background: #353945;
}

    .footer .left-footer .txt-footer {
        color: #b1b5c3;
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        margin-top: 20px;
    }

    .footer .contact-group .txt-contact {
        font-weight: 400;
        color: #777e90;
    }

    .footer .contact-group .contact-item {
        display: flex;
        align-items: center;
    }

        .footer .contact-group .contact-item .txt-contact-item {
            color: #b1b5c3;
            margin-left: 12px;
        }

    .footer .contact-group .m-6-14 {
        margin: 6px 0 14px 0;
    }

@media screen and (max-width: 820px) {
    .footer {
        padding: 30px 30px;
    }
}

@media screen and (max-width: 645px) {
    .footer {
        padding: 20px 10px;
    }
}

@media screen and (max-width: 500px) {
    .footer {
        flex-direction: column;
    }

        .footer .left-footer .txt-footer {
            margin: 5px 0;
        }
}

.wrapper-main {
    width: 1260px;
    max-width: 1260px;
    padding: 10px 0px 0px 0px;
    min-height: calc(100vh - 130px);
    background-color: #ffffff!important;
}

.menu-item-link {
    text-decoration: none;
    color: var(--bs-body-color);
}



.content-info {
    transition: 0.3s all;
    transform: translateY(20px);
    display: none;
    position: absolute;
    top: -50px;
    left: 13px;
    z-index: 10;
    padding: 8px;
    gap: 5px;
    width: 266px;
    height: 79px;
    background: #141416;
    border-radius: 9px 9px 9px 0px;
    white-space: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff;
    margin-top: -20px;
}

.img-info:hover ~ .content-info {
    display: block;
    transform: translateY(0);
}



.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 250px;
}

.content-noti .content-item {
    margin-bottom: 0 !important;
}

.btns:disabled {
    background-color: #4d8ce9 !important;
    cursor: not-allowed !important;
}


.logo-footer {
    height: 65px !important;
}

.a-txt-footer {
    text-decoration: none;
}

.decoration-none {
    text-decoration: none;
}


.mr-15 {
    margin-right: 15px !important;
}

.ellipsis110 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 110px;
}

.td-info {
    display: flex;
    align-items: center;
    margin-left: 8px;
    position: relative;
}

.info-content {
    transition: 0.3s all;
    transform: translateY(20px);
    display: none;
    position: absolute;
    top: -50px;
    left: 13px;
    z-index: 10;
    padding: 8px;
    gap: 5px;
    width: 266px;
    height: 79px;
    background: #141416;
    border-radius: 9px 9px 9px 0px;
    white-space: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff;
    margin-top: -20px;
}

.w110 {
    width: 130px;
    word-wrap: break-word;
}

.w50 {
    width:50px!important;
}

.field-validation-error {
    color: #fb4132;
}

#orderBanner {
    display: none;
    padding: 5px;
    background-color: #dc291a;
    color: #fff;
    /* margin-left: 100px; */
    font-size: 12px;
    height: 50px;
    width: 480px;
    display: block;
    position: fixed;
    top: 10px;
    /* right: 100px; */
    z-index: 999;
}

#orderConfirmationBadgeCount, #replacementBadgeCount {
    top: 8px !important;
    font-size: 10px !important;
    position: relative !important;
    margin-left: 15px !important;
}

.site-environment {
    font-weight: bold;
    margin-left: 173px;
    position: absolute;
    color: red;
}

.site-environment-login {
    font-weight: bold;
    /* margin-left: 20px; */
    position: relative;
    color: red;
    margin-bottom: 42px;
}


.btn-clear {
    height: 43px;
    margin-left: 10px;
    width: 86px;
}

.announcement-banner {
    background-color: #dc291a; /* Red background color */
    color: #fff; /* White text color */
    padding: 10px; /* Add some padding for spacing */
    text-align: center; /* Center align the text */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Box shadow effect */
    position: fixed !important;
    top: 10px;
    z-index: 999;
    width: 320px;
}

.fix-position {
    position: fixed !important;
    z-index: 999;
    top: 25px;
    right: 250px;
}

.dashboard-page {
    background-color: #f5f5f9!important;
}

.a-footer-link {
    margin-left: 14px;
    text-decoration: underline
}

#lbl-current-client-code{
    font-size: 15px !important;
}