.eniv-sidebar {
    width: 266px;
    padding: 20px;
    background: var(--color_2);
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-right: 30px;
    position: sticky;
    z-index: 100;
    transition: .4s;
    flex-shrink: 0;
    top: 30px;
}
.eniv-sidebar-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}
.eniv-sidebar .eniv-sidebar-menu a, .eniv-sidebar-dropdown span {
    padding: 10px 16px;
    border-radius: 16px 8px;
    border: 2px solid transparent;
    color: var(--text_2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    cursor: pointer;
}
.eniv-sidebar .eniv-sidebar-menu a:hover, .eniv-sidebar .eniv-sidebar-menu a.active, .eniv-sidebar-menu .eniv-sidebar-dropdown span:hover, .eniv-sidebar-menu .eniv-sidebar-dropdown.active span {
    color: var(--primary);
    border-color: var(--primary);
    background: linear-gradient(90deg, rgba(70, 206, 74, 0.00) 50%, rgba(70, 206, 74, 0.50) 100%);
}
.eniv-sidebar .eniv-sidebar-menu a:hover svg *, .eniv-sidebar .eniv-sidebar-menu a.active svg *, .eniv-sidebar-menu .eniv-sidebar-dropdown span:hover svg *, .eniv-sidebar-menu .eniv-sidebar-dropdown.active span svg * {
    stroke: var(--primary);
}
.eniv-sidebar-menu .eniv-sidebar-dropdown-item {
    padding-left: 40px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.eniv-sidebar-menu .eniv-sidebar-dropdown.show .eniv-sidebar-dropdown-item {
    max-height: 500px;
}
.eniv-sidebar-menu .eniv-sidebar-dropdown-item a {
    border: none;
}
.eniv-sidebar-menu .eniv-sidebar-dropdown-item a:first-child {
    margin-top: 12px;
}
.eniv-sidebar-menu .eniv-sidebar-dropdown-item a:hover, .eniv-sidebar-menu .eniv-sidebar-dropdown-item a.active {
    background: transparent;
    color: #fff;
}
.eniv-body {
    width: 100%;
    position: relative;
}
.eniv-navbar {
    display: flex;
    align-items: center;
    height: 88px;
    padding: 18px;
    background: var(--color_2);
    border-radius: 16px;
    border: 1px solid var(--border);
    position: sticky;
    z-index: 100;
    top: 20px;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}
.eniv-navbar a.eniv-brand {
    display: block;
    flex-shrink: 0;
}
.eniv-navbar a.eniv-brand img {
    height: 28px;
}
.eniv-navbar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}
.eniv-navbar-btn a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    padding: 10px 14px;
    font-weight: 500;
    display: flex;
    gap: 8px;
}
.eniv-search {
    width: 100%;
    position: relative;
}
.eniv-search form {
    width: 100%;
    position: relative;
}
.eniv-search form input {
    width: 100%;
    outline: none !important;
    border: 1px solid var(--border) !important;
    background: var(--color_1) !important;
    font-size: 14px;
    padding: 14px 20px;
    border-radius: 12px;
    color: #fff !important;
    box-shadow: none !important;
    font-weight: 500;
}
.eniv-search form svg {
    position: absolute;
    right: 20px;
    top: 14px;
}
.eniv-search form svg path {
    fill: #adadad;
}
.eniv-mb {
    margin-bottom: 40px;
}
.eniv-mb-sm {
    margin-bottom: 20px;
}
.eniv-header {
    height: 68px;
    padding: 20px;
    border-radius: 24px 12px;
    border: 1px solid var(--border);
    background-color: var(--color_2);
    display: flex;
    align-items: center;
    background-image: url('/assets/images/bg-header.png');
    background-repeat: no-repeat;
    background-position: right -32px center;
    background-size: 420px;
    margin-bottom: 24px;
    gap: 14px;
}
.eniv-header img {
    height: 32px;
}
.eniv-header h1 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.eniv-banner {

}
.eniv-banner img {
    width: 100%;
}
.eniv-card-populer {
    height: 110px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 12px;
    background: var(--color_2);
    border: 1px solid var(--border);
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    text-decoration: none;
}
.eniv-card-populer img {
    height: 110px;
    border-radius: 12px;
    transition: .3s;
}
.eniv-card-populer:hover img {
    transform: scale(1.04) rotate(6deg);
}
.eniv-card-populer-badge {
    width: 50px;
    position: absolute;
    top: -8px;
    right: -6px;
    text-align: center;
    background: var(--primary);
    border-radius: 10px 10px 0 10px;
    padding: 5px;
    font-weight: 600;
    color: #fff;
}
.eniv-card-populer h1 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #fff;
}
.eniv-card-populer span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text_2);
}
.eniv-games-category {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    gap: 10px;
    overflow: auto;
}
.eniv-games-category li {
    border-radius: 16px 8px;
    border: 2px solid transparent;
    padding: 8px 18px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: var(--color_2);
    white-space: nowrap;
}
.eniv-games-category li img {
    width: 20px;
}
.eniv-games-category li:hover, .eniv-games-category li.active {
    border-color: var(--primary);
    background: linear-gradient(90deg, rgba(70, 206, 74, 0.00) 50%, rgba(70, 206, 74, 0.50) 100%);
    color: var(--primary);
}
.eniv-games {
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 10px 10px 54px 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 24px;
    background: var(--color_1);
    height: calc(100% - 20px);
    position: relative;
}
.eniv-games img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 10px;
    transition: .3s;
}
.eniv-games h1 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 24px;
}
.eniv-games h2 {
    font-size: 12px;
    color: var(--text_2);
}
.eniv-games span {
    border-radius: 16px 8px;
    background: var(--color_2);
    display: block;
    padding: 8px 24px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    border: 2px solid transparent;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.eniv-games:hover img {
    transform: scale(1.01) rotate(4deg);
}
.eniv-games:hover h1 {
    color: var(--primary);
}
.eniv-games:hover h2 {
    color: #46ce4abf;
}
.eniv-games:hover span {
    border-color: var(--primary);
    background: linear-gradient(90deg, rgba(70, 206, 74, 0.00) 50%, rgba(70, 206, 74, 0.50) 100%);
    color: var(--primary);
}
.eniv-games-2 {
    background: var(--color_1);
    color: #fff;
    text-decoration: none;
    margin-bottom: 24px;
    display: block;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.eniv-games-2-image {
    width: 100%;
    height: 180px;
    background-size: 100% auto;
    background-position: center center;
    transition: .3s;
}
.eniv-games-2:hover .eniv-games-2-image  {
    background-size: 105% auto;
}
.eniv-games-2 h1 {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.eniv-games-2 h2 {
    font-size: 12px;
    color: var(--text_2);
}
.eniv-games-2 h3 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}
.eniv-games-2 span {
    font-weight: 500;
}
.eniv-games-2-btn {
    border-radius: 16px 8px;
    background: var(--color_2);
    padding: 8px 24px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    border: 2px solid transparent;
}
.eniv-games-2:hover .eniv-games-2-btn {
    border-color: var(--primary);
    background: linear-gradient(90deg, rgba(70, 206, 74, 0.00) 50%, rgba(70, 206, 74, 0.50) 100%);
    color: var(--primary);
}
.eniv-games-2-body {
    padding: 16px;
}
.eniv-card-why {
    background: var(--color_2);
    padding: 30px;
    border-radius: 16px;
}
.eniv-card-why h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}
.eniv-card-why h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
}
.eniv-card-why p {
    font-size: 15px;
    line-height: 24px;
    color: #cfcccc;
    margin: 0;
}
.eniv-footer-top {
    padding: 50px 0;
}
.eniv-footer-top h1 {
    max-width: 480px;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
}
.eniv-footer-top .eniv-footer-menu {

}
.eniv-footer-top .eniv-footer-menu a {
    display: block;
    text-decoration: none;
    color: #e5e5e5;
    padding: 6px 0;
}
.eniv-footer-top .eniv-footer-menu a:hover {
    color: var(--primary);
}
.eniv-footer-top .eniv-footer-menu h2 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text_2);
}
.eniv-footer-top .eniv-footer-sosmed h2 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text_2);
}
.eniv-footer-top .eniv-footer-sosmed a {
    display: inline-block;
    text-decoration: none;
    color: var(--text_2);
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 7px;
    margin: 0 4px 8px 0;
}
.eniv-footer-top .eniv-footer-sosmed a img {
    width: 20px;
    margin-right: 2px;
}
.eniv-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    padding: 8px 24px;
    border-radius: 20px 20px 0 0;
}
.eniv-footer-bottom p {
    margin: 0;
    color: var(--text_1);
    font-weight: 600;
}
.eniv-footer-bottom-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.eniv-footer-bottom-menu a {
    color: var(--text_1);
    text-decoration: none;
    padding: 8px;
    display: block;
    font-weight: 500;
}
.eniv-container {
    min-height: calc(100vh - 448px);
    margin-bottom: 40px;
}
.eniv-page-card {
    margin-bottom: 30px;
    height: 100px;
    background: var(--color_2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    background-image: url(/assets/images/page-card.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.eniv-faq {
    background: var(--color_2);
    border-radius: 12px;
    margin-bottom: 12px;
}
.eniv-faq-header {
    padding: 16px  20px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.eniv-faq-header::before {
    content: ' ';
    width: 20px;
    height: 20px;
    display: block;
    background-image: url('/assets/images/faq.png');
    background-size: cover;
}
.eniv-faq-header::after {
    content: ' ';
    width: 10px;
    height: 10px;
    display: block;
    background-image: url('/assets/images/faq-hide.png');
    background-size: cover;
    position: absolute;
    right: 18px;
}
.eniv-faq-header[aria-expanded="true"] {
    color: var(--primary);
}
.eniv-faq-header[aria-expanded="true"]::after {
    width: 16px;
    height: 16px;
    background-image: url('/assets/images/faq-show.png');
    right: 15px;
}
.eniv-faq-body {
    padding: 0 18px 18px 18px;
    color: var(--text_2);
    line-height: 26px;
}
.eniv-card-games {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.eniv-card-games-image {
    height: 100px;
    border-radius: 12px;
    flex-shrink: 0;
}
.eniv-card-games h1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.eniv-card-games h2 {
    font-size: 12px;
    font-weight: 500;
    color: var(--text_2);
}
.eniv-card-games ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
    position: relative;
    width: 100%;
    margin-top: 16px;
}
.eniv-card-games ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-direction: column;
    padding: 0 12px;
    text-align: center;
}
.eniv-card-games ul li.eniv-games-tagline {
    padding: 0;
    width: 1px;
    height: 38px;
    background: #3d3d3d;
}
.eniv-card-games ul li:first-child {
    padding-left: 0;
}
.eniv-card-games ul li:last-child {
    display: none;
}
.eniv-card-games ul li img {
    width: 24px;
}
.eniv-card-games ul li span {
    font-size: 12px;
    color: var(--text_2);
}
.eniv-games-rating {
    margin-bottom: 20px;
}
.eniv-games-rating h1 {
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}
.eniv-games-rating-body {
    display: flex;
    align-items: center;
    gap: 20px;
}
.eniv-games-rating-start {
    width: 98px;
    flex-shrink: 0;
    text-align: center;
}
.eniv-games-rating-start h2 {
    font-size: 50px;
    font-weight: 800;
    color: var(--primary);
}
.eniv-games-rating-start p {
    font-size: 12px;
    color: var(--text_2);
}
.eniv-games-rating-end {
    width: 100%;
}
.eniv-games-rating-end ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.eniv-games-rating-end ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.eniv-games-rating-end ul li h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    width: 12px;
    flex-shrink: 0;
}
.eniv-games-rating-end ul li .eniv-games-rating-bar {
    width: 100%;
    background: #404447;
    height: 10px;
    position: relative;
    border-radius: 100px;
    overflow: hidden;
}
.eniv-games-rating-end ul li .eniv-games-rating-bar span {
    position: absolute;
    background: var(--primary);
    left: 0;
    top: 0;
    bottom: 0;
}
.eniv-games-review {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.eniv-games-review-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.eniv-games-review-item img {
    width: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}
.eniv-games-review-item-body {
    width: 100%;
    position: relative;
}
.eniv-games-review-item-body h2 {
    font-size: 12px;
    margin: 0;
    color: var(--text_2);
    position: absolute;
    right: 0px;
}
.eniv-games-review-item-body h1 {
    font-size: 14px;
    margin-bottom: 4px;
}
.eniv-games-review-item-star {
    margin-bottom: 6px;
}
.eniv-games-review-item-star i {
    color: #f5a512;
    font-size: 12px;
}
.eniv-games-review-item-body p {
    margin: 0;
    color: var(--text_2);
    font-weight: 500;
}
.eniv-card-games-description p {
    line-height: 24px;
    color: #d5d3d3;
    margin: 0;
}
.eniv-card-games-num {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    background: #46ce4a2b;
}
.eniv-header.eniv-header-games {
    height: 54px;
    padding: 14px;
}
.eniv-header.eniv-header-games h1 {
    font-size: 14px;
    font-weight: 600;
}
.eniv-games-category.eniv-games-category-method li {
    border-radius: 14px 6px;
    padding: 6px 14px;
}
.eniv-row-method {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
}
.eniv-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    width: calc(25% - 12px);
}
.eniv-method:hover, .eniv-method.active {
    background: linear-gradient(45deg, #3aa24047, #2450291f);
    border-color: var(--primary);
}
.eniv-method h1 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.eniv-method h2 {
    font-size: 14px;
    margin: 0;
    color: var(--primary);
    font-weight: 600;
}
.eniv-method img {
    height: 20px;
}
.eniv-games-category.eniv-games-category-product li {
    border-radius: 20px 8px;
    padding: 8px 12px;
}
.eniv-games-category.eniv-games-category-product li img {
    height: 30px;
    width: 30px;
}
.eniv-row-product {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
}
.eniv-product {
    /* height: 190px; */
    background: var(--color_1);
    width: calc(20% - 13px);
    border-radius: 14px;
    border: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
}
.eniv-product-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 12px;
}
.eniv-product-price {
    padding: 6px 12px;
    background: #252a2d;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
}
.eniv-product:hover {
    background: #1c2023;
}
.eniv-product.active {
    border-color: var(--primary);
    background: linear-gradient(45deg, #3aa24047, #2450291f);
}
.eniv-product.active .eniv-product-price {
    background: #46ce4a40;
}
.eniv-product-top h1 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    line-height: 20px;
}
.eniv-product-top img {
    width: 38px;
}
.eniv-product-top .eniv-product-disc {
    display: flex;
    align-items: center;
    gap: 6px;
}
.eniv-product-top .eniv-product-disc span {
    font-size: 12px;
    background: var(--primary);
    display: block;
    padding: 0px 8px;
    border-radius: 100px;
    color: #333;
    font-weight: 700;
}
.eniv-product-top .eniv-product-disc h2 {
    margin: 0;
    font-size: 12px;
}
.eniv-games-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1b1e21;
    padding: 20px;
    border-radius: 14px;
    position: sticky;
    bottom: 20px;
    background-image: url(/assets/images/page-card.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 100;
}
.eniv-games-button-price p {
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--text_2);
    font-weight: 500;
}
.eniv-games-button-price h1 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}
.eniv-games-button-btn {
    max-width: 320px;
    text-align: right;
}
.eniv-games-button-btn button {
    width: 100%;
    margin-bottom: 8px;
    padding: 14px;
}
.eniv-games-button-btn p {
    margin: 0;
    font-size: 12px;
    color: var(--text_2);
}
.eniv-games-button-btn p a {
    text-decoration: none;
    color: var(--primary);
}
.eniv-auth {
    height: calc(100vh - 30px);
    padding: 70px 0 60px 0;
    width: 100%;
    display: flex;
    align-items: center;
}
.eniv-auth-start {
    width: 50%;
    flex-shrink: 0;
    height: 100%;
}
.eniv-auth-start .eniv-auth-start-back {
    text-decoration: none;
    color: var(--text_2);
    display: flex;
    align-items: center;
    gap: 12px;
}
.eniv-auth-start .eniv-auth-form h1 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 700;
}
.eniv-auth-start .eniv-auth-form .form-control {
    background: var(--color_2) !important;
    border: 1px solid #2c3033 !important;
}
.eniv-auth-start .eniv-auth-form .btn {
    padding: 15px;
    border-radius: 100px;
}
.eniv-auth-end {
    width: 50%;
    flex-shrink: 0;
    position: relative;
}
.eniv-auth-body {
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.eniv-auth-copyright {
    font-size: 14px;
    color: var(--text_2);
    margin: 0;
}
.eniv-auth-or {
    display: flex;
    align-items: center;
    gap: 12px;
}
.eniv-auth-or::before, .eniv-auth-or::after {
    content: ' ';
    height: 1px;
    display: block;
    width: 100%;
    background: #2c3033;
}
.eniv-btn-google {
    width: 100%;
    display: block;
    background: var(--color_2);
    padding: 12px;
    border: 1px solid #2c3033;
    border-radius: 100px;
    text-align: center;
    color: #ffffffad;
    font-weight: 500;
}
.eniv-btn-google img {
    width: 24px;
    margin-right: 12px;
}
.eniv-auth-image {
    position: relative;
    z-index: 100;
}
.eniv-auth-image img {
    width: 100%;
}
.eniv-auth-backdrop {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eniv-auth-backdrop span {
    display: block;
    width: 500px;
    background: #1d2023;
    height: 600px;
    margin: 0 auto;
    border-radius: 20px;
}
.eniv-navbar-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}
.eniv-navbar-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-weight: 600;
    color: #fff;
}
.eniv-navbar-balance img {
    width: 20px;
}
.eniv-navbar-profile-info {
    display: flex;
    align-items: center;
    text-align: right;
    gap: 12px;
}
.eniv-navbar-profile-info h1 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #fff;
}
.eniv-navbar-profile-info p {
    font-size: 12px;
    margin: 0;
    color: var(--text_2);
}
.eniv-navbar-profile-info span {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    background: var(--primary);
    flex-shrink: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #fff;
}
.eniv-account-image {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.eniv-account-image-thumbnail {
    height: 422px;
    width: 100%;
    background: #232323;
    border-radius: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.eniv-account-image-sub {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 380px;
    flex-shrink: 0;
}
.eniv-account-image-thumbnail-sub {
    width: 100%;
    background: #232323;
    height: 200px;
    border-radius: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.eniv-account-image-thumbnail-sub span {
    background: #000000c4;
    padding: 8px 10px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #adadad;
}
.eniv-account-price-data {

}
.eniv-account-price-data-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}
.eniv-account-price-data-top h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}
.eniv-account-price-data-top span {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 18px;
    background: var(--color_2);
    border-radius: 8px;
}
.eniv-account-price-data-top span.eniv-account-love-btn:hover {
    background: #ff00003d;
    color: #e96e6e;
}
.eniv-account-price-data-top span.eniv-account-love-btn:focus,
.eniv-account-price-data-top span.eniv-account-love-btn:active,
.eniv-account-price-data-top span.eniv-account-love-btn.active {
    color: #ffffff;
    background: #eb3434;
}
.eniv-account-title span {
    display: block;
    color: var(--text_2);
    margin-bottom: 8px;
    font-weight: 600;
}
.eniv-account-title h1 {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #e5e5e5;
}
.eniv-service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 138px;
    background: var(--color_2);
    border-radius: 12px;
    background-image: url('/assets/images/page-card.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 18px;
    margin-bottom: 30px;
}
.eniv-service-header-image {
    height: 100px;
    width: 184px;
    border-radius: 12px;
    background-position: center center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}
.eniv-service-header-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.eniv-service-header-data h1 {
    font-size: 20px;
    font-weight: 700;
}
.eniv-service-header-data span {
    display: block;
    margin-bottom: 20px;
    color: var(--text_2);
    font-size: 13px;
    font-weight: 500;
}
.eniv-service-header-data h2 {
    margin: 0;
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.eniv-service-header-data a {
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #313335 !important;
}
.eniv-product-2 {
    font-size: 14px;
    display: block;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1b1e21;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 14px;
    cursor: pointer;
}
.eniv-product-2.active, .eniv-product-2:hover {
    border-color: var(--primary);
    background: linear-gradient(45deg, #3aa24047, #2450291f);
}
.eniv-product-2 h1 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}
.eniv-product-2 span {
    font-size: 14px;
    display: block;
    color: var(--primary);
    font-weight: 600;
}
.eniv-row-product-2 {
    padding: 0 6px;
}
.eniv-row-product-2 .col-lg-3 {
    padding: 0 6px;
}
.eniv-card-sticky {
    position: sticky;
    top: 128px;
}
.eniv-table-1 {
    border: 1px solid var(--border);
    border-radius: 12px;
}
.eniv-table-1 table {
    width: 100%;
}
.eniv-table-1 table tr th,
.eniv-table-1 table tr td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
}
.eniv-table-1 table tr:last-child td {
    border: none;
}
.eniv-table-nowrap tr th,
.eniv-table-nowrap tr td {
    white-space: nowrap;
}
.eniv-table-1 .table-responsive::-webkit-scrollbar {
    width: 0;
}
.eniv-users-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.eniv-users-header .eniv-users-image {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    font-weight: 600;
    flex-shrink: 0;
}
.eniv-users-header .eniv-users-data-menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.eniv-users-header .eniv-users-data {

}
.eniv-users-header .eniv-users-data h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}
.eniv-users-header .eniv-users-data span {
    color: var(--text_2);
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}
.eniv-users-header .eniv-users-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.eniv-users-header .eniv-users-menu a {
    background: var(--color_2);
    padding: 8px 18px;
    color: var(--text_2);
    border-radius: 20px 8px;
    border: 2px solid transparent;
}
.eniv-users-header .eniv-users-menu a:hover {
    color: #fff;
}
.eniv-users-header .eniv-users-menu a.active {
    border-color: var(--primary);
    background: linear-gradient(45deg, #3aa240a3, #16191b);
    color: #fff;
}
.eniv-header.eniv-header-small {
    height: 54px;
    padding: 14px;
    background-image: none;
    overflow: hidden;
    position: relative;
}
.eniv-header.eniv-header-small h1 {
    font-size: 14px;
    font-weight: 600;
}
.eniv-header.eniv-header-small::after {
    content: ' ';
    width: 234px;
    height: 195px;
    display: block;
    background-image: url(/assets/images/bg-header.png);
    background-size: cover;
    transform: rotate(-3deg);
    background-repeat: no-repeat;
    position: absolute;
    right: -21px;
    top: -83px;
}
.eniv-users-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.eniv-users-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.eniv-users-list li h1 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text_2);
}
.eniv-users-list li h2 {
    margin: 0;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}
.eniv-orders-total {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
    height: 151px;
}
.eniv-orders-total li {
    text-align: center;
    width: calc(25% - 12px);
    flex-shrink: 0;
}
.eniv-orders-total li span {
    color: var(--text_2);
    font-weight: 500;
}
.eniv-orders-total li h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 6px;
}
.eniv-card-balance {
    background-image: url(/assets/images/page-card.png);
    background-repeat: no-repeat;
    background-position: center center;
}
.eniv-card-balance p {
    margin-bottom: 8px;
    color: var(--text_2);
    font-weight: 500;
}
.eniv-card-balance h1 {
    margin-bottom: 12px;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}
.eniv-card-balance h1 img {
    height: 20px;
}
.eniv-orders-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.eniv-orders-item-image {
    width: 40px;
    height: 39px;
    border-radius: 8px;
    background-size: 100% auto;
    background-position: center center;
}
.eniv-orders-item h1 {
    font-size: 12px;
    color: var(--text_2);
    margin-bottom: 4px;
}
.eniv-orders-item p {
    margin: 0;
    font-weight: 500;
}
.eniv-product-2.eniv-product-amount span {
    color: #fff;
}
.eniv-invoice-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.eniv-invoice-top-status {
    display: flex;
    align-items: center;
    gap: 8px;
}
.eniv-invoice-top-status span {
    color: var(--text_2);
}
.eniv-invoice-top-status h1 {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}
.eniv-invoice-top-date {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eniv-invoice-top-date span {
    color: var(--text_2);
}
.eniv-invoice-top-date p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}
.eniv-invoice-total {
    margin-bottom: 40px;
    text-align: center;
}
.eniv-invoice-total p {
    margin-bottom: 10px;
    color: var(--text_2);
}
.eniv-invoice-total h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
}
.eniv-invoice-card {
    background: #1c2023;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #262a2d;
}
.eniv-invoice-list b {
    margin-bottom: 16px;
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}
.eniv-invoice-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eniv-invoice-list ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #373c41;
}
.eniv-invoice-list ul li:first-child {
    padding-top: 0;
}
.eniv-invoice-list ul li:last-child {
    border: none;
    padding-bottom: 0;
}
.eniv-invoice-list ul li span {
    color: var(--text_2);
    font-weight: 500;
    font-size: 13px;
}
.eniv-invoice-list ul li h1 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}
.eniv-invoice-alert {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffc30036;
    padding: 8px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #fcc10094;
}
.eniv-invoice-alert img {

}
.eniv-invoice-alert span {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: var(--text_2);
}
.eniv-invoice-alert ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.eniv-invoice-alert ul li {
    display: flex;
    align-items: center;
    gap: 6px;
}
.eniv-invoice-alert ul li h1 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
}
.eniv-invoice-alert ul li p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}
.eniv-admin-content-header {
    margin-bottom: 30px;
}
.eniv-admin-content-header h1 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.eniv-product-icon-preview {
    height: 49px;
    width: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
.eniv-product-icon-preview img {
    height: 24px;
}
.eniv-product-icon-preview+.form-control {
    border-radius: 100px 0 0 100px !important;
}
.eniv-manage-account-image-item {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.eniv-manage-account-image-item-image {
    height: 68px;
    overflow: hidden;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.eniv-manage-account-image-item-image img {
    width: 100%;
}
.eniv-table-options {
    width: 100%;
}
.eniv-table-options tr {
    width: 100%;
}
.eniv-table-options tr th {
    color: #fff;
}
.eniv-table-options tr th, .eniv-table-options tr td {
    padding: 6px;
}
.eniv-table-options tr th:first-child, .eniv-table-options tr td:first-child {
    padding-left: 0;
}
.eniv-table-options tr th:last-child, .eniv-table-options tr td:last-child {
    padding-right: 0;
}
#column-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.eniv-column-list {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eniv-column-list-delete {
    color: var(--danger);
    padding: 6px 12px;
    cursor: pointer;
    font-size: 16px;
}
.eniv-header.eniv-header-confirm {
    height: auto;
    padding: 20px;
    background-image: none;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}
.eniv-header.eniv-header-confirm::after {
    content: ' ';
    width: 178px;
    height: 178px;
    background-image: url(/assets/images/bg-header.png);
    background-size: cover;
    position: absolute;
    right: -18px;
    transform: rotate(164deg);
    top: -49px;
}
.eniv-header.eniv-header-confirm h1 {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.eniv-modal-confirm-price {
    text-align: center;
    padding: 20px 0;
}
.eniv-modal-confirm-price h1 {
    margin: 0;
    font-size: 28px;
    color: #fff;
    font-weight: 700;
}
.eniv-modal-confirm-data {
    margin-bottom: 30px;
}
.eniv-modal-confirm-data h1 {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}
.eniv-modal-confirm-data table {
    width: 100%;
    margin: 0;
}
.eniv-modal-confirm-data table tr {
    border-bottom: 1px solid #252b2f;
}
.eniv-modal-confirm-data table tr th, .eniv-modal-confirm-data table tr td {
    color: var(--text_2);
    padding: 10px 0;
}
.eniv-modal-confirm-data table tr th {
    color: #fff;
    font-weight: 600;
    text-align: right;
}
.eniv-pay-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1f2327;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #2a2f33;
    font-size: 16px;
    font-weight: 600;
    color: #bbbbbb;
}
.eniv-pay-code-btn {
    padding: 0 6px;
    cursor: pointer;
}
.eniv-invoice-status-box {
    text-align: center;
    padding: 40px 0;
}
.eniv-invoice-status-box h1 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.eniv-invoice-status-box.status-processing h1 {
    color: #4daceb;
}
.eniv-invoice-status-box.status-success h1 {
    color: #5bdd5e;
}
.eniv-invoice-status-box.status-canceled h1 {
    color: #f75f62;
}
.eniv-invoice-status-box p {
    margin: 0;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #b1b1b1;
}
.eniv-invoice-status-box img {
    height: 140px;
}
.eniv-invoice-sn {

}
.eniv-invoice-sn h1 {
    font-size: 14px;
    font-weight: 600;
}
.eniv-invoice-sn span {
    background: #24292d;
    padding: 10px;
    display: block;
    border-radius: 8px;
    border: 1px solid #363d43;
    color: #ffffff82;
}
.eniv-invoice-review-box {

}
.eniv-invoice-review-box h1 {
    font-size: 16px;
    font-weight: 600;
}
.eniv-invoice-review-box p {
    color: var(--text_2);
}
.eniv-invoice-review-box-star {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 22px;
}
.eniv-invoice-review-box-star i {
    cursor: pointer;
}
.eniv-invoice-review-box ul {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    gap: 8px;
}
.eniv-invoice-review-box ul li {
    padding: 4px 10px;
    background: #292f35;
    display: block;
    border-radius: 6px;
    color: #ffffffa3;
    cursor: pointer;
}
.eniv-invoice-review-show {

}
.eniv-invoice-review-show h1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.eniv-invoice-review-show small {
    color: var(--text_2);
}
.eniv-invoice-review-show p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}
.eniv-account-image-checkout img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    cursor: pointer;
}
.eniv-account-image-checkout-list {
    display: flex;
    align-items: center;
    gap: 18px;
}
.eniv-account-image-checkout-list-item {
    width: 33%;
    background-size: cover;
    border-radius: 12px;
    aspect-ratio: 1/1;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}
.eniv-account-image-checkout-list-item.last {
    display: flex;
    align-items: end;
    padding: 12px;
    justify-content: end;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}
.eniv-account-image-checkout-list-item.last span {
    position: relative;
    z-index: 1;
}
.eniv-account-image-checkout-list-item.last::after {
    content: ' ';
    background: #00000096;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.eniv-invoice-account-detail {
    margin-bottom: 20px;
}
.eniv-invoice-account-detail img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
}
.eniv-invoice-account-detail p {
    margin-bottom: 6px;
    color: var(--text_2);
    font-weight: 500;
}
.eniv-invoice-account-detail h1 {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}
.empty-review {
    text-align: center;
    padding: 80px 0;
}
.empty-review h1 {
    font-size: 22px;
    font-weight: 600;
}
.empty-review p {
    margin: 0;
    color: var(--text_2);
}
.eniv-datatable-orders .dt-container .dt-layout-row:first-child {
    display: none;
}
.eniv-search-result {
    position: absolute;
    padding-top: 16px;
    left: 0;
    right: 0;
}
.eniv-search-result-body {
    background: #212629;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #31373b;
    overflow: auto;
    max-height: 410px;
}
.eniv-search-result-body::-webkit-scrollbar {
    display: none;
}
.eniv-search-result-body a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #41484d;
}
.eniv-search-result-body a .eniv-search-image {
    height: 60px;
    width: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.eniv-search-result-body a h1 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.eniv-search-result-body a h1 span {
    background-color: var(--primary);
    display: inline-block;
    padding: 4px 0;
    line-height: 14px;
    color: #ffffff;
}
.eniv-search-result-body a:not(.d-none):first-child {
    padding-top: 0;
}
.eniv-search-result-body a:not(.d-none):last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.eniv-search-result-empty {
    text-align: center;
    padding: 40px 0;
}
.eniv-search-result-empty h1 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}
.eniv-search-result-empty p {
    margin: 0;
    color: var(--text_2);
}
.eniv-games-rating-star {
    position: relative;
    height: 20px;
    width: 100px;
    margin-bottom: 8px;
}
.eniv-games-rating-star::before {
    content: ' ';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #404447;
}
.eniv-games-rating-star::after {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: orange;
    width: var(--rating-width, 0%);
}
.eniv-games-rating-star-shape {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('/assets/images/frame-star.png');
    background-size: cover;
    z-index: 10;
}
.eniv-image-table {
    display: flex;
    max-width: 200px;
    overflow-x: auto;
    cursor: grab;
}
.eniv-image-table:active {
    cursor: grabbing;
}
.eniv-image-table::-webkit-scrollbar {
    display: none;
}
.eniv-image-table img {
    user-drag: none;
    user-select: none;
    pointer-events: none;
}
.eniv-table-detail {
    border: 1px solid #24292d;
    border-radius: 14px;
    margin-bottom: 20px;
}
.eniv-table-detail table {
    width: 100%;
}
.eniv-table-detail table tr {

}
.eniv-table-detail table tr th {
    text-align: right;
}
.eniv-table-detail table tr th, .eniv-table-detail table tr td {
    padding: 12px 18px;
    border-bottom: 1px solid #24292d;
    color: #c5c5c5;
    font-weight: 600;
}
.eniv-table-detail table tr:last-child th, .eniv-table-detail table tr:last-child td {
    border-bottom: none;
}
.eniv-brand-icon {
    display: none;
}
.eniv-toggle {
    display: none;
    cursor: pointer;
}
.eniv-toggle img {
    height: 20px;
}
.eniv-sidebar-logo {
    text-align: center;
    padding: 10px 0 30px 0;
    display: none;
}
.eniv-sidebar-logo a {

}
.eniv-sidebar-logo a img {
    height: 24px;
}
.eniv-sidebar-profile {
    margin-bottom: 20px;
    display: none;
}
.eniv-sidebar-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.eniv-sidebar-profile-info h1 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #fff;
    font-weight: 600;
}
.eniv-sidebar-profile-info p {
    margin: 0;
    font-size: 13px;
    color: var(--text_2);
}
.eniv-sidebar-profile-info span {
    width: 52px;
    height: 52px;
    display: flex;
    background: var(--primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    font-weight: 600;
}
.eniv-sidebar-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #1d2023;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #303439;
}
.eniv-sidebar-auth {
    display: none;
}