:root {
    --main-color: #1A335C;
    --white: #ffffff;
    --black-black-5: #E9E9E9;
}

* {
    transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

html {
    overflow-y: scroll;
}

a {
    text-decoration: none;
}

body {
    color: #282628;

    overflow-x: hidden;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none!important;
    box-shadow: none!important;
}

.block {
    display: block;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

td {
    /*width: 20%; /* Đặt độ rộng tương đối cho cột (vd: 20% của bảng) */
    max-width: 150px; /* Đặt độ rộng tối đa cho cột là 200px */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.modal-backdrop {
    z-index: -1;
}

#pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px; /* Điều chỉnh khoảng cách giữa bảng và pagination nếu cần */
}

.progress-bar.animate::before {
    -webkit-animation: none;
    animation: none;
}

@property --progress-value {
    syntax: "<integer>";
    inherits: false;
    initial-value: 0;
}

@-webkit-keyframes html-progress {
    from {
        --progress-value: 0;
    }
}

@keyframes html-progress {
    from {
        --progress-value: 0;
    }
}

.progress-bar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    color: red;
    /* to center the percentage value */
    display: flex;
    justify-content: center;
    align-items: center;
}


.progress_html {
    background: radial-gradient(closest-side, white 79%, transparent 80%), conic-gradient(#e67d34 calc(var(--progress-value) * 1%), #efe7e9 0);
    -webkit-animation: html-progress 2s 1 forwards;
    animation: html-progress 2s 1 forwards;
}


h2 {
    text-align: center;
}

progress {
    visibility: hidden;
    width: 0;
    height: 0;
}


.capnhat {
    background: #1A335C !important;
    padding: 8px 20px !important;
    border-radius: 24px !important;
    color: #fff !important;
    font-size: 16px !important;
    text-decoration: none !important;
    box-shadow: 0 5px 20px -12px #8db8e1 !important;
    border: 0 !important;
}

.capnhat:hover {
    background: #1A335C !important;
    color: #fff !important;
}

.red {
    color: #ff0000 !important;
}

.green {
    color: var(--main-color) !important;
}

.blue {
    color: #3490ed !important;
}

.organe {
    color: #FF761C !important;
}


.text_baove {
    display: flex;
    margin-bottom: 12px;
}

.header-card {
    margin: 0 0 15px;
    width: 100%;
    font-size: 18px;
    font-weight: 500;;
    color: var(--main-color);
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #E9E9E9
}

.payment_step {
    padding: 0;
    margin-bottom: 24px;
}

.payment_step .title_nap {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: var(--main-color) !important;
    margin-bottom: 24px !important;
    text-align: left !important;
    border-bottom: 1px solid #E9E9E9 !important;
    padding-bottom: 20px !important;
    display: flex;
}


.payment_step .payment_card {
    width: 24%;
    margin: 0 .5% 1% .5%;
    border: 1px solid var(--black-black-5, #E9E9E9);
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.10);
    padding: 14px 0;
    text-decoration: none;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.payment_step .list_nap_bank {
    width: 15.6%;
    margin: 0 .5% 1% .5%;
    border: 1px solid var(--black-black-5, #E9E9E9);
    background: #FFF;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.10);
    border-radius: 16px;
    padding: 14px 4px;
    text-decoration: none;
    cursor: pointer;
}


.payment_step .payment_card img {
    margin: 0 auto;
    display: flex;
    padding: 8px 4px;
    width: 50%;
}

.payment_step .payment_card span {
    text-align: center;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #69727c;
    margin-bottom: 4px;
}

.payment_step .payment_card a.daily {
    display: block;
    text-align: center;
    padding: 4px 0;
    position: relative;
    z-index: 9999;
    background: #0c72a5;
    color: #fff;
    font-size: 16px;
}

.payment_step .payment_card a.daily:hover {
    background: #1fa7eb;
}

.payment_step .payment_card:hover, .payment_step .payment_card.active,
.payment_step .list_nap_bank:hover, .payment_step .list_nap_bank.active {
    box-shadow: 0 4px 12px 0 var(--main-color);
    border: 1px solid var(--main-color);
}

.payment_step .payment_card h4 {
    text-align: center;
    font-size: 18px;
    margin: 8px 0 0 0;
}

.payment_step .payment_card span.vnd {
    background: #e6fbec;
    margin: 0 12px;
    padding: 4px 12px;
    color: #106d00;
    border-radius: 4px;
}

.btn_cancel:hover {
    color: #fff;
    background-color: #ababab;
    border-color: transparent;
}

.nap_donhang {
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.10);
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    margin: 0 0 0 -15px;
    padding: 15px;
}

.nap_donhang p {
    font-size: 20px !important;
    text-align: center;
    margin-bottom: 12px !important;
}

.icon-menu {
    font-size: 20px;
}

@media (max-width: 768px) {
    .payment_step {
        padding: 0 0 0 20px;
    }

    .payment_step .payment_card {
        width: 32.3%;
    }

    .payment_step .list_nap_bank {
        width: 19%;
    }
}


@media (max-width: 480px) {
    .payment_step .payment_card {
        width: 49%;
    }

    .payment_step .title_nap {
        font-size: 16px !important;
    }
}


.modal-backdrop {

    background-color: #ffffff00;
}

.modal {
    background-color: rgba(0, 0, 0, 0.5);
}

.help-block {
    color: red
}


.hide {
    display: none;
}

.tuoi18 {
    background: url(/images/warning-age.svg);
    display: block;
    position: fixed;
    top: 5.5vw;
    right: 10px;
    width: 263px;
    height: 77px;
    z-index: 999;
}

.bg_navbar {
    background: var(--main-color) !important;
    position: sticky;
    top: 0;
    z-index: 1030; /* above content, below modals */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav_nft ul li a.menu_nav {
    color: #fff !important;
}

.menu_drop ul {
    padding: 0;
}

.menu_drop ul li a.user {
    color: #fff !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: 0.5px;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 10px 16px !important;
}

.menu_drop .menu_drop_list li a {
    color: #282628 !important;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
    padding: 12px 16px;
    font-size: 15px;
    text-align: center;
}

.menu_drop ul li a.user.active {
    background: #fff !important;
}

.nav_nft ul li a.menu_nav {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.5px;
    margin: 0 15px;
}

.nav_nft ul li a.menu_nav:hover {
    color: #FFC700 !important;
}


.mboxvn_wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    min-height: 100vh;
}


.text-align {
    text-align: center;
}

.main_content {
    height: auto;
    position: relative;
    z-index: 9;
    margin-bottom: 48px;
}

.main_content .id_login {
    display: inline-flex;
    padding: 52px 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 32px;
    border: 1px solid var(--black-black-5, #E9E9E9);
    background: #FFF;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.10);
    margin-top: 108px;
}

.main_content .id_login .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    padding-bottom: 24px;
}

.main_content .id_login .text_log {
    align-items: flex-start;
    align-self: stretch;
}

.main_content .id_login .text_log .row_login {
    padding: 0 15px;
}

.main_content .id_login .text_log .row_login .form-check-input:checked {
    background-color: #ff6600;
    border-color: #ff6600;
}


.main_content .id_login .text_log p {

    font-style: normal;
    line-height: 140%;
    margin: 0;
}

.main_content .id_login .text_xacthuc {
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    display: flex;
}

.main_content .id_login .text_xacthuc p {
    font-style: normal;
    line-height: 140%;
}

.main_content .id_login .text_xacthuc p b {
    color: #1E2B39;
}

.main_content .id_login .text_xacthuc p.text_red {
    color: #FF0000;
}

.main_content .id_login .text_xacthuc b.text_organe {
    color: #EC5E00;
}


.main_content .id_login .text_log p.dn_text {
    font-size: 24px;
    color: var(--main-color);
    font-weight: 500;
}


.main_content .id_login .text_log a.link {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration-line: underline;
}

.main_content .id_login .text_input {
    gap: 8px;
}

.main_content .id_login .text_log .qmk {
    color: #EC5E00;
    text-align: right;
}

.main_content .id_login .text_log span {
    text-align: center;
    display: block;
    padding-top: 8px;
}

.main_content .id_login .text_input input {
    display: block;
    width: 100%;
    padding: 32px 0 16px 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border-bottom: 1px solid #B8BCC0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    /* padding: 32px 0 16px 0; */
}

.main_content .id_login .text_input select {
    display: block;
    width: 100%;
    padding: 32px 0 16px 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    border-bottom: 1px solid #B8BCC0;
    border-top: 0;
    border-right: 0;
    border-left: 0;

    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.main_content .id_login .btn_login {
    padding-top: 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.main_content .id_login .btn_login a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.5px;
    height: 56px;
    border-radius: 30px;
    background: var(--main-color);
    display: block;
    text-align: center;
    line-height: 56px;
    text-decoration: none;
}

.main_content .id_login .btn_login a:hover {
    background: #EC5E00;
}

.main_content .id_login .text_log .login_khac img {
    padding-bottom: 8px;
}

.main_content .id_login .text_log .login_khac label {
    color: #69727C;
    font-size: 14px;
}

.id_napthe {
    margin-top: 48px !important;
}


.footer_mboxvn {
    width: 100%;
    margin-top: auto;
    min-height: 60px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 9;
    padding: 48px 0 24px 0;
    border-top: 1px solid #E9E9E9;
    /* margin-top: 48px; */
}


.text_company p, .text_company span {
    text-align: center;
    display: block;
}

.text_company p {
    color: #43505E;
    font-size: 18px;
    margin-bottom: 8px;
}

.text_company span {
    color: #69727C;
    font-size: 16px;
    margin-bottom: 8px;
}

.text_company span a {
    color: var(--main-color);
}

.main_content .id_login .text_log .qmk,
.main_content .id_login .text_log .tick {
    width: 50%;
}

.bg_top {
    background: url("/images/id_top1.png");
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 482px;
    height: 187px;
}

.bg_bottom {
    background: url("/images/id_top2.png");
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 589px;
    height: 324px;
}

.title_name {
    margin: 48px 0 70px 0;
}

.title_name p {
    text-align: center;
    margin-bottom: 4px;
}

.title_name .hello_name {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    color: #1E2B39;
}

.title_name .hello_name span {
    color: #EC5E00;
}

.main {
    position: relative;
    padding: 52px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
    border-radius: 32px;
    border: 1px solid var(--black-black-5, #E9E9E9);
    background: #FFF;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.10);
    margin: 0 15px;
}

.main_info {
    margin-top: 72px;
}

.info_left {
    padding: 0;
    float: left;
    margin-top: -44px;
}

.main_info .info {
    position: relative;
    padding: 52px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
    border-radius: 32px;
    border: 1px solid var(--black-black-5, #E9E9E9);
    background: #FFF;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.10);
    margin-right: 2%;
    float: left;
}

.main_info .info_wrapper {
    position: relative;
    padding: 36px 36px 48px 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
    border-radius: 32px;
    border: 1px solid var(--black-black-5, #E9E9E9);
    background: #FFF;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.10);
    /* margin-right: 2%; */
    margin-bottom: 24px;
}

.main_info .info_wrapper h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 24px;
    text-align: left;
    border-bottom: 1px solid #E9E9E9;
    padding-bottom: 20px;
}

.main_info .info_wrapper p {
    color: #69727C;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
}

.main_info .info_wrapper .info_tt {
    width: 100%;
    margin-bottom: 24px;
    border-bottom: 1px solid #E9E9E9;
    padding-bottom: 16px;
}

.main_info .info_wrapper .info_tt:nth-last-child(1) {
    border-bottom: 0;
}

.main_info .info_wrapper .info_tt h4 {
    color: #1E2B39;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.5px;
}

.main_info .info_wrapper .info_tt input {
    border-bottom: 0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    padding: 12px 0 0 0;
}

.main_info .info_wrapper .info_tt a {
    float: right;
    border: 1px solid #1A335C;
    padding: 8px 20px;
    border-radius: 24px;
    color: #1A335C;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 5px 20px -12px #8db8e1;
}

.main_info .info_wrapper .info_tt a:hover {
    background: #1A335C;
    color: #fff;
}

.xemthem a {
    text-align: center;
    width: 100%;
    display: block;
    color: #43505E;
    text-decoration: none;
}

.xemthem a:hover {
    color: #EC5E00;
}

.bosungngay {
    float: right;
    border: 1px solid #B34700;
    padding: 8px 20px;
    border-radius: 24px;
    color: #B34700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 5px 20px -12px #FF0000;
}

.bosungngay:hover {
    background: #B34700;
    color: #fff;
}

.info_capnhat .tc {
    color: #009b0b
}

.info_capnhat .ctc {
    color: #f00
}


.main_info .info .user {
    margin: 0 auto;
    display: block;
    margin-bottom: 16px;
}

.main_info .info p.id {
    padding: 0 12px;
    color: #43505E;
}

.main_info .info p.fcoin {
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.main_info .info .napthe a:hover {
    width: 100%;
    height: 56px;
    display: block;
    background: #1A335C;
    border-radius: 34px;
    padding: 0 24px;
    line-height: 56px;
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
}

.main_info .info .napthe_disable a {
    background: #fff !important;
    color: #000 !important;
}

.main_info .info .napthe a {
    width: 100%;
    height: 56px;
    display: block;
    border-radius: 34px;
    padding: 0 24px;
    line-height: 56px;
    background: #1A335C;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: center;
}

.info_tinhnang {
    width: 100%;
    height: auto;
    position: relative;
}

.info_tinhnang a {
    padding: 10px 20px;
    margin-bottom: 3px;
    display: flex;
    gap: 10px;
    font-size: 16px;
    justify-content: flex-start;
    align-items: center;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    color: #69727C;
}

.info_tinhnang a:hover, .info_tinhnang a.active {
    background: #d6e2ed;
}


.progress {
    width: 120px;
    height: 120px;
    line-height: 150px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}

.progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 12px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.progress > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress .progress-left {
    left: 0;
}

.progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 12px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress .progress-right {
    right: 0;
}

.progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1 1.8s linear forwards;
}

.progress .progress-value {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: #ffffff;
    font-size: 24px;
    color: #EC5E00;
    line-height: 110px;
    text-align: center;
    position: absolute;
    top: 5%;
    left: 5%;
}

.progress.blue .progress-bar {
    border-color: #EC5E00;
}

.progress.blue .progress-left .progress-bar {
    animation: loading-2 1.5s linear forwards 1.8s;
}


.main_info .info_wrapper .info_tt input {
    border-bottom: 0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    padding: 12px 0 0 0;
}

.main_info .info_wrapper .info_tt input[readonly] {
    background-color: transparent;
    opacity: 1;
}

.main_info .info_wrapper .info_link {
    border: 1px solid #E9E9E9;
    border-radius: 16px;
    padding: 20px 24px 0 24px;
    margin-bottom: 16px;
}

.main_info .info_wrapper .info_link a {
    float: right;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 5px 20px -12px #8db8e1;
}

.main_info .info_wrapper .info_link a.not_link {
    border: 1px solid #1A335C;
    color: #1A335C;
}

.main_info .info_wrapper .info_link a.linked {
    border: 1px solid #00B348;
    background: #00B348;
    color: #fff;
}

.main_info .info_wrapper .info_link a.not_link:hover {
    border: 1px solid #1A335C;
    background: #1A335C;
    color: #fff;
}


.main img {
    margin: 0 auto 16px auto;
    display: block;
}

.main p {
    text-align: center;
}

.main p b {
    color: #1E2B39;
    font-size: 18px;
}

.main p {
    color: #69727C;
}

.main a {
    background: var(--main-color);
    display: block;
    height: 56px;
    border-radius: 32px;
    text-align: center;
    line-height: 56px;
    color: #fff;
    text-decoration: none;
    margin-top: 32px;
}

.main a:hover {
    background: #EC5E00;
}

.banner {
    margin-bottom: 32px;
}

.banner img {
    width: 100%;
}

.text_dsg {
    margin-bottom: 16px;
    width: 100%;
}

.text_dsg p {
    font-size: 18px;
}

.text_dsg a {
    color: #282628;
    text-decoration: none;
}

.ds_sanpham {
    margin-bottom: 48px;
}

.list_sanpham {
    position: relative;
    padding: 20px 20px;
    border-radius: 24px;
    border: 1px solid var(--black-black-5, #E9E9E9);
    background: #FFF;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.10);
    margin-right: 1%;
    float: left;
    height: 140px;
    /* line-height: 144px; */
    width: 32.6%;
    text-decoration: none;
}

.list_sanpham:hover, .list_thanhtoan:hover {
    box-shadow: 0 12px 24px 0 rgb(255 118 28);
}

.list_sanpham:nth-last-child(1) {
    margin-right: 0;
}

.list_sanpham h3 {
    margin: 0;
    color: #1E2B39;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
    letter-spacing: 0.5px;
}

.list_sanpham h3 img {
    margin-right: 4%;
}

.list_thanhtoan {
    width: 32.3%;
    float: left;
    margin-right: 1%;
    margin-bottom: 1%;
    border: 1px solid var(--black-black-5, #E9E9E9);
    background: #FFF;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.10);
    border-radius: 24px;
    padding: 20px;
    text-decoration: none;
    cursor: pointer;
}

.list_thanhtoan img {
    margin: 0 auto;
    display: block;
    margin-bottom: 16px;
}

.list_thanhtoan p {
    font-size: 18px;
    color: #1E2B39;
    text-align: center;
}

.bg_tr {
    background: var(--main-color);
    color: #fff;
    text-align: center;
    border-bottom: 0;
    height: 50px;
    line-height: 50px;
}

.table_tr {
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.table_tr:nth-last-child(1) {
    border-bottom: transparent;
}


.profile-pic-wrapper {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pic-holder {
    text-align: center;
    position: relative;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.pic-holder .pic {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.pic-holder .upload-file-block,
.pic-holder .upload-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(90, 92, 105, 0.7);
    color: #f8f9fc;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pic-holder .upload-file-block {
    cursor: pointer;
}

.pic-holder:hover .upload-file-block,
.uploadProfileInput:focus ~ .upload-file-block {
    opacity: 1;
}

.pic-holder.uploadInProgress .upload-file-block {
    display: none;
}

.pic-holder.uploadInProgress .upload-loader {
    opacity: 1;
}

/* Snackbar css */
.snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 14px;
    transform: translateX(-50%);
}

.snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.babuoc {
    width: 100%;
    height: 82px;
    position: relative;
    margin-bottom: 24px;
    border-bottom: 1px solid #E9E9E9;
    padding-bottom: 24px;
    /* display: block; */
}

.babuoc .babuoc_1 {
    height: 56px;
    float: left;
}

.babuoc .babuoc_1 .stt.active {
    width: 56px;
    height: 56px;
    background: #00b348;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    line-height: 56px;
    float: left;
    box-shadow: 0 5px 20px -12px #00b348;
}

.babuoc .babuoc_1 .stt {
    width: 56px;
    height: 56px;
    background: #c8c9c9;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    line-height: 56px;
    float: left;
    box-shadow: 0 5px 20px -12px #595959;
}

.babuoc .babuoc_1 .xt_tc {
    float: left;
    margin-left: 8px;
    line-height: 56px;
}

.babuoc .babuoc_1 .xt {
    float: left;
    margin-left: 8px;
    line-height: 56px;
    color: #c7c7c7;
}

.babuoc .babuoc_1 img {
    float: left;
    line-height: 56px;
    padding: 17px 0;
}

.info_content {
    width: 80%;
    margin: 24px auto 0 auto;
    position: relative;
}

.info_content p {
    margin-bottom: 12px !important;
}

.red {
    color: #ff0000 !important;
}

.send-otp-btn {
    cursor: pointer;
    float: left;
    height: 56px;
    background: #00b348;
    text-align: center;
    font-weight: 600;
    width: 28%;
    border-radius: 4px;
    box-shadow: 0 5px 20px -12px #00b348;
    border: 0;
    text-decoration: none;
    color: #fff;
    line-height: 56px;
}

.send-otp-btn:hover {
    background: #008937;
    color: #fff;
}

.form_update_input input {
    float: left;
    height: 56px;
    width: 70%;
    margin-right: 2%;
    border-radius: 8px;
}

.form_update_input_ccd input {
    height: 56px;
    width: 100%;
    border-radius: 8px;
    /* margin-bottom: 12px; */
    /* display: block; */
}

.form_update {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 16px;
}

.center {
    text-align: center !important;
}

.mabaomat {
    height: 56px;
    background: #858585;
    text-align: center;
    color: #ffff;
    line-height: 56px;
    font-size: 20px;
    margin: 15px 0;
    border-radius: 8px;
}

.chuyenfcoin {
    width: 100%;
    height: auto;
    position: relative;
}

.chuyenfcoin h4 {
    font-size: 18px;
}

.chuyenfcoin select {
    display: block;
    width: 100%;
    padding: 32px 0 16px 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    border-bottom: 1px solid #B8BCC0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.chuyenfcoin select:focus {
    border: 1px solid var(--main-color);;
}

.maychu, .chonfcoin, .maychu_class {
    width: 100%;
    height: auto;
    position: relative;
    float: left;
    margin-top: 18px;
}

.maychu_class a {
    height: 56px;
    /* border: 3px solid var(--main-color); */
    float: left;

    border: 3px solid var(--main-color);
    border-radius: 8px;
    padding: 0 15px;
    text-align: center;
    line-height: 56px;
    text-decoration: none;
    color: #ffffff;
    margin-right: 1%;
    margin-bottom: 1%;
    width: 32%;
    display: block;
}

.maychu a {
    height: 56px;
    background: var(--main-color);
    float: left;
    background: linear-gradient(to right, #ec5e00, #ff7b24);
    border-radius: 8px;
    padding: 0 15px;
    text-align: center;
    line-height: 56px;
    text-decoration: none;
    color: #fff;
    margin-right: 1%;
    margin-bottom: 1%;
    width: 32%;
    display: block;
}

.maychu a.active, .maychu a:hover {
    background: linear-gradient(to right, #008937, #00b348);
}

.maychu_class a.active, .maychu_class a:hover {
    background: linear-gradient(to right, #009d3f, #00b348);
    border: 0;
    line-height: 56px;
    color: #fff;
}

.luachon_fcoin {
    float: left;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    /* line-height: 56px; */
    text-decoration: none;
    color: #fff;
    margin-right: 1%;
    margin-bottom: 1%;
    width: 32%;
    display: block;
    border: 3px solid #e7e7e7;
    cursor: pointer;
}

.luachon_fcoin.active, .luachon_fcoin:hover {
    border: 3px solid #00b348;
}

.luachon_fcoin a {
    text-decoration: none;
}

.luachon_fcoin h4 {
    font-size: 16px;
    margin-top: 12px;
    color: #43505e;
    font-weight: 500;
    margin-bottom: 0;
}

.nhapmabaomat input {
    display: block;
    width: 100%;
    padding: 32px 0 16px 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border-bottom: 1px solid #B8BCC0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

}

.btn_chuyen a {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: .5px;
    height: 56px;
    border-radius: 30px;
    background: var(--main-color);
    display: block;
    text-align: center;
    line-height: 56px;
    text-decoration: none;
    color: #fff;
    margin-top: 42px;
}

.btn_chuyen a:hover {
    background: #EC5E00;
}

.main_info_baoloi {
    width: 40%;
    margin: 0 auto;
    position: relative;
    float: left;
    left: 32%;
}

.main_info_baoloi .avt {
    width: 100px;
    height: 100px;
    float: left;
}

.main_info_baoloi .avt_tt {
    float: left;
    margin-left: 2%;
}

.main_info_baoloi .avt_tt p {
    font-size: 15px;
    margin-bottom: 5px;
}

.baoloi {
    background: #d7ffde;
    padding: 24px 0;
}

.form_baoloi {
    width: 50%;
    left: 25%;
    position: relative;
    height: auto;
    padding: 24px 36px 36px 36px;
    flex-direction: column;
    /* align-items: flex-start; */
    /* gap: 16px; */
    /* border-radius: 32px; */
    border: 1px solid var(--black-black-5, #E9E9E9);
    background: #FFF;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.10);
    margin-top: 48px;
    margin-bottom: 48px;
}

.input_baoloi {
    margin: 12px 0;
    line-height: 40px;
}

.input_baoloi input, .input_baoloi select {
    height: 48px;
}

.input_baoloi p {
    font-size: 14px;
    line-height: 24px;
    color: #009d1b;
    font-weight: 300;
    margin: 0;
}

.form_baoloi h4 {
    margin: 25px 0;
    font-size: 16px;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 16px;
    color: #f00;
}

.btn_loailoi {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.5px;
    height: 56px;
    border-radius: 30px;
    background: var(--main-color);
    display: block;
    text-align: center;
    line-height: 56px;
    text-decoration: none;
    margin-top: 32px;
}

.btn_loailoi:hover {
    background: #EC5E00;
    color: #fff;
}

.title_hd h3 {
    font-size: 18px;
    padding: 12px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid #e7e7e7;
}

.title_hd h3 a {
    text-decoration: none;
    color: var(--main-color);
}

.news_hd {
    width: 100%;
    height: auto;
    position: relative;
}

.news_hd a {
    width: 100%;
    height: 180px;
    position: relative;
    margin: 12px 0;
    display: block;
    border-bottom: 1px solid #e7e7e7;
}

.news_hd a:nth-last-child(1) {
    border-bottom: 0;
}

.news_hd a img {
    width: 160px;
    height: 160px;
    float: left;
    margin-right: 2%;
}

.text_huongdan {
    position: relative;
    float: left;
}

.text_huongdan h4 {
    font-size: 20px;
    color: #43505E;
}

.text_huongdan h4:hover, .text_huongdan p:hover {
    color: var(--main-color);
}

.text_huongdan p {
    font-size: 16px;
    color: #838383;
}

.text_huongdan span.time_hd {
    padding: 8px 12px;
    background: #00cd11;
    display: block;
    width: 200px;
    text-align: center;
    color: #fff;
}

.info_content h4 {
    font-size: 16px;
    margin-top: 24px;
}


.input_style {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border-bottom: 1px solid #B8BCC0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    /* padding: 32px 0 16px 0; */
}

.btn_submit {
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.5px;
    height: 56px;
    border-radius: 30px;
    background: var(--main-color);
    display: block;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    width: 100%;
    border: 0;
}

.btn_submit:hover, .btn_submit:focus, .btn_submit:disabled {
    background:  #1A335C;
    outline: none;
}

.link_qmk {
    text-align: right;
    display: block;
}

.huybo {
    height: 56px;
    background: #c8c9c9;
    display: block;
    float: left;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 56px;
    cursor: pointer;
}

.btn_cancel {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.5px;
    height: 56px;
    border-radius: 30px;
    background: #c8c9c9;
    display: block;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    width: 100%;
    border: 0;
}

.thanhcong {
    color: #00b71e
}

.id_napthe {
    display: inline-flex;
    padding: 46px 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 32px;
    border: 1px solid var(--black-black-5, #E9E9E9);
    background: #FFF;
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.10);
    margin-top: 48px;
}

.ql-capcha {
    width: 150px;
    height: 50px;
}

.reload-icon {
    max-width: 30px;
    cursor: pointer;
    margin-left: 10px;
}

@media (max-width: 1400px) {


}

@media (max-width: 1200px) {
    .list_sanpham {
        width: 49%;
        margin-bottom: 1%;
    }

    .news_hd a img {
        width: 10vw;
        height: 10vw;
    }

    .text_huongdan h4 {
        font-size: 1.4vw;
    }

    .text_huongdan p {
        font-size: 1.2vw;
    }

    .text_huongdan span.time_hd {
        width: 16vw;
        font-size: 1.2vw;
        padding: 4px 8px;
    }

}


@media (max-width: 991px) {
    .payment_step .payment_card a.daily {
        padding: 12px 0;
        font-size: 18px;
    }

    .progress {
        margin-bottom: 20px;
    }

    .main_info {
        margin-top: 48px;
    }

    .main_content .id_login .text_input {
        display: block;
        width: 100%;
    }

    .login_khac {
        width: 50%;
    }

    .main_content .id_login {
        padding: 52px 24px;
        border-radius: 0;
        border: none;
        margin-top: 0;
        margin-bottom: 48px;
    }

    .text_company span {
        font-size: 14px;
    }

    .text_company p {
        font-size: 16px;
    }

    .info_left {
        padding: 0;
        margin-top: 24px;
        float: none;
    }

    .tuoi18 {
        display: none;
    }

    .tuoi18_fot {
        background: url(/images/warning-age.svg);
        display: block;
        position: relative;
        /* right: 10px; */
        width: 263px;
        height: 77px;
        z-index: 999;
        margin: 0 auto 24px;
    }

    .main_info .info {
        float: none;
        margin-right: 0;
    }

    .list_thanhtoan {
        width: 48%;
        margin-right: 2%;
        margin-bottom: 2%;
    }

    .nav_nft ul li a.menu_nav {
        margin: 0;
    }

    .form_baoloi {
        width: 80%;
        left: 10%;
    }

    .main_info_baoloi {
        width: 80%;
        left: 10%;
    }

}


@media (max-width: 768px) {

    .bg_navbar {
        padding-bottom: 24px;
    }

    .capnhat, .bosungngay {
        margin-bottom: 24px;
        float: left;
    }

    .babuoc .babuoc_1 .stt.active {
        width: 36px;
        height: 36px;
        border-radius: 4px;
        font-size: 18px;
        line-height: 36px;
    }

    .babuoc .babuoc_1 .stt {
        width: 36px;
        height: 36px;
        border-radius: 4px;
        font-size: 18px;
        line-height: 36px;
    }

    .babuoc .babuoc_1 .xt_tc, .babuoc .babuoc_1 .xt {
        margin-left: 4px;
        line-height: 36px;
        font-size: 14px;
    }

    .babuoc .babuoc_1 img {
        padding: 7px 0;
        /* max-width: 11%; */
    }

    .babuoc .babuoc_1 {
        height: 36px;
    }

    .babuoc {
        height: 62px;
    }

    .info_content {
        width: 100%;
    }

    .maychu a, .luachon_fcoin {
        width: 49%;
    }

    .main_info_baoloi {
        width: 90%;
        left: 5%;
    }

    .form_baoloi {
        width: 96%;
        left: 2%;
    }

    .news_hd a img {
        width: 18vw;
        height: 18vw;
        margin: 0 auto;
        display: block;
        float: none;
        margin-bottom: 2%;
    }

    .news_hd a {
        height: auto;
        margin: 12px 0;
        padding-bottom: 24px;
    }

    .news_hd a img {
        width: 18vw;
        height: 18vw;
        margin: 0 auto;
        display: block;
        float: none;
        margin-bottom: 2%;
    }

    .text_huongdan {
        float: none;
    }

    .text_huongdan h4 {
        font-size: 2.4vw;
    }

    .text_huongdan p {
        font-size: 2.2vw;
    }

    .text_huongdan span.time_hd {
        width: 26vw;
        font-size: 2.2vw;
        padding: 4px 8px;
    }

    .bg_bottom {
        display: none;
    }
}


@media (max-width: 576px) {
    .main_info .info_wrapper .info_link {
        padding: 20px 24px 24px 24px;
    }

    .main_info .info_wrapper .info_link a {
        float: none;
    }

    .main {
        margin: 0 0 24px 0;
    }

    .list_sanpham {
        width: 100%;
        margin-bottom: 2%;
        margin-right: 0;
    }


}


@media (max-width: 480px) {
    .main_info .info_wrapper {
        padding: 52px 12px;
        margin-right: 0;
        /* margin-top: 24px; */
    }

    .main_info .info_wrapper .info_tt a {
        float: left;
        margin-top: 12px;
    }

    .list_thanhtoan {
        width: 100%;
        margin-right: 0;
    }

    .maychu a {
        height: 42px;
        border-radius: 8px;
        line-height: 42px;
        font-size: 14px;
    }

    .main_info_baoloi .avt_tt p {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .main_info_baoloi .avt {
        width: 60px;
        height: 60px;
    }

    .main_info_baoloi .avt img {
        width: 100%;
    }

    .form_baoloi {
        width: 100%;
        left: 0;
        border: 0;
        box-shadow: none;
        padding: 0 36px 36px 36px;
    }

    .nav_nft ul li a.menu_nav {
        font-size: 5vw;
        padding: 12px 0;
    }

    .menu_drop ul li a.user {
        font-size: 5vw;
    }
}


@media (max-width: 420px) {
    .babuoc .babuoc_1 .stt.active {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .babuoc .babuoc_1 .xt_tc, .babuoc .babuoc_1 .xt {
        margin-left: 4px;
        line-height: 36px;
        font-size: 10px;
    }
}


@media (max-width: 375px) {

}


@-webkit-keyframes filter {
    from {

        filter: drop-shadow(0 5px 20px #fcff00);
    }

    to {
        filter: drop-shadow(0 5px 20px #fff);
    }
}


@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(144deg);
        transform: rotate(144deg);
    }
}

@keyframes loading-3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes loading-4 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(36deg);
        transform: rotate(36deg);
    }
}

@keyframes loading-5 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(126deg);
        transform: rotate(126deg);
    }
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

input.error {
    border-color: #e74c3c;
}

label.error {
    color: #e74c3c;
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-loading:not(:disabled):hover {
    opacity: 0.8;
    transform: scale(1.03);
}

.btn-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: 5px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-right-color: #ffffff;
    border-radius: 50%;
    animation: rotate-spinner 0.6s ease-in-out infinite;
}

@keyframes rotate-spinner {
    0% {
        transform: rotate(0deg);
        border-width: 2px;
        opacity: 0.6;
    }
    50% {
        transform: rotate(180deg);
        border-width: 3px;
        opacity: 1;
    }
    100% {
        transform: rotate(360deg);
        border-width: 2px;
        opacity: 0.6;
    }
}

.icon-tick {
    padding: 20px 0 0 0;
    width: 15px;
}

.icon-info {
    width: 20px;
    padding-bottom: 3px;
}

.breadcrumb_wrapper {
    font-weight: 500;
}

.breadcrumb_wrapper img {
    width: 20px;
    margin-bottom: 7px;
}

#actionlogsTable {
    font-size: 0.980rem;
}

.btn_guima {
    cursor: pointer;
    float: left;
    background: #1A335C;
    text-align: center;
    font-weight: 600;
    width: 28%;
    border-radius: 4px;
    box-shadow: 0 5px 20px -12px #8db8e1;
    border: 0;
    text-decoration: none;
    color: #fff;
}

.btn_guima:hover {
    background: #1A335C;
    color: #fff;
}

.btn_huybo {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.5px;
    height: 56px;
    border-radius: 30px;
    background: #c8c9c9;
    display: block;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    width: 100%;
    border: 0;
}

.btn_huybo:hover {
    background-color: #c8c9c9;
}

.btn_huybo:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.btn-primary.disabled, .btn-primary:disabled {
    background-color: #1A335C;
    color: #fff;
    border: none;
    box-shadow: none;
    outline: none;
}

.info_tt span {
    font-weight: 500;
}

.main_info .info_thongtin {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 24px 0px;
    margin-bottom: 24px;
    padding: 36px 36px 48px;
    gap: 16px;
    border-radius: 32px;
    border: 1px solid var(--black-black-5, #E9E9E9);
    background: rgb(255, 255, 255);
}

.prev-page, .next-page {
    cursor: pointer;
    float: left;
    background: #1A335C;
    text-align: center;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 5px 20px -12px #8db8e1;
    border: 0;
    text-decoration: none;
    color: #fff;
}

.next-page {
    margin-left: 10px;
}

.current-page {
    color: #000000;
    margin-left: 10px;
}

