﻿/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');*/
@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*, ::after, ::before {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-size: 0.875rem; /*14px*/
    line-height: 140%;
    font-family: "Inter 18pt", sans-serif;
    overflow-x: clip;
    font-weight: 400;
    color: #222;
}

li, ol, ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

a {
    text-decoration: none;
    /* -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out; */
}

h1, h2, h3, h4, h5, h6, p {
    padding: 0;
    margin: 0;
    /* -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out; */
}

button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

input, textarea {
    outline: 0;
}

textarea {
    resize: vertical;
}

img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .line-clamp.clamp2 {
        -webkit-line-clamp: 2;
    }

    .line-clamp.clamp3 {
        -webkit-line-clamp: 3;
    }

    .line-clamp.clamp4 {
        -webkit-line-clamp: 4;
    }

    .line-clamp.clamp5 {
        -webkit-line-clamp: 5;
    }

.form-check-input:focus {
    box-shadow: none;
}

header {
    position: relative;
}

.hover-red:hover {
    color: #C91B1E !important;
}

.hover-darkBlue:hover {
    color: #024282 !important;
}

.hover-blue:hover {
    color: #1574D3 !important;
}

#header-wrap .btn-head-wrap .btn-head {
    padding: 11px 21px;
    border-radius: 30px;
    background: #E8F2FC;
    transition: all .12s linear;
    cursor: pointer;
}

    #header-wrap .btn-head-wrap .btn-head:hover {
        box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    }

#header-wrap .btn-head-wrap {
    gap: 10px;
}

    #header-wrap .btn-head-wrap .btn-head span {
        color: #024282;
        font-size: 1rem;
        line-height: 20px;
    }

    #header-wrap .btn-head-wrap .btn-head.btn-register {
        background: #C91B1E;
    }

        #header-wrap .btn-head-wrap .btn-head.btn-register span {
            color: #fff;
        }

.menu-wrap {
    background: #C3151C;
    padding: 10px 0;
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.12);
}

.mobile-header--right .btn-register-mobile,
.mobile-header--right .btn-faq-mobile {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background-color: #E8F2FC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header--right .btn-register-mobile {
    background-color: #C91B1E;
}

.offcanvas-header .btn-login-mobile {
    width: 80%;
    text-align: center;
    padding: 11px 0;
    background: #E8F2FC;
    display: flex;
    justify-content: center;
    border-radius: 30px;
    margin: auto;
}

#back-to-top {
    position: fixed;
    bottom: 15%;
    right: 3%;
    width: 50px;
    height: 50px;
    font-size: 14px;
    background: #1574D3;
    border-radius: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
    -webkit-transition: opacity 0s ease-out;
    -o-transition: opacity 0s ease-out;
    transition: opacity 0s ease-out;
    z-index: 90;
    display: none;
    color: #fff;
}

    #back-to-top.show {
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        /* border: 1px solid var(--primary-color); */
    }

.menu-tienich {
    background: url(../images/bg_dangky.png) center center no-repeat;
    /*background-attachment: fixed;*/
    background-size: cover;
}

    .menu-tienich .item {
        height: 180px;
        text-align: center;
        border: 1px solid #E34A4A;
        background: linear-gradient(180deg, rgba(201, 27, 30, 0.70) 0%, rgba(119, 5, 7, 0.70) 100%);
        padding: 20px;
        overflow: hidden;
        position: relative;
        display: block;
    }

        .menu-tienich .item.bg-blue {
            border: 1px solid #2C6CE9;
            background: linear-gradient(180deg, rgba(0, 89, 177, 0.70) 0%, rgba(0, 49, 132, 0.70) 100%);
        }

            .menu-tienich .item:hover, .menu-tienich .item.bg-blue:hover {
                transition: ease-in 0.5s auto;
                border: 4px solid rgba(255,255,255,0.2) outset;
                filter: brightness(2);
            }

        .menu-tienich .item:after {
            content: "";
            position: absolute;
            top: -130%;
            left: -210%;
            width: 200%;
            height: 300%;
            opacity: 0;
            transform: skew(-40deg);
            background: rgba(255, 255, 255, 0.13);
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100%);
        }

        .menu-tienich .item:hover:after {
            opacity: 1;
            top: 0%;
            left: 30%;
            transition-property: left, top, opacity;
            transition-duration: 0.7s, 0.7s, 0.15s;
            transition-timing-function: ease;
        }

        .menu-tienich .item img {
            margin-bottom: 40px;
        }

        .menu-tienich .item h4 a, .menu-tienich .item h4 {
            font-size: 1rem;
            color: #fff;
            font-weight: 600;
        }

.title-head {
    text-align: center;
}

    .title-head h2 {
        padding-bottom: 20px;
        color: #222;
        font-size: 1.375rem;
        font-weight: 600;
        line-height: 28px;
        letter-spacing: 0.5px;
        position: relative;
    }

        .title-head h2::before {
            content: "";
            height: 2px;
            width: 100px;
            background-color: #CA0109;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

.info-wrap {
    padding-top: 40px;
}
    /* .info-wrap .title-info {
    text-align: center;
} */
    .info-wrap .title-info h3 {
        font-weight: 700;
        color: #024282;
        font-size: 1.375rem;
        line-height: 160%;
    }

    .info-wrap .desc {
        color: #222;
        text-align: center;
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 400;
        line-height: 160%;
    }

.counter-number {
    background: url(../images/bg_thongtin.png) center center no-repeat;
    background-size: cover;
}

    .counter-number .item {
        border-radius: 22px;
        padding: 20px;
        height: 100%;
    }

        .counter-number .item.bg-red {
            background: linear-gradient(180deg, #C91B1E 0%, #770507 100%);
        }

        .counter-number .item.bg-blue {
            background: linear-gradient(180deg, #0059B1 0%, #003184 100%);
        }

        .counter-number .item img {
            text-align: start;
            padding-bottom: 20px;
        }

        .counter-number .item .count {
            font-size: 2.5rem;
            color: #fff;
            font-weight: 700;
            padding-bottom: 20px;
            line-height: normal;
        }

        .counter-number .item .name {
            font-size: 1rem;
            color: #fff;
            font-weight: 600;
            line-height: 26px;
        }

.student-feel {
    background: url(../images/bg-feel.png) center center no-repeat;
    background-size: cover;
}

.feeling .swiper-slide {
    text-align: center;
    cursor: pointer;
}

.student-feel .feeling-wrap .swiper-slide .avatar {
    border-radius: 50%;
    width: 84px;
    height: 84px;
    border: 4px solid #024282;
    overflow: hidden;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .student-feel .feeling-wrap .swiper-slide .avatar .inner-border {
        border-radius: 50%;
        width: 76px;
        height: 76px;
        border: 2px solid #fff;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .student-feel .feeling-wrap .swiper-slide .avatar .inner-border img {
            border-radius: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.student-feel .feeling-wrap .swiper-slide .info {
    margin-bottom: 30px;
}

    .student-feel .feeling-wrap .swiper-slide .info .name {
        color: #024282;
        font-size: 1.125rem;
        font-weight: 600;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .student-feel .feeling-wrap .swiper-slide .info .position {
        color: #024282;
        line-height: 26px;
    }

.student-feel .feeling-wrap .swiper-slide .desc p {
    color: #222;
    font-size: 1rem;
}

.student-feel .feeling-wrap .swiper.feeling {
    padding: 50px 0;
}

    .student-feel .feeling-wrap .swiper.feeling .swiper-pagination {
        bottom: 0;
    }

#footer {
    background: url(../images/footer/bg-footer.png) center center no-repeat;
    background-size: cover;
}

.item-location-wrap .location-name h5,
.mini-map .title h5 {
    color: #DCC064;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 140%;
}

.item-location-wrap .location p {
    color: #fff;
    font-size: 0.938rem;
    font-weight: 400;
    line-height: 30px;
}

.mini-map .iframe-wrap {
    max-width: 334px;
    height: 237px;
}

.mini-map iframe {
    width: 100%;
    height: 100%;
}

.copy-right {
    border-top: 1px solid #E7ECEA;
}

    .copy-right p {
        color: #FFF;
        font-size: 0.938rem;
        line-height: 160%;
    }

.breadcrumbs {
    position: relative;
    padding: 52px 0;
    background: url("../images/bg_breadcumbs.png") center center no-repeat;
    background-size: cover;
}

    .breadcrumbs .title {
        display: block;
        font-weight: 700;
        font-size: 1.875rem;
        line-height: 36px;
        color: #fff;
        margin-bottom: 1rem;
    }

    .breadcrumbs .breadcrumb {
        background: transparent;
        margin-bottom: 0;
        padding: 0;
    }

        .breadcrumbs .breadcrumb > li + li:before {
            color: #fff;
            content: '\f111';
            font-weight: 400;
            font-family: "Font Awesome 6 Free";
            padding: 0 .5rem;
            font-size: .5rem;
        }

        .breadcrumbs .breadcrumb .breadcrumb-item a,
        .breadcrumbs .breadcrumb .breadcrumb-item,
        .breadcrumbs .breadcrumb .breadcrumb-item.active {
            color: #fff;
            font-size: 0.875rem;
            font-weight: 700;
            line-height: 25px;
        }

.list-danhmuc-wrap .item .title-news h3 a {
    color: #024282;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 150%;
}

.list-danhmuc-wrap .item .desc-news p {
    color: #222;
    line-height: 150%;
    font-size: 0.9rem;
}

.list-danhmuc-wrap .item {
    border-bottom: 0.45px solid #ABB9DA;
}

.pagination {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding-left: 0;
    list-style: none;
}

    .pagination .page-link {
        border-radius: 2.642px;
        width: 34.715px;
        height: 34.715px;
        text-align: center;
        line-height: 22.715px;
        margin: 0 5px;
        border: 1px solid #AAA;
        color: #111;
        font-size: 15px;
        padding: 5px;
    }

    #pills-tab .nav-item .nav-link:hover, .pagination .page-item:hover {
        -webkit-filter: brightness(0.9);
        filter: brightness(0.9);
    }

.page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.page-item.active .page-link {
    background: #002C58;
    color: #fff;
    border: none;
}

.danhmuc-right_01,
.danhmuc-right_02,
.danhmuc-right_03 {
    padding: 15px;
    border: 1px solid #EDEDED;
    margin-bottom: 20px;
}

    .danhmuc-right_01 .head {
        padding-bottom: 15px;
        border-bottom: 1px solid #EDEDED;
    }

        .danhmuc-right_01 .head p {
            font-size: 1.238rem;
            color: #222;
            font-weight: 700;
            line-height: 48.6px;
        }

    .danhmuc-right_01 .list-item .item h3 {
        line-height: unset;
        margin-top: 15px;
    }

        .danhmuc-right_01 .list-item .item h3 a {
            color: #024282;
            font-size: 1.013rem;
            line-height: 160%;
        }

    .danhmuc-right_01 .see-more a {
        color: #007CC2;
        font-size: 0.9rem;
    }

        .danhmuc-right_01 .see-more a i {
            font-size: 0.875rem;
        }

    .danhmuc-right_02 .list-item li:not(:last-child),
    .danhmuc-right_03 .list-item li:not(:last-child) {
        margin-bottom: 15px;
    }

    .danhmuc-right_02 .list-item a,
    .danhmuc-right_03 .list-item a {
        color: #222;
        font-size: 1.013rem;
        font-weight: 700;
    }

    .danhmuc-right_01 .list-item .item {
        border: none;
    }

.block-login {
    border-radius: 8px;
    border: 1px dashed #1574D3;
    padding: 10px;
}

.block-thutuc-info,
.block-expense {
    background: #fff;
    box-shadow: 0px 4px 26px 0px rgba(182, 214, 252, 0.50);
    border-radius: 10px;
}

    .block-thutuc-info .title-thutuc01,
    .block-thutuc-info .title-thutuc02,
    .block-thutuc-info .title-download,
    .block-expense .title-expense {
        padding-bottom: 20px;
    }

        .block-thutuc-info .title-thutuc01 h3,
        .block-thutuc-info .title-thutuc02 h3,
        .block-expense .title-expense h3 {
            color: #024282;
            font-size: 1.25rem;
            font-weight: 700
        }

    .block-thutuc-info .content-thutuc01 p,
    .block-thutuc-info .content-thutuc02 p {
        color: #222;
        font-size: 1rem;
        line-height: 160%;
        margin-bottom: 2px;
    }

.download-button {
    border-radius: 8px;
    background: #E8F2FC;
    color: #024282;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

    .download-button i {
        margin-right: 8px;
    }

    .download-button:hover {
        background-color: #cfdeed
    }

.thutuc-download .title-download h3 {
    color: #222;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 160%;
}

.row-expense-wrap .row-expense {
    margin-bottom: 20px;
}

.lb-upload {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    background: linear-gradient(180deg, #FFF 0%, rgba(232, 232, 232, 0.00) 100%);
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.02);
    width: 145px;
    cursor: pointer;
}

#fileName {
    color: #0052cc;
}

#nameFile i {
    cursor: pointer;
    color: #C91B1E;
    margin-left: 5px;
}

.block-thutuc-info, .block-expense {
    padding: 20px;
}

.row-expense label {
    color: #222;
    font-weight: 600;
    line-height: 160%;
    font-size: 1.125rem;
}

.lb-upload {
    font-size: 0.813rem;
    color: rgba(17, 17, 17, 0.85);
    font-weight: 600;
    line-height: 22.001px;
}

.lb-comfirm {
    display: inline;
    cursor: pointer;
    color: #222;
    font-weight: 400 !important;
    line-height: 1605;
    font-size: 0.875rem !important;
}

/*#Tong , #DonGia {
    max-width: 149px;
    height: 40px;
    border: 1px solid #DDD;
    background: #fff;   
    padding: 3px;
}*/
.btn-main {
    width: 385px;
    padding: 15px;
    border-radius: 6px;
    background-color: #024282;
    box-shadow: 1px 4px 6px 0px rgba(0, 127, 243, 0.20);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
}

#btn-dangky {
    background-color: #C91B1E;
    box-shadow: 1px 4px 6px 0px rgba(243, 0, 15, 0.20);
}

#btn-login {
    font-weight: 700;
}

.hvr-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

    .hvr-bounce-to-right:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #1574D3;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
        border-radius: 6px;
    }

    .hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
        color: white;
    }

        .hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
            -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
            transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
        }

.hvr-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

    .hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

#confirm {
    border: 1px solid #D9D9D9;
    background: #FAFAFA;
}

#ModalLogin .modal-header {
    border: none;
}

#ModalLogin .modal-content {
    border-radius: 22px;
}

#ModalLogin .modal-header .btn-close {
    color: #CA0109;
    background-color: #FFDEDE;
    padding: 10px;
    background-image: none;
    font-size: 1.3rem;
    opacity: 1;
    box-shadow: none;
}

#ModalLogin .modal-body .title-head h5 {
    color: #1C1C1C;
    font-size: 1.25rem;
    font-weight: 700;
}

#ModalLogin .modal-body .logo-modal {
    margin-bottom: 20px;
}

#ModalLogin .modal-body .title-head {
    margin-bottom: 30px;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

#form-login {
    max-width: 385px;
    margin: auto;
}

    #form-login input {
        box-shadow: none;
        outline: none;
        border: none;
    }

    #form-login label {
        margin-bottom: 10px;
        color: #1B2C43;
        font-size: 0.875rem;
        font-weight: 700;
    }

.form-control-with-icon {
    position: relative;
    padding-left: 2rem;
    border-radius: 6px;
    border: 1px solid #D9E1EC;
    background: #fff;
    height: 52px;
    display: flex;
    align-items: center;
}

#form-login label::-webkit-input-placeholder,
#form-login label::-ms-input-placeholder,
#form-login label::-moz-placeholder {
    color: #B9C2CD;
}

#form-login .form-group {
    margin-bottom: 30px;
}

#form-login select {
    outline: none;
    box-shadow: none;
    height: 52px;
}

#CauHoiFAQ .accordion-button:focus {
    border: none;
    box-shadow: none;
}

#CauHoiFAQ .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0px 4px 26px 0px rgba(182, 214, 252, 0.50);
}

#CauHoiFAQ .accordion-button:not(.collapsed) {
    box-shadow: none;
    background: #fff;
}

#CauHoiFAQ .accordion-button {
    border-radius: 10px;
    color: #024282;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 150%;
}

    #CauHoiFAQ .accordion-button i {
        margin-right: 10px;
        color: #C91B1E;
    }

#CauHoiFAQ .accordion-body p {
    font-size: 1rem;
    color: #334155;
    line-height: 24px;
}

.grid-col-5 {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, 1fr);
}

.breadcrumbs .grid-item {
    border-radius: 14.186px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.90) 100%), linear-gradient(180deg, #0941D2 0%, #0845AA 100%);
    padding: 12px;
}

    .breadcrumbs .grid-item:nth-child(1) {
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.90) 100%), linear-gradient(180deg, #0941D2 0%, #0845AA 100%);
    }

    .breadcrumbs .grid-item:nth-child(1) {
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.90) 100%), linear-gradient(180deg, #169DFF 0%, #074BB0 100%);
    }

    .breadcrumbs .grid-item:nth-child(3) {
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.90) 100%), linear-gradient(180deg, #28A745 0%, #24963E 100%);
    }

    .breadcrumbs .grid-item:nth-child(4) {
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.90) 100%), linear-gradient(180deg, #C91B1E 0%, #AB080B 100%);
    }

    .breadcrumbs .grid-item:nth-child(4) {
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.90) 100%), linear-gradient(180deg, #22CBCB 0%, #0E9DCB 100%);
    }

    .breadcrumbs .grid-item .item-img {
        width: 43px;
        height: 43px;
        background-color: rgba(8, 66, 195, 0.90);
        margin-bottom: 13px;
    }

    .breadcrumbs .grid-item:nth-child(1) .item-img {
        background-color: rgba(8, 66, 195, 0.90);
    }

    .breadcrumbs .grid-item:nth-child(1) .item-img {
        background-color: rgba(9, 85, 186, 0.90);
    }

    .breadcrumbs .grid-item:nth-child(3) .item-img {
        background-color: rgba(37, 155, 64, 0.90);
    }

    .breadcrumbs .grid-item:nth-child(4) .item-img {
        background-color: rgba(185, 17, 20, 0.90);
    }

    .breadcrumbs .grid-item:nth-child(5 ) .item-img {
        background-color: rgba(20, 172, 203, 0.90);
    }

    .breadcrumbs .grid-item .item-count span {
        color: #0842C3;
        font-size: 1.612rem;
        font-weight: 700;
    }

    .breadcrumbs .grid-item:nth-child(1) .item-count span,
    .breadcrumbs .grid-item:nth-child(1) .item-title h5 {
        color: #0842C3;
    }

    .breadcrumbs .grid-item:nth-child(1) .item-count span,
    .breadcrumbs .grid-item:nth-child(1) .item-title h5 {
        color: #0955BA;
    }

    .breadcrumbs .grid-item:nth-child(3) .item-count span,
    .breadcrumbs .grid-item:nth-child(3) .item-title h5 {
        color: #259B40;
    }

    .breadcrumbs .grid-item:nth-child(4) .item-count span,
    .breadcrumbs .grid-item:nth-child(4) .item-title h5 {
        color: #B91114;
    }

    .breadcrumbs .grid-item:nth-child(4) .item-count span,
    .breadcrumbs .grid-item:nth-child(4) .item-title h5 {
        color: #14ACCB;
    }

    .breadcrumbs .grid-item .item-count {
        margin-bottom: 13px;
    }

    .breadcrumbs .grid-item .item-title h5 {
        color: #0842C3;
        font-size: 0.645rem;
        font-weight: 600;
    }

#GuiCauHoi .accordion-button {
    color: #fff;
    font-weight: 700;
    line-height: 20.289px;
    font-size: 0.875rem;
    background-color: #1574D3;
    box-shadow: none;
    outline: none;
    border: none;
}

    #GuiCauHoi .accordion-button::after {
        content: "\2b";
        background-image: none;
        transition: transform 0.3s ease-in-out;
        text-align: center;
        font-size: 1.4rem;
    }

    #GuiCauHoi .accordion-button:not(.collapsed)::after {
        content: "\2212";
        background-image: none;
        text-align: center;
    }

#GuiCauHoi .accordion-item {
    border: none;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0px 4px 26px 0px rgba(182, 214, 252, 0.50);
}

.content-tintuc {
    color: #024282;
    font-weight: 400;
    font-size: 0.938rem;
}

    .content-tintuc .content > * {
        font-size: 1rem;
        line-height: 32px;
        margin-bottom: 10px;
        color: #1D1D1D;
    }

.detail-sinhvien {
    background-color: #F3F7FB;
}

    .detail-sinhvien .sidebar-left {
        box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.08);
        background-color: #fff;
    }

        .detail-sinhvien .sidebar-left ul li a {
            color: #212529;
            font-size: 1rem;
            line-height: 26px;
            padding: 10px;
            display: block;
        }

            .detail-sinhvien .sidebar-left ul li a.active,
            .detail-sinhvien .sidebar-left ul li a:hover {
                /* border-bottom: 1px solid #F1F5F9; */
                background: #E8F2FC;
                font-weight: 600;
                color: #024282;
            }

.row-detail-top-left,
.row-detail-top-right,
.row-detail-middle,
.row-detail-bottom {
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #F1F5F9;
    background: #FFF;
}

.row-detail-top-left {
    margin-right: 22px;
}

    .row-detail-top-left .avatar {
        width: 140px;
        height: 140px;
        margin: 20px auto;
    }

.detail-left p, .detail-left span {
    color: #212F3F;
    font-size: 0.875rem;
    line-height: 30px;
}

.detail-left span {
    font-weight: 700;
}

.detail-text p, .detail-text span {
    color: #212F3F;
    font-size: 0.875rem;
    line-height: 40px;
}

.detail-text span {
    font-weight: 700;
}

.row-detail-top-right .title-head,
.row-detail-middle .title-head,
.row-detail-bottom .title-head {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #F1F5F9;
}

    .row-detail-top-right .title-head h3,
    .row-detail-middle .title-head h3,
    .row-detail-bottom .title-head h3 {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.32px;
    }

.detail-sinhvien .contain-detail {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.08);
    padding: 14px 44px;
}

.mt-top-noMobile {
    margin-top: 20px;
}

.menu-fixed {
    top: 20%;
    left: -100%;
    transition: left 0.2s;
    border-radius: 6px;
    box-shadow: rgba(21, 116, 211, 0.16) 0px 10px 36px 0px, rgba(21, 116, 211, 0.06) 0px 0px 0px 1px;
}

    .menu-fixed.show {
        left: 0;
    }

    .menu-fixed .sidebar-left {
        border-radius: 6px;
    }

        .menu-fixed .sidebar-left ul li a {
            border-radius: 6px;
        }

.hamburger-btn {
    position: fixed;
    top: 15%;
    left: 0;
    z-index: 1050;
    background-color: #1574D3;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

.breadcrumbs-formSearch {
    width: 483px;
    margin: 0 auto;
}

    .breadcrumbs-formSearch .form-group {
        gap: 10px;
    }

.form-search-group {
    padding: 6px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.30);
    padding: 15px 18px;
}

.breadcrumbs-formSearch .form-group .input-key {
    width: 325.765px;
    height: 50px;
    background-color: #fff;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 0.922px solid rgba(27, 44, 67, 0.12);
}

    .breadcrumbs-formSearch .form-group .input-key input {
        border: none;
        outline: none;
        width: 100%;
    }

.form-search-group button {
    border-radius: 8px;
    background: #5CB85C;
    color: #fff;
    width: 147.621px;
    height: 50px;
}

.item-content.table {
    /* overflow-x: auto;
    max-height: 600px; */
}

.table-common {
    border-collapse: collapse;
    width: 100%;
    box-shadow: 0px 4px 26px 0px rgba(182, 214, 252, 0.50);
    border-radius: 10px;
}

    .table-common thead {
        position: sticky;
        top: -1px;
        z-index: 2;
    }

    .table-common tr {
        border-bottom: 1px solid #F2F3F4;
    }

        .table-common tr:hover {
            background-color: #ebebeb;
        }

    .table-common td, .table-common th {
        padding: 10px;
        text-align: left;
        background-color: #fff;
    }

    .table-common th {
        color: #222;
        font-size: 1rem;
        font-weight: 700;
        background-color: #F1F4F5;
        padding: 20px 10px;
    }

    .table-common td {
        color: #222;
        font-size: 0.875rem;
        font-weight: 400;
        min-width: 120px;
    }

    .table-common th:first-child {
        border-top-left-radius: 10px;
    }

    .table-common th:last-child {
        border-top-right-radius: 10px;
    }

    .table-common td:first-child {
        border-bottom-left-radius: 10px;
    }

    .table-common td:last-child {
        border-bottom-right-radius: 10px;
    }

    .table-common td.cell-link,
    .table-common td.cell-link a {
        text-align: left;
        min-width: 300px;
        line-height: 1.6;
        color: #222;
        font-weight: 500;
        font-size: 1rem;
    }

        .table-common td.cell-link a:hover {
            color: #024282;
            font-weight: 500;
        }

    .table-common td.cell-expense p {
        border-radius: 6px;
        background: #5CB85C;
        padding: 5px;
        color: #fff;
        font-size: 0.875rem;
        display: inline;
        font-weight: 700;
    }

    .table-common td a {
        color: #222;
    }

        .table-common td a:hover {
            color: #0d6efd;
            font-weight: 700;
        }

    .table-common td.cell-small,
    .table-common th.cell-small {
        width: 70px;
        min-width: unset;
    }

    .table-common td.cell-tuychinh a {
        padding: 3px;
        margin: 0 5px;
        border-radius: 4px;
        color: #fff;
        display: inline-block;
        width: 24px;
        height: 24px;
        font-size: 0.875rem;
    }

        .table-common td.cell-tuychinh a.edit-thutuc {
            background-color: #72A7E6;
        }

        .table-common td.cell-tuychinh a.delete-thutuc {
            background-color: #F37373;
        }
/* .list-thutuc-wrap .item-content {
    box-shadow: 0px 4px 26px 0px rgba(182, 214, 252, 0.50);
    border-radius: 10px;
} */

/*.item-content.table::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.item-content.table::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px grey;
    border-radius: 10px;
}

.item-content.table::-webkit-scrollbar-thumb {
    background: rgb(177, 172, 172);
    border-radius: 10px;
}

.item-content.table::-webkit-scrollbar-thumb:hover {
    background: #473e3e;
}*/

.btn-head-logged .nav-pull {
    position: absolute;
    width: 231px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    right: 0;
    top: 50px;
    padding: 0;
    margin: 0;
    border-radius: 4px;
    display: none;
    z-index: 3;
}

.btn-head-logged.active .nav-pull {
    display: block;
}

.btn-head-logged .nav-pull li:first-child {
    border-radius: 4px 4px 0 0;
}

.btn-head-logged .nav-pull li:last-child {
    border-radius: 0 0 4px 4px;
}

.btn-head-logged .nav-pull li a {
    padding: 8px 15px;
}

.btn-head-logged .nav-pull li:hover {
    background-color: #f6f6f6;
}

    .btn-head-logged .nav-pull li:hover a {
        transition: .2s all linear;
        color: #024282;
    }

.btn-head-logged .nav-pull li a {
    display: block;
    display: flex;
    align-items: center;
    color: #555;
    font-weight: 600;
}

.btn-head-logged .nav-pull::after {
    position: absolute;
    top: -6px;
    right: 10px;
    display: inline-block !important;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    content: ''
}

.block-expenseV2 .has-number input {
    width: 49px;
    height: 25px;
    color: #121212;
    outline: none;
    border: 1px solid #DDDDDD;
    text-align: center;
}

.block-expenseV2 {
    padding: 20px;
    border-radius: 8px;
    background: #025CB7;
    box-shadow: 0px 4px 26px 0px rgba(182, 214, 252, 0.50);
}

    .block-expenseV2 p {
        font-weight: 600;
        color: #fff;
        font-size: 1.125rem;
        line-height: 150%;
    }

    .block-expenseV2 .head {
        border-bottom: 1px solid #1271CF;
    }

    .block-expenseV2 .bottom .btn-back,
    .block-expenseV2 .bottom .btn-next {
        padding: 15px 11px;
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: 6px;
        width: 138px;
    }

    .block-expenseV2 .bottom .btn-back {
        background: #E8F2FC;
        box-shadow: 1px 4px 6px 0px rgba(243, 0, 15, 0.20);
        color: #024282;
    }

        .block-expenseV2 .bottom .btn-back:hover {
            background-color: #c2d6e9;
        }

    .block-expenseV2 .bottom .btn-next {
        color: #fff;
        background: #5CB85C;
        box-shadow: 1px 4px 6px 0px rgba(243, 0, 15, 0.20);
    }

        .block-expenseV2 .bottom .btn-next:hover {
            background-color: #4eaa4e;
        }

.table-responsiveV1 .list-item .item,
.table-responsiveV2 .list-item .item {
    box-shadow: 0px 4px 26px 0px rgba(182, 214, 252, 0.50);
    border-radius: 10px;
}

    .table-responsiveV1 .list-item .item .head,
    .table-responsiveV2 .list-item .item .head {
        border-radius: 10px 10px 0px 0px;
        border: 1px solid #F2F3F4;
        background-color: #F1F4F5;
        padding: 10px 15px;
    }

        .table-responsiveV1 .list-item .item .head a,
        .table-responsiveV2 .list-item .item .head a {
            /* color: #222; */
            font-size: 1rem;
            font-weight: 700;
        }

    .table-responsiveV1 .list-item .item .row,
    .table-responsiveV2 .list-item .item .row {
        padding: 10px 15px;
        border-bottom: 1px solid #ebebeb;
        --bs-gutter-x: 0;
    }

        .table-responsiveV1 .list-item .item .row .column-name,
        .table-responsiveV2 .list-item .item .row .column-name {
            font-size: .8rem;
            font-weight: 700;
            color: #222;
        }

        .table-responsiveV1 .list-item .item .row .column-value,
        .table-responsiveV2 .list-item .item .row .column-value {
            font-size: 1rem;
            font-weight: 400;
            color: #222;
        }

        .table-responsiveV1 .list-item .item .row .col-value.expense,
        .table-responsiveV2 .list-item .item .row .col-value.expense {
            border-radius: 6px;
            background: #5CB85C;
            padding: 5px;
            color: #fff;
            font-size: 0.875rem;
            display: inline;
            font-weight: 700;
            display: inline;
        }

    .table-responsiveV1 .list-item .item a.edit-thutuc,
    .table-responsiveV1 .list-item .item a.delete-thutuc {
        padding: 3px;
        margin: 0 5px;
        border-radius: 4px;
        color: #fff;
        display: inline-block;
        width: 24px;
        height: 24px;
        font-size: 0.875rem;
        text-align: center;
    }

    .table-responsiveV1 .list-item .item a.edit-thutuc {
        background-color: #72A7E6;
    }

    .table-responsiveV1 .list-item .item a.delete-thutuc {
        background-color: #F37373;
    }

.form-main .form-main-wrap {
    box-shadow: 0px 4px 26px 0px rgba(182, 214, 252, 0.50);
    border-radius: 10px;
    background: #fff;
    padding: 20px
}

.form-main-wrap .head-form .title {
    padding-bottom: 10px;
    border-bottom: 1px solid #D9E1EC;
}

    .form-main-wrap .head-form .title h3 {
        color: #024282;
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 160%;
    }

.form-main-wrap .body-form {
    padding-top: 20px;
}

    .form-main-wrap .body-form .group-form,
    .form-main-wrap .body-form .group-input {
        margin-bottom: 10px;
    }

        .form-main-wrap .body-form .group-input .title-input,
        .form-main-wrap .body-form .group-form .title-input {
            color: #121212;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

            .form-main-wrap .body-form .group-input .title-input span,
            .form-main-wrap .body-form .group-form .title-input span {
                color: #FF3535
            }

        .form-main-wrap .body-form .group-input input {
            border: 1px solid #CCC;
            border-radius: 4px;
            padding: 11px;
            min-width: 20%;
            margin-bottom: 10px;
        }

#form-main th {
    color: #666;
}

.table-responsiveV2 .list-item .item .head p {
    font-weight: 700;
}

.form-main-wrap .body-form .group-form .item-content textarea {
    width: 100%;
    min-height: 90px;
    border: 1px solid #ccc;
    padding: 11px;
    border-radius: 4px;
}

.form-main-wrap .body-form .group-form {
    padding-bottom: 20px;
}

    .form-main-wrap .body-form .group-form:last-child {
        border-bottom: 1px solid #D9E1EC;
    }

.form-main-wrap .group-footer {
    padding: 10px;
}

.form-check-input:focus {
    box-shadow: none;
}

.group-footer .btn-form-group {
    padding-top: 30px;
}

.btn-form-group .btn-group button {
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
}

.btn-form-group .btn-group .btn-register {
    background-color: #CA0109;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

    .btn-form-group .btn-group .btn-register:hover {
        background-color: #de2025;
    }

.btn-form-group .btn-group .btn-cancel {
    background-color: #E8F2FC;
    color: #024282;
}

    .btn-form-group .btn-group .btn-cancel:hover {
        background-color: #c2d6e9;
    }

.form-chuyenlop {
    border: 1px solid #D9E1EC;
    padding: 20px 11px;
}

.item-chuyenlop-create {
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #D9E1EC;
    /* margin-bottom: 20px; */
}

    .item-chuyenlop-create:last-child {
        border: none;
        padding-bottom: 0;
    }

    .item-chuyenlop-create:first-child {
        padding-top: 0;
    }

    .item-chuyenlop-create .btn-remove-item {
        width: 36px;
        height: 36px;
        background-color: #F37373;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: absolute;
        right: 10%;
        top: 50%;
        transform: translateY(-50%);
    }

        .item-chuyenlop-create .btn-remove-item:hover {
            background-color: #e55555;
        }

        .item-chuyenlop-create .btn-remove-item i {
            color: #fff;
            font-size: 1.25rem;
        }

#btn-add-chuyenlop {
    margin-top: 20px;
}

    #btn-add-chuyenlop a {
        padding: 15px 20px;
        background-color: #E8F2FC;
        border-radius: 6px;
        color: #024282;
        display: inline-block;
    }

        #btn-add-chuyenlop a:hover {
            background-color: #c2d6e9;
        }

.check-agree label {
    font-style: italic;
    cursor: pointer;
}

.content-tintuc .description {
    line-height: 32px;
    font-style: italic;
    color: #222;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.success-page-wrap {
    background-color: #F3F7FB;
}

    .success-page-wrap .success-page {
        background: #fff;
        box-shadow: 0px 4px 26px 0px rgba(182, 214, 252, 0.50);
        padding: 20px;
    }

.success-page .title-page h3 {
    color: #024282;
    font-size: 1.375rem;
    font-weight: 700;
}

.success-page .desc-page p {
    font-size: 1rem;
    font-weight: 600;
    color: #1C1C1C;
    line-height: 150%;
}

.success-page .redirect-page p {
    font-size: 1rem;
    color: #1C1C1C;
    font-style: italic;
}

.success-page .btn-backHome a {
    padding: 15px 20px;
    display: inline-block;
    border-radius: 6px;
    background: #024282;
    box-shadow: 1px 4px 6px 0px rgba(0, 127, 243, 0.20);
    color: #fff;
}

/* Back Pulse */
@-webkit-keyframes hvr-back-pulse {
    50% {
        background-color: rgba(32, 152, 209, 0.75);
    }
}

@keyframes hvr-back-pulse {
    50% {
        background-color: rgba(32, 152, 209, 0.75);
    }
}

.success-page .btn-backHome .hvr-back-pulse {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    overflow: hidden;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}

    .success-page .btn-backHome .hvr-back-pulse:hover, .hvr-back-pulse:focus, .hvr-back-pulse:active {
        -webkit-animation-name: hvr-back-pulse;
        animation-name: hvr-back-pulse;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-delay: 0.5s;
        animation-delay: 0.5s;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        background-color: #1574D3;
        background-color: #1574D3;
        color: white;
    }

.file-attachment {
    border-radius: 6px;
    background: #E8F2FC;
    padding: 15px 20px;
    color: #024282;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    gap: 5px;
    cursor: pointer;
}

    .file-attachment span {
        color: #FF3535;
    }

#toast-container {
}

    #toast-container .toast {
        background-color: #fff;
        color: #333;
        border-left: 0.5rem solid hsl(0, 0%, 100%);
        border-radius: 10px !important;
        box-shadow: 0 0 5px hsl(0deg 0% 0% / 20%), 0 2px 3px hsl(0deg 0% 0% / 20%) !important;
        border-left: 0.5rem solid hsl(0, 0%, 100%);
        padding: 0.5rem 1rem;
        padding: 10px 15px;
        min-height: 70px;
    }

    #toast-container.toast-top-right .toast .toast-title {
        font-size: 15px;
    }

    #toast-container.toast-top-right .toast .toast-message {
        font-size: 14px;
    }

    #toast-container.toast-top-right .toast-warning {
        border-left-color: #f89406;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="none" stroke="hsl(35deg 75% 75%)" stroke-width="12" stroke-linejoin="round" stroke-linecap="round" d="M 50 18 v 40"></path><circle stroke="none" fill="hsl(35deg 75% 75%)" cx="50" cy="78" r="8"></circle></svg>'), hsl(0, 0%, 100%);
        background-repeat: no-repeat;
        background-size: 30px;
        background-position: 100% 100%;
    }

    #toast-container.toast-top-right .toast-error {
        border-left-color: hsl(0deg 100% 69%);
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g transform="translate(50 50) rotate(45)"><path fill="none" stroke="hsl(0deg 73% 83%)" stroke-width="12" stroke-linejoin="round" stroke-linecap="round" d="M 0 -30 v 60 z M -30 0 h 60"></path></g></svg>'), hsl(0, 0%, 100%);
        background-repeat: no-repeat;
        background-size: 30px;
        background-position: 100% 100%;
    }

    #toast-container.toast-top-right .toast-success {
        border-left-color: hsl(120deg 100% 32%);
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="none" stroke="hsl(120deg 69% 87%)" stroke-width="12" stroke-linejoin="round" stroke-linecap="round" d="M 20 52 l 25 25 l 30 -50"></path></svg>'), hsl(0, 0%, 100%);
        background-repeat: no-repeat;
        background-size: 30px;
        background-position: 100% 100%;
    }

    #toast-container.toast-top-right .toast-info {
        border-left-color: #90dee9;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle stroke="none" fill="%2390dee9" cx="50" cy="22" r="8"></circle><path fill="none" stroke="%2390dee9" stroke-width="12" stroke-linejoin="round" stroke-linecap="round" d="M 45 40 h 5 v 40 h -5 h 10"></path></svg>'), hsl(0, 0%, 100%);
        background-repeat: no-repeat;
        background-size: 30px;
        background-position: 100% 100%;
    }

    #toast-container.toast-top-right .toast .toast-close-button {
        background-image: none !important;
        text-indent: inherit;
        font-size: 11px;
        color: #333;
    }

    #toast-container.toast-top-center .toast {
        border-top: 7px solid hsl(204deg 70% 54%);
        border-left: 0;
    }

    #toast-container.toast-top-center .toast-message button:first-child {
        margin-right: 5px !important;
    }


.toast-top-center {
    top: 100px !important;
}

#toast-container.toast-top-center .toast {
    border-top: 7px solid hsl(204deg 70% 54%);
    border-left: 0;
}

#toast-container.toast-top-center .toast-message button:first-child {
    margin-right: 5px !important;
}


#file-info {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

    #file-info span {
        color: #212121;
        font-weight: 600;
        font-size: 1rem;
    }

    #file-info #remove-file {
        color: #ff0000;
        font-size: 1.4rem;
    }

.btn-register:disabled, .btn-register[disabled] {
    background-color: #5b5b5b !important;
    cursor: no-drop;
}

.create-cauhoi h3 {
    color: #222;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 140%;
}

    .create-cauhoi h3 span {
        color: #024282;
    }

.create-cauhoi .btn-create-cauhoi a {
    padding: 15px 20px;
    color: #fff;
    background-color: #5CB85C;
    border-radius: 6px;
    display: inline-block;
    min-width: 100px;
    font-weight: 600;
    text-align: center;
}

#ThacMac .accordion-button {
    color: #222;
    font-weight: 700;
    line-height: 20.289px;
    font-size: 1rem;
    background-color: #fff;
    box-shadow: none;
    outline: none;
    border: none;
    border-radius: 10px;
}

    #ThacMac .accordion-button span {
        left: 80%;
        font-weight: 400;
    }

    #ThacMac .accordion-button i {
        margin-right: 10px;
    }

#ThacMac .accordion-item {
    border: none;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0px 4px 26px 0px rgba(182, 214, 252, 0.50);
    border-radius: 10px;
    border-bottom: 1px #F2F3F4;
}

#ThacMac .accordion-button:not(.collapsed) {
    border-radius: 10px 10px 0px 0px;
    background: #1574D3;
    color: #fff;
}

#ThacMac .accordion-button::after {
    content: "\f078";
    background-image: none;
    color: #222;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 2rem;
}

#ThacMac .accordion-button:not(.collapsed)::after {
    color: #fff;
}

#ThacMac .status-cauhoi {
    color: #222;
    font-size: .875rem;
    padding-left: 15px;
}

    #ThacMac .status-cauhoi::before {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 100%;
        background-color: #5CB85C;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        ;
    }

    #ThacMac .status-cauhoi span {
        font-weight: 600;
    }

.mess-send .mess-send-name p,
.mess-reply .mess-reply-name p {
    font-weight: 600;
    font-size: 1rem;
    line-height: 34px;
}

.mess-send .mess-send-content,
.mess-reply .mess-reply-content {
    padding: 20px;
    display: inline-block;
    max-width: 90%;
    min-width: 50%;
}

.mess-send .mess-send-content {
    border-radius: 20px 20px 0px 20px;
    background: #E8F2FC;
}

.mess-reply .mess-reply-content {
    border-radius: 20px 20px 20px 0px;
    background: #EFF2F6;
}

.mess-send .mess-send-content p {
    color: #212F3F;
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
}

.mess-send .mess-send-date p,
.mess-reply .mess-reply-date p {
    color: #666;
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    line-height: 34px;
}

.accordion-footer {
    padding: 0 1rem 1.25rem;
}

    .accordion-footer .content-input-wrap textarea {
        padding: 15px;
        width: 100%;
        border-radius: 6px;
        border: 1px solid #CCC;
        margin-bottom: 12px;
    }

.content-input-wrap .btn-submitCauHoi a {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 6px;
    background: #024282;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

    .content-input-wrap .btn-submitCauHoi a:hover {
        background-color: #032f5a;
    }

#form-thacmac .form-group {
    margin-bottom: 20px;
}

    #form-thacmac .form-group textarea {
        padding: 15px;
        width: 100%;
        border-radius: 6px;
        border: 1px solid #CCC;
    }

    #form-thacmac .form-group .label-input {
        color: #212F3F;
        font-size: 1rem;
        font-weight: 600;
        line-height: 20.289px;
    }

        #form-thacmac .form-group .label-input span {
            color: #F00;
        }

#form-thacmac .submit-thacmac {
    padding: 15px 20px;
    border-radius: 6px;
    color: #fff;
    background-color: #024282;
    font-size: 1rem;
    font-weight: 600;
}

#form-thacmac .close-thacmac {
    padding: 15px 20px;
    border-radius: 6px;
    color: #024282;
    background-color: #E8F2FC;
    font-size: 1rem;
    font-weight: 600;
}

.form-thacmac {
    padding: 30px 18px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 16px 0px rgba(190, 216, 239, 0.40);
}

.form-thacmac-head .title {
    margin-bottom: 30px;
}

    .form-thacmac-head .title h3 {
        color: #1C1C1C;
        font-weight: 700;
        font-size: 1.250rem;
    }

#btn-DatCauHoi {
    color: #fff;
}

#ThacMac .accordion-button {
    white-space: normal;
    padding-right: 150px;
}

#ThacMac .question-text {
    display: inline-block;
    max-width: calc(100% - 150px);
}

#ThacMac .status-text {
    width: 190px;
    text-align: right;
    padding-right: 10px;
}

.min-w130 {
    min-width: 130px;
}

.success-page .btn-backHistory a {
    padding: 15px 20px;
    display: inline-block;
    border-radius: 6px;
    background: #C91B1E;
    box-shadow: 1px 4px 6px 0px rgba(0, 127, 243, 0.20);
    color: #fff;
}

    .success-page .btn-backHistory a:hover {
        background-color: #fb262b;
        animation-delay: 0.5s;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

.success-page .btn-backHistory.btn-green a {
    background: #5CB85C;
}

    .success-page .btn-backHistory.btn-green a:hover {
        background: #71c571;
    }

.min-w15 {
    min-width: 15px !important;
}

.min-w75 {
    min-width: 75px;
}

.offcanvas-header .btn-head-logged-mobile {
    width: 80%;
    text-align: center;
    padding: 11px 0;
    background: #E8F2FC;
    display: flex;
    justify-content: center;
    border-radius: 30px;
    margin: auto;
}

    .offcanvas-header .btn-head-logged-mobile span {
        color: #0d6efd;
    }

    .offcanvas-header .btn-head-logged-mobile i {
        color: #0d6efd;
        margin-left: 5px;
    }

.btn-head-logged-mobile .nav-pull {
    position: absolute;
    width: 100%;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    right: 10px;
    top: 50px;
    padding: 0;
    margin: 0;
    border-radius: 4px;
    display: none;
    z-index: 2;
}

.btn-head-logged-mobile.active .nav-pull {
    display: block;
}

.btn-head-logged-mobile .nav-pull li:first-child {
    border-radius: 4px 4px 0 0;
}

.btn-head-logged-mobile .nav-pull li:last-child {
    border-radius: 0 0 4px 4px;
}

.btn-head-logged-mobile .nav-pull li {
    padding: 8px 15px;
}

    .btn-head-logged-mobile .nav-pull li:hover {
        background-color: #f6f6f6;
    }

        .btn-head-logged-mobile .nav-pull li:hover a {
            transition: .2s all linear;
            color: #024282;
        }

    .btn-head-logged-mobile .nav-pull li a {
        display: block;
        display: flex;
        align-items: center;
        color: #555;
        font-weight: 600;
    }

.btn-head-logged-mobile .nav-pull::after {
    position: absolute;
    top: -6px;
    right: 10px;
    display: inline-block !important;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    content: ''
}

.dmp-numerictextbox .k-numeric-wrap.k-state-default {
    background-color: white;
}

.dmp-numerictextbox .k-numeric-wrap .k-input {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    height: auto;
}

.dmp-numerictextbox.k-numerictextbox .k-link {
    height: 1.3em;
    line-height: 1.3em;
}

    .dmp-numerictextbox.k-numerictextbox .k-link:hover {
        background-color: #ccc;
    }

.block-expenseV2 .has-number .so-luong {
    max-width: 59px;
    height: 40px;
    border: 1px solid #DDD;
    background: #fff;
    padding: 3px;
    border-radius: 6px;
}

.content-thutuc02 * {
    width: 100%;
}

.accordion * {
    word-break: break-word;
}

.table-common td *,
.box-short-content-thu * {
    word-break: break-word;
}

.form-control:focus {
    box-shadow: unset;
}

.dmp-dropdown .k-dropdown-wrap.k-state-default {
    background-color: white;
}

.dmp-dropdown .k-dropdown-wrap .k-input {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    height: auto;
}

.dmp-dropdown.k-combobox-clearable .k-select {
    height: 2.6em;
    line-height: 2.6em;
}

    .dmp-dropdown.k-combobox-clearable .k-select:hover {
        background-color: #ccc;
    }

form .required-data label.title-input::after {
    content: '*';
    color: red;
    display: inline-block;
    margin-left: 3px;
    font-weight: bold;
}


.dmp-date .k-picker-wrap.k-state-default {
    background-color: white;
}

.dmp-date .k-picker-wrap .k-input {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    height: auto;
}

.dmp-date.k-datepicker .k-select {
    height: 2.6em;
    line-height: 2.6em;
}

    .dmp-date.k-datepicker .k-select:hover {
        background-color: #ccc;
    }

.lienhe-page-wrap {
    background-color: #F6F6F6;
    ;
}

    .lienhe-page-wrap .form-control:focus {
        box-shadow: unset;
    }

    .lienhe-page-wrap .form-contact-container {
        max-width: 532.815px;
        margin: 0 auto;
        box-sizing: border-box;
    }

#form-lienhe .btn-main {
    background-color: #CA0109;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.20);
    width: 100%;
}

#form-lienhe label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #111;
    margin-bottom: 7px;
}

    #form-lienhe label span {
        color: #F20000;
    }

#form-lienhe .title-lienhe h3 {
    font-size: 1.625rem;
    color: #111;
    font-weight: 700;
    line-height: 28px;
}

.brandSlider .item img {
    height: 89px;
}

.brandSlider .item {
    text-align: center;
}

.linkapp {
    background-color: #F6F6F6;
}

.btn-primary:focus,
.btn-primary:active:focus {
    box-shadow: none;
}

.sidebar-left ul li {
    border-radius: 6px 6px 0 0;
}

.dashboard-left-block {
    border-radius: 6px;
    border: 1px solid #F1F5F9;
    background-color: #fff;
    box-shadow: 1px 1px 4px 0px #00000013;
}

    .dashboard-left-block.p-15 {
        padding: 15px;
    }

.dashboard-block {
    background-color: #F3F7FB;
}

.dashboard-left-block .avatar img {
    width: 113.5px;
    height: 113.5px;
    border-radius: 100%;
    overflow: hidden;
}

.dashboard-left-block .info-menu .one-line p {
    color: #212F3F;
    font-size: 0.875rem;
    font-weight: 400;
}

    .dashboard-left-block .info-menu .one-line p span {
        font-weight: 700;
    }

.dashboard-left-block .list-menu ul li {
    border-bottom: 1px solid #F1F5F9;
    background-color: #fff;
    transition: all .1s linear;
}

    .dashboard-left-block .list-menu ul li:first-child {
        border-radius: 6px 6px 0 0;
    }

    .dashboard-left-block .list-menu ul li:last-child {
        border-radius: 0 0 6px 6px;
        border-bottom: none;
    }

    .dashboard-left-block .list-menu ul li a {
        display: block;
        color: #212529;
        padding: 10px;
        transition: all .1s linear;
    }

    .dashboard-left-block .list-menu ul li:hover {
        background-color: #E8F2FC;
    }

        .dashboard-left-block .list-menu ul li:hover a {
            color: #024282;
            font-weight: 700;
        }

    .dashboard-left-block .list-menu ul li.active {
        background-color: #E8F2FC;
    }

        .dashboard-left-block .list-menu ul li.active a {
            color: #024282;
            font-weight: 700;
        }

.dashboard-right-container .content-wrap {
    padding: 20px;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.08);
}

    .dashboard-right-container .content-wrap .title-head h3 {
        font-size: 1.125rem;
        color: #212529;
        font-weight: 700;
        letter-spacing: 0.36px;
    }

    .dashboard-right-container .content-wrap .title-head {
        padding-bottom: 13.5px;
        border-bottom: 1px solid #F1F5F9;
    }

.dashboard-right-container .content-body .item .icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .dashboard-right-container .content-body .item .icon.tongdon {
        background-color: #CBF2FF;
    }

    .dashboard-right-container .content-body .item .icon.tongyeucau {
        background-color: #FFEBE9;
    }

.dashboard-right-container .content-body .item .title h4 {
    color: #111;
    font-size: 1rem;
    font-weight: 400;
}

.dashboard-right-container .content-body .item .title {
    margin-bottom: 20px;
}

.dashboard-right-container .content-body .item .count {
    font-weight: 500;
    font-size: 2.125rem;
}

.dashboard-right-container .content-body .item .desc p {
    color: #888888;
    font-size: 0.875rem;
}

.dashboard-right-container .content-body .item {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 26px 0px rgba(182, 214, 252, 0.50);
    padding: 10px;
}

    .dashboard-right-container .content-body .item .link-detail {
        text-align: end;
    }

        .dashboard-right-container .content-body .item .link-detail a {
            padding: 5px 10px;
            border-radius: 30px;
            border: 1px solid #EAEAEA;
            color: #444;
            font-size: 0.75rem;
        }

#nav-icon3 {
    width: 20px;
    height: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

    #nav-icon3 i {
        color: #fff;
        font-size: 1.1rem;
    }

    #nav-icon3 span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #fff;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

        #nav-icon3 span:nth-child(1) {
            top: 0px;
        }

        #nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
            top: 7px;
        }

        #nav-icon3 span:nth-child(4) {
            top: 14px;
        }

    #nav-icon3.open span:nth-child(1) {
        top: 7px;
        width: 0%;
        left: 50%;
    }

    #nav-icon3.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #nav-icon3.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #nav-icon3.open span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }

.menu-fixed-new {
    position: fixed;
    top: 10%;
    left: -250px;
    width: 250px;
    transition: all 0.3s ease;
    z-index: 99;
    background-color: #fff;
    border-radius: 5px;
}

    .menu-fixed-new.show {
        left: 0;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .menu-fixed-new .btn-toggle {
        background-color: #C91B1E;
        padding: 5px;
        border-radius: 5px;
        width: 40px;
        height: 40px;
        position: absolute;
        right: -40px;
        top: 0;
        cursor: pointer;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.menu-respon-fixed {
    padding: 10px;
}

.autocomplete {
    position: relative;
    font-size: 14px;
    width: 100%;
}

    .autocomplete ul,
    .autocomplete li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .autocomplete .autocomplete-list {
        position: absolute;
        top: 35px;
        right: 50%;
        margin: 0;
        padding: 0;
        list-style: none;
        width: calc(100% + 80px);
        background: #fff;
        color: #222;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 1px 4px 0 rgb(0 0 0 / 26%);
        transform: translateX(50%);
        z-index: 999;
        font-size: .850rem;
    }

        .autocomplete .autocomplete-list li {
            border-bottom: 1px solid #f1f1f1;
            padding-bottom: 10px;
            padding-top: 10px;
        }

            .autocomplete .autocomplete-list li a {
                color: #000
            }

            .autocomplete .autocomplete-list li:last-child {
                border-bottom: 0px;
            }

    .autocomplete .autocomplete-group {
        position: relative;
        border-bottom: 1px solid #f1f1f1;
        padding: 10px 0;
    }

    .autocomplete .autocomplete-group-header {
        position: absolute;
        top: 16px;
        left: 10px;
        font-weight: bold;
    }

    .autocomplete .autocomplete-item,
    .autocomplete .autocomplete-item-custom {
        cursor: pointer;
        padding: 6px 10px;
    }


.autocomplete-group .autocomplete-item,
.autocomplete-group .autocomplete-item-custom {
    padding-left: 100px;
}

.autocomplete .autocomplete-item.active,
.autocomplete .autocomplete-item:hover,
.autocomplete .autocomplete-item-custom.active,
.autocomplete .autocomplete-item-custom:hover {
    background-color: #ddd;
}

.autocomplete .autocomplete-item-last {
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.total-tintuc-wrap .item {
    border-radius: 16px;
    border: 1px solid #EDEFF6;
    padding: 10px 20px 20px 20px;
}

.total-tintuc-wrap .title-head {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

    .total-tintuc-wrap .title-head::before {
        content: "";
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        height: 1px;
        background-color: #E5E9EC;
    }

    .total-tintuc-wrap .title-head::after {
        content: "";
        width: 15%;
        height: 1px;
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #EC272D;
        z-index: 2;
    }

    .total-tintuc-wrap .title-head h2 {
        padding: 0;
        text-align: left;
        font-size: 1.275rem;
        color: #212F3F;
        font-weight: 500;
    }

        .total-tintuc-wrap .title-head h2::before {
            content: unset;
        }

.total-tintuc-wrap .item-head .thumb {
    width: 100%;
    height: 75px;
    overflow: hidden;
    border-radius: 6px;
    display: block;
}

    .total-tintuc-wrap .item-head .thumb img {
        width: 100%;
    }

.total-tintuc-wrap .item-head .title h3,
.total-tintuc-wrap .listitem-body .item h3 {
    line-height: 24px;
}

    .total-tintuc-wrap .item-head .title h3 a {
        color: #212F3F;
        font-size: 1rem;
        font-weight: 600;
    }

        .total-tintuc-wrap .item-head .title h3 a span {
            font-size: .850rem;
            color: #666;
            font-weight: 400;
        }

.total-tintuc-wrap .listitem-body .item {
    border: none;
    padding: 15px 0 0;
    border-top: 1px dashed #DFE5EC;
    border-radius: unset;
    margin-top: 15px;
}

    .total-tintuc-wrap .listitem-body .item h3 a {
        color: #333;
        font-size: .850rem;
        font-weight: 400;
    }

    .total-tintuc-wrap .listitem-body .item h3 span {
        color: #888;
        font-size: .850rem;
        font-weight: 400;
    }

.total-tintuc-wrap .listitem-body {
    max-height: 350px;
    height: 350px;
    overflow-y: auto;
}

    .total-tintuc-wrap .listitem-body::-webkit-scrollbar {
        width: 3px;
    }

    .total-tintuc-wrap .listitem-body::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .total-tintuc-wrap .listitem-body::-webkit-scrollbar-thumb {
        background: #888;
    }

        .total-tintuc-wrap .listitem-body::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.total-tintuc-wrap .item-footer {
    margin-top: 15px;
    width: 100%;
}

    .total-tintuc-wrap .item-footer a {
        color: #346EDF;
        font-weight: 700;
        font-size: 1rem;
        text-align: center;
        display: block;
        padding: 10px 10px;
        background-color: #E8F4FF;
        border-radius: 4px;
    }

    .total-tintuc-wrap .item-footer:hover a {
        color: #002875;
    }

.total-tintuc-wrap .item-head .title h3:hover a,
.total-tintuc-wrap .listitem-body .item h3:hover a {
    color: #346EDF;
}

.btn-infoDashboard {
    width: 100%;
    text-align: left;
    background-color: #E8F2FC;
    padding: 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .btn-infoDashboard span {
        color: #024282;
        font-size: 1.125rem;
        margin-left: 15px;
    }

    .btn-infoDashboard i {
        color: #024282;
        transition: transform 0.3s;
    }

    .btn-infoDashboard[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

.breadcrumbs .breadcrumb .breadcrumb-item.search {
    font-weight: 400;
}

    .breadcrumbs .breadcrumb .breadcrumb-item.search span {
        font-weight: 700;
    }

.total-tintuc-wrap .item-head .title h3 span {
    font-size: .850rem;
    color: #666;
    font-weight: 400;
}

.total-tintuc-wrap .item-head {
    height: 105px;
}

.table-common.tableYeuCau td:first-child,
.table-common.tableYeuCau th:first-child {
    width: 50px;
    min-width: 50px;
}

#history-thutuc.table-common.tableYeuCau tbody tr:nth-child(even) {
    background-color: #f2f2f2 !important; /* Using !important to avoid override */
}

#history-thutuc.table-common.tableYeuCau tbody tr:hover {
    background-color: #ebebeb !important; /* Ensure hover effect applies */
}

.detail-yeucau .item-list {
    border-radius: 20px;
    border: 1px solid #F1F5F9;
    overflow: hidden;
    margin-bottom: 20px;
}

    .detail-yeucau .item-list:last-child {
        margin-bottom: 0;
    }

    .detail-yeucau .item-list .col-infoLeft {
        padding: 0;
    }

    .detail-yeucau .item-list .infos-wrap {
        background-color: #F3F7FB;
        text-align: center;
        padding: 20px;
    }

        .detail-yeucau .item-list .infos-wrap .avatar {
            width: 80px;
            height: 80px;
            overflow: hidden;
            border-radius: 100%;
            margin: 0 auto;
        }

    .detail-yeucau .item-list .contents-wrap {
        padding: 20px;
        display: flex;
        flex-flow: column wrap-reverse;
        justify-content: space-between;
        height: 100%;
    }

        .detail-yeucau .item-list .contents-wrap .content p {
            color: #212F3F;
            font-size: 0.875rem;
            line-height: 150%;
        }

        .detail-yeucau .item-list .contents-wrap .trangthai-hientai {
            margin-top: 20px;
            padding-top: 10px;
            border-top: 1px solid #EAEAEA;
        }

            .detail-yeucau .item-list .contents-wrap .trangthai-hientai p {
                color: #212F3F;
                font-size: 0.875rem;
                line-height: 150%;
            }

                .detail-yeucau .item-list .contents-wrap .trangthai-hientai p span {
                    font-weight: 700;
                }

.detail-yeucau .item-headYeuCau {
    border: 1px solid #F1F5F9;
    margin-bottom: 20px;
}

    .detail-yeucau .item-headYeuCau .title-headYeuCau {
        padding: 20px 0;
        border-bottom: 1px solid #F1F5F9;
    }

        .detail-yeucau .item-headYeuCau .title-headYeuCau h3 {
            padding-left: 20px;
            font-size: 1rem;
            color: #212529;
            font-weight: 700;
        }

    .detail-yeucau .item-headYeuCau .content-head {
        padding: 20px;
        min-height: 100px;
    }

        .detail-yeucau .item-headYeuCau .content-head p {
            color: #212F3F;
            font-size: 0.875rem;
            line-height: 160%;
        }

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-guiYeuCau-wrap .submit-yeucau,
.yeucau-rating .btn-guiDanhGia2 {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 6px;
    background: #024282;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.yeucau-rating .btn-guiDanhGia2 {
    font-weight: 400;
}

.yeucau-infoLeft-wrap,
.yeucau-rating {
    padding: 20px;
    border: 1px solid #F1F5F9;
}

    .yeucau-infoLeft-wrap .title {
        margin-bottom: 10px;
    }

        .yeucau-infoLeft-wrap .title h3,
        .yeucau-rating .title h3 {
            font-size: 1.125rem;
            color: #212529;
            font-weight: 700;
        }

    .yeucau-infoLeft-wrap .yeucau-info .col-name p,
    .yeucau-infoLeft-wrap .yeucau-info .col-value p {
        font-size: 0.925rem;
        font-weight: 600;
        color: #212F3F;
    }

    .yeucau-infoLeft-wrap .yeucau-info .col-value p {
        font-weight: 400;
    }

.item-content.yeucau {
    overflow-x: scroll;
}



/*   .item-content.table::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        border-radius: 10px;
        background-color: #F5F5F5;
    }

    .item-content.table::-webkit-scrollbar {
        width: 12px;
        height: 6px;
        background-color: #F5F5F5;
    }

    .item-content.table::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        background-color: #024282;
    }*/
.block-login p {
    font-size: 1.25rem;
    font-weight: 500;
}

.circle-yeucau {
    width: 10px;
    height: 10px;
    top: 35%;
    left: 7px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: #e60808;
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

@keyframes zoom {
    0% {
        transform: scale(.6);
    }

    70% {
        transform: scale(.7);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.6);
        box-shadow: 0 0 0 0 transparent
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(.6);
    }

    70% {
        transform: scale(.7);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.6);
        box-shadow: 0 0 0 0 transparent
    }
}

#TotalChuaXem {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: red;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
}

.circle-yeucau.mobile {
    top: 2px;
    left: 0;
}

.table-common td.cell-expense p {
    display: inline-block;
    font-size: 0.75rem;
}

.table-responsiveV1 .list-item .item .row .col-value.expense {
    display: inline-block;
}

#draw-Signature {
    width: 100%;
    height: 270px;
    border: 1px dashed black;
    border-radius: 5px;
    background: transparent;
    cursor: url('../images/cursor-pencil.png') 0 11, default;
}

.detail-yeucau .item-list .infos-wrap.info-signature .avatar {
    width: 280px;
    height: 200px;
    border-radius: unset;
}

    .detail-yeucau .item-list .infos-wrap.info-signature .avatar img {
        width: 280px;
        height: 200px;
    }

.view-signatured .item-list .infos-wrap {
    min-height: 200px;
}

    .view-signatured .item-list .infos-wrap.info-signature .avatar {
        width: 100%;
        height: auto;
    }

        .view-signatured .item-list .infos-wrap.info-signature .avatar img {
            width: 100%;
            height: auto;
            -o-object-fit: contain;
            object-fit: contain;
        }
/* CSS view giảng viên */
.view-giangvien .input-key select {
    height: 36px;
    /* border-radius: 6px; */
    border: none;
    padding: 0 10px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    outline: none;
}

.breadcrumbs-formSearch.view-giangvien .form-group .input-key input {
    height: 36px;
}

.breadcrumbs-formSearch.view-giangvien .form-group .input-key {
    width: 100%;
}

.breadcrumbs-formSearch.view-giangvien {
    width: 683px;
}

.form-search-wrapper button {
    border-radius: 8px;
    background: #5CB85C;
    color: #fff;
    width: 147.621px;
    height: 50px;
}

.form-search-wrapper {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    gap: 15px;
}

    .form-search-wrapper label {
        font-weight: 600;
        white-space: nowrap;
        color: #212F3F;
        font-size: 16px;
    }

.input-group .form-control {
    border-right: none;
    border-radius: 6px 0 0 6px;
    height: 50px;
}

    .input-group .form-control:focus {
        box-shadow: none;
        border-color: #ced4da;
    }

.input-group .input-group-text {
    background: white;
    border-left: none;
    border-radius: 0 6px 6px 0;
}

.btn-search {
    margin-left: 15px;
    border-radius: 8px;
    padding: 8px 16px;
}

.block-search-thutuc {
    filter: drop-shadow(0px 4px 26px rgba(182, 214, 252, 0.50));
    z-index: 3;
    position: relative;
}

.bg-giangvien-blue {
    background-color: #007AFF !important;
}
/* CSS view giảng viên */
/* CSS view login 02 */
#form-login02 .form-group {
    margin-bottom: 1.5rem;
}

#form-login02 .form-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1A202C;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#form-login02 .group-input {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

#form-login02 .btn-login {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

    #form-login02 .btn-login a {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-size: 1.25rem;
        font-weight: 600;
        padding: 1.2rem 2rem;
        border-radius: 15px;
        position: relative;
        z-index: 1;
        transition: filter 0.3s ease-out;
    }

    #form-login02 .btn-login::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
        transform: translateX(-100%);
        transition: transform 0.5s ease-out;
        z-index: 0;
    }

    #form-login02 .btn-login:hover::before {
        transform: translateX(100%);
    }

#form-login02 #btn-giangvien a {
    background: linear-gradient(135deg, #007AFF, #338CFF);
}

#form-login02 #btn-giangvien:hover a {
    filter: brightness(1.05);
}

#form-login02 #btn-giangvien:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3), 0 0 20px rgba(0, 122, 255, 0.2);
}

#form-login02 #btn-sinhvien a {
    background: linear-gradient(135deg, #5CB85C, #7DD17D);
}

#form-login02 #btn-sinhvien:hover a {
    filter: brightness(1.05);
}

#form-login02 #btn-sinhvien:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(92, 184, 92, 0.3), 0 0 20px rgba(92, 184, 92, 0.2);
}

#ModalLogin02 .modal-header {
    border-bottom: none;
}


/* CSS view login 02 */

#form-search-thutuc .autocomplete .autocomplete-list {
    top: 50px;
    width: 100%;
}

.k-input[readonly] {
    background-color: #e9ecef;
    color: #003f59
}
