@font-face{
    font-family:"utm_cafeta";
    src:url("../fonts/utm_cafeta.ttf") format("truetype");
    font-weight:normal;
    font-style:normal;
    font-display:swap
}
.font-utm_cafeta{
    font-family:"utm_cafeta"
}
.my-cont{
    max-width: 1000px;
    margin: 0 auto;
}
.limit__game {
    margin: 0 auto;
}
/* General reset */
.banner-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner-container {
    background-size: cover;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
}
input, select {
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.banner-container .banner-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 20px;
}

.banner-container .logo img {
    max-width: 150px;
}

.banner-container .text-content {
    flex: 1;
    color: #fff;
}

.banner-container .text-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.banner-container .text-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.banner-container .action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.banner-container .action-buttons .button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 6px;
}

.banner-container .action-buttons .button:hover {
    background-color: #fff;
    color: #000;
}

.banner-container .auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-container .auth-buttons .button {
    background-color: #cc0000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 6px;
}

.banner-container .auth-buttons .button:hover {
    background-color: #ff3333;
}

.banner-container .info_user {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: right;
    border: 2px solid #fff;
    padding: 10px;
    border-radius: 4px;
}

.banner-container .info_user span {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.banner-container .info_user a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
}

.banner-container .info_user a:hover {
    color: #fff;
    text-decoration: underline;
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .banner-container .banner-content {
        flex-direction: column;
    }

    .banner-container .auth-buttons {
        flex-direction: row;
        gap: 10px;
    }
    .my-cont {
        background-color: #000;
    }
    
    .banner-container .info_user {
        display: block;
        width: 100%;
    }
    
    .banner-container .action-buttons .button {
        padding: 5px;
        font-size: 10px;
    }
    
    .banner-container .text-content h1 {
        font-size: 16px;
    }
    
    .banner-container .text-content p {
        font-size: 10px;
    }

    .my-cont {
        background-color: #000;
    }
    
    .banner-container .info_user {
        display: block;
        width: 100%;
    }
    
    .banner-container .action-buttons .button {
        padding: 5px;
        font-size: 10px;
    }
    
    .banner-container .text-content h1 {
        font-size: 16px;
    }
    
    .banner-container .text-content p {
        font-size: 10px;
    }
}
/* server list */
.list-server {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #fff0e3;
    border: 1px solid #e0c3a0;
    border-radius: 8px;
    /* max-width: 400px; */
    margin: 0 auto;
}

.list-server .sv-item {
    display: inline-block;
    padding: 10px 15px;
    margin: 10px 0;
    color: #e67e22;
    background-color: #fff5e6;
    border: 1px solid #e0c3a0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.list-server .sv-item:hover {
    background-color: #e67e22;
    color: #fff;
}
.list-server .sv_hot.sv-item {
    background-color: #f39c12; /* Màu cam nổi bật */
    color: #fff;
    border: 1px solid #e67e22;
}

.list-server .sv_hot.sv-item:hover {
    background-color: #e67e22; /* Màu đậm hơn khi hover */
    color: #fff;
}
.list-server .paging {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.list-server .paging .prev_page, 
.list-server .paging .next_page {
    cursor: pointer;
    color: #e67e22;
    font-size: 18px;
    padding: 0 10px;
    transition: color 0.3s ease;
}

.list-server .paging .prev_page:hover, 
.list-server .paging .next_page:hover {
    color: #d35400;
}

.list-server .paging .text {
    font-size: 14px;
    margin: 0 10px;
    color: #333;
}

.list-server ul.pagesv {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-server ul.pagesv li {
    margin: 5px 0;
    display: inline-block;
}
.alert {
    padding: 15px 20px; 
    border-radius: 8px;
    font-size: 16px; 
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center; 
}

.alert-success {
    background-color: #d4edda; 
    border: 1px solid #c3e6cb; 
    color: #155724; 
}
.alert-error {
    background-color: #f17480;
    border: 1px solid #e64d5c;
    color: #ffffff;
}
.chose-server {
    color: #ffde84;
    font-size: 30px;
    margin-bottom: 20px;
    background: #a41b0e;
    padding: 5px 0 5px 20px;
    border-radius: 10px;
}

/* form */
.form-horizontal ::placeholder {
    color: #000;
    opacity: 1; /* Firefox */
    font-weight: normal;
  }
  
  .form-horizontal ::-ms-input-placeholder { /* Edge 12 -18 */
    color: #000;
    font-weight: normal;
  }

.form-horizontal {
    background-color: #fff0e3;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid #e0c3a0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}
body.payment-page .form-horizontal {
    max-width: 100%;
}
.form-horizontal .row {
    /* display: flex;
    align-items: center; */
    margin-bottom: 1rem;
}

.form-horizontal label {
    flex: 0 0 150px; /* Độ rộng cố định cho label */
    font-weight: bold;
    color: #333;
    padding-right: 10px;
}

.form-horizontal .row .float-left {
    flex-grow: 1;
}
.form-horizontal input[type="text"],
.form-horizontal input[type="password"],
.form-horizontal select {
    width: 100%;
    padding: 8px;
    border: 1px solid #e0c3a0;
    border-radius: 5px;
    transition: border-color 0.3s ease;
    font-weight: normal;
    font-size: 14px;
    color: #000;
}

.form-horizontal input[type="text"]:focus,
.form-horizontal input[type="password"]:focus {
    border-color: #e67e22;
    outline: none;
}

.form-horizontal .form-group {
    text-align: center;
    margin-bottom: 15px;
}

.form-horizontal .form-group a {
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
}

.form-horizontal .form-group a:hover {
    color: #d35400;
}

.form-horizontal button.btn {
    background-color: #e67e22;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-horizontal button.btn:hover {
    background-color: #d35400;
}
.form-horizontal select {
    color: #000;
}
.alert.alert-danger {
    max-width: 500px;
    margin: 0 auto 20px auto;
    color: red;
}
.refresh-icon {
    width: 20px;
    cursor: pointer;
}
/* my banner container 2*/
.my-sec {
    /* background-color: #11253a; */
    padding: 0 0 20px 0;
}
.my-banner-container {
    width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.my-banner-container .logo {
    float: left;
    /* margin-right: 20px; */
}

.my-banner-container .logo img {
    width: 150px; /* Adjust this size to match your logo image */
    height: auto;
}

.my-banner-container .game-info {
    float: left;
    width: auto;
}

.my-banner-container .game-info h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.my-banner-container .game-info p {
    font-size: 18px;
    margin-bottom: 20px;
}

.my-banner-container .buttons {
    margin-bottom: 20px;
}

.my-banner-container .button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
    border-radius: 5px;
}

.my-banner-container .button:hover {
    background-color: #555;
}

.my-banner-container .actions {
    float: left;
    margin-left: 20px;
}

.my-banner-container .action-btn {
    display: block;
    padding: 15px 25px;
    background-color: #c00;
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
}

.my-banner-container .action-btn:hover {
    background-color: #e00;
}

/* .my-banner-container .action-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url('your_icon_image_path.png');
    background-size: cover;
} */
.logo-n-info:after {
    display: table;
    content: "";
    clear: both;
}

.logo-n-info {
    float: left;
}
.info_user {
    float: left;
    border: 2px solid #fff;
    padding: 10px;
    border-radius: 6px;
}
.info_user a:hover {
    color: #ffeb3b;
}
.choose-sv-frm, .choose-sv-frm select {
    color: #6d110b;
}

.choose-sv-frm select {
    border: 1px solid #6d110b;
    width: 100%;
    border-radius: 4px;
    margin: 10px 0 0 0;
}
.helloUser__name a {
    color: #6d110b;
}
.helloUser__name a:hover {
    text-decoration: underline;
}

/* Shop */
.shop-wrap {
    /* font-family: Arial, sans-serif;
    background-color: #fff0e1; */
    padding: 20px;
    gap: 10px;
}

/* Danh sách danh mục cửa hàng */
.shop-wrap .list-shop-categories {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

.shop-wrap .list-shop-categories li {
    margin-right: 20px;
}

.shop-wrap .list-shop-categories li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.shop-wrap .list-shop-categories li.active a,
.shop-wrap .list-shop-categories li a:hover {
    background-color: #f0a500;
    color: #fff;
}

/* Danh sách sản phẩm */
.shop-wrap .list-shop-products-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-wrap .list-shop-products {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

/* Sản phẩm */
.shop-wrap .list-shop-products li {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: calc(33.333% - 20px); /* 3 sản phẩm trên 1 hàng */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
}

.shop-wrap .list-shop-products li:hover {
    transform: translateY(-5px);
}

.shop-wrap .list-shop-products li .inner {
    padding: 15px;
    text-align: center;
}

.shop-wrap .list-shop-products li .pro-title {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

.shop-wrap .list-shop-products li img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.shop-wrap .list-shop-products li .pro-desc {
    font-size: 16px;
    color: #666;
}

/* Hover box */
.shop-wrap .hover-box {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
}

/* .shop-wrap .list-shop-products li:hover .hover-box {
    display: block;
} */

/* Phân trang */
.shop-wrap .pagination {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.shop-wrap .pagination .page-item {
    margin: 0 5px;
}

.shop-wrap .pagination .page-link {
    text-decoration: none;
    padding: 10px 15px;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.shop-wrap .pagination .page-item.active .page-link {
    background-color: #f0a500;
    color: #fff;
}

.shop-wrap .pagination .page-link:hover {
    background-color: #ddd;
}
.webshop-alert {
    background-color: #ffebcc; /* Màu nền nhẹ nhàng */
    border: 2px solid #ffa500; /* Viền nổi bật */
    padding: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #333;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.webshop-alert br {
    margin-bottom: 10px;
    display: block;
}

.buy-item-wrap .product-detail {
    text-align: center;
    margin: 20px 0;
}
body.shop-page .floating-menu {
    display: none;
}
.dh-slchb label {
    width: 200px;
    display: inline-block;
    margin-bottom: 8px;
    cursor: pointer;
}
.balance-area {
    background-color: #f0f8ff;
    border: 1px solid #cce7ff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    color: #333;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.balance-area .balance {
    font-size: 18px;
    font-weight: bold;
    color: #007acc;
    display: block;
    margin-bottom: 10px;
}

.balance-area p {
    font-size: 16px;
    color: #333;
    margin: 5px 0;
}

.balance-area strong {
    color: #ff4500;
}

/* btn-group */
.btn-group {
    display: flex;
    gap: 15px; 
    justify-content: center;
    margin: 20px 0;
}

.btn-group .custom-btn {
    background-color: #28a745;
    color: white; 
    text-decoration: none; 
    padding: 10px 20px; 
    border-radius: 8px; 
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-group .custom-btn:hover {
    background-color: #218838;
}

.btn-group .custom-btn:active {
    background-color: #1e7e34; 
}
/* tich luy*/
.shop-box-info {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff0e1;
    padding: 15px;
    border: 1px solid #e0c3a0;
    border-radius: 8px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
}

.shop-box-info .col {
    flex: 1;
    padding: 10px;
}

.shop-box-info .uname {
    font-weight: bold;
    color: #ff5722;
}

.shop-box-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.shop-box-info a:hover {
    text-decoration: underline;
}

.shop-box-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.shop-box-info ul li {
    margin-bottom: 10px;
}

.shop-box-info .btn-click {
    display: inline-block;
    padding: 10px 15px;
    background-color: #28a745;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.shop-box-info .btn-click:hover {
    background-color: #218838;
}

/* Buy btn loading */
.btnBUy__shop.loading {
    position: relative;
    cursor: not-allowed; 
}

.btnBUy__shop.loading .buytext___ {
    opacity: 0.5; 
}

.btnBUy__shop.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px; 
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff; 
    border-radius: 50%;
    animation: spinner 1s linear infinite; 
}

.btnAll a {
    color: #fee47e;
}


@keyframes spinner {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*Promotion items*/
.list_promotion_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.promotion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: calc(33.333% - 20px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.promotion-item .name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.promotion-item .game-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.g-item {
    position: relative;
    text-align: center;
    flex: 1 1 calc(50% - 10px);
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.g-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.g-item .qty {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #ff5722;
    color: #fff;
    font-weight: bold;
    padding: 3px 7px;
    border-radius: 50%;
    font-size: 14px;
}
.promotion-item-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 991px) {
    .promotion-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .promotion-item {
        width: 100%;
    }

    .g-item {
        flex: 1 1 calc(33.333% - 10px);
    }
}
/* End promotion items*/

/* Page loading */
body.loading {
    overflow: hidden; /* Disable scrolling */
}

.loading-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* White background with opacity */
    z-index: 9999; /* Ensure it's on top of everything */
    align-items: center;
    justify-content: center;
}

body.loading .loading-overlay {
    display: flex; /* Show overlay when body has 'loading' class */
}

.loading-overlay .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1); /* Light border */
    border-top-color: #3498db; /* Highlighted top border */
    border-radius: 50%; /* Make it a circle */
    animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* End page loading*/


.user-info-balance {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    max-width: 400px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.user-info-balance .balance-area {
    text-align: left;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

.user-info-balance .balance-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
}

.user-info-balance .balance-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-info-balance .balance-details li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.user-info-balance .balance-details li span {
    font-weight: bold;
    color: #000;
}

.user-info-balance .user-info-balance:hover {
    background-color: #f1f1f1;
    border-color: #bbb;
}


@media (max-width: 991px) {
    .my-sec {
        background-color: #11253a;
        margin-top: 68vh;
    }
    .my-banner-container {
        max-width: 100%;
        padding: 20px 0;
    }
    .my-banner-container .game-info {
        width: auto;
        float: left;
        width: 66.666%;
        overflow: hidden;
        padding: 0 10px;
    }

    .my-banner-container .actions {
        float: none;
        text-align: center;
    }

    .my-banner-container .logo img {
        /* margin-bottom: 20px; */
        width: 100%;
        max-width: 150px;
        margin: 0 auto;
        display: block;
    }

    .my-banner-container .buttons {
        display: block;
    }

    .my-banner-container .button {
        display: inline-block;
        margin: 5px;
    }
    .my-banner-container .action-btn {
        display: inline-block;
        margin: 0 20px;
    }
    
    .my-banner-container .actions:after {
        content: "";
        display: table;
        clear: both;
    }
    .logo-n-info, .my-banner-container .actions {
        float: none;
    }
    .my-banner-container .logo {
        width: 33.333%;
        padding: 0 10px;
    }
    .info_user {
        float: none;
        width: 90%;
        margin: 0 auto;
    }
    .buttons.hidden__PC {
        text-align: center;
    }
    /* Shop */
    .shop-wrap .list-shop-categories {
        flex-direction: column; 
    }
    .shop-wrap .list-shop-products li {
        width: calc(50% - 20px);
    }
    .shop-wrap .list-shop-products {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
        gap: 15px;
    }

    .shop-wrap .pro-title {
        font-size: 1em;
    }

    .shop-wrap .pro-desc {
        font-size: 0.9em; 
    }

    .shop-wrap .pagination .page-link {
        font-size: 0.9em; 
    }
    .webshop-alert {
        font-size: 14px; 
        padding: 15px;
    }
    /* .balance-area */
    .balance-area {
        padding: 10px;
        font-size: 14px;
    }

    .balance-area .balance {
        font-size: 16px;
    }
    /* .btn-group */
    .btn-group {
        flex-direction: column; 
        gap: 10px; 
    }

    .btn-group .custom-btn {
        font-size: 14px; 
        padding: 8px 16px;
    }
    .alert {
        font-size: 14px; 
        padding: 10px 15px; 
    }
}
/* BXH */
@font-face {
    font-family: svn_lobster;
    src: url(../fonts/svn_lobster.8eb327a7.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}
.bxh-title {
    font-family: svn_lobster;
    font-size: 80px;
    color: #f4638f;
    text-align: center;
}
.bg-type4 {
    background: url(../images/bg-type4.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    width: 98.2rem;
    height: 75rem
}
.rank-table-wrap {
    padding: 20px 40px 40px 40px;
    font-family: svn_lobster;
    margin: 0 auto;
}
@media only screen and (max-width: 991px) {
    .table-rank .row .col {
        font-size: 20px;
    }
}
.table-rank {
    margin: 0 auto;
}

.table-rank .thead {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #3f8ee1;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    font-size: 30px;
}

.table-rank .tbody .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.table-rank .tfooter .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    border-bottom: 1px solid #ddd;
}
.table-rank .tfooter .row .col {
    color: #fff;
    font-size: 30px;
}

.table-rank .row .col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
/* 
.table-rank .imgtop1 {
    position: relative;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
} */

/* .table-rank .nvname {
    font-size: 1rem;
    font-weight: bold;
    color: #555;
}

.table-rank .vcoin {
    font-size: 1rem;
    color: #888;
} */


/* .table-rank .rank-4,
.table-rank .rank-5,
.table-rank .rank-6,
.table-rank .rank-7,
.table-rank .rank-8,
.table-rank .rank-9,
.table-rank .rank-10 {
    background-color: #f9f9f9;
} */

.table-rank .row:nth-child(even) {
    /* background-color: #f1f1f1; */
}

.table-rank .tbody .col {
    font-size: 25px;
    color: #f4638f;
}

.bxh-bd {
    border-color: #ed7793;
    border-style: dashed;
}
.bd-top {
    border-top-width: 2px;
}
.bd-right {
    border-right-width: 2px;
}
.bd-left {
    border-left-width: 2px;
}
.bd-bottom {
    border-bottom-width: 2px;
}

.table-rank .tbody .rank-1 .col {
    color: #ff7455;
}
.table-rank .tbody .rank-2 .col {
        color: #2bc0b0;
}

.table-rank .tbody .rank-3 .col {
    color: #a893be;
}
.table-rank .tbody .col {
    color: #2e3d52;
}


@media only screen and (max-width: 991px) {
    body.wpage.rank {
        background-image: url(../images/rank_full__mb.jpg?v=1.0);
    }
    body.rank .txtSL__frt {
        margin-top: 104vw;
    }
}
@media only screen and (max-width: 768px) {
    .bg-type4 {
        width: 100%;
        height: auto;
    }
}
@media only screen and (min-width: 992px) {
    .bxh-bg .news__page__ {
        background: none;
    }
    /* body.wpage.rank {
        background-image: url(../images/rank_full__big.jpg);
    } */
    body.rank .txtSL__frt {
        margin-top: 30.9375vw;
    }
}



/* Receive hero gift loading button */
.receive_hero_gift.loading {
    position: relative;
    cursor: not-allowed;
}

.receive_hero_gift.loading .gift_text {
    opacity: 0.5; 
}

.receive_hero_gift.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px; 
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff; 
    border-radius: 50%;
    animation: spinner 1s linear infinite; 
}

body.rank .titFst__ {
    background: none;
}
body.rank .lstActionBtn__topFront{
    display: none;
}