
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: #4723D9;
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*, ::before, ::after {
    box-sizing: border-box
}

body {
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s
}
.print-class{
    border: 1px solid #F9A302 !important;
}
.padding-bottom-150 {
   padding-bottom: 150px;
}

a {
    color: #3877d3;
    text-decoration: none;
}
a:hover, a:focus {
    text-decoration: none;
    color: #F9A302;
}
.fw-boldcus {
    font-weight: 600 !important
}
.fw-boldcus {
    font-weight: normal
}
.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--white-color);
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    color: var(--first-color);
    font-size: 1.5rem;
    cursor: pointer
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

    .header_img img {
        width: 40px
    }

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--first-color);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo, .nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem;
    text-decoration: none
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s
}

    .nav_link:hover {
        color: var(--white-color)
    }

.nav_icon {
    font-size: 1.25rem
}

.show {
    left: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.active {
    color: var(--white-color)
}

    .active::before {
        content: '';
        position: absolute;
        left: 0;
        width: 2px;
        height: 32px;
        background-color: var(--white-color)
    }

.height-100 {
    height: 100vh
}

@media screen and (min-width: 768px) {
    body {
        margin: calc(var(--header-height) + 1rem) 0 0 0;
        padding-left: calc(var(--nav-width) + 1rem)
    }

    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 1rem)
    }

    .header_img {
        width: 40px;
        height: 40px
    }

        .header_img img {
            width: 45px
        }

    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0
    }

    .show-left {
        width: calc(var(--nav-width) + 156px)
    }

    .body-pd {
        padding-left: calc(var(--nav-width) + 170px)
    }
}

.m-t20 {
    margin-top: 20px;
}

.m-b20 {
    margin-bottom: 20px;
}

.pd-14 {
    padding: 14px;
}

.mg-14px {
    margin: 14px;
}

.mt-14 {
    margin-top: 14px;
}

.pt-14 {
    padding-top: 14px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pl-14 {
    padding-left: 14px;
}

.pr-14 {
    padding-right: 14px;
}


.right {
    text-align: right;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: #F9A302;
    border: 1px solid #F9A302;
    color: white;
    outline: none;
}

.form-control, .form-select {
    padding: .470rem .75rem;
}

input, select, textarea {
    font-size: 14px !important;
}

body {
    background: #F6F7F8;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    color: #231F20;
}

.l-navbar {
    background: white;
}

.nav_link {
    color: #231F20;
    margin-bottom: 0.5rem;
}

.nav_logo-icon {
    color: #231F20;
}

.nav_logo-name {
    color: #231F20;
    text-align: center;
}

.header {
    height: 48px;
    background: #F9A302;
}

.header_toggle {
    color: white;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.nav_logo {
    margin-bottom: 0rem;
    text-align: center;
    display: block;
    padding: 0;
}

.nav_link:hover {
    color: #F9A302;
}

.filter-title {
    background: white;
    padding: 10px;
}

.search {
    display: flex;
    align-items: center;
    border: 1px solid #B2B2B2;
    border-radius: 6px;
    height: 44px;
    width: 260px;
}

    .search input {
        border: 0;
        font-size: 13px;
        height: 40px;
    }

    .search span {
        font-size: 24px;
        padding-top: 2px;
        color: #B2B2B2;
        padding-left: 9px;
    }

.action-function {
    display: flex;
    justify-content: right;
    align-items: center;
}

    .action-function ul {
        margin: 0;
        display: flex;
        position: relative;
    }

        .action-function ul li {
            list-style: none;
            margin-left: 10px;
            position: relative;
        }

.btn-primary {
    display: flex;
    align-items: center;
    padding: 9.5px 15px;
    background: #F9A302;
    border: 1px solid #F9A302;
    color: white;
    border-radius: 4px;
    font-weight: bold;
    justify-content: center;
    font-size: 14px;
    min-width: 110px;
    width: fit-content
}

    .btn-primary:hover {
        background: white;
        border: 1px solid #F9A302;
        color: #F9A302;
        border-radius: 4px;
    }

.btn-secondary {
    display: flex;
    align-items: center;
    padding: 9.5px 15px;
    background: white;
    border: 1px solid #F9A302;
    color: #F9A302;
    border-radius: 4px;
    font-weight: bold;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    min-width: 110px;
    width: fit-content
}

    .btn-secondary:hover {
        background: #F9A302;
        border: 1px solid #F9A302;
        color: white;
        border-radius: 4px;
    }

.btn-icon.material-symbols-outlined {
    color: #F9A302;
    cursor: pointer;
    font-size: 18px;
}

.close-success .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
    cursor: pointer;
}

.table > thead {
    background: #EAEAEA;
    background-color: #EAEAEA;
}

.table {
    --bs-table-striped-bg: #fff;
    margin-bottom: 0;
}

.table-bordered > :not(caption) > * > * {
    border-width: 0px !important;
}

.scroll-responsive .table.table-striped.table-bordered thead tr th, .scroll-responsive .table.table-striped.table-bordered tbody tr td {
    vertical-align: middle;
}

tbody, td, tfoot, th, thead, tr {
    border-style: none;
}

.status-man {
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap
}

    .status-man.green {
        border: 1px solid #5CB85C;
        background: #EFF8EF;
        color: #5CB85C;
    }

    .status-man.red {
        border: 1px solid #EB4E3D;
        background: #FFEBEB;
        color: #EB4E3D;
    }

    .status-man.stop {
        border: 1px solid #CDCDCD;
        background: #EFF2FE;
        color: #5E5E5E;
    }

.table-bordered > :not(caption) > * > * {
    border-width: 0px !important;
    padding: 10px;
}

.main-body .table > thead th:nth-child(1) {
    text-align: center;
}

.main-body .table tbody tr td:nth-child(1) {
    text-align: center;
}

.header_img1 a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.modal-header .btn-close{
    font-size: 10px;
    cursor: pointer;
}
.header_img1 .avatar {
    padding-right: 4px;
    position: relative;
    padding-top: 18%;
    display: block;
    height: 32px;
    width: 32px;
    margin: auto;
}
    .header_img1 .avatar img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        left: 0;
        top: 0;
        border-radius: 100%;
        height: 32px;
        width: 32px;
    }
.header_img1 .user-name p {
    margin-bottom: 0;
    font-weight: bold;
    line-height: 14px;
}

.header_img1.bottom .profile:after {
    content: '';
    border-top: 4px solid #ffffff;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    right: -10px;
    position: relative;
}

.nav_list {
    padding-top: 30px;
}

    .nav_list .material-symbols-outlined {
        font-size: 22px;
        color: #5E5E5E;
    }

.notification-icon .material-symbols-outlined {
    color: white;
}
.user-name{
    padding-left: 6px
}
.user-name p, .user-name span {
    color: white;
}

.user-name span {
    font-size: 13px;
    color: #FFEAC3;
}

.header_img1.bottom {
    position: relative;
    display: flex;
    align-items: center;
}

.sub-menu-top {
    position: absolute;
    display: none;
    background: #fff;
    border-radius: 4px;
    width: 220px;
    padding: 10px;
    top: 32px;
    right: -16px;
}

.avatar-username:hover > .sub-menu-top {
    display: block;
    z-index: 1;
}

.sub-menu-top li {
    list-style: none;
}

.notification-icon a {
    display: flex;
    align-items: center;
}

.notification-icon .bx.bx-bell {
    color: white;
    font-size: 18px;
}

.header_img1.bottom .sub-menu-top a:after {
    display: none;
}

.page-link {
    color: #F9A302;
}

    .page-link:hover {
        color: #F9A302;
        background-color: #FFF3DD;
        border-color: #FFF3DD;
    }

    .page-link:focus {
        box-shadow: none;
        color: #F9A302;
        background-color: #FFF3DD;
    }

.page-item .page-link {
    display: flex;
    align-items: center;
    height: 35px;
}

.page-item .page-link {
    margin: 0 10px;
    border-radius: 4px;
}

.notification-icon span.number-notifi {
    height: 20px;
    width: 20px;
    background: rgb(238, 0, 0);
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 20px;
    font-size: 10px;
    margin-left: -7px;
    margin-top: -13px;
}

.menu-icon {
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

    .menu-icon:before {
        content: '';
        position: absolute;
        background: rgb(255, 255, 255, 0.1);
        width: 24px;
        height: 24px;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .menu-icon:hover:before {
        opacity: 1;
    }

    .menu-icon .bar {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background-color: #fff;
        border-radius: 2px;
        left: 0;
        transform-origin: 50% 50%;
        top: 50%;
        transform: tralnslateY(-50%);
        transition: top 300ms ease-in, transform 300ms ease-in 300ms, opacity 0ms 300ms;
    }

.bar:before,
.bar:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    left: 0;
    transform-origin: 0% 50%;
    transition: top 300ms ease-in, transform 300ms ease-in 300ms, opacity 0ms 300ms;
}

.bar:before {
    top: -10px;
}

.bar:after {
    top: 10px;
}

.menu-open .bar:before,
.menu-open .bar:after {
    top: 0;
    width: 50%;
}

.menu-open .bar:before {
    transform: rotate3d(0, 0, 1, 45deg);
}

.menu-open .bar:after {
    transform: rotate3d(0, 0, 1, -45deg);
}

.content-notification {
    left: -315px;
    width: 350px;
    padding: 10px;
    position: absolute !important;
    top: 35px !important;
    right: 0 !important;
}

.notification-icon {
    position: relative;
    right: 20px;
}
.card.card-body.content-notification.collapse.show {
    
}
.title {
    display: flex;
    justify-content: space-between;
}

.breakcrumb ul {
    display: flex;
    justify-content: right;
    align-items: center;
}

    .breakcrumb ul li {
        list-style: none;
    }

    .breakcrumb ul span.material-symbols-outlined {
        font-size: 16px;
        padding: 0 5px;
        color: #ccc;
    }

.nav_logo {
    display: flex;
    text-align: left;
    height: 42px;
}

    .nav_logo img {
        width: 42px;
        margin-left: 10px;
    }

    .nav_logo p {
        font-size: 14px;
        text-align: left;
        padding: 0;
        margin: 0;
        width: 134px;
    }

.l-navbar .nav_logo-name {
    display: none;
}

.l-navbar.show-left .nav_logo .nav_logo-name {
    display: block;
}

.title-notifi {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .title-notifi h4 {
        font-size: 14px;
        font-weight: bold;
    }

    .title-notifi .close {
        color: #F9A302;
        font-size: 18px;
    }

.list-notifi {
    margin: 0;
    padding: 0;
}

.header_img1.bottom ul.list-notifi li {
    background-color: #FAFAFA;
    padding: 10px;
    list-style: none;
    border-radius: 6px;
    margin: 10px 0;
}

    .header_img1.bottom ul.list-notifi li a {
        color: #5E5E5E;
        display: block;
    }

        .header_img1.bottom ul.list-notifi li a h5 {
            font-size: 14px;
            font-weight: bold;
            margin: 0;
            padding: 0;
            padding-bottom: 5px;
        }

        .header_img1.bottom ul.list-notifi li a p {
            font-size: 13px;
            padding: 0;
            margin: 0;
        }

        .header_img1.bottom ul.list-notifi li a span {
            font-size: 12px;
        }

    .header_img1.bottom ul.list-notifi li.new {
        background-color: #FFF3DD;
    }

        .header_img1.bottom ul.list-notifi li.new a h5 {
            color: #F9A302;
        }

.header_img1.bottom .viewall {
    text-align: center;
    margin: 0;
}

    .header_img1.bottom .viewall a {
        color: #F9A302;
        display: block;
    }

.header_img1.bottom .profile {
    position: relative;
    right: 0
}

.submenu-profile a.profile::after {
    display: none
}

ul.subaccount {
    padding: 0;
    margin: 0;
}

    ul.subaccount li {
        padding: 8px 0;
    }

        ul.subaccount li span {
            font-size: 14px;
            padding-right: 6px;
        }

        ul.subaccount li a {
            color: #5E5E5E;
            text-decoration: none;
        }

            ul.subaccount li a:hover {
                color: #F9A302;
            }

.title h1 {
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

    .title h1 span {
        margin-left: 6px;
        font-weight: normal;
    }

.breakcrumb ul li a {
    color: #F9A302;
    font-size: 13px;
    text-decoration: none
}

.breakcrumb ul li:nth-last-child(1) a {
    color: #5E5E5E;
}

.filter-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-radius: 6px;
}

.modal-header {
    height: 38px;
    background: #F9A302;
}

    .modal-header .modal-title {
        color: white;
        font-size: 20px;
    }

    .modal-header button {
        color: white;
        font-size: 20px;
        background: transparent;
        border: 0;
        padding: 0;
        margin: 0;
    }

        .modal-header button span {
            font-size: 18px;
            padding-right: 0;
        }

.form-poup-default label {
    color: #5E5E5E;
    font-size: 14px;
    padding-bottom: 4px;
}

.form-poup-default .col-left {
    padding-right: 30px;
}

.form-poup-default .col-right {
    padding-left: 30px;
}

.modal-footer {
    border: 0;
    padding: 0;
}

.input-group-append {
    cursor: pointer;
}

.filter-content {
    background: white;
    position: absolute;
    top: 42px;
    right: 0;
    width: 680px;
    left: inherit;
    z-index: 1;
}

    .filter-content .title h3 {
        font-size: 16px;
        font-weight: bold;
    }

    .filter-content .title button {
        border: none;
        padding: 2px;
    }

        .filter-content .title button span {
            font-size: 14px;
            padding: 6px;
        }

.btn.button-login {
    background: #F9A302;
    height: 44px;
    font-size: 14px;
    font-weight: bold;
    border-color: #F9A302;
    color: white;
}

    .btn.button-login:hover, .btn.button-login:focus {
        background: #fff;
        height: 44px;
        font-size: 14px;
        font-weight: bold;
        border-color: #F9A302;
        color: #F9A302;
        box-shadow: none
    }

.scroll-responsive {
    border: 1px solid #e2e2e2;
}

.ma-xac-thuc {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

    .ma-xac-thuc li {
        width: 64px;
        height: 64px;
        padding: 0 10px;
        list-style: none;
        text-align: center;
    }

        .ma-xac-thuc li input {
            width: 100%;
            height: 100%;
            font-size: 32px !important;
            text-align: center;
            font-weight: bold;
            padding: 0;
            height: 54px;
            width: 54px;
        }

.countdown-time {
    color: #F9A302;
}

    .countdown-time:hover {
        text-decoration: underline;
        color: #F9A302;
    }

.sendcode {
    text-align: center;
    padding: 0;
    margin: 0;
}

    .sendcode li {
        list-style: none;
    }

.resendcode {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5CB85C;
}

    .resendcode span {
        color: #5CB85C;
    }

.close-success {
    display: flex;
    justify-content: right;
    padding: 10px;
}

    .close-success button {
        padding: 2px;
        border: 0;
    }

        .close-success button span {
            padding: 0;
            border: 0;
        }

.successfully {
    text-align: center;
}

    .successfully img {
        max-width: 300px;
        margin: auto;
    }

    .successfully h4 {
        color: #5CB85C;
    }

.nav .nav-item button.active {
    background-color: transparent;
    color: var(--bs-danger) !important;
}

    .nav .nav-item button.active::after {
        content: "";
        border-bottom: 4px solid var(--bs-danger);
        width: 100%;
        position: absolute;
        left: 0;
        bottom: -1px;
        border-radius: 5px 5px 0 0;
    }

.nav.nav-pills {
    flex-direction: inherit;
    justify-content: flex-start;
}

.tabs {
    width: 100%;
    display: grid;
}

    .tabs ul.nav.nav-pills {
        background: white;
        padding: 7.5px;
        border-radius: 4px;
    }

.tab-content {
    background: white;
    margin-top: 16px;
}

.nav.nav-pills li button {
    color: #231F20;
    border: 0;
}

    .nav.nav-pills li button:hover, .nav.nav-pills li button:focus {
        background: white;
        color: #F9A302;
    }

.nav .nav-item button.active {
    background: white !important;
    color: #F9A302 !important;
}

    .nav .nav-item button.active::after {
        border: 0;
    }

.tab-pane.fade {
    color: #231F20;
}

.material-symbols-outlined {
    font-size: 18px;
}

.title-detail {
    display: flex;
    align-items: center;
    padding-bottom: 14px;
}

    .title-detail h2 {
        font-size: 20px;
        font-weight: bold;
        margin: 0;
        padding: 0;
        padding-right: 10px;
    }

.body-detail-dn > .row {
    margin: 0;
}

    .body-detail-dn > .row > .col-md-6 {
        display: grid;
    }

    .body-detail-dn > .row:nth-child(even) {
        background-color: #FAFAFA;
    }

.table.table-striped.table-bordered > tbody > tr:nth-child(even) {
    background-color: #FAFAFA;
}

.arrow-light {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

    .arrow-light .col-md-6 {
        display: flex;
        align-items: center;
    }

.body-detail-dn {
    border: 1px solid #e2e2e2;
    border-radius: 4px;
}

.body-detail-bg {
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    padding: 16px;
}

.arrow-light label {
    color: #5E5E5E;
}

input.parsley-error {
    background-color: #fdd;
    border-color: red;
}

.button-top-right {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 0;
    margin: 0;
}

    .button-top-right li {
        list-style: none;
        padding-left: 12px;
    }

.nav-pills .nav-link {
    font-weight: bold;
}

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        background: white;
        color: #F9A302;
        font-weight: 600;
    }

        .nav-pills .nav-link.active::before {
            content: none;
        }

.avatar-name {
    display: flex;
    align-items: center;
}

.avatar-staff {
    position: relative;
    padding-top: 12%;
    display: block;
    height: 32px;
    width: 32px;
}

    .avatar-staff img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        left: 0;
        top: 0;
        border-radius: 100%;
        height: 32px;
        width: 32px;
    }

.avatar-name span {
    padding-left: 6px;
}

.faq-section .accordion {
    width: 100%;
}

.accordion-button:not(.collapsed) {
    /* background-color: #c5e5d8;*/
    background-color: #fff;
}

    .accordion-button:not(.collapsed)::after {
        background-image: none;
        transform: none;
    }

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:before {
    content: "";
    position: absolute;
    /*   right: 0.75rem; */
    left: -1px;
    top: 23px;
    height: 2px;
    width: 12px;
    background-color: #5E5E5E;
}

.accordion-button.collapsed:after {
    content: "";
    position: absolute;
    /*   right: 1.1875rem; */
    left: 6.30px;
    top: 18px;
    height: 12px;
    width: 0.125rem;
    border-style: none;
    background-color: #5E5E5E;
}

.faq-section .accordion-button h5 {
    /*   color: #7dbc9e; */
    color: #231F20;
    margin-right: 13px;
}

.accordion-body {
    background-color: #fff;
    padding: 0 20px;
}

    .accordion-body ul {
        padding: 0;
        margin: 0;
    }

        .accordion-body ul li {
            list-style: none;
            padding-bottom: 20px;
            padding-top: 10px;
        }

            .accordion-body ul li label {
                display: flex;
                align-items: center;
            }

                .accordion-body ul li label span {
                    padding-left: 6px;
                }

/* button:focus:not(:focus-visible) {
    outline: 0;
} */

@media screen and (min-width: 768px) {
    /*   .faq-section .accordion {
    width: 50%;
    margin: 0 auto;
  } */

    .accordion-button:before {
        left: 0.8px;
    }

    .accordion-button.collapsed:after {
        left: 6.35px;
    }

    .faq-section .accordion-button h5 {
        margin-right: 0px;
        font-size: 14px;
        font-weight: bold;
    }
}

.faq-section .accordion-button:not(.collapsed), .faq-section .accordion-button {
    border: 0;
}

.nguoi-bangiao {
    display: flex;
    align-items: center;
}

    .nguoi-bangiao label, {
    }

    .nguoi-bangiao label {
        padding: 0;
        margin: 0;
        padding-right: 10px;
    }

    .nguoi-bangiao p {
        padding: 0;
        margin: 0;
        font-weight: bold;
    }


/*-----------alert-------------------*/
.alert-success {
    color: #0f5132;
    background-color: #d9f7e9;
    border: 0;
}
.alert-error {
    color: #ffffff;
    background-color: #f90202;
    border: 0;
}
.position-messenger {
    position: fixed;
    top: 50px;
    right: 0;
}

/*----------required----------------*/
.required::after{
    color: red;
    content: '*'
}
.isvalidtext{
    font-size: 12px;
}
#form {
    width: 90%;
    margin: 20px auto;
}

input.parsley-error {
    background-color: #fdd;
    border-color: red;
}

.alert-dismissible .btn-close {
    padding: 1.32rem 1rem;
    font-size: 10px;
}

.main-bg {
    background: white;
    border-radius: 4px;
    padding: 14px;
}

ul.pagination {
    margin-bottom: 0;
}

.bg-infomation {
    background-color: #FFF3DD;
}

.avatar-name-text {
    text-align: center;
    padding: 20px;
    margin: auto;
    width: 300px;
}

.avatar-info {
    position: relative;
    padding-top: 18%;
    display: block;
    height: 100px;
    width: 100px;
    margin: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 50%;
    font-size: 12px;
    line-height: 22px;
}

.avatar-info img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    left: 0;
    top: 0;
    border-radius: 100%;
    height: 100px;
    width: 100px;
}

.name-staff h3 {
    font-size: 16px;
}

.change-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-check {
    display: flex;
    align-items: center;
}

    .list-check label {
        padding-right: 30px;
    }

    .list-check span {
        padding-left: 6px;
    }
.isvalidform{
    border-color: red
}
.modal-header button{
    outline: 0
}


.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}
.alert-dismissible {
    padding-right: 3rem;
}
.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
.alert-dismissible .btn-close {
    padding: 1.32rem 1rem;
    font-size: 10px;
}
.alert-css .alert-dismissible {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    margin: auto;
}
.title-popup{
    font-size: 20px;
}
.FollowersIDContent button {
    border: 1px solid #ced4da !important;
    background: white;
    border-radius: .25rem;
    padding: .470rem .75rem !important;
    outline: 0
}
.ms-options-wrap > .ms-options {
    border-color: #ced4da !important
}
.loader {
    border: 6px solid #f3f3f3 !important;
    border-top: 6px solid #F9A302;
    width: 32px !important;
    height: 32px !important;
}
.thongtinkhachhang{
    padding: 30px 50px
}
    .thongtinkhachhang .fix-row-pd {
        margin-left: -30px;
        margin-right: -30px
    }
.thongtinkhachhang .fix-col-pd {
    padding: 0 30px;
}
.name-jobtitle-permision{
    
}
.display-info-name {
    display: flex;
    align-items: center;
    justify-content: left
}
.display-info-name p {
    padding: 0;
    margin: 0;
    padding-right: 4px;
    padding-left: 4px;
}

ul.list-permision{
    margin:0;
    padding:0
}
    ul.list-permision li {
        padding: 6px;
        border-radius: 4px;
        display: flex;
    }
        ul.list-permision li:nth-last-child(1){
            margin-bottom:0
        }
        ul.list-permision {
            
        }
        ul.list-permision li p {
            padding: 0;
            margin: 0;
            padding-right: 20px;
            display: flex;
            align-items: center;
        }
            ul.list-permision li p:nth-child(1){
                width: 50%;
            }
            ul.list-permision li p:nth-child(2) {
                width: 50%;
            }
            ul.list-permision li p span {
                padding-right: 6px;
                font-size: 14px;
                color: #F9A302
            }
.slc-phong-ban{
    display: flex;
    align-items: center;
}
.slc-phong-ban input{
   padding-right: 4px;
}
.tong-quan-baogia{
    margin: 10px 0;
}
.tong-quan-baogia .title{
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 10px;
}
.tong-quan-baogia .box {
    background: #ffffff;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #dfdfdf;
}
.tong-quan-baogia .box label{
    color: #5E5E5E
}
.tong-quan-baogia .box .number-kh {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}
    .tong-quan-baogia .box .number-kh h3 {
        display: flex;
        align-items: center;
        padding: 0;
        margin: 0;
        font-weight: bold
    }
    .tong-quan-baogia .box .number-kh .icon {
        height: 40px;
        width: 40px;
        background: #f9a30229;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }
.tong-quan-baogia .box .number-kh .icon span{
    font-size: 24px;
    color: #F9A302
}
.filter-main{
    max-width: 800px;
}
.checkbox-filter{
    display: flex;
    align-items: center
}
.checkbox-filter .form-check{
    padding-right: 16px;
    margin: 0
}
.display-flex{
    display: flex;
    align-items: center;
}
ul.select-dv{
    width: 100%;
    padding: 0;
    margin: 0;
}
ul.select-dv li{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.select-dv li::marker{
    display: none
}
.box-dashboard{
    background: #fff;
    border-radius: 6px;
    border: 1px solid #f5f5f5;
    padding: 20px
}
.filter-item{
    position: relative;
}
.filter-item .filter-content-show {
    position: absolute;
    top: 38px;
    z-index: 1;
    right: 0;
    display: table;
    left: auto;
}

.content-filter {
    width: 420px;
    row-gap: 20px !important;
    display: inline-grid;
}
.title-close-filter{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.title-close-filter h2{
    font-size: 20px;
}
.filter-item .btn-filter{
    display: flex;
    align-items: center;
}
.title-close-filter button{
    font-size:12px;
}
.no-data-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 43vh
}
.icon-nodata {
    text-align: center;
}
.icon-nodata span{
    font-size: 48px;
    color: #B2B2B2
}