@import url("https://fonts.googleapis.com/css2?family=Muli:wght@200;300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 0;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

    *:focus {
        outline: 0;
    }

p {
    margin: 0;
}

* input::-webkit-outer-spin-button,
* input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body {
    font-family: "Muli", sans-serif;
    background-color: #f5f6fa;
}

html {
    overflow-x: hidden;
}

.btn {
    width: 120px;
    height: 30px;
    /*background-color: #10182F;*/
    border-radius: 5px;
    color: white;
    box-shadow: 0px 5px 10px rgba(116, 116, 156, 0.35);
    transition: all 0.2s ease;
    cursor: pointer;
    outline: none;
    padding: 0;
}

    .btn:hover {
        box-shadow: 0px 0px 0px rgba(33, 33, 107, 0.35);
        color: #fff;
    }

.wrapper {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    height: 150vh;
    box-sizing: border-box;
}

.right__table table {
    background-color: #fff;
    box-shadow: 3px 3px 3px rgba(16, 24, 47, 0.4);
}

@media screen and (max-width: 799px) {
    .wrapper {
        padding: 0;
    }
}

.wrapper .container_dashboard {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    transition: all 0.4s ease;
    overflow: hidden;
}

@media screen and (max-width:950px) {
    .wrapper {
        height: 100%;
    }

        .wrapper .container_dashboard {
            height: 100%;
            margin-top: 0px;
            margin-bottom: 0px;
        }
}

.dashboard {
    display: flex;
    background: #f5f6fa;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 799px) {
    .dashboard {
        border-radius: 0px;
    }
}

.left__full {
    background: #26599e;
    height: 100%;
}

.left {
    background: #26599e;
    max-width: 250px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    transition: all 0.6s 0.2s ease;
    z-index: 2;
    overflow: scroll;
    height: 97vh;
}

    .left::-webkit-scrollbar {
        width: 0px;
    }



.title_menu {
    font-weight: bold;
}

.left__title i {
    font-size: 20px;
    padding-right: 5px;
}

@media (min-width:699px) {
    .left.show .left__menuItem .left__text {
        display: none;
    }
}

.left__icon {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 13px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: #26599e;
    display: flex;
}

@media screen and (max-width: 799px) {
    .left__icon {
        display: flex;
        position: fixed;
    }
}

@media screen and (max-width: 511px) {
    .left__icon {
        right: 0px;
    }
}

.left__icon span {
    position: fixed;
    background-color: #fff;
    width: 24px;
    height: 2px;
    border-radius: 4px;
    transition: all 0.4s ease;
}

    .left__icon span:nth-child(1) {
        transform: translateY(-8px);
    }

    .left__icon span:nth-child(3) {
        transform: translateY(8px);
    }



.left__name {
    font-weight: bold;
    color: #10182F;
}

.left__menu {
    display: flex;
    flex-direction: column;
    user-select: none;
    margin-top: 10px;
}

.btn i {
    margin-right: 5px;
}


@media screen and (max-width: 699px) {
    .left__menuItem {
        transform: translateX(-100%);
        opacity: 0;
        transition: all 0.4s ease;
    }
}

.left__menuItem.open .left__title {
    background-color: #829bfc;
}

.left__menuItem.open .left__text {
    height: fit-content;
    padding-top: 10px;
}

.left__menuItem.open .left__iconDown {
    transform: rotate(180deg);
}

.left__title {
    padding: 10px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
}



    .left__title:hover {
        background-color: #829bfc;
        text-decoration: unset;
        color: #fff;
    }

.left__link:hover {
    text-decoration: unset;
    color: #fff;
    padding-left: 5px;
    transition: 0.5s;
}

i.left__iconDown {
    margin-left: 5px;
    transition: all 0.4s ease;
    transform: translateY(2px);
    position: absolute;
    right: 0;
    font-size: 14px;
}

.left__text {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    color: #10182F;
    height: 0px;
    overflow: hidden;
    padding-left: 10px;
    transition: all 0.4s ease;
}

.left__link {
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    padding-left: 20px;
    color: #fff;
    font-weight: normal;
}

    .left__link i {
        padding-right: 10px;
        font-size: 14px;
    }

.left__menuItem:hover {
    color: #fff;
    text-decoration: unset !important;
}

.title_menu:hover {
    text-decoration: none !important;
}

.left.show {
    display: flex;
    max-width: 50px;
    transition: all 0.6s ease;
}

    .left.show .title_menu {
        display: none;
    }



    .left.show:before {
        transition: all 0.6s ease;
        width: calc(100vw - 50px);
    }

    .left.show .left__icon {
        right: 10px;
    }

        .left.show .left__icon span:nth-child(1) {
            width: 13px;
            transform: translate(-8px, -4px) rotate(-45deg);
        }

        .left.show .left__icon span:nth-child(3) {
            width: 13px;
            transform: translate(-8px, 4px) rotate(45deg);
        }

    .left.show .left__logo {
        transition: all 0.4 ease;
        transform: translateX(0%);
        opacity: 1;
    }

    .left.show .left__profile {
        transform: translateX(0%);
        opacity: 1;
    }

    .left.show .left__menuItem {
        transform: translateX(0%);
        opacity: 1;
    }

        .left.show .left__menuItem:nth-child(1) {
            transition-delay: 0.4s;
        }

        .left.show .left__menuItem:nth-child(2) {
            transition-delay: 0.6s;
        }

        .left.show .left__menuItem:nth-child(3) {
            transition-delay: 0.8s;
        }

        .left.show .left__menuItem:nth-child(4) {
            transition-delay: 1s;
        }

        .left.show .left__menuItem:nth-child(5) {
            transition-delay: 1.2s;
        }

        .left.show .left__menuItem:nth-child(6) {
            transition-delay: 1.4s;
        }

        .left.show .left__menuItem:nth-child(7) {
            transition-delay: 1.6s;
        }

        .left.show .left__menuItem:nth-child(8) {
            transition-delay: 1.8s;
        }

        .left.show .left__menuItem:nth-child(9) {
            transition-delay: 2s;
        }

        .left.show .left__menuItem:nth-child(10) {
            transition-delay: 2.2s;
        }

        .left.show .left__menuItem:nth-child(11) {
            transition-delay: 2.4s;
        }

        .left.show .left__menuItem:nth-child(12) {
            transition-delay: 2.6s;
        }

        .left.show .left__menuItem:nth-child(13) {
            transition-delay: 2.8s;
        }

        .left.show .left__menuItem:nth-child(14) {
            transition-delay: 3s;
        }

        .left.show .left__menuItem:nth-child(15) {
            transition-delay: 3.2s;
        }

        .left.show .left__menuItem:nth-child(16) {
            transition-delay: 3.4s;
        }

        .left.show .left__menuItem:nth-child(17) {
            transition-delay: 3.6s;
        }

        .left.show .left__menuItem:nth-child(18) {
            transition-delay: 3.8s;
        }

        .left.show .left__menuItem:nth-child(19) {
            transition-delay: 4s;
        }

        .left.show .left__menuItem:nth-child(20) {
            transition-delay: 4.2s;
        }

        .left.show .left__menuItem:nth-child(21) {
            transition-delay: 4.4s;
        }

        .left.show .left__menuItem:nth-child(22) {
            transition-delay: 4.6s;
        }

        .left.show .left__menuItem:nth-child(23) {
            transition-delay: 4.8s;
        }

        .left.show .left__menuItem:nth-child(24) {
            transition-delay: 5s;
        }

        .left.show .left__menuItem:nth-child(25) {
            transition-delay: 5.2s;
        }

        .left.show .left__menuItem:nth-child(26) {
            transition-delay: 5.4s;
        }

        .left.show .left__menuItem:nth-child(27) {
            transition-delay: 5.6s;
        }

        .left.show .left__menuItem:nth-child(28) {
            transition-delay: 5.8s;
        }

        .left.show .left__menuItem:nth-child(29) {
            transition-delay: 6s;
        }

        .left.show .left__menuItem:nth-child(30) {
            transition-delay: 6.2s;
        }

        .left.show .left__menuItem:nth-child(31) {
            transition-delay: 6.4s;
        }

        .left.show .left__menuItem:nth-child(32) {
            transition-delay: 6.6s;
        }

        .left.show .left__menuItem:nth-child(33) {
            transition-delay: 6.8s;
        }

        .left.show .left__menuItem:nth-child(34) {
            transition-delay: 7s;
        }

        .left.show .left__menuItem:nth-child(35) {
            transition-delay: 7.2s;
        }

        .left.show .left__menuItem:nth-child(36) {
            transition-delay: 7.4s;
        }

        .left.show .left__menuItem:nth-child(37) {
            transition-delay: 7.6s;
        }

        .left.show .left__menuItem:nth-child(38) {
            transition-delay: 7.8s;
        }

        .left.show .left__menuItem:nth-child(39) {
            transition-delay: 8s;
        }

        .left.show .left__menuItem:nth-child(40) {
            transition-delay: 8.2s;
        }

        .left.show .left__menuItem:nth-child(41) {
            transition-delay: 8.4s;
        }

        .left.show .left__menuItem:nth-child(42) {
            transition-delay: 8.6s;
        }

        .left.show .left__menuItem:nth-child(43) {
            transition-delay: 8.8s;
        }

        .left.show .left__menuItem:nth-child(44) {
            transition-delay: 9s;
        }

        .left.show .left__menuItem:nth-child(45) {
            transition-delay: 9.2s;
        }

        .left.show .left__menuItem:nth-child(46) {
            transition-delay: 9.4s;
        }

        .left.show .left__menuItem:nth-child(47) {
            transition-delay: 9.6s;
        }

        .left.show .left__menuItem:nth-child(48) {
            transition-delay: 9.8s;
        }

        .left.show .left__menuItem:nth-child(49) {
            transition-delay: 10s;
        }

        .left.show .left__menuItem:nth-child(50) {
            transition-delay: 10.2s;
        }

        .left.show .left__menuItem:nth-child(51) {
            transition-delay: 10.4s;
        }

        .left.show .left__menuItem:nth-child(52) {
            transition-delay: 10.6s;
        }

        .left.show .left__menuItem:nth-child(53) {
            transition-delay: 10.8s;
        }

        .left.show .left__menuItem:nth-child(54) {
            transition-delay: 11s;
        }

        .left.show .left__menuItem:nth-child(55) {
            transition-delay: 11.2s;
        }

        .left.show .left__menuItem:nth-child(56) {
            transition-delay: 11.4s;
        }

        .left.show .left__menuItem:nth-child(57) {
            transition-delay: 11.6s;
        }

        .left.show .left__menuItem:nth-child(58) {
            transition-delay: 11.8s;
        }

        .left.show .left__menuItem:nth-child(59) {
            transition-delay: 12s;
        }

        .left.show .left__menuItem:nth-child(60) {
            transition-delay: 12.2s;
        }

        .left.show .left__menuItem:nth-child(61) {
            transition-delay: 12.4s;
        }

        .left.show .left__menuItem:nth-child(62) {
            transition-delay: 12.6s;
        }

        .left.show .left__menuItem:nth-child(63) {
            transition-delay: 12.8s;
        }

        .left.show .left__menuItem:nth-child(64) {
            transition-delay: 13s;
        }

        .left.show .left__menuItem:nth-child(65) {
            transition-delay: 13.2s;
        }

        .left.show .left__menuItem:nth-child(66) {
            transition-delay: 13.4s;
        }

        .left.show .left__menuItem:nth-child(67) {
            transition-delay: 13.6s;
        }

        .left.show .left__menuItem:nth-child(68) {
            transition-delay: 13.8s;
        }

        .left.show .left__menuItem:nth-child(69) {
            transition-delay: 14s;
        }

        .left.show .left__menuItem:nth-child(70) {
            transition-delay: 14.2s;
        }

        .left.show .left__menuItem:nth-child(71) {
            transition-delay: 14.4s;
        }

        .left.show .left__menuItem:nth-child(72) {
            transition-delay: 14.6s;
        }

        .left.show .left__menuItem:nth-child(73) {
            transition-delay: 14.8s;
        }

        .left.show .left__menuItem:nth-child(74) {
            transition-delay: 15s;
        }

        .left.show .left__menuItem:nth-child(75) {
            transition-delay: 15.2s;
        }

        .left.show .left__menuItem:nth-child(76) {
            transition-delay: 15.4s;
        }

        .left.show .left__menuItem:nth-child(77) {
            transition-delay: 15.6s;
        }

        .left.show .left__menuItem:nth-child(78) {
            transition-delay: 15.8s;
        }

        .left.show .left__menuItem:nth-child(79) {
            transition-delay: 16s;
        }

        .left.show .left__menuItem:nth-child(80) {
            transition-delay: 16.2s;
        }

        .left.show .left__menuItem:nth-child(81) {
            transition-delay: 16.4s;
        }

        .left.show .left__menuItem:nth-child(82) {
            transition-delay: 16.6s;
        }

        .left.show .left__menuItem:nth-child(83) {
            transition-delay: 16.8s;
        }

        .left.show .left__menuItem:nth-child(84) {
            transition-delay: 17s;
        }

        .left.show .left__menuItem:nth-child(85) {
            transition-delay: 17.2s;
        }

        .left.show .left__menuItem:nth-child(86) {
            transition-delay: 17.4s;
        }

        .left.show .left__menuItem:nth-child(87) {
            transition-delay: 17.6s;
        }

        .left.show .left__menuItem:nth-child(88) {
            transition-delay: 17.8s;
        }

        .left.show .left__menuItem:nth-child(89) {
            transition-delay: 18s;
        }

        .left.show .left__menuItem:nth-child(90) {
            transition-delay: 18.2s;
        }

        .left.show .left__menuItem:nth-child(91) {
            transition-delay: 18.4s;
        }

        .left.show .left__menuItem:nth-child(92) {
            transition-delay: 18.6s;
        }

        .left.show .left__menuItem:nth-child(93) {
            transition-delay: 18.8s;
        }

        .left.show .left__menuItem:nth-child(94) {
            transition-delay: 19s;
        }

        .left.show .left__menuItem:nth-child(95) {
            transition-delay: 19.2s;
        }

        .left.show .left__menuItem:nth-child(96) {
            transition-delay: 19.4s;
        }

        .left.show .left__menuItem:nth-child(97) {
            transition-delay: 19.6s;
        }

        .left.show .left__menuItem:nth-child(98) {
            transition-delay: 19.8s;
        }

        .left.show .left__menuItem:nth-child(99) {
            transition-delay: 20s;
        }

        .left.show .left__menuItem:nth-child(100) {
            transition-delay: 20.2s;
        }




.right__content {
    padding: 0px 10px 5% 10px;
}

.right__title a {
    color: #26599e;
    border-left: 3px solid rgb(22, 4, 184);
    font-size: 14px;
}

.form__right-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 5px;
    box-shadow: 3px 3px 3px 3px #e3e0e0;
}

.select select {
    width: 100% !important;
}

.right__img_bottom {
    background-image: url(../images/i_17.jpg);
    background-repeat: repeat;
    height: 10px;
    padding: 6px;
}

.right__img {
    background-image: linear-gradient(to left, rgb(75, 135, 226),#115C9C);
    align-items: center;
}

    .right__img img {
        height: 100%;
        padding: 10px 0px 10px 50px;
    }

.banner-text {
    padding-left: 5px;
}

    .banner-text p {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 14px;
        margin: 0;
    }

        .banner-text p:first-child {
            color: #fff;
        }

        .banner-text p:nth-child(2) {
            color: #fffe34;
        }

@media (max-width: 550px) {
    .banner-text p {
        font-size: 12px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .banner-text p {
        font-size: 8px;
        margin: 0;
    }
}

@media (max-width: 1200px) {
    .w-30-right {
        width: 30% !important;
    }

    .w-70-right {
        width: 70% !important;
    }
}

@media (max-width: 600px) {
    .w-30-right {
        width: 100% !important;
    }

    .w-70-right {
        width: 100% !important;
    }
}

.right__img {
    display: flex;
    height: 70px;
    align-items: center;
}

@media screen and (max-width: 1000px) {
    .select {
        width: 30%;
    }
}

@media screen and (max-width: 799px) {
    .select {
        width: 30%;
    }
}

@media screen and (max-width:900px) {
    .select {
        width: 50%;
    }
}

@media screen and (max-width:600px) {
    .select {
        width: 50%;
    }
}

@media screen and (max-width:550px) {
    .select {
        width: 80%;
    }
}

@media screen and (max-width: 799px) {
    .right__content {
        padding: 0px 10px 10px 10px;
    }

    .right__title a {
        font-size: 18px;
    }
}

@media screen and (max-width: 511px) {
    .right__content {
        padding: 0px 10px 10px 10px;
    }
}

@media screen and (max-width: 580px) {
    .form__search input {
        width: 100% !important;
    }

    .form_input {
        width: 100% !important;
    }
}

.form_input {
    margin-right: 5px;
}

.btn-search, .btn-add {
    width: 120px;
    height: 30px;
    background-color: #26599e;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.btn-add {
    margin-left: 5px;
}

.flex-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.form__search {
    padding: 10px;
    border: 1px solid #dcdcdf;
    -webkit-box-shadow: 3px 3px 3px 3px #e3e0e0;
    -moz-box-shadow: 3px 3px 3px 3px #e3e0e0;
    box-shadow: 3px 3px 3px 3px #e3e0e0;
    margin: 10px 0px;
    text-align: center;
}

    .form__search input {
        width: 400px;
        height: 30px;
        padding: 8px;
        border-radius: 5px;
        border: 1px solid #beb9b9;
    }



@media screen and (max-width: 380px) {
    .right__tableWrapper {
        overflow-x: scroll;
    }
}

.right table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 10px;
    word-break: break-word;
}

    .right table th {
        text-align: left !important;
    }

@media screen and (max-width:1000px) and (min-width:700px) {
    .right table thead {
        display: none;
    }

    .right table tbody, .right table tr, .right table td {
        display: block;
        width: 100%;
    }

    .right table tr {
        margin-bottom: 15px;
        width: 100%;
        margin: auto;
        border: 1px solid #d2cccc;
        box-shadow: 3px 3px 7px rgb(74 48 48 / 30%);
        margin-bottom: 10px;
        border-radius: 5px;
    }

        .right table tr:last-child {
            margin-bottom: 0px;
        }

    .right table td {
        text-align: right !important;
        position: relative;
        padding-left: 80px !important;
        font-size: 12px;
    }

        .right table td:before {
            content: attr(data-label);
            position: absolute;
            left: 0;
            width: 50%;
            padding-left: 8px;
            font-size: 15px;
            font-weight: bold;
            text-align: left;
        }
}

@media screen and (max-width:700px) {
    .right table thead {
        display: none;
    }

    .right table tbody, .right table tr, .right table td {
        display: block;
        width: 100%;
    }

    .right table tr {
        margin-bottom: 15px;
        width: 100%;
        margin: auto;
        border: 1px solid #d2cccc;
        box-shadow: 3px 3px 7px rgb(74 48 48 / 30%);
        margin-bottom: 10px;
        border-radius: 5px;
    }

        .right table tr:last-child {
            margin-bottom: 0px;
        }

    .right table td {
        text-align: right !important;
        position: relative;
        padding-left: 80px !important;
        font-size: 12px;
    }

        .right table td:before {
            content: attr(data-label);
            position: absolute;
            left: 0;
            width: 50%;
            padding-left: 8px;
            font-size: 15px;
            font-weight: bold;
            text-align: left;
        }
}

@media screen and (max-width:600px) {
    .right table tr {
        width: 100%;
    }

    .right table td, .right table th {
        padding: 2px !important;
        font-size: 12px !important;
    }
}

@media screen and (max-width: 380px) {
    .right table td {
        padding-left: 50px !important;
    }
}

.right table td, .right table th {
    text-align: left;
    padding: 8px;
    color: #10182F;
    font-size: 16px;
}

@media screen and (max-width: 1023px) and (min-width:800px) {
    .right table td, .right table th {
        border-bottom: 0px;
    }

        .right table td:last-child, .right table th:last-child {
            border-bottom: 1px solid #a2aac2;
        }

    .right table td {
        border: 1px solid #ebecef;
        padding: 2px !important;
    }

    .right__table table {
        box-shadow: 0px 0px 0px rgba(16, 24, 47, 0.4) !important;
    }
}

@media screen and (max-width: 800px) {
    .right table td, .right table th {
        border-bottom: 0px;
    }

        .right table td:last-child, .right table th:last-child {
            border-bottom: 1px solid #a2aac2;
        }

    .right table td {
        border: 1px solid #ebecef;
        padding: 2px !important;
        width: 100% !important
    }

    .right__table table {
        box-shadow: 0px 0px 0px rgba(16, 24, 47, 0.4) !important;
    }
}

.right table tr:nth-child(even) {
    background-color: #eff1f3;
}

.right table th {
    color: #fff;
    background-color: #26599e;
}

.modal-footer button i {
    margin-right: 5px;
}

.right table td {
    text-align: left;
    border-left: 1px solid #f5f5f5;
}

    .right table td:last-child {
        border-right: 1px solid #f5f5f5;
    }

.fa-pencil-square {
    color: #2196F3;
    font-size: 18px;
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgb(142 194 234 / 20%);
}

.select2 {
    width: 100% !important;
    height: 30px !important;
    text-align: left;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
}


.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal-header {
    background-color: #26599e;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.input-modal {
    padding: 5px;
}

.modal-footer .btn {
    width: 30%;
}

.modal-content {
    border: none;
}

.modal-footer {
    text-align: center;
}

    .modal-footer .btn:first-child {
        background-color: #dc3545;
        color: #fff !important;
        color: #000;
        border: none;
    }

    .modal-footer .btn:nth-child(2) {
        background-color: #26599e;
        color: #fff;
    }

@media (max-width:800px) {

    .modal-content {
        width: 80%;
    }
}

@media (max-width:500px) {

    .modal-footer .btn {
        width: 40%;
    }
}

.red {
    color: red;
}

.modal h3 {
    font-size: 20px;
    color: #fff;
    margin: 0;
}

/*============ tra cứu ===========*/
.form_search-item {
    width: 32% !important;
    padding: 5px 10px 5px 0px;
}

.form_search__index {
    width: 24% !important;
    padding: 5px 10px 0px 0px;
}

    .form_search__index input {
        width: 100% !important;
    }

    .form_search__index label {
        text-align: left;
        width: 100%;
    }

.form_search-item input {
    width: 100% !important;
}

.form_search-item label {
    text-align: left;
    width: 100%;
}

@media (max-width:700px) {
    .form_search {
        width: 50% !important;
        padding-left: 10px;
    }

    .form_search__index {
        width: 50% !important;
        padding-left: 10px;
    }
}

@media (max-width:600px) {
    .form_search__index {
        width: 100% !important;
        padding-left: 10px;
    }
}

.form__search {
    background-color: #fff;
    align-items: flex-end;
}

@media (max-width:700px) {
    .form_search-item {
        width: 100% !important;
        padding-left: 10px;
    }
}

.check_toggle {
    padding-left: 10px;
}

.check_search {
    width: 10px !important;
    height: 10px !important;
}


@media (max-width:900px) and (min-width: 800px) {
    .form_search-item label {
        font-size: smaller;
    }
}

.w-30-right {
    width: 20%;
    padding: 0px 10px 0px 0px;
}

.w-70-right {
    width: 80%;
}

@media (max-width:500px) {
    .w-30-right {
        width: 100%;
    }

    .w-70-right {
        width: 100%;
    }
}

.w-30-right .form__search {
    padding: 0;
    margin: 0px 0px;
    text-align: left;
}

.tree {
    list-style: none;
    padding-left: 20px;
    position: relative;
    color: #000;
}

    .tree:before {
        content: '';
        width: 1px;
        top: 0;
        bottom: 7px;
        left: 0;
        position: absolute;
    }

    .tree li {
        position: relative;
        margin-top: 10px;
    }

        .tree li:hover, .tree li:focus {
            color: #26599e;
            cursor: pointer;
        }

        .tree li:before {
            content: '';
            width: 20px;
            height: 1px;
            top: 12px;
            left: -20px;
            position: absolute;
        }

    .tree .tree {
        display: none;
    }

.w-70-right table th, .w-70-right table td {
    font-size: 14px !important;
}

.check_modal {
    padding-left: 20px;
}

.check_modal__li {
    padding: 10px;
}

.check_modal__li-body ul li {
    font-weight: normal;
    margin-left: 40px;
}

.check_modal__li-body ul label {
    font-size: 14px;
    font-weight: normal;
}

.check_modal__li-body {
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
}

.check_modal__ul-body {
    height: 250px;
    overflow-y: scroll;
    padding: 10px;
}

.flex-box-dm {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-end;
}

.icon__export .flex-box-dm {
    justify-content: flex-end;
}

.icon__export button {
    padding-right: 10px;
    background-color: unset;
    font-size: 20px;
}

.flex-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination_section {
    text-align: right;
    padding: 20px;
    font-size: 12px;
}

    .pagination_section a {
        color: black;
        padding: 7px 10px 0px 10px;
        text-decoration: none;
    }


        .pagination_section a:hover:not(.active) {
            background-color: #26599e;
            color: white;
            padding-top: 10px;
            padding-bottom: 7px;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            transition: 0.5s;
        }


        .pagination_section a:nth-child(3) {
            background-color: #26599e;
            color: white;
            padding-top: 10px;
            padding-bottom: 7px;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }

        .pagination_section a:nth-child(1) {
            font-weight: bold;
        }

        .pagination_section a:nth-child(7) {
            font-weight: bold;
        }

.dmloaitaisan {
    align-items: flex-end;
    justify-content: space-around;
}

@media (min-width:1000px) {
    .dmloaitaisan-btn {
        margin-top: 5px;
        text-align: center;
    }
}

input[type="checkbox"][readonly] {
    pointer-events: none;
}

.dmloaihinhdonvi {
    display: flex;
    justify-content: start;
}

    .dmloaihinhdonvi input[type="checkbox"] {
        margin-left: 15px;
    }

.report {
    margin-top: 20px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 1px 5px rgba(3, 2, 2, 0.3);
}

    .report .tree a, .repor .tree li {
        font-size: 14px;
        color: #000;
    }




.check_tdtt {
    display: flex;
}

    .check_tdtt input {
        width: 10px !important;
        height: 10px !important;
    }

.check_tdtt-btn {
    justify-content: start;
}


.btn-search-form {
    margin-top: 10px;
}


/*==login==*/

.login__logo {
    text-align: center;
}

.h-30 {
    height: 30px;
}

@keyframes spinner {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(359deg);
    }
}

* {
    box-sizing: border-box;
}

.background {
    background-image: url(../images/background_1.png);
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-size: cover; /* Giữ ảnh phủ hết màn hình */
    background-position: center; /* Căn giữa ảnh */
    background-repeat: no-repeat; /* Không lặp lại ảnh */
    background-attachment: fixed; /* Giữ ảnh cố định khi cuộn trang */
}

body {
}

.login-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
}

    .login-container h3 {
        font-size: 18px;
        font-weight: bold;
        color: #e98215;
        padding: 0px 0px 10px 0px;
    }

.login {
    border-radius: 10px 5px 10px 5px;
    padding: 10px 20px 20px 20px;
    width: 90%;
    max-width: 380px;
    background: #ffffff;
    position: relative;
    padding-bottom: 80px;
    box-shadow: 0px 1px 5px rgba(3, 2, 2, 0.3);
    margin: auto;
    opacity: 0.9;
}

}

.login.loading button {
    max-height: 100%;
    padding-top: 50px;
}

    .login.loading button .spinner {
        opacity: 1;
        top: 10%;
    }

.login button a {
    color: #fff;
    font-size: 14px;
}

.login.ok button {
    background-color: #8bc34a;
}

    .login.ok button .spinner {
        border-radius: 0;
        border-top-color: transparent;
        border-right-color: transparent;
        height: 20px;
        animation: none;
        transform: rotateZ(-45deg);
    }

.login input {
    display: block;
    padding: 15px 10px;
    margin-bottom: 10px;
    width: 100%;
    border: 1px solid #ddd;
    transition: border-width 0.2s ease;
    border-radius: 2px;
    color: #ccc;
}

    .login input + i.fa {
        color: #fff;
        font-size: 1em;
        position: absolute;
        margin-top: -47px;
        opacity: 0;
        left: 0;
        transition: all 0.1s ease-in;
    }

    .login input:focus {
        outline: none;
        color: #444;
        border-color: #e68227;
        border-left-width: 35px;
    }

        .login input:focus + i.fa {
            opacity: 1;
            left: 30px;
            transition: all 0.25s ease-out;
        }

.login a {
    font-size: 0.8em;
    color: #2196F3;
    text-decoration: none;
}

.login .title {
    color: #444;
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0 30px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.login button {
    width: 100%;
    height: 100%;
    padding: 10px 10px;
    background: #e13336;
    color: #fff;
    display: block;
    border: none;
    margin-top: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    max-height: 60px;
    border: 0px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 2px 2px;
    transform: rotateZ(0deg);
    transition: all 0.1s ease-out;
    border-bottom-width: 7px;
    font-weight: bold;
}

    .login button .spinner {
        display: block;
        width: 40px;
        height: 40px;
        position: absolute;
        border: 4px solid #ffffff;
        border-top-color: rgba(255, 255, 255, 0.3);
        border-radius: 100%;
        left: 50%;
        top: 0;
        opacity: 0;
        margin-left: -20px;
        margin-top: -20px;
        animation: spinner 0.6s infinite linear;
        transition: top 0.3s 0.3s ease, opacity 0.3s 0.3s ease, border-radius 0.3s ease;
        box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
    }

.login:not(.loading) button:hover {
    box-shadow: 0px 1px 3px #2196F3;
}

.login:not(.loading) button:focus {
    border-bottom-width: 4px;
}

.login-container {
    max-height: 100vh;
}



.head-report {
    display: flex;
    justify-content: space-between;
}

.heade-rp-left {
    width: 40%;
}

.heade-rp-right {
    width: 60%;
}

.rp-detail h5 {
    font-weight: bold;
}

.rp-bot {
    justify-content: space-around;
}

.text-trans {
    text-transform: uppercase;
}

.rp-word {
    box-shadow: 0px 5px 10px rgba(116, 116, 156, 0.35);
    padding: 10px;
}

.mucdich {
    align-items: flex-end;
}

.flex-box-icon {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.search-icon {
    width: 35% !important;
}

.status {
    padding: 5px;
    background-color: #f8f532;
    border-radius: 5px;
    color: #fff;
}

.footer {
    position: fixed;
    background-color: #f5f6fa;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    -webkit-box-shadow: 2px 2px 2px 2px #ccc;
    -moz-box-shadow: 2px 2px 2px 2px #ccc;
    box-shadow: 2px 2px 2px 2px #ccc;
}

    .footer h3 {
        font-size: 12px;
        padding-left: 20px;
    }

@media (max-width:600px) {
    .footer h3 {
        font-size: 9px;
    }
}

.img__full {
    width: 100%;
    z-index: 10;
}

.dashboard {
    margin-top: 82px;
}

.breadcrumb {
    padding: 10px;
    margin-bottom: 0;
}

ul.breadcrumb {
    border-radius: unset;
    list-style: none;
    background-color: #fff;
    box-shadow: 0px 1px 5px rgb(3 2 2 / 30%);
    margin-top: 5px;
}

    ul.breadcrumb li {
        display: inline;
        font-size: 14px;
    }

        ul.breadcrumb li + li:before {
            color: black;
            content: "/\00a0";
        }

        ul.breadcrumb li a {
            color: #0275d8;
            text-decoration: none;
            font-weight: bold;
        }

            ul.breadcrumb li a:hover {
                color: #01447e;
                text-decoration: underline;
            }

.modal-footer button.btn {
    padding: 0px;
    width: 120px;
    height: 30px;
}

/*====chart====*/
.line-chat-full {
    width: 100%;
}

.chart-js {
}

canvas {
    padding: 5px;
    width: 100% !important;
    ;
}


.linechat {
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(116, 116, 156, 0.35);
    width: 24% !important;
    margin-top: 5px;
    padding: 5px;
}

.line-chat {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .line-chat h6 {
        text-align: center;
        font-weight: bold;
    }

    .line-chat h5 {
        font-weight: bold;
    }

#countries {
    width: 100% !important;
}

#buyers {
    width: 100% !important;
}

#buyers_1 {
    width: 100% !important;
}

#buyers_2 {
    width: 100% !important;
}

#buyers_3 {
    width: 100% !important;
}

#income {
    width: 100% !important;
}

.chart1 {
    width: 100% !important;
}

.chart2 {
    width: 100% !important;
}

.div_bar {
    width: 66.5%;
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(116, 116, 156, 0.35);
    margin-top: 10px;
    height: fit-content;
}

.div_pie {
    width: 33%;
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(116, 116, 156, 0.35);
    margin-top: 10px;
    height: fit-content;
}

#mychart {
    width: 100% !important;
    height: 100% !important;
}

.w-50 {
    width: 60%;
    margin: auto;
}

@media (max-width:950px) {
    .linechat {
        width: 49% !important;
    }
}

@media (max-width:850px) {


    .div_bar {
        width: 100%;
        height: 100%;
    }

    .div_pie {
        width: 100%;
        height: 100%;
    }
}


@media (max-width:500px) {
    .linechat {
        width: 100% !important;
    }

    .div_bar {
        width: 100%;
    }

    .div_pie {
        width: 100%;
    }

    .w-50 {
        width: 80%;
        margin: auto;
    }
}

.select {
    width: 24% !important;
    padding: 0px 10px;
}

@media (max-width:850px) {
    .select {
        width: 50% !important;
    }
}

.menu-top {
    z-index: 10;
    align-items: center;
}

.dashboard__index {
    height: fit-content;
}

.login-out {
    position: absolute;
    top: 0;
    right: 10px;
}

.menu-top_dropdown {
    background-color: #3b7bcf;
}

    .menu-top_dropdown .left__link {
        padding-left: 0px;
        padding: 10px;
    }

.menu-top__title {
    justify-content: center;
    font-size: 25px;
    padding: 15px;
}

    .menu-top__title:hover {
        background-color: unset;
    }

@media screen and (max-width: 699px) {
    .menu-top {
        transform: translateX(0%);
        opacity: 1;
        transition: all 1s ease;
    }
}

.chart__details {
    text-align: right;
}

.text-bold {
    font-weight: bold;
}

#mychart {
    height: 200px !important;
}

@media(max-width:900px) {
    .btn-add, .btn-search {
        margin-top: 5px;
    }
}

.left__menuItem.open .left__title {
    background-color: unset;
}

.dvTable {
    max-height: 500px;
    overflow: auto;
}

@media (min-width: 1200px) {
    .container {
        max-width: 88% !important;
        margin: 10px 100px !important;
    }
}

table {
    background-color: #fff;
    box-shadow: 3px 3px 3px rgba(16, 24, 47, 0.4);
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 10px;
    word-break: break-word;
}

    table th {
        text-align: left !important;
    }

@media screen and (max-width:1000px) and (min-width:700px) {
    table thead {
        display: none;
    }

    table tbody, table tr, table td {
        display: block;
        width: 100%;
    }

    table tr {
        margin-bottom: 15px;
        width: 100%;
        margin: auto;
        border: 1px solid #d2cccc;
        box-shadow: 3px 3px 7px rgb(74 48 48 / 30%);
        margin-bottom: 10px;
        border-radius: 5px;
    }

        table tr:last-child {
            margin-bottom: 0px;
        }

    table td {
        text-align: right !important;
        position: relative;
        padding-left: 80px !important;
        font-size: 12px;
    }

        table td:before {
            content: attr(data-label);
            position: absolute;
            left: 0;
            width: 50%;
            padding-left: 8px;
            font-size: 15px;
            font-weight: bold;
            text-align: left;
        }
}

@media screen and (max-width:700px) {
    table thead {
        display: none;
    }

    table tbody, table tr, table td {
        display: block;
        width: 100%;
    }

    table tr {
        margin-bottom: 15px;
        width: 100%;
        margin: auto;
        border: 1px solid #d2cccc;
        box-shadow: 3px 3px 7px rgb(74 48 48 / 30%);
        margin-bottom: 10px;
        border-radius: 5px;
    }

        table tr:last-child {
            margin-bottom: 0px;
        }

    table td {
        text-align: right !important;
        position: relative;
        padding-left: 80px !important;
        font-size: 12px;
    }

        table td:before {
            content: attr(data-label);
            position: absolute;
            left: 0;
            width: 50%;
            padding-left: 8px;
            font-size: 15px;
            font-weight: bold;
            text-align: left;
        }
}

@media screen and (max-width:600px) {
    table tr {
        width: 100%;
    }

    table td, table th {
        padding: 2px !important;
        font-size: 12px !important;
    }
}

@media screen and (max-width: 380px) {
    table td {
        padding-left: 50px !important;
    }
}

table td, table th {
    text-align: left;
    padding: 8px;
    color: #10182F;
    font-size: 16px;
}

@media screen and (max-width: 1023px) and (min-width:800px) {
    table td, table th {
        border-bottom: 0px;
    }

    .right table td:last-child, .right table th:last-child {
        border-bottom: 1px solid #a2aac2;
    }

    td {
        border: 1px solid #ebecef;
        padding: 2px !important;
    }

    table {
        box-shadow: 0px 0px 0px rgba(16, 24, 47, 0.4) !important;
    }
}

@media screen and (max-width: 800px) {
    table td, table th {
        border-bottom: 0px;
    }

    .right table td:last-child, .right table th:last-child {
        border-bottom: 1px solid #a2aac2;
    }

    td {
        border: 1px solid #ebecef;
        padding: 2px !important;
    }

    table {
        box-shadow: 0px 0px 0px rgba(16, 24, 47, 0.4) !important;
    }
}

table tr:nth-child(even) {
    background-color: #eff1f3;
}

table th {
    color: #fff;
    background-color: #26599e;
}


table td {
    text-align: left;
    border-left: 1px solid #f5f5f5;
}

    table td:last-child {
        border-right: 1px solid #f5f5f5;
    }

.content {
    width: 100%;
    background: rgba(231,246,250,1);
    opacity: 1;
    position: relative;
    top: 0px;
    left: 0px;
    overflow: hidden;
    display: flex;
}

.left {
    background-color: #fff;
    width: 250px;
}

/*.right {
    background-color: #fff;
    width: calc(100% - 260px);
    margin-left:10px
}*/
.right {
    /* overflow-y: auto;
    background: #A72820;
    width: 100%;
    height: 100vh;*/
    background-image: url(../images/background_1.png);
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.logo {
    text-align: center;
    margin-top: 10px;
    width: 100%;
}

.item {
    height: 44px;
    padding: 10px 10px;
    margin: 10px;
    font-family: Roboto;
    font-size: 18px;
    opacity: 1;
    text-align: left;
    color: rgba(66,66,66,1);
}

.info {
    margin-top: 10px;
    width: 100%
}

.menus {
    width: 100%
}

.left a {
    color: black;
    text-decoration: none;
}

.item:hover {
    background-color: #073D9D;
}

.left a:hover {
    text-decoration: none !important;
    color: white !important
}

.item1 {
    height: 24px;
    margin: 10px;
    font-family: Roboto;
    font-size: 18px;
    opacity: 1;
    text-align: left;
    color: rgba(66,66,66,1);
}
/*@media screen and (max-width: 640px) {
    .logo{
        display:none
    }
    .right {
        background-color: #fff;
        width: 100%;
        margin-left:0px
    }
    .header{
        display: block !important;
    }
    .left {
        border-radius: 0px;
        max-width: 0px;
        position: absolute;
        height: 100%;
        position: fixed;
    }

        .left.show {
            display: flex;
            max-width: 250px !important;
            transition: all 0.6s ease;
            position: fixed;
            height: 80vh;
            overflow: scroll;
        }

            .left.show .title_menu {
                display: block !important;
            }
            .left.show {
                box-shadow: 240px 0px 0px rgba(16, 24, 47, 0.4);
                position: fixed;
                height: 80vh;
                overflow: scroll;
            }
    .login-container1 {
        max-height: auto;
    }
}*/
.header {
    display: none;
}

.login-container1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    /*justify-content: center;*/
    width: 100%;
    min-height: 100%;
}

.login-container1 {
    max-height: 100vh;
    padding-top: 10px
}

.login-container1 {
    max-height: 100vh;
}

#data1::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    border-radius: 10px;
}

#data1::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

#data1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(122,153,217)), color-stop(0.72, rgb(73,125,189)), color-stop(0.86, rgb(28,58,148)));
}

#data1 {
    max-height: 30vh
}

._header {
    font-family: system-ui;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

._detail {
    background: #fff;
    height: auto;
    font-size: 16px;
    padding: 10px;
    line-height: 25px;
    border-radius: 10px;
    margin-top: 10px;
}

.form__search {
    text-align: left !important;
    line-height: 25px;
}

    .form__search ._time {
        text-align: right;
        font: italic;
    }

    .form__search ._file {
        margin-top: 20px;
        border-top: 1px solid;
    }

._home {
}

    ._home ._img {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 200px;
    }

        ._home ._img img {
            height: 100px;
            border-radius: 10px;
        }

    ._home ._title {
        text-align: center;
        font-size: 20px;
        color: #fff;
        font-weight: bold;
        text-transform: uppercase;
    }
.btn {
    background: #daae43 !important;
    color: #fff !important;
    height: 50px !important;
    margin-top: 20px !important;
}
._title {
    font-weight: bold;
    text-transform: uppercase;
}
    ._title img{
        width:50px;
    }
    ._title a {
        color: #4a4747
    }
._vote {
    text-align: center;
    border-top: 1px solid #9f9b9b;
    margin-top: 5px;
}
._vote div{
    margin-top:10px;
}