/* [DIROMBAK] Mengganti font utama ke Rajdhani untuk tema gaming */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&display=swap');


/* == BREAKING NEWS BAR (SUDAH MENGGUNAKAN CSS BIASA) == */
        .breaking-news-container {
            display: none; 
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 1001;
            background-color: #c81e1e;
            color: white;
            overflow: hidden;
            white-space: nowrap;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .breaking-news-content p {
            display: inline-block;
            margin: 0;
            padding: 12px 0;
            padding-left: 100%; 
            animation: scroll-left 25s linear infinite; 
        }

        /* Tag "BREAKING" di dalam bar berita */
        .breaking-tag {
            font-weight: 700; /* font-bold */
            background-color: white; /* bg-white */
            color: #c53030; /* text-red-700 */
            padding: 0.25rem 0.5rem; /* px-2 py-1 */
            border-radius: 0.25rem; /* rounded */
            margin-right: 0.75rem; /* mr-3 */
        }

        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

/* CSS untuk membuat list sejajar */
        ul.link-footer {
          display: flex; /* Membuat semua item <li> tersusun horizontal */
          justify-content: center; /* Membuat link berada di tengah */
          gap: 2rem; /* Memberi jarak antar link (gunakan 'rem' untuk skala yang lebih baik) */
          list-style: none; /* Menghapus titik/bullet bawaan */
          padding: 0; /* Menghapus padding bawaan dari <ul> */
          margin: 0; /* Menghapus margin bawaan dari <ul> */
        }
        
        a.link-footer {
            text-decoration: none;
            color: #4b5563; /* Warna abu-abu gelap */
            font-weight: 500;
            transition: color 0.2s ease-in-out;
        }
        
        a.link-footer:hover {
            color: #1d4ed8; /* Warna biru saat disentuh */
        }

:root {
    /* Orange Dark Color Palette (dipertahankan) */
    --orange-dark-25: #FFF9F5;
    --orange-dark-50: #FFF4ED;
    --orange-dark-100: #FFE6D5;
    --orange-dark-200: #FFD6AE;
    --orange-dark-300: #FF9C66;
    --orange-dark-400: #FF692E;
    --orange-dark-500: #FF4405;
    --orange-dark-600: #E62E05;
    --orange-dark-700: #BC1B06;
    --orange-dark-800: #97180C;
    --orange-dark-900: #771A0D;

    /* Gray Color Palette (dipertahankan) */
    --gray-25: #FCFCFD;
    --gray-50: #F8FAFC;
    --gray-100: #EEF2F6;
    --gray-200: #E3E8EF;
    --gray-300: #CDD5DF;
    --gray-400: #9AA4B2;
    --gray-500: #697586;
    --gray-600: #4B5565;
    --gray-700: #364152;
    --gray-800: #202939;
    --gray-900: #121926;
}

/* [DIROMBAK] Latar belakang & Font Dasar */
body {
    font-family: 'Rajdhani', sans-serif; /* Menggunakan font gaming */
    background: #111827; /* Warna dasar gelap */
    color: #d1d5db; /* Warna teks dasar */
    width: 100%;
    cursor: default;
}

/* [DIROMBAK] Tata Letak Utama & Banner */
.frame-info-product-v3 {
    width: 100%;
}
.bg-thumbnail-overlay {
    height: 250px;
    background-image: linear-gradient(180deg, rgba(17, 24, 39, 0) 0%, #111827 100%), url('https://placehold.co/1920x400/1e1b4b/a78bfa?text=Honor+of+Kings');
    background-size: cover;
    background-position: center;
}
.content-product {
    max-width: 1200px;
    margin: -120px auto 0 auto;
    padding: 0 1rem 2rem 1rem;
    position: relative;
    z-index: 10;
}

/* [DIROMBAK] Kontainer Utama */
.content-info-product-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .content-info-product-v2 {
        grid-template-columns: 422px 1fr;
    }
}

/* [DIROMBAK] Kartu Sidebar */
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: none; /* Menghapus shadow lama */
}

/* [DIROMBAK] Info Game di Sidebar */
.left-info-product-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.left-info-product-v2 img {
    width: 80px;
    height: 80px;
    border-radius: 0.75rem;
}
.properties-info-product-v2 h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}
.properties-info-product-v2 h2 {
    font-size: 1rem;
    color: #a78bfa; /* Ungu terang */
    margin: 0;
}
.bottom-content-header-info-product-v2 p {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* [DIROMBAK] Tombol Download */
.right-info-product-v2 .download-list-info-product-v2 {
    display: flex;
    gap: 1rem;
}
.right-info-product-v2 .download-list-info-product-v2 a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(55, 65, 81, 0.5);
    color: #d1d5db;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.2s ease;
}
.right-info-product-v2 .download-list-info-product-v2 a:hover {
    background-color: #a78bfa;
    color: #fff;
    border-color: #a78bfa;
}
.right-info-product-v2 .download-list-info-product-v2 a span {
    color: #d1d5db;
}
.right-info-product-v2 .download-list-info-product-v2 a:hover span {
    color: #000;
}

/* [DIROMBAK] Rekomendasi Game */
.frame-title-sidebar h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.game-recomendation-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.game-recomendation-v2 a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(55, 65, 81, 0.5);
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}
.game-recomendation-v2 a:hover {
    background-color: #a78bfa;
}
.game-recomendation-v2 img {
    width: 40px;
    height: 40px;
    border-radius: 0.375rem;
}
.game-recomendation-v2 span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d1d5db;
    transition: color 0.2s ease;
}
.game-recomendation-v2 a:hover span {
    color: #fff;
}

/* [DIROMBAK] Kontainer Produk Utama */
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: none; /* Menghapus shadow lama */
}

/* [DIROMBAK] Header Kontainer Produk */
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-header-product-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.2), rgba(167, 139, 250, 0.1));
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-header-product-v2 span {
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: none;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-header-product-v2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* [DIROMBAK] Grid Daftar Produk */
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    list-style: none;
    margin: 0;
}

/* [DIROMBAK] Kartu Produk Individual */
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li {
    background: linear-gradient(145deg, #1f2937, #111827);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    overflow: hidden;
    padding: 0; /* Reset padding */
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li:hover {
    transform: translateY(-8px);
    border-color: #a78bfa !important;
    box-shadow: 0 0 25px rgb(167 139 250);
}

/* [DIROMBAK] Info di dalam Kartu Produk */
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li .product-name-v3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    flex-grow: 1;
    background: none;
    min-height: auto;
    max-height: none;
}
img.gambar-denom {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li b {
    color: #d1d5db;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    margin-left: 0; /* Reset margin */
}

/* [DIROMBAK] Tombol Beli & Harganya */
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li .pricing-icon {
    margin-top: auto;
    padding: 0; /* Reset padding */
    background: none; /* Reset background */
    height: auto; /* Reset height */
    align-self: auto; /* Reset */
    display: block;
}
a.tombol-beli {
    display: block;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    color: white;
    padding: 0.75rem;
    transition: all 0.3s ease;
    width: 100%; /* Memastikan tombol memenuhi lebar */
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li:hover .pricing-icon a.tombol-beli {
    background: linear-gradient(90deg, #8b5cf6, #c084fc);
    box-shadow: 0 -5px 15px rgba(167, 139, 250, 0.3);
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li .pricing-icon .pricing-detil span {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white; /* Pastikan teks selalu putih */
}

/* [DIROMBAK] Gaya untuk item habis */
#habis {
    opacity: 0.4;
    pointer-events: none;
    position: relative;
    filter: grayscale(70%);
}
#habis:after {
    content: 'HABIS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background-color: #ef4444;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 1rem;
    z-index: 10;
}

/* ================================================= */
/* === KODE CSS ASLI ANDA YANG DIPERTAHANKAN (SISA) === */
/* ================================================= */

input#search-input {
    width: 300px;
}
a.download-apk-bawah {
    margin-bottom: 50px;
}
li.link-footer {
    display: inline;
    padding: 5px;
    text-align: center;
}
button.tombol, a.tombol {
    color: #fff;
    border: none;
    background: #212a3a;
    padding: 15px;
    width: 25%;
    border-radius: 10px;
	text-align: center;
}
input.login-admin {
    width: 25%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #bdbdbd;
    color: #000;
}

img{-webkit-user-drag: none;}

i.fa.fa-bolt {
    color: orange;
}
i.fab.fa-windows {
    color: #fff;
}
.badge-self{
    display: flex;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    border-radius: 6px;
    width: max-content;
}

.badge-self.as-canceled{
    color: #F00;
    background: #FFC7C7;
}
.badge-self.as-completed{
    color: #03AC0E;
    background: #D5FFDD;
}
.badge-self.as-pending{
    color: #AB8103;
    background: #FFF4D5;
}

/*--- Header --- */
.header-navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid #00ffff29;
    background: #121926;
    -webkit-backdrop-filter: saturate(200%) blur(20px);
    backdrop-filter: saturate(200%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 800;
    padding: 14px 15px;
}
.header-navbar .header-content-v3{
    width: 100%;
    max-width: 1140px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.header-navbar .header-content-v3-left{
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}
.header-navbar .header-content-v3-left img{
    height: 40px;
}
.header-navbar .header-content-v3-left ul{
    display: flex;
    padding: 0;
    margin: 0;
    gap: 16px;
}
/* menu navigation */
.header-navbar .header-content-v3-left ul li{
    list-style: none;
}
.header-navbar .header-content-v3-left ul li a:hover{
    color: #00ffff;
}
.header-navbar .header-content-v3-left ul li a{
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration:none;
}
.header-navbar .header-content-v3-right{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
/* Search */
.header-search-bar{
    position: relative;
}
.header-search-bar .result-quick-search{
    background: #fff;
    position: absolute;
    z-index: 800;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 0.5em;
    margin-top: 12px;
    right: -30px;
    box-shadow: 0 4px 12px 3px #00000030;
}
.header-search-bar .result-quick-search .notfound{
    padding: 12px;
    color: var(--gray-800);
    font-weight: 400;
}
.header-search-bar .result-quick-search .arrow-up{
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    position: absolute;
    top: -13px;
    left: 45%;
}
.header-search-bar .result-quick-search ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.header-search-bar .result-quick-search ul li{

}
.header-search-bar .result-quick-search ul li a{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    min-width: 340px;
}
.header-search-bar .result-quick-search ul li:hover a{
    background: var(--orange-dark-50);
}
.header-search-bar .result-quick-search ul li .left{

}
.header-search-bar .result-quick-search ul li .left img{
    width: 40px;
    height: 40px;
    border-radius: 0.5em;
}
.header-search-bar .result-quick-search ul li .right{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    margin-left: 10px;
}
.header-search-bar .result-quick-search ul li .right b{
    overflow: hidden;
    color: var(--gray-800);
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.14px;
}
.header-search-bar .result-quick-search ul li .right small{
    color: var(--gray-400);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.14px;
}
.header-navbar .header-content-v3-right .header-search-bar-field{
    border-radius: 6px;
    border: 1px solid var(--gray-400);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    width: 220px;
    padding: 8px 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.header-navbar .header-content-v3-right .header-search-bar-field:hover{
    border: 1px solid var(--orange-dark-500);
}
.header-navbar .header-content-v3-right .header-search-bar-field:focus-within{
    border: 1px solid var(--orange-dark-500);
}
.header-navbar .header-content-v3-right .header-search-bar-field:active{
    border: 1px solid var(--orange-dark-500);
}
.header-navbar .header-content-v3-right .header-search-bar-field input{
    width: 100%;
    -webkit-appearance: none;
    background: none !important;
    color: #00ffff;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.header-navbar .header-content-v3-right .header-search-bar-field input:hover{
border: 1px solid #00ffff;
}
.header-navbar .header-content-v3-right .header-search-bar-field input::placeholder{
    color: #fff;
}
.header-navbar .header-content-v3-right .header-search-bar-field i{
    position: absolute;
    right: 15px;
    color: var(--gray-800);
    font-size: 18px;
    line-height: 23px;
}

.header-navbar .header-content-v3-right .tmv1-menu-trigger{
    display: flex;
    padding: 6px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #00ffff;
    text-decoration: none !important;
    width: 36px;
    -webkit-appearance: none !important;
}
.header-navbar .header-content-v3-right .tmv1-menu-trigger i{
    font-size: 24px;
    color: #00ffff;
}

/* START SLIDER HOME STYLE */
.slider-wrapper{
    margin-top: 31px;
}
.slider-wrapper .image-slider {
    position: relative;
    min-height: 50px;
    overflow: hidden
}

.slider-wrapper .image-slider--single .image-slider__dots,.slider-wrapper .image-slider--single .image-slider__nav {
    display: none
}

.slider-wrapper .image-slider .next,.slider-wrapper .image-slider .prev {
    position: absolute;
    top: 45%;
    cursor: pointer;
    width: auto;
    padding: 10px 20px;
    color: #364152;
    font-weight: 700;
    font-size: 18px;
    -webkit-transition: .7s ease;
    transition: .7s ease;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    z-index: -2;
    border-radius: 50%;
    opacity: 0;
    transition: all ease 0.3s;
}

.slider-wrapper .image-slider:hover .next{
    opacity: 0.7;
}
.slider-wrapper .image-slider:hover .prev{
    opacity: 0.7;
}

.slider-wrapper .image-slider .prev:hover{
    opacity: 1;
}
.slider-wrapper .image-slider .next:hover{
    opacity: 1;
}

.sidenav .collapsible-header:after{
    top: 0 !important;
}

@media(max-width: 992px) {
    .slider-wrapper .image-slider .next,.slider-wrapper .image-slider .prev {
        top:42%;
        font-size: 14px;
        padding: 7px 14px
    }
}

@media(max-width: 768px) {
    .slider-wrapper .image-slider .next,.slider-wrapper .image-slider .prev {
        font-size:10px;
        padding: 5px 10px
    }
}

.slider-wrapper .image-slider .next {
    right: 10%
}

@media(max-width: 768px) {
    .slider-wrapper .image-slider .next {
        right:2%
    }
}

.slider-wrapper .image-slider .prev {
    left: 10%
}

@media(max-width: 768px) {
    .slider-wrapper .image-slider .prev {
        left:2%
    }
}

.slider-wrapper .image-slider .next:hover,.slider-wrapper .image-slider .prev:hover {
    background-color: #fff;
    color: #000;
}

.slider-wrapper .image-slider .nav-active {
    z-index: 1
}

.slider-wrapper .image-slider .nav-inactive {
    z-index: 10;
}

.slider-wrapper .image-slider-items {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* margin: 0 20px 20px 20px */
}

.slider-wrapper .image-slider-items .before-replacement{
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    width: 100px;
    background: black;
    z-index: 50;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgb(242 244 248) 15%, rgba(255,255,255,0) 100%);
    cursor: pointer;
    transition: all ease 0.3s;
}
.slider-wrapper .image-slider-items .after-replacement{
    /* content: " "; */
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0px;
    width: 100px;
    background: black;
    z-index: 50;
    background: rgb(255,255,255);
    background: linear-gradient(-90deg, rgb(242 243 246) 15%, rgba(255,255,255,0) 100%);
    cursor: pointer;
    transition: all ease 0.3s;
}

.slider-wrapper .image-slider-items .before-replacement:hover{
    opacity: 0.7;
}
.slider-wrapper .image-slider-items .after-replacement:hover{
    opacity: 0.7;
}

.slider-wrapper .img-slide {
    display: block;
    margin: auto;
    /* width: 80%; */
    width: 900px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0
}

.slider-wrapper .img-slide.active {
    opacity: 1;
    position: relative
}

.slider-wrapper .img-slide img {
    width: 100%;
    min-height: 95px;
    /* background: #ccc; */
    background: linear-gradient(90deg, #aaaaaa, #ececec);
    background-size: 400% 400%;
    /* -webkit-animation: ImgPlaceholderLoad 2s ease infinite;
    -moz-animation: ImgPlaceholderLoad 2s ease infinite;
    animation: ImgPlaceholderLoad 2s ease infinite; */
}

.slider-wrapper .img-slide .loader {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    min-height: 4rem
}

@media(max-width: 768px) {
    .slider-wrapper .img-slide {
        width:100%
    }
}

.slider-wrapper .img-current {
    /* aspect-ratio: 4/1; */
    border-radius: 8px;
    /* height: 201px; */
    height: 324.848px;
    /* min-height: 201px !important; */
    z-index: 45;
    width: 900px;
    
}

.carousel.carousel-slider .carousel-item{
    visibility: visible !important;
}

@-webkit-keyframes ImgPlaceholderLoad {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes ImgPlaceholderLoad {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes ImgPlaceholderLoad {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

@keyframes loading {
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}


.slider-wrapper .img-next,.slider-wrapper .img-prev {
    position: absolute;
    top: 0;
    height: 95%;
    margin-top: 1%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.slider-wrapper .img-next {
    right: -103%
}

.slider-wrapper .img-prev {
    left: -103%
}

.slider-wrapper .transition-fade .inactive {
    height: 0;
    opacity: 0
}

.slider-wrapper .transition-slide .img-slide {
    position: absolute;
    top: 0;
    -webkit-transition: opacity .2s,z-index .5s,-webkit-transform .5s;
    transition: opacity .2s,z-index .2s,-webkit-transform .5s;
    transition: transform .2s,opacity .2s,z-index .5s;
    transition: transform .2s,opacity .2s,z-index .5s,-webkit-transform .5s
}

.slider-wrapper .transition-slide .img-slide.active {
    position: relative;
    z-index: 10;
}

.slider-wrapper .transition-slide .next-item {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.slider-wrapper .transition-slide .prev-item {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.slider-wrapper .transition-slide .inactive {
    display: none
}

.slider-wrapper .transition-slide .inactive.next-item {
    display: block;
    right: 5%;
    z-index: -1;
}

.slider-wrapper .transition-slide .inactive.prev-item {
    display: block;
    left: 5%;
    z-index: -1;
}

.slider-wrapper .transition-slide .inactive .img-next,.slider-wrapper .transition-slide .inactive .img-prev {
    display: none
}

.slider-wrapper .slide-enter-active,.slider-wrapper .slide-leave-active {
    -webkit-transition: .5s;
    transition: .5s
}

.slider-wrapper .slide-enter {
    /* opacity: 1!important */
}

.slider-wrapper .slide-leave {
    /* opacity: 0!important */
}

.slider-wrapper .img-slider {
    overflow: hidden;
    position: relative;
    height: 200px;
    width: 100%
}

.slider-wrapper .image-slider__dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 20px;
    /* border-radius: 20px 20px 0 0; */
    background-color: rgba(0,0,0,.5);
    border-radius: 20px;
    opacity: 0.7;
    transition: 0.3s;
    z-index: 20;
}

.slider-wrapper:hover .image-slider__dots{
    opacity: 1;
}

@media(max-width: 768px) {
    .slider-wrapper .image-slider__dots {
        padding:5px 10px;
        border-radius: 10px 10px 0 0
    }
}

.slider-wrapper .image-slider__dot {
    background: #cdd5df;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    cursor: pointer
}

.slider-wrapper .image-slider__dot.active,.slider-wrapper .image-slider__dot:hover {
    background: #567ee8;
}

.slider-wrapper .image-slider__dot.active {
    width: 58px;
    border-radius: 12px
}

@media(max-width: 992px) {
    .slider-wrapper .image-slider__dot {
        width:9px;
        height: 9px;
        margin: 0 3px
    }

    .slider-wrapper .image-slider__dot.active {
        width: 44px
    }
}

@media(max-width: 768px) {
    .slider-wrapper .image-slider__dot {
        width:6px;
        height: 6px;
        margin: 0 3px
    }

    .slider-wrapper .image-slider__dot.active {
        width: 29px
    }
}

.for_mobile_show{
    display: none;
}
.for_desktop_show{
    display: block;
}
/* END SLIDER HOME STYLE */

.frame-top-product-v2{
    /* width: 1440px; */
    width: 100%;
    flex-shrink: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0rem 1rem;
}
.frame-top-product-v2 .frame-header-top-product-v2{
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.frame-top-product-v2 .frame-header-top-product-v2 h3{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* width: 1140px;
    margin: 0 auto; */
}

.frame-top-product-v2 .frame-header-top-product-v2 .trigger-top-product-nav{
    display: flex;
    width: 83px;
    justify-content: space-between;
    align-items: center;
}
.frame-top-product-v2 .frame-header-top-product-v2 .trigger-top-product-nav a{
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 23.5px;
    background: rgba(255, 255, 255, 0.40);
    width: 34px;
    height: 34px;
    text-decoration: none;
    font-size: 24px;
    color: #FFFFFF;
    transition: all .2s ease;
}
.frame-top-product-v2 .frame-header-top-product-v2 .trigger-top-product-nav a.disable{
    pointer-events: none !important;
    background: rgba(255, 255, 255, 0.20);
    color: #bbbbbb;
}
.frame-top-product-v2 .frame-header-top-product-v2 .trigger-top-product-nav a:hover{
    background: var(--orange-dark-500);
    color: #1A255C;
}
.frame-top-product-v2 .frame-header-top-product-v2 .trigger-top-product-nav a i{
    
}

.frame-top-product-v2 .parent-top-product-v2{
    display: flex;
    /* width: 1140px; */
    align-items: center;
    gap: 35px;
    flex-shrink: 0;
    width: 100%;
    /* overflow: auto; */
    overflow-x: auto;
}
.frame-top-product-v2 .parent-top-product-v2::-webkit-scrollbar {
    /* Webkit */
    width: 0;
    height: 0;
}
.frame-top-product-v2 .parent-top-product-v2 .child-top-product-v3{
    display: flex;
    width: 200px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 5px 0px 0px 0px;
}
.frame-top-product-v2 .parent-top-product-v2 .child-top-product-v3 img{
    width: 200px;
    height: 200px;
    border-radius: 14px;
    /* transition: transform .2s; */
}
.frame-top-product-v2 .parent-top-product-v2 .child-top-product-v3 h6{
    color: #FFF;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.16px;
    align-self: stretch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.frame-top-product-v2 .parent-top-product-v2 .child-top-product-v3:hover h6 {
    color: var(--orange-dark-500);
}
.frame-top-product-v2 .parent-top-product-v2 .child-top-product-v3:hover img {
    transform: scale(1.04);
}

.title-frame {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
/* grid product */
.frame-grid-product-v2{
    display: flex;
    width: 100%;
    max-width: 1140px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0 auto;
    margin-bottom: 40px;
    position: relative;
    padding-top: 24px;
}


.slider-arrow {
    position: absolute;
    top: 62%;
    transform: translateY(-40%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 22px;
    padding: 10px;
    cursor: pointer;
    display: none;
    border-radius: 50px;
    user-select: none;
    width: 52px;
    text-align: center;
}

.left-arrow {
    left: -25px;
}

.right-arrow {
    right: -25px;
}

.frame-grid-product-v2:hover .slider-arrow {
    display: block;
}
.slider-arrow:hover {
    animation: 1s ease-in-out infinite;
    background: #14223a;
    border: 1px solid #00ffff;
    -webkit-box-shadow: 0px 0px 50px 10px rgba(0, 132, 255, 0.5);
    -moz-box-shadow: 0px 0px 50px 10px rgba(0,132,255,0.5);
    box-shadow: 0px 0px 50px 10px rgba(0, 132, 255, 0.5);
}

.frame-grid-product-v2 i{
    color: #00ffff;
    font-size: 24px;
}
.frame-grid-product-v2 h3{
    color: var(--gray-50);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    align-self: stretch;
    margin: 0;
}
.frame-grid-product-v2 .parent-grid-product-v2{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 30px;
    width: 100%;
}
.frame-grid-product-v2 .parent-grid-product-v2.limited-height{
    height: 1320px;
    overflow: hidden;
}
.frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    border: 1px solid #00ffff29;
    padding: 10px;
    border-radius: 10px;
    align-items: center;
    transition: all 0.2s;
    background: #121926;
}
.frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3 img{
    width: 175px;
    height: 175px;
    border-radius: 8px;
    transition: transform .5s ease;
    display: block;
}
.frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3 h6{
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    line-height: normal;
    margin-bottom: 0px;
}
.frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3:hover h6{
    color: #000;
}

.frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3:hover {
    animation: 1s ease-in-out infinite;
    background: #00ffff;
    border: 1px solid #a78bfa;
    -webkit-box-shadow: 0 0 25px rgb(167 139 250);
-moz-box-shadow: 0 0 25px rgb(167 139 250);
box-shadow: 0 0 25px rgb(167 139 250);
}

.frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3:hover img {
    transform: scale(1.1);
}

.frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3 .img-wrapper-v3 {
    background-color: #111827;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: inherit;
    position: relative
}
/* description */
.featured-desc {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.frame-featured-product-v2{
    display: flex;
    padding: 50px 1rem 30px 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: var(--gray-800);
}
.frame-featured-product-v2 .content-featured{
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
}
.frame-featured-product-v2 .content-featured h2{
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}
.frame-featured-product-v2 .content-featured p.sub{
    color: #C0C0CE;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
    text-align: center;
}
.frame-featured-product-v2 .content-featured .parent-featured-product-v2{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* margin-top: 20px; */
    /* margin-bottom: 20px; */
    flex-direction: row;
    flex-wrap: wrap;
    /* max-width: 730px; */
}
.frame-featured-product-v2 .content-featured .parent-featured-product-v2 .child-featured-product-v2{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 8px; */
    width: 350px;
}
.frame-featured-product-v2 .content-featured .parent-featured-product-v2 .child-featured-product-v2 .header-child-featured-product-v2{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: column;
    width: 100%;
}
.frame-featured-product-v2 .content-featured .parent-featured-product-v2 .child-featured-product-v2 .header-child-featured-product-v2 img{
    display: flex;
    width: 28px;
    height: 28px;
    padding: 0px 3px;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.frame-featured-product-v2 .content-featured .parent-featured-product-v2 .child-featured-product-v2 .header-child-featured-product-v2 h4{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}
.frame-featured-product-v2 .content-featured .parent-featured-product-v2 .child-featured-product-v2 .header-child-featured-product-v2 i{
    color: #FFF;
    font-size: 18px;
}
.frame-featured-product-v2 .content-featured .parent-featured-product-v2 .child-featured-product-v2 p{
    color: #C0C0CE;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    align-self: stretch;
    text-align: center;
}

.overlay-more-games{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    width: 100%;
}
.overlay-more-games span.overlay-desc{
    color: #D4D6EA;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.overlay-more-games button.more-game-btn{
    display: flex;
    padding: 14px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 8px;
    border: none;
    background: var(--orange-dark-400);
    box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.56) inset;
    transition: 0.2s;
}
  @keyframes up-down {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-3px);
    }
  }

.overlay-more-games button.more-game-btn:hover{
    background: var(--orange-dark-500);
    box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.56) inset;
    animation: up-down 1s ease-in-out infinite;
}
.overlay-more-games button.more-game-btn span{
    color: #ffffff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.overlay-more-games button.more-game-btn i{
    color: #ffffff;
    font-size: 20px;
}

.footer-theme-v2{
    background: #121926;
    border-top: 1px solid #00ffff29;
}
.footer-theme-v2 .footer-payment-method-v2{
    max-width: 1140px;
    width: 100%;
    display: flex;
    padding: 20px 0px 30px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    margin: 0 auto;
}
.footer-theme-v2 .footer-payment-method-v2 b{
    color: #D1D1D1;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding: 5px 0px;
}
.footer-theme-v2 .footer-payment-method-v2 .superparent-list-payment-method-v2{
    position: relative;
}
.footer-theme-v2 .footer-payment-method-v2 .superparent-list-payment-method-v2::before{
    top: 0;
    left: 0;
    background: linear-gradient(to right, #121926 0%, rgba(243, 250, 254, 0) 100%);
    content: "";
    position: absolute;
    z-index: 2;
    width: 100px;
    height: 100%;
}
.footer-theme-v2 .footer-payment-method-v2 .superparent-list-payment-method-v2::after{
    top: 0;
    right: 0;
    transform: rotateZ(180deg);
    background: linear-gradient(to right, #121926 0%, rgba(243, 250, 254, 0) 100%);
    content: "";
    position: absolute;
    z-index: 2;
    width: 100px;
    height: 100%;
}
.footer-theme-v2 .footer-payment-method-v2 .parent-list-payment-method-v2{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.footer-theme-v2 .footer-payment-method-v2 .list-payment-method-v2{
    display: flex;
    max-width: 1140px;
    width: 100%;
    padding: 15px 0px;
    align-items: center;
    gap: 15px;
    overflow: auto;
}
.footer-theme-v2 .footer-payment-method-v2 .list-payment-method-v2 .item-payment-method-v2{
    display: flex;
    width: 125px;
    padding: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #CDCDCD;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
    margin-left: 5px;
    margin-right: 5px;
    height:60px;
}
.footer-theme-v2 .footer-payment-method-v2 .list-payment-method-v2 .item-payment-method-v2 img{
    width: 80px;
    height: auto;
}
.footer-theme-v2 .footer-payment-method-v2 p{
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 100% */
}

.frame-social-media-v2{
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    justify-content: center;
}
.frame-social-media-v2 a{
    text-decoration: none !important;
    display: flex;
    padding: 4px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    background: var(--gray-800);
}
.frame-social-media-v2 a:hover{
    background: var(--gray-700);
}
.frame-social-media-v2 a img{
    width: 36px;
    height: 36px;
    border-radius: 8px;
}
/* burger menu */
.burger-menu-v3{
    position: relative;
}

.burger-menu-v3 .menu-pop-theme-v3{
    background: #FFF;
    position: absolute;
    z-index: 800;
    border-radius: 12px;
    box-shadow: 0 4px 12px 3px #00000030;
    margin-top: 18px;
    right: -5px;
}

.burger-menu-v3 .menu-pop-theme-v3 .arrow-up{
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #00ffff;
    position: absolute;
    top: -12px;
    right: 12px;
}

.burger-menu-v3 .menu-pop-theme-v3 ul{
    list-style: none;
    padding: 0;
    margin: 0;
	background: #121926;
    border-radius: 10px;
	border: 1px solid #00ffff;
}

.burger-menu-v3 .menu-pop-theme-v3 ul li{

}

.burger-menu-v3 .menu-pop-theme-v3 ul li a{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    padding: 15px 20px;
    min-width: 200px;
    transition: 0.2s;
    border-radius: 12px;
}

.burger-menu-v3 .menu-pop-theme-v3 ul li:hover a{
    background: #00ffff40;
}

.burger-menu-v3 .menu-pop-theme-v3 ul li:hover a .right b{
    color: #00ffff;
}

.burger-menu-v3 .menu-pop-theme-v3 ul li a .right{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    /* margin-left: 10px; */
}

.burger-menu-v3 .menu-pop-theme-v3 ul li a .right b{
    overflow: hidden;
    color: #fff;
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.14px;
}

.frame-info-product-v3{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 2rem; */
    margin: 0 auto;
    align-items: center;
}
.frame-info-product-v3 .bg-thumbnail-overlay{
    display: flex;
    height: 130px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /*background-image: linear-gradient(180deg, rgba(248, 250, 252, 0.00) 50%, #F8FAFC 100%), url('/assets/img/placeholder-img.png') !important;*/
	background-image:linear-gradient(180deg, rgb(17 24 39 / 70%) 50%, #111827 100%), url(/assets/img/bg-playpop.webp) !important;
    background-size: cover;
    width: 100%;
    justify-items: center;
}
.top-content-header-info-product-v2{
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    width: 100%;
    max-width: 1140px;
}
.left-info-product-v2{
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}
.left-info-product-v2 img{
    width: 80px;
    height: 80px;
    border-radius: 8px;
}
.properties-info-product-v2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    justify-content: center;
}
.properties-info-product-v2 h1{
    margin: 0px;
    color: #00ffff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    align-self: stretch;
}
.properties-info-product-v2 h2{
    color: var(--orange-dark-400);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    margin: 0px;
}
.right-info-product-v2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.right-info-product-v2 b{
    color: var(--gray-600);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}
.right-info-product-v2 .download-list-info-product-v2{
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}
.right-info-product-v2 .download-list-info-product-v2 a{
    border-radius: 8px;
    background: #0f2a49;
    border: 1px solid #0f2a49;
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--gray-800);
    text-decoration: none;
    transition: all .2s ease;
}
.right-info-product-v2 .download-list-info-product-v2 a:hover{
    border-radius: 8px;
    border: 1px solid #00ffff;
    background: #00ffff;
    backdrop-filter: blur(8px);
}
.right-info-product-v2 .download-list-info-product-v2 a i{
    font-size: 14px;
}
.right-info-product-v2 .download-list-info-product-v2 a i:hover{
	color:#000;
	
}
.right-info-product-v2 .download-list-info-product-v2 a span{
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.frame-info-product-v3 .header-info-product-v2 .bottom-content-header-info-product-v2{
    max-width: 1140px;
    width: 100%;
    display: none;
}

.frame-info-product-v3 .header-info-product-v2 .bottom-content-header-info-product-v2 p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    overflow: hidden;
    color: rgba(226, 232, 255, 0.80);
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 128.571% */
    margin-bottom: 0px;
}
.content-product {
	margin-top: 100px;
    padding: 0rem 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}
.frame-info-product-v3 .content-info-product-v2{
    display: flex;
    max-width: 1140px;
    width: 100%;
    align-items: flex-start;
    gap: 20px;
    margin-top: -100px;
    margin-bottom: 65px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2{
    display: flex;
    width: 422px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2{
    display: flex;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #0f2a49;
    background: #121926;
    backdrop-filter: blur(5px);
	-webkit-box-shadow:0px 0px 30px 10px rgba(0,132,255,0.5);
-moz-box-shadow: 0px 0px 30px 10px rgba(0,132,255,0.5);
box-shadow: 0px 0px 30px 10px rgba(0,132,255,0.5);
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .frame-title-sidebar{

}
.bottom-content-header-info-product-v2 p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    align-self: stretch;
    overflow: hidden;
    color: #fff;
    text-overflow: ellipsis;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .frame-title-sidebar h4{
    color: #fff;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .game-recomendation-v2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .game-recomendation-v2 li{
     width: 100%;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .game-recomendation-v2 li a{
    text-decoration: none;
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #0f2a49;
    background: #0f2a49;
    width: 100%;
    transition: all .2s ease;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .game-recomendation-v2 li a:hover{
    text-decoration: none;
    border: 1px solid #00ffff;
    background: #00ffff;
}

.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .game-recomendation-v2 li a:hover span{
    color: #000;
}

.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .game-recomendation-v2 li a img{
    width: 45px;
    height: 45px;
    border-radius: 5px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .game-recomendation-v2 li a span{
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .frame-content-sidebar{

}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .frame-content-sidebar img{
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .frame-content-sidebar p{
    color: var(--gray-500)!important;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    margin: 0;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .frame-content-sidebar a{
    color: var(--orange-dark-400);
    text-decoration: none;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .frame-content-sidebar span{
    color: var(--gray-600) !important;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 .frame-content-sidebar strong{
    color: var(--gray-700) !important; 
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1 0 0;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #121926;
    /* padding: 10px; */
    background: #121926;
	-webkit-box-shadow:0px 0px 50px 10px rgba(0,132,255,0.5);
-moz-box-shadow: 0px 0px 50px 10px rgba(0,132,255,0.5);
box-shadow: 0px 0px 50px 10px rgba(0,132,255,0.5);
}

.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .frame-social-media-v2{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .frame-social-media-v2 a{
    text-decoration: none !important;
    display: flex;
    padding: 4px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    background: #373737;
    border: 1px solid #4e4e4e;
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .frame-social-media-v2 a:hover{
    background: radial-gradient(100% 100% at 50% 0%, #434247 0%, #2A2B2F 100%);
    border: 1px solid var(--orange-dark-500);
}
.frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .frame-social-media-v2 a img{
    width: 36px;
    height: 36px;
    border-radius: 8px;
}
.transaksi-game-help .help-content{
    display: flex;
}
/* bantuan */
.transaksi-game-help{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    margin-top: 20px;
}
.transaksi-game-help .help-content{
    display: flex;
    align-items: center;
    gap: 5px;
    align-content: center;
    flex-direction: row;
}
.transaksi-game-help .help-content img{
    width: 20px;
    height: 20px;
    display: flex;
    align-self: stretch;
    /* filter: invert(90%) sepia(89%) saturate(52%) hue-rotate(347deg) brightness(111%) contrast(98%); */
}
.transaksi-game-help .help-content b{
    color: var(--gray-800);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
}
.transaksi-game-help p{
    color: var(--gray-600);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin: 0px;
    align-self: stretch;
}
.transaksi-game-help p a{
    color: var(--orange-dark-500);
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
}
/* bantuan end */
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-header-product-v2{
    background: linear-gradient(0deg, rgba(32, 41, 57, 0.30) 0%, rgba(32, 41, 57, 0.60) 100%), url("/assets/img/bg-playpop.webp");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    padding: 1rem;
    border-radius: 12px 12px 0px 0px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-header-product-v2 span{
    display: flex;
    width: 28px;
    height: 28px;
    padding: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #00ffff;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px; /* 100% */
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-header-product-v2 h3{
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-input-area-product-v2{
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    padding: 1rem;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-input-area-product-v2 .frame-input-inner{
    flex: 1 0 0;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-input-area-product-v2 .frame-input-inner .error{
    color: #E03F3F;
    font-size: 16px;
    display: block;
    margin-top: 5px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-input-area-product-v2 input{
    display: flex;
    padding: 16px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 8px;
    border: 1px solid var(--gray-400);
    background: var(--gray-25);
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
    color: var(--gray-800);
    text-align: center;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-input-area-product-v2 input:focus{
    border: 1px solid var(--orange-dark-400);
    background: var(--orange-dark-50);
    color: var(--gray-800);
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-input-area-product-v2 select{
    display: flex;
    padding: 16px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 8px;
    border: 1px solid var(--gray-400);
    background: var(--gray-25);
    color: var(--gray-800);
    outline: none !important;
    box-shadow: none !important;
    color:var(--gray-800);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}

.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-input-area-product-v2 select:hover{
    border: 1px solid var(--orange-dark-400);
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-input-area-product-v2 select:focus{
    border: 1px solid var(--orange-dark-400);
    background: var(--orange-dark-50)
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .how-to-product-v2{
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0rem 1rem 1rem 1rem;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .how-to-product-v2 p{
    color: var(--gray-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .how-to-product-v2 a{
    font-size: 24px;
    color: var(--gray-700);
    text-decoration: none;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .how-to-product-v2 a:hover {
    color: var(--orange-dark-500)
}
.mlseparator{
    position: relative;
}

.mlseparator input{
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.mlseparator:before{
    content: "(";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 700;
    position: absolute;
    margin-top: 12px;
    font-size: 20px;
    margin-left: 10px;
    color: #ffffff;
    z-index: 99;
}

.mlseparator:after{
    content: ")";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 700;
    position: absolute;
    /* margin-top: 6px; */
    font-size: 20px;
    right: 10px;
    top: 12px;
    color: #ffffff;
    z-index: 99;
}

.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    align-content: baseline;
    gap: 15px;
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 12px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li{
	padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    border-radius: 8px;
    border: 1px solid #00ffff29;
    background: #121926;
    cursor: pointer;
}

.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li:hover .pricing-icon {
    background: linear-gradient(90deg, #8b5cf6, #c084fc);
}

.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li.active{
    border-radius: 8px;
    border: 1px solid var(--orange-dark-400);
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li.active b{
    color: var(--gray-800)!important;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li.active i{
    color: #fff!important;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li.active .pricing-icon .pricing-detil small{
   color: #fff!important;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li.active .pricing-icon .pricing-detil span{
    color: #fff!important;
    font-weight: 600;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li.active .product-name-v3{
    transition: all .2s ease;
    background: #121926;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li.active .pricing-icon{ 
    background: #121926;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li b{
    color: #ffffff;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 146.667% */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
	margin-left: 10px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li .product-name-v3 {
    display: flex;
    padding: 12px 12px 8px 12px;
    align-items: flex-start;
    align-self: stretch;
    justify-content: start;
    min-height: 60px;
    max-height: 80px;
    border-radius: inherit;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li .pricing-icon{
    display: flex;
    background: linear-gradient(90deg, #8b5cf6, #c084fc);
    align-items: center;
    align-self: stretch;
    justify-content: space-between;
    border-radius: inherit;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    transition: all .2s ease;
    height: 50px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li .pricing-icon i{
    color: var(--gray-600);
    font-size: 14px;
    display: flex;
    align-content: center;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li .pricing-icon .pricing-detil{
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li .pricing-icon .pricing-detil small{
    color: #FF2D2D;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: line-through;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li .pricing-icon .pricing-detil span{
    color: #fff;
    font-size: 18px;
    font-style: normal;
    letter-spacing: 0.4px;
    font-weight: 600;
    line-height: normal;
}



.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method{
    width: 100%;
    padding: 1rem;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box{
    background: var(--gray-50);
    margin-bottom: 18px;
    border-radius: 8px !important;
    border: 1px solid var(--gray-400);
    transition: all .2s ease;

}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box:hover{
    border: 1px solid var(--orange-dark-500);
}

.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box.active{
    border: 1px solid var(--orange-dark-500);
}

.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .header{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    /* padding: 11px 15px; */
    padding: 18px 24px;
    background: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: pointer;
    position: relative;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .header .left{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    /* width: 100%; */
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .header .left img{
    height: 23px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .header .left b{
    color: var(--gray-800);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .header .left b.badge-promotion-on-head{
    display: flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 33px;
    background: var(--orange-dark-500);
    color: var(--gray-50);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 13px; /* 92.857% */
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .header .right{
    display:flex;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .header .right b{
    color: var(--gray-800);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: right;
}

.tidak-tersedia {
    color: var(--gray-400);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: right;
    font-style: italic;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment{
    display: none;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul{
    list-style: none;
    display: flex;
    padding: 1rem;
    justify-content: space-between;
    align-content: space-between;
    gap: 10px;
    align-self: stretch;
    background: var(--gray-50);
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: row;
    margin-bottom: 0px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li{
    display: flex;
    padding: 10px;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    background: #fff;
    width: calc(51% - 15px);
    box-sizing: border-box;
    cursor: pointer;
    justify-content: space-between;
    border: 1px solid var(--gray-300);
    position: relative;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li .ribbon__content{
    position: absolute;
    right: 0;
    display: flex;
    padding: 2px 6px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid var(--Orange-dark-400, #FF692E);
    background: linear-gradient(270deg, #FF4405 0%, #FF7539 100%);
    color: var(--BaseWhite, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    top: -12px;
    right: 10px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li:hover{
    border: 1px solid var(--orange-dark-400);
    background: var(--orange-dark-25);
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li.active{
    border: 1px solid var(--orange-dark-400);
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li.disabled{
    border: 1px solid var(--gray-300);
    background: var(--gray-200);
    pointer-events: none !important;
    opacity: 0.8;
}

.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li .info-top{
    padding: 16px 0px;
    width: 160px;
    border-radius: 4px;
    display: flex;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li .info-top img{
    height: 24px;
    flex-shrink: 0;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li .info-top b{
    color: #514A6D;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li .info-bottom{
    display: flex;
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li .info-bottom b{
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 400;
    text-align: right;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li .info-bottom .channel-name {
    color: var(--gray-400);  
    text-align: right;
    font-size: 12px;
}

.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li .info-bottom .value-channel{
    color: var(--gray-800);
    font-weight: 600;
    font-size: 16px;
    text-align: right;
}

.info-bottom .channel-fee {
    font-size: 12px;
    color: var(--gray-700);
    text-align: right;
}

.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .short-payment-support-info{
    display: flex;
    padding: 1rem;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    justify-content: space-between;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .short-payment-support-info img{

}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .short-payment-support-info .banks-payment-support-lists{
    display: flex;
    align-items: center;
    gap: 15px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .short-payment-support-info .banks-payment-support-lists img{
    height: 15px;
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .short-payment-support-info a.open-button-action-payment{
    color: var(--gray-700);
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .short-payment-support-info a.open-button-action-payment i{
    
}
.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .short-payment-support-info .channel-not-available{

}


/* AREA KONFIRMASI PEMBAYARAN */
.konfirmasi-pembelian-area-theme-v2{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    align-self: stretch;
    padding: 1rem 1rem 0 1rem ;
    background: #fff;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2{
    width: 100%;
    /* padding-top: 20px; */
    /* gap:  20px; */
    /* flex: 1; */
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .header-konfirmasi-pembelian-input-theme-v2{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .header-konfirmasi-pembelian-input-theme-v2 i{
    color: var(--orange-dark-500);
    font-size: 14px;
    transform: rotate(-37deg);
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .header-konfirmasi-pembelian-input-theme-v2 b{
    color: var(--gray-800);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 21px; /* 131.25% */
    flex: 1 0 0;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .form-frame-v2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
    width: 100%;
    padding-bottom: 20px;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .form-frame-v2 label{
    display: flex;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    color: var(--gray-800);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .form-frame-v2 input{
    display: flex;
    padding: 10px 12px;
    align-items: flex-end;
    gap: 10px;
    align-self: stretch;
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--gray-400);
    color: var(--gray-800);
    background: var(--gray-25);
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline:none !important;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .form-frame-v2 input::placeholder{
    color: var(--gray-500);
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .form-frame-v2 input:hover{
    border: 1px solid var(--orange-dark-500);
}

.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .form-frame-v2 input:focus{
    background: var(--orange-dark-25);
    border: 1px solid var(--orange-dark-500);
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .form-frame-v2 input::-webkit-outer-spin-button,
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .form-frame-v2 input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .form-frame-v2 small{
    color: var(--gray-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .form-frame-v2 input:hover {
    border: 0px;
    border: 1px solid var(--orange-dark-500);
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .form-frame-v2 .wrong-email-badge{
    margin: 0px;
    color: #ff5757;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    display: none;
}

.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .seaparator-frame-v2{
    position: relative;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .seaparator-frame-v2::before{
    content: " ";
    width: 145px;
    height: 1px;
    position: absolute;
    background: #fff;
    z-index: 99;
    top: 10px;
    left: 0;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .seaparator-frame-v2 span{
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .seaparator-frame-v2::after{
    content: " ";
    width: 145px;
    height: 1px;
    position: absolute;
    background: #fff;
    z-index: 99;
    top: 10px;
    right: 0;
}

.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2{
    width: 100%;
}

.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2 table{
    width: 100%;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2 table tr{
    border-bottom: 1px solid var(--gray-300);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2 table tr td{
    color: var(--gray-600);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    padding: 10px;
    padding-left: 0px;
    padding-right: 0px;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2 table tr td b{
    color: var(--gray-800);
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px; /* 150% */
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2 table tr td:first-child{
    text-align: left;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2 table tr td:last-child{
    text-align: right;
    /* width: 50%; */
    display: flex;
    justify-content: flex-end;
}
.konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2 table tr td img {
    max-height: 20px;
    padding-right: 8px;
}
.payment-total-wrapper .area-payment-final-preview{
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        width: 100%;
        align-items: center;
        padding: 0px 16px;
}

.payment-total-wrapper .discount-row-v3{
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        width: 100%;
        align-items: center;
        padding: 0px 16px;
}
.payment-total-wrapper .discount-row-v3 span{
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-700);
}
.payment-total-wrapper .discount-row-v3 b{
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-700);
}
.frame-denom-info-product-v2 .denom-info-product-v2 .payment-total-wrapper .area-payment-final-preview .logo-payment-final-preview{
    display: flex;
    padding: 15px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    background: #FFF;
    width: 104px;
}
.frame-denom-info-product-v2 .denom-info-product-v2 .payment-total-wrapper .area-payment-final-preview .logo-payment-final-preview img{
    height: 30px;
    max-width: 100%;
    object-fit: contain;
}
.frame-denom-info-product-v2 .denom-info-product-v2 .payment-total-wrapper .area-payment-final-preview b{
    color: var(--gray-800);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    display: flex;
}

.frame-denom-info-product-v2 .denom-info-product-v2 .payment-total-wrapper .area-payment-final-preview span {
    color: var(--gray-800);
    font-weight: 600;
    font-size: 18px;
}

.frame-denom-info-product-v2 .konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2 span{
    color: var(--gray-800);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    display: flex;
}
.frame-denom-info-product-v2 .denom-info-product-v2 .payment-total-wrapper {
    border-top: dashed 2px var(--orange-dark-300);
    border-bottom: dashed 2px var(--orange-dark-300);
    background: var(--orange-dark-25);
    display: flex;
    padding: 14px 0px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    flex-direction: column;
    gap: 6px;
}
.submit-pembelian-area-theme-v2{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 2rem 1rem;
    width: 100%;
}
.submit-pembelian-area-theme-v2 button{
    display: flex;
    padding: 1rem 3rem;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid #FF4405;
    background: var(--orange-dark-400);
    box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.56) inset;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    align-content: center;
    transition: all .2s ease;
    cursor: pointer;
    color: #fff;
}
.submit-pembelian-area-theme-v2 button.disabled{
    border: 1px solid var(--gray-300);
    pointer-events: none !important;
    color: #fff;
    background: var(--gray-300);
}
.submit-pembelian-area-theme-v2 button:hover{
    border: 1px solid #fbba24;
    background: var(--orange-dark-500);
    box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.56) inset;
}
.submit-pembelian-area-theme-v2 .transaksi-aman-logo{
    display: flex;
    align-items: center;
    gap: 20px;
}
.submit-pembelian-area-theme-v2 .transaksi-aman-logo img{
    width: 87px;
    height: 28.67px;
    object-fit: cover;
}

.area-insert-coupons-before-checkout{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
    margin-top: 20px;
    margin-bottom: 20px;
}
.area-insert-coupons-before-checkout b{
    height: 24px;
    color: var(--gray-800);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}
.area-insert-coupons-before-checkout b a.coupon-field-trigger{
    color: var(--orange-dark-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none !important;
}
.area-insert-coupons-before-checkout b a.coupon-field-trigger:hover{
    
}

.area-insert-coupons-before-checkout .frame-area-insert-coupon{
    display: flex;
    padding: 10px 14px;
    align-items: center;
    align-self: stretch;
    border: 1px solid var(--gray-400);
    background: var(--gray-50);
    position: relative;
    border-radius: 8px;
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon input{
    width: 100%;
    background-color: #2F2F3300 !important;
    border: 0;
    padding: 0;
    color: var(--gray-700);
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon:focus-within{
    background: var(--orange-dark-25)!important;
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon input:focus{
    background: var(--orange-dark-25) !important;
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon input::placeholder{
    color: var(--gray-500);
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon:hover{
    border: 1px solid var(--orange-dark-500);
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon:focus-within{
    border: 1px solid var(--orange-dark-500);
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon a.frame-coupon-discount-applied{
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: var(--orange-dark-400);
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    outline: none !important;
    box-shadow: none !important;
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon a.frame-coupon-discount-applied:hover{
    background: var(--orange-dark-600);
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon a.frame-coupon-discount-applied.removed_disc{
    background: #ff0000;
    color: #fff;
}
.area-insert-coupons-before-checkout .parent-frame-area-insert-coupon{
    width: 100%;
    display: none;
}
.area-insert-coupons-before-checkout .frame-coupon-discount-errormsg{
    color: var(--gray-400);
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: 16.5px; /* 150% */
}

b.frame-coupon-discount-errormsg .discount-amount {
    color: var(--gray-400);
    font-size: 16px;
}
.area-insert-coupons-before-checkout .frame-coupon-discount-errormsg.success{
    color: var(--orange-dark-500);
    font-weight: 600;
}
.area-insert-coupons-before-checkout .frame-coupon-discount-errormsg.failed{
    color: #FF1A1A !important;
}

input.user_id.first-input.inputuserandserver::placeholder {
    color: var(--gray-500);
}

.frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-input-area-product-v2 input:hover{
    border: 1px solid var(--orange-dark-400);
}

.transaction-progress-v2{
    display: flex;
    max-width: 1140px;
    /* padding: 20px; */
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding: 1rem;
    /* border-radius: 8px; */
    /* border: 1px solid rgba(255, 255, 255, 0.20); */
    /* background: rgba(11, 13, 25, 0.20); */
    margin: 0 auto;
    margin-top: 31px;
    margin-bottom: 60px;
}
.transaction-progress-v2 h1{
    color: var(--gray-800);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* side mobile */
.wrapper-info-product {
    width: 100%;
}

.stepper-wrapper {
    display: flex;
    width: 100%;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
}
.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

@media (max-width: 768px) {
    .stepper-item {
        font-size: 12px;
    }
}
  
.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--orange-dark-500);
    width: 100%;
    top: 16px;
    left: -50%;
    z-index: 2;
}
.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #C5CACE;
    width: 100%;
    top: 16px;
    left: 50%;
    z-index: 3;
} 
.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gray-400);
    margin-bottom: 6px;
    font-size: 13px;
    color: #fff;
}
.stepper-item .step-name {
    color: var(--gray-400);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
} 
.stepper-item.completed .step-name{
    color: var(--orange-dark-500);
}
.stepper-item.active {
    font-weight: bold;
}  
.stepper-item.completed .step-counter {
    background-color: var(--orange-dark-400);
    color: #fff;
}  
.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--orange-dark-400);
    width: 100%;
    top: 16px;
    left: 50%;
    z-index: 3;
}
.stepper-item:first-child::before {
    content: none;
}
.stepper-item:last-child::after {
    content: none;
}


.frame-transaction-progress-details{
    width: 60%;
    display: flex;
    align-items: center;
    gap: 25px;
    align-self: stretch;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border: solid 1px var(--gray-400);
    border-radius: 8px;
}
.payment-transaction-progress-details{
    display: flex;
    width: 40%;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    border: 1px solid var(--gray-400);
}
.payment-transaction-progress-details .header-payment-transaction-detail{
    display: flex;
    height: 54px;
    padding: 15px 20px;
    align-items: center;
    gap: 27px;
    align-self: stretch;
    background: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid var(--gray-400);
}
.payment-transaction-progress-details .header-payment-transaction-detail img{
    height: 28px;
    padding: 4px 10px;
    background: #fff;
    border-radius: 4px;
}
.payment-transaction-progress-details .body-payment-transaction-detail{
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    background: var(--gray-25);
}
.payment-transaction-progress-details .body-payment-transaction-detail .amount-must-pay{
    color: var(--gray-800);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}
.payment-transaction-progress-details .body-payment-transaction-detail .amount-must-pay span{
    color: var(--orange-dark-500);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
}

.payment-transaction-progress-details .body-payment-transaction-detail .virtual-account-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.payment-transaction-progress-details .body-payment-transaction-detail .virtual-account-info small{
    /* color: #FFF; */
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 150% */
}
.payment-transaction-progress-details .body-payment-transaction-detail .virtual-account-info .virtual-account-info-number{
    display: flex;
    align-items: center;
    gap: 10px;
}
.payment-transaction-progress-details .body-payment-transaction-detail .virtual-account-info .virtual-account-info-number b{
    /* color: #FFF; */
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.5px;
}
.payment-transaction-progress-details .body-payment-transaction-detail .virtual-account-info .virtual-account-info-number a{
    border-radius: 5px;
    border: 1px solid var(--gray-400);
    background: #00;
    display: flex;
    padding: 5px;
    align-items: center;
    gap: 10px;
    color: var(--orange-dark-400);
    font-size: 12px;
    text-decoration: none;
    transition: all .2s ease;
}
.payment-transaction-progress-details .body-payment-transaction-detail .virtual-account-info .virtual-account-info-number a:hover{
    background: var(--orange-dark-400);
    color: #fff;
}

.payment-transaction-progress-details .body-payment-transaction-detail .tempo-time-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.payment-transaction-progress-details .body-payment-transaction-detail .tempo-time-info small{
    color: var(--gray-700);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 150% */
}
.payment-transaction-progress-details .body-payment-transaction-detail .tempo-time-info b{
    color: var(--gray-800);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}
.payment-transaction-progress-details .body-payment-transaction-detail .tempo-time-info b span{
    color: var(--orange-dark-500);
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.frame-transaction-progress-details .info-transaction-progress-details{
    
}

.frame-transaksi-game-preview{
    margin: 0 auto;
}
.frame-transaksi-game-preview .transaksi-game-preview{
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    flex-direction: row;
}
.frame-transaksi-game-preview .transaksi-game-preview img{
    width: 75px;
    height: 75px;
    border-radius: 8px;
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-preview .tgp-detail{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.frame-transaksi-game-preview .transaksi-game-preview .tgp-detail{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.frame-transaksi-game-preview .transaksi-game-preview .tgp-detail small{
    color: var(--gray-600);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 150% */
}
.frame-transaksi-game-preview .transaksi-game-preview .tgp-detail b{
    overflow: hidden;
    color: var(--gray-800);
    text-overflow: ellipsis;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px; /* 125% */
}
.frame-transaksi-game-preview .transaksi-game-preview .tgp-detail span{
    color: var(--gray-800);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

/* CRK2 */
.frame-transaksi-game-preview .transaksi-game-detail{
    margin-top: 20px;
}

.frame-transaksi-game-preview .transaksi-game-detail table{
    width: 100%;
}

.frame-transaksi-game-preview .transaksi-game-detail table tr{
    border: 0px;
    /* border-bottom: 1px solid #ebf1f5; */
    border-bottom: 1px solid var(--gray-300);
    padding: 10px;
}

.frame-transaksi-game-preview .transaksi-game-detail table tr td{
    /* background: white; */
    color: var(--gray-600);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 150% */
}

.frame-transaksi-game-preview .transaksi-game-detail table tr td b{
    color: var(--gray-800);
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.5px; /* 150% */
    /* padding: 10px; */
}

.frame-transaksi-game-preview .transaksi-game-detail table tr td:first-child{
    text-align: left;
    padding: 12px;
    padding-left: 0px;
}

.frame-transaksi-game-preview .transaksi-game-detail table tr td:last-child{
    text-align: right;
    padding-right: 0px;
    padding: 12px 0px;
}

.frame-transaksi-game-preview .transaksi-game-detail table tr td .trx-number-info{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.frame-transaksi-game-preview .transaksi-game-detail table tr td .frame-flex-end{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
}
.frame-transaksi-game-preview .transaksi-game-detail table tr td .badge-self{
    justify-content: flex-end;
}
.frame-transaksi-game-preview .transaksi-game-detail table tr td .trx-number-info b{
    
}
.frame-transaksi-game-preview .transaksi-game-detail table tr td .trx-number-info a{
    border-radius: 5px;
    border: 1px solid var(--gray-400);
    background: #fff;
    display: flex;
    padding: 5px;
    align-items: center;
    gap: 10px;
    color: var(--orange-dark-500);
    font-size: 12px;
    text-decoration: none;
    transition: all .2s ease;
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-detail table tr td .trx-number-info a:hover{
    background: var(--orange-dark-500);
    border: 1px solid var(--orange-dark-500);
    color: #fff;
}

.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-suggestion{
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid var(--gray-400);
    background: var(--gray-100);
    margin-top: 20px;
}

.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-suggestion p{
    color: var(--gray-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    flex: 1 0 0;
    margin: 0;
}

.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-help{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    margin-top: 20px;
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-help .help-content{
    display: flex;
    align-items: center;
    gap: 5px;
    align-content: center;
    flex-direction: row;
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-help .help-content img{
    width: 20px;
    height: 20px;
    display: flex;
    align-self: stretch;
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-help .help-content b{
    color: var(--gray-800);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px; /* 150% */
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-help p{
    color: var(--gray-800);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin: 0px;
    align-self: stretch;
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-help p a{
    color: var(--orange-dark-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
}


.panduan-simple-list{
    width: 100%;
}
.panduan-simple-list .heading{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.panduan-simple-list .heading i{
    font-size: 18px;
    color: var(--gray-800);
}
.panduan-simple-list .heading b{
    color: var(--gray-800);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.panduan-simple-list ol{
    padding: 0;
    margin: 0;
    padding-left: 14px;
}
.panduan-simple-list ol li{
    color: var(--gray-700);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}
.panduan-simple-list ol li:last-child{
    margin-bottom: 0px;
}
.panduan-simple-list .panduan-lengkap{
    margin-top: 20px;
}
.panduan-simple-list .panduan-lengkap .btn-panduan-lengkap{
    display: flex;
    padding: 8px 14px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    border: solid 1px var(--orange-dark-400);
    background: var(--orange-dark-100);
    color: var(--orange-dark-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    width: 10rem;
    text-align: center;
    margin: 0 auto;
    transition: all .2s ease;
}
.panduan-simple-list .panduan-lengkap .btn-panduan-lengkap:hover{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.14) 100%), rgba(255, 255, 255, 0.05);
}
.panduan-simple-list .panduan-lengkap .btn-panduan-lengkap:active{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.14) 100%), rgba(255, 255, 255, 0.05);
}
.panduan-simple-list .panduan-lengkap .btn-panduan-lengkap:focus{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.14) 100%), rgba(255, 255, 255, 0.05);
}

.accrodion-how-to{
    margin-bottom: 20px;
}
.accrodion-how-to .child-accordion{
    /* background: white; */
    /* border: 1px solid #e6e6e6; */
    border: solid 1px var(--gray-300);
    border-radius: 6px;
    margin-bottom: 7px;
    background: var(--gray-50);
}
.accrodion-how-to .child-accordion .header-accordion{
    color: var(--gray-800);
    font-size: 12px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 6px;
    transition: all .2s ease;
}
.accrodion-how-to .child-accordion .header-accordion:hover{
}
.accrodion-how-to .child-accordion .header-accordion:hover i{
    color: var(--orange-dark-500);
}
.accrodion-how-to .child-accordion .content-accordion{
    /* margin-top: 13px; */
    /* padding-top: 15px; */
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}
.accrodion-how-to .child-accordion .content-accordion hr{
    border: 0;
    border-top: 1px solid #a1a1a1;
    margin-top: 0px;
    border-top: 2px solid rgba(255, 255, 255, 0.20);
    margin-bottom: 10px;
}
.accrodion-how-to .child-accordion .content-accordion ul{
    padding: 0;
    margin: 0;
    padding-left: 14px;
}
.accrodion-how-to .child-accordion .content-accordion ol{
    padding: 0;
    margin: 0;
    padding-left: 14px;
}
.accrodion-how-to .child-accordion .content-accordion li{
    margin: 0 !important;
    padding: 0;
    /* margin-bottom: 10px !important; */
    color: var(--gray-800);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}
.accrodion-how-to .child-accordion .content-accordion li a{
    
}
.accrodion-how-to .child-accordion .content-accordion li a:hover{
    
}

.transaksi-aman{
    display: flex;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    gap: 26px;
    align-self: stretch;
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: 1px solid var(--gray-400);
}
.transaksi-aman img{
    height: 38px;
}

.area-qrris{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 30px; */
}
.area-qrris img{
    width: 171px;
    height: 171px;
    margin-bottom: 20px;
}
.area-qrris .download-qrcode{
    display: flex;
    padding: 6px 14px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    border: 1px solid var(--orange-dark-400);
    background: var(--orange-dark-400);
    box-shadow: 0px 0px 6px 0px rgba(255, 255, 255, 0.56) inset;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none !important;
    transition: 0.2s;
}

.area-qrris .download-qrcode:hover{
    border: 1px solid var(--orange-dark-400);
    background: var(--orange-dark-500);
    box-shadow: 0px 0px 6px 0px rgba(255, 255, 255, 0.56) inset;
}
.area-qrris .download-qrcode i{
   font-size: 16px;
}

.frame-dompet{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}
.frame-dompet img{
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}
.frame-dompet .btn-selesaikan-pembayaran{
    display: flex;
    padding: 6px 14px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    border: 1px solid var(--orange-dark-400);
    background: var(--orange-dark-400);
    box-shadow: 0px 0px 6px 0px rgba(255, 255, 255, 0.56) inset;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none !important;
}
.frame-dompet .btn-selesaikan-pembayaran:hover{
    border: 1px solid var(--orange-dark-400);
    background: var(--orange-dark-500);
    box-shadow: 0px 0px 8px 0px rgb(255 255 255) inset;
}
.frame-dompet .btn-selesaikan-pembayaran i{
    font-size: 16px;
}


/* SINGLE INFO PAYMENT CENTER */
.single-payment-finish-wrapper .frame-transaksi-game-preview{
    /* margin: 0 auto; */
    width: 600px;
    margin: 0 auto;
    margin-bottom: 20px;
}
/*
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-preview{
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-preview img{
    width: 75px;
    height: 75px;
    border-radius: 8px;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-preview .tgp-detail{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-preview .tgp-detail small{
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; 
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-preview .tgp-detail b{
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px; 
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-preview .tgp-detail span{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; 
}


.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail{
    margin-top: 20px;
}

.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table{
    width: 100%;
}

.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr{
    border: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr td{
    background: transparent;
    color: var(--gray-600);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
}

.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr td b{
    color: #FFF;
    text-align: right;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px; 
}

.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr td:first-child{
    text-align: left;
    padding-left: 0px;
    padding: 12px;
    padding-left: 0px;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr td:last-child{
    text-align: right;
    padding-right: 0px;
}

.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr td .trx-number-info{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr td .frame-flex-end{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr td .badge-self{
    justify-content: flex-end;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr td .trx-number-info b{
    
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr td .trx-number-info a{
    border-radius: 5px;
    border: 1px solid #fff;
    background: #000;
    display: flex;
    padding: 5px;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    transition: all ease .2s;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr td .trx-number-info a:hover{
    background: var(--orange-dark-500);
    color: #13164E;
}

.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-suggestion{
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(17, 8, 57, 0.80);
    margin-top: 20px;
}

.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-suggestion p{
    color: var(--gray-600);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    flex: 1 0 0;
    margin: 0;
}

.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-help{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    margin-top: 20px;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-help .help-content{
    display: flex;
    gap: 5px;
    flex-direction: row;
    align-items: center;
    align-content: center;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-help .help-content img{
    width: 20px;
    height: 20px;
    display: flex;
    align-self: stretch;
    filter: invert(90%) sepia(89%) saturate(52%) hue-rotate(347deg) brightness(111%) contrast(98%);
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-help .help-content b{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-help p{
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; 
    margin: 0px;
    align-self: stretch;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-help p a{
    color: var(--orange-dark-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    text-decoration: none;
}
*/
/* CEK TRANSAKSI SPECIAL CSS */
.cek-transaksi-frame{
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    width: 100%;
    padding: 1rem;
    /* max-width: 1140px; */
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    /* justify-content: center; */
    /* justify-items: center; */
    /* align-items: center; */
    align-content: center;
}

.cek-transaksi-header{
    display: flex;
    width: 100%;
    max-width: 1140px;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    /*background-overlay: url('../../img/cektransaksi-powerplay-bg.webp');*/
    border: 1px solid var(--gray-400);
    border-radius: 12px;
    background: var(--gray-25);
    background-size: cover;
    background-position: right;
}
.cek-transaksi-header h1{
    color: var(--gray-800);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}
.cek-transaksi-header .frame-frame-search-trx{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search{
    position: relative;
}
.cek-transaksi-header .frame-frame-search-trx .on-error-text{
    color: red;
    font-size: 14px;
    font-style: italic;
    display: none;
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search span{
    position: absolute;
    color: var(--gray-800);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    top: 10px;
    left: 16px;
    z-index: 99;
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search input{
    display: flex;
    width: 414px;
    height: 47px;
    padding: 12px 12px;
    align-items: center;
    gap: 10px;
    text-indent: 115px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--gray-800);
    border-radius: 8px;
    background: var(--gray-100);
    outline: none!important;
    border: 1px solid var(--gray-400);
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search input:hover{
    border: 1px solid var(--orange-dark-400);
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search input:focus{
    border: 1px solid var(--orange-dark-400);
    background: var(--orange-dark-50);
    color: var(--gray-800);
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search input::placeholder{
    color: var(--gray-500) !important;
}
.cek-transaksi-header .frame-frame-search-trx .hit-q-trx{
    display: flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid var(--orange-dark-400);
    background: var(--orange-dark-400);
    box-shadow: 0px 0px 6px 0px rgba(255, 255, 255, 0.56) inset;
    transition: all .2s ease;
}
.cek-transaksi-header .frame-frame-search-trx .hit-q-trx:hover{
    border: 1px solid var(--orange-dark-500);
    background: var(--orange-dark-500);
    box-shadow: 0px 0px 8px 0px rgb(255 255 255) inset;
}
.cek-transaksi-header .frame-frame-search-trx .hit-q-trx i{
    font-size: 16px;
    color: #fff !important;
}
.cek-transaksi-header .frame-frame-search-trx .hit-q-trx span{
    color: #fff !important;
    text-align: center !important;
    font-size: 16px  !important;
    font-style: normal  !important;
    font-weight: 700  !important;
    line-height: normal  !important;
}
.cek-transaksi-header .frame-footer-search-trx{

}
.cek-transaksi-header .frame-footer-search-trx p{
    margin: 0;
    color: var(--gray-600) !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 22px !important;
}
.cek-transaksi-header .frame-footer-search-trx p a{
    color: var(--orange-dark-500) !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 22px !important;
    text-decoration-line: underline !important;
}

.cek-transaksi-content{
    display: flex;
    width: 100%;
    max-width: 1140px;
    padding: 2rem 1rem 3rem 1rem;
    gap: 1rem;
    border-radius: 12px;
    border: 1px solid var(--gray-400);
    background: #fff;
    /* align-items: center; */
    flex-direction: column;
}
.cek-transaksi-content .simulate-info-header{
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.cek-transaksi-content .simulate-info-header h5{
    color: var(--gray-800);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.cek-transaksi-content .stepper-wrapper{
    /* margin-left: auto !important; */
    margin: 0 auto;
    width: 600px;
}
.cek-transaksi-content .stepper-wrapper .stepper-item .step-name{
    font-size: 12px;
}
.cek-transaksi-content .frame-transaksi-game-preview{
    width: 600px;
    margin: 0 auto;
}

.cek-transaksi-content h6{
    color: var(--gray-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}
.cek-transaksi-content-table-wrapper{
    border: 1px solid var(--gray-400);
    border-radius: 4px;
    width: 100%;
}
.cek-transaksi-content table{
    width: 100%;
    /* border: 1px solid #D9DFE2; */
}
.cek-transaksi-content table thead{
    background: var(--gray-600);
}
.cek-transaksi-content table thead tr{
    
}
.cek-transaksi-content table thead tr th:first-child{
    border-top-left-radius: 4px;
    /* border-left: 1px solid #D9DFE2; */
}
.cek-transaksi-content table thead tr th:last-child{
    border-top-right-radius: 4px;
    /* border-right: 1px solid #D9DFE2;  */
}
.cek-transaksi-content table thead tr th{
    padding: 12px 8px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    /* border-top: 1px solid #D9DFE2; */
}
.cek-transaksi-content table tbody{    
}
.cek-transaksi-content table tbody tr{
    
}
.cek-transaksi-content table tbody tr td{
    padding: 10px 8px;
    color: var(--gray-800);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cek-transaksi-content .cek-transaksi-content-table-wrapper table tbody tr:nth-child(odd) td {
        background: var(--gray-100);
}

.cek-transaksi-content table tbody tr:nth-child(even) td {
}

.cek-transaksi-content table tbody tr td .badge-self{
    display: flex;
    padding: 2px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    border-radius: 6px;
    width: max-content;
}

.cek-transaksi-content table tbody tr td .badge-self.as-canceled{
    color: #F00;
    background: #FFC7C7;
}
.cek-transaksi-content table tbody tr td .badge-self.as-completed{
    color: #03AC0E;
    background: #D5FFDD;
}
.cek-transaksi-content table tbody tr td .badge-self.as-pending{
    color: #AB8103;
    background: #FFF4D5;
}

.cek-transaksi-content .frame-transaksi-game-preview .transaksi-game-detail{
    margin-top: 20px;
}

.cek-transaksi-content .frame-transaksi-game-preview .transaksi-game-detail table{

}

.cek-transaksi-content .frame-action-button-transaksi-game{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    margin-top: 20px;
}

.cek-transaksi-content .frame-action-button-transaksi-game a{
    display: flex;
    padding: 9px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    color: #fff;
    border: 1px solid var(--orange-dark-400);
    background: var(--orange-dark-400);
    box-shadow: 0px 0px 6px 0px rgba(255, 255, 255, 0.56) inset;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px;
    transition: all .2s ease;
    text-decoration: none !important;
}
.cek-transaksi-content .frame-action-button-transaksi-game a:hover{
    border: 1px solid #fbba24;
    background: var(--orange-dark-500);
    box-shadow: 0px 0px 8px 0px rgb(255 255 255) inset;
}

.cek-transaksi-content .transaksi-game-help .help-content{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}
.cek-transaksi-content .transaksi-game-help .help-content img{
    width: 20px;
    height: 22px;
    margin-right: 15px;
}
.cek-transaksi-content .transaksi-game-help .help-content b{
    color: var(--gray-800);
    font-size: 18px;
}
.cek-transaksi-content .transaksi-game-help .help-content p{
    color: var(--gray-800);
    font-size: 14px;
}
.cek-transaksi-content .transaksi-game-help .help-content a{
    color: var(--orange-dark-400);
    text-decoration: none;
    font-weight: 600;
}
.cek-transaksi-content-resp {
    width: 100%;
    max-width: 1140px;
}

.cek-transaksi-content-resp .single-payment-finish-wrapper{
    margin: 0 auto;
    width: 100%;
    max-width: 1140px;
    margin-top: 20px;
}

.content-with-sidebar-static{
    display: flex;
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.content-with-sidebar-static .simple-content-static{
    width: 100%;
    max-width: 1140px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
    border-radius: 8px;
    border: solid 1px var(--gray-300);
    background: #ffff;
    padding: 20px;
    min-height: 1000px;
}
.content-with-sidebar-static .simple-content-static .page-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.content-with-sidebar-static .simple-content-static .page-header h1{
    color: var(--grey-800);
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    align-self: stretch;
    margin: 0;
}
.content-with-sidebar-static .simple-content-static .content{
    width: 100%;
}
.content-with-sidebar-static .simple-content-static .content img{
    max-width: 100%;
}

.content-with-sidebar-static .simple-content-static .content p{
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0px;
}
.content-with-sidebar-static .simple-content-static .content a{
    color: var(--orange-dark-500)!important;
}
.content-with-sidebar-static .simple-content-static .content h1{
    font-size: 24px;
    font-weight: 600;
    line-height: 38px; /* 158.333% */

}
.content-with-sidebar-static .simple-content-static .content h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 36px; /* 163.636% */
}
.content-with-sidebar-static .simple-content-static .content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 38px; /* 190% */
}
.content-with-sidebar-static .simple-content-static .content h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 38px;
}

.area-help{
    position: relative;
}
.popover-custom{
    position: absolute;
    background: #ffffff;
    z-index: 1000;
    padding: 10px;
    border-radius: 0.5em;
    border: 1px solid #20293a;
    top: 40px;
    left: -95px;
    /* box-shadow: 0px 0px 13px 3px #484848; */
    display: none;
    width: 235px;
}
.popover-custom p{
    margin-top: 10px !important;
}

.popover-custom:after, 
.popover-custom:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.popover-custom:after {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff;
    border-width: 11px;
    margin-left: -18px;
}
.popover-custom:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: #20293a;
    border-width: 13px;
    margin-left: -20px;
}
.popover-image{
    /* width: 240px !important; */
    cursor: pointer;
    width: 100% !important;
}

.modal-content{
    background-color: #202939;
}
.modal-header{
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #3b424f;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}
.modal-header button{
    background: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    border: none !important;
    color: white !important;
    padding: 0 !important;
    font-size: 34px !important;
    /* height: 23px; */
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-content: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.frame-trigger-search-mobile{
    display: none;
}

.header-search-bar form a.close-search-mobile{
    display: none;
}
.frame-grid-product-v2.bg-frame-v2 {
    margin-bottom: 0px!important;
        margin-top: 20px;
}
.flash-sale-wrapper {
    display: flex;
    width: 100%;
    max-width: 1140px;
    align-items: flex-start;
    gap: 20px;
    margin: 0 auto;
    position: relative;
    padding: 0px;
    overflow-x: hidden;
    padding-bottom: 8px;
    padding-top: 6px;
    padding-left: 8px;
}
.card-flash-sale {
    display: flex;
    width: 270px;
    padding: 12px;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #00ffff;
    /* background: linear-gradient(0deg, rgba(43, 23, 89, 0.76) 0%, rgba(43, 23, 89, 0.76) 100%), url(<path-to-image>) lightgray 50% / cover no-repeat; */
    text-decoration: none;
    transition: all .1s;
    position: relative;
    cursor: pointer;
}

.card-flash-sale:hover {
    -webkit-box-shadow: 0 0 25px rgb(167 139 250);
    -moz-box-shadow: 0 0 25px rgb(167 139 250);
    box-shadow: 0 0 25px rgb(167 139 250);
    border: 1px solid #00ffff;
    outline: ;
}

.card-flash-sale img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    border: 1px solid #575757;
}

.card-flash-sale:hover img {
    border: 1px solid #00ffff;
}

.card-flash-sale .label-group-fs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex: 1 0 0;
    overflow: hidden;
}
.card-flash-sale .label-group-fs h6 {
    color: var(--orange-dark-300);
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    align-self: stretch;
}
.card-flash-sale .label-group-fs b {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 157.143% */
        display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-right: 10px;
    width: 130px;
}
.r-fade {
    bottom: 8px;
    right: 0;
    background: linear-gradient(90deg, #F8FAFC00 0%, #121926 100%);
    content: "";
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 108px;
}
.l-fade {
    bottom: 0;
    left: -1px;
    background: linear-gradient(270deg, #F8FAFC00 0%, #121926 100%);
    content: "";
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 108px;
}
.badge-off-sale {
    background: #C5E5FF;
    position: relative;
    right: 0;
    top: 0;
    transform: rotate(35.993deg);
}

.badge-off-sale b {
    margin: 0px;
    color: #000;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.bestseller:after {
    content: var(--diskon-label, "Diskon");
    z-index: 1;
    overflow: hidden;
    font-size: 11px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    width: 120px;
    display: block;
    background: #C5E5FF;
    background: #00ffff;
    box-shadow: 0 0px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px;
    right: -30px;
    clip-path: polygon(120px 26px, 90px -4px, 40px -12px, 8px 20px, 10px 30px, 120px 30px);
    z-index: 1;
}
.countdown-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 8px;
    text-align: center;
}
.countdown-box {
    background-color: #FF3838;
    color: white;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 45px;
}
.countdown-value {
    font-size: 15px;
    line-height: 16px;
}
.countdown-container span {
    font-size: 8px;
}

.group-title-fs {
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}
/* end desktop */

@media (min-width: 481px) and (max-width: 767px) { 
    .frame-grid-product-v2 {
        padding: 40px 10px 0px 10px;
    }
    .frame-grid-product-v2 .parent-grid-product-v2{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
    }
    .frame-top-product-v2 .parent-top-product-v2 .child-top-product-v3 h6{
        width: 120px;
    }
    .footer-theme-v2 .footer-payment-method-v2{
        width: 100%;
    }
    .footer-theme-v2 .footer-payment-method-v2 .parent-list-payment-method-v2{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-theme-v2 .footer-payment-method-v2 .superparent-list-payment-method-v2{
        width: 100%;
        overflow: hidden;
    }
    .frame-top-product-v2{
        overflow: hidden;
        gap: 16px;
        height: auto;
        margin-top: 20px;
    }
}
/*tablet view */
@media (min-width: 768px) and (max-width: 990px) { 
    .frame-grid-product-v2 {
        padding: 40px 10px 0px 10px;
    }
    .frame-grid-product-v2 .parent-grid-product-v2{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 20px;
        width: 100%;
    }
    .frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3 img{
        width: 160px;
        height: 160px;
    }
    .frame-top-product-v2 .parent-top-product-v2 .child-top-product-v3 img{
        width: 180px;
        height: 180px;
    }
    .footer-theme-v2 .footer-payment-method-v2{
        width: 100%;
    }
    .footer-theme-v2 .footer-payment-method-v2 .parent-list-payment-method-v2{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-theme-v2 .footer-payment-method-v2 .superparent-list-payment-method-v2{
        width: 100%;
        overflow: hidden;
    }
    .frame-top-product-v2{
        overflow: hidden;
        gap: 16px;
        height: auto;
        margin-top: 20px;
    }
    .frame-info-product-v3 .content-info-product-v2{
    display: flex;
    max-width: 1140px;
    width: 100%;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 65px;
    flex-direction: column;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 {
    width: 100%;
    order: 1;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    order: 0;
    }
}

@media (min-width: 991px) and (max-width: 1080px) { 
    .frame-grid-product-v2 {
        padding: 40px 10px 0px 10px;
    }
    .frame-grid-product-v2 .parent-grid-product-v2{
        padding-top: 10px;
        display: grid;
        /* grid-template-columns: repeat(4, 1fr); */
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 4rem 2.4rem;
        width: 100%;
    }
    .frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3 img{
        width: 190px;
        height: 190px;
    }
    .frame-top-product-v2 .parent-top-product-v2 .child-top-product-v3 img{
        width: 190px;
        height: 190px;
    }
    .footer-theme-v2 .footer-payment-method-v2{
        width: 100%;
    }
    .footer-theme-v2 .footer-payment-method-v2 .parent-list-payment-method-v2{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-theme-v2 .footer-payment-method-v2 .superparent-list-payment-method-v2{
        width: 100%;
        overflow: hidden;
    }
    .frame-top-product-v2{
        overflow: hidden;
        gap: 16px;
        height: auto;
        margin-top: 20px;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li {
        width: 100%;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .tmv1-header .tmv1-header-left img{
        height: 38px;
    }
    .tmv1-header .tmv1-header-left ul li a{
        display: none;
    }
    .frame-grid-product-v2 {
        padding: 40px 10px 0px 10px;
    }
    .frame-grid-product-v2 .parent-grid-product-v2{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 10px;
        width: 100%;
    }
    .frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3 img{
        width: 140px;
        height: 140px;
    }
    .frame-top-product-v2 .parent-top-product-v2 .child-top-product-v3 img{
        width: 140px;
        height: 140px;
    }
    .frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3 h6{
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;  
        overflow: hidden;
        line-height: normal;
        margin-bottom: 0px;
    }
    .footer-theme-v2 .footer-payment-method-v2{
        width: 100%;
    }
    .footer-theme-v2 .footer-payment-method-v2 .parent-list-payment-method-v2{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .footer-theme-v2 .footer-payment-method-v2 .superparent-list-payment-method-v2{
        width: 100%;
        overflow: hidden;
    }
    .frame-top-product-v2{
        overflow: hidden;
        gap: 16px;
        height: auto;
        margin-top: 20px;
    }
    .frame-info-product-v3 .content-info-product-v2{
        display: flex;
        max-width: 1140px;
        width: 100%;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 65px;
        flex-direction: column;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 {
        width: 100%;
        order: 1;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        order: 0;
    }
    /* AREA KONFIRMASI PEMBAYARAN */
    .konfirmasi-pembelian-area-theme-v2{
        display: flex;
        padding-bottom: 50px;
        justify-content: center;
        align-items: flex-start;
        gap: 26px;
        align-self: stretch;
        padding: 1rem;
        flex-direction: column;
    }
    .konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2{
        width: 100%;
        /* flex: 1; */
    }
    .konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2{
        width: 100%;
    }
        .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li {
        width: 100%;
    }
}
a.close-search-mobile{
    display: none;
}

input#search-input{
	display: block !important;
    background: #18191e;
	border: 1px solid #0f2a49 !important;
	height: 45px;
	padding-left: 15px;
	color: #fff;
	max-width: 80%;
}
div#search-results {
	display:none;
    position: absolute;
    top: 50px;
    right: 0px;
    margin-right: 400px;
	width: 300px;
}
/*mobile view */
/*@media (max-width: 450px){ */
@media (min-width: 320px) and (max-width: 480px) {

    .popover-custom{
        top: 40px;
        left: auto;
        right: -15px;
    }

    .popover-custom:after, .popover-custom:before{
        left: auto;
        right: 11px;
    }
     .popover-custom:after{
        right: 13px !important;
    } 
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li .ribbon__content{
        top: -11px;
        right: 10px;
    }

    .header-search-bar form{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    .header-search-bar form, a.close-search-mobile{
        display: flex;
        font-size: 24px;
        color: #0d6efd;
        text-decoration: none !important;
        padding: 8px 11px;
    }
	a.close-search-mobile{
	display: flex;
        color: #0d6efd;
        text-decoration: none !important;
        margin-right: 0px;
        float: right;
        font-size: 30px;
	}
    .header-search-bar form a.close-search-mobile i{
        
    }

    .header-search-bar .result-quick-search{
        right: 10px;
        left: 10px;
    }

    .frame-trigger-search-mobile{
        display: flex;
    }
    .frame-trigger-search-mobile a{
        font-size: 24px;
        color: #0d6efd;
        text-decoration: none !important;
    }
    .frame-trigger-search-mobile a i{
        
    }
div#search-results {
    position: absolute;
    top: 50px;
    right: 70px;
    margin-right: 0px;
}
    .frame-top-product-v2 .frame-header-top-product-v2 .trigger-top-product-nav{
        display: none !important;
    }
    .header-navbar .header-content-v3-left img{
        height: 34px;
    }
    .header-navbar .header-content-v3-left ul{
        display: none;
    }
    .header-search-bar{
        position: absolute;
        left: 0;
        right: 0;
        background: #121926;
        top: 0;
        padding: 13px 14px;
        z-index: 99;
        border-bottom: 1px solid #0d6efd;
        display: none;
    }
    .header-navbar .header-content-v3-right .header-search-bar-field{
        width: 100%;
    }
    .header-navbar .header-content-v3{
        width: 100%;
    }
    .frame-grid-product-v2{
        width: 100%;
        margin-bottom: 20px;
        padding: 10px;
    }
    .frame-grid-product-z-v2 .parent-grid-product-z-v2 .child-top-product-z-v2{
        min-width: 220px;
    }
    /* mobile slider product */
    .frame-grid-product-z-v2 .parent-grid-product-z-v2{
        display: flex;
        /* grid-template-columns: repeat(4, 1fr); */
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px 24px;
        width: 100%;
        flex-direction: row;
        overflow-x: scroll;
    }
    .frame-grid-product-z-v2 .two-column-grid {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding-top: 20px;
    }
    .frame-grid-product-z-v2 .two-column-grid .column-grid {
        display: flex;
        width: 100%;
        gap: 20px;
        flex-direction: column;
        }
    /* mobile grid */
    .frame-grid-product-v2 .parent-grid-product-v2{
        column-gap: 1rem;
        row-gap: 1.75rem;
        grid-template-columns: repeat(3,minmax(0,1fr));
        width: 100%;
    }
    .frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3{
        gap: 10px;
        display: flex;
        align-items: center;
        padding: 0px;
        border-radius: 10px;
        justify-content: flex-start;
    }
    .frame-featured-product-v2 .content-featured{
        /* width: 95%; */
    }
    .frame-featured-product-v2 .content-featured h2{
        text-align: center;
        font-size: 22px;
    }
    .frame-featured-product-v2 .content-featured p.sub{
        text-align: center;
        font-size: 15px;
    }
    .frame-featured-product-v2 .content-featured{
        display: flex;
        flex-direction: column;
    }
    .frame-featured-product-v2 .content-featured .parent-featured-product-v2 .child-featured-product-v2 .header-child-featured-product-v2 h4{
        font-size: 16px;
        text-align: center;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li .pricing-icon{
        display: flex;
        justify-content: flex-end;
        gap: 4px;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li .pricing-icon i{
        display: none;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-header-product-v2{
        padding: 14px;
    }
    .footer-theme-v2 .footer-payment-method-v2{
        width: 100%;
    }
    .footer-theme-v2 .footer-payment-method-v2 .parent-list-payment-method-v2{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .content-product {
        padding: 0rem 0.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .how-to-product-v2 {
        padding: 0px 14px 14px 14px;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .how-to-product-v2 p{
        font-size: 12px;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-input-area-product-v2 .frame-input-inner label.error{
        font-size: 12px;
        color: #E03F3F;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-input-area-product-v2{
        padding: 14px;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .how-to-product-v2 a {
        font-size: 20px;
    }
    .footer-theme-v2 .footer-payment-method-v2 .superparent-list-payment-method-v2{
        width: 100%;
        overflow: hidden;
    }
    .frame-top-product-v2{
        overflow: hidden;
        gap: 16px;
        height: auto;
        margin-top: 20px;
    }
    .footer-theme-v2 .footer-payment-method-v2 .superparent-list-payment-method-v2::after{
        display: none;
    }
    .footer-theme-v2 .footer-payment-method-v2 .superparent-list-payment-method-v2::before{
        display: none;
    }
    .frame-top-product-v2 .parent-top-product-v2{
        display: flex;
        height: 239px;
        align-items: center;
        gap: 20px;
        flex-shrink: 0;
        width: 100%;
        overflow-x: auto;
        margin: 0 auto;
        margin-left: 10px;
    }
    .frame-top-product-v2 h3{
        width: 95%;
        margin: 0 auto;
        font-size: 18px;
    }
    .frame-grid-product-z-v2 h3{
        font-size: 18px;
    }  
    .frame-grid-product-v2 h3{
        font-size: 18px;
    }
    .frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3 img{
         aspect-ratio: 1 / 1;
         object-fit: cover;
         max-width: 100%;
         height: auto;
         border: 0px;
         border-radius: 0px;
    }
    .frame-top-product-v2 .parent-top-product-v2 .child-top-product-v3 img{
        width: 160px;
        height: 160px;
    }
    .frame-grid-product-v2 .parent-grid-product-v2.limited-height{
        height: 890px;
        overflow: hidden;
    }
    /* SEMENTARA */
    .slider-wrapper{
        /* display: none !important; */
        margin: 24px 0px;
    }
    .slider-wrapper .img-current{
        height: 130px;
        width: 95% !important;
        margin: 0 auto;
    }
    .frame-top-product-v2 .parent-top-product-v2{
        height: auto;
    }
    .overlay-more-games{
        padding-bottom: 30px;
    }

    .frame-featured-product-v2 .content-featured .parent-featured-product-v2 .child-featured-product-v2{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        align-self: stretch;
        width: 100%;
        align-content: center;
    }
    .frame-featured-product-v2 .content-featured .parent-featured-product-v2 .child-featured-product-v2 h4{
        color: #FFF;
            font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        margin: 0px;
    }
    .frame-featured-product-v2 .content-featured .parent-featured-product-v2 .child-featured-product-v2 .header-child-featured-product-v2{
        display: flex;
        align-items: center;
        gap: 8px;
        flex-direction: column;    
    }

    .frame-featured-product-v2 .content-featured .parent-featured-product-v2{
        display: grid;
        align-content: center;
        justify-content: center;
        align-items: center;
        justify-items: center;
        grid-template-columns: repeat(2, 1fr);
    }
    .frame-featured-product-v2 .content-featured .parent-featured-product-v2 .child-featured-product-v2 p{
        text-align: center;
        margin: 0px;
        font-size: 14px;
    }
    .frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3 h6{
        font-size: 14px;
        font-weight: 500;
        line-height: 18px;
        padding: 0 6px 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow-y: hidden;
        margin-bottom: 5px;
        padding: 0px 5px;

    }
    .frame-top-product-v2 .parent-top-product-v2 .child-top-product-v3 h6{
        width: 110px;
    }
    .frame-info-product-v3{
        width: 100%;
        gap: 14px;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2{
        gap: 14px;
        width: 100%;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2{
        /* display: none; */
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .frame-info-product-v3 .content-info-product-v2{
        display: flex;
        /* max-width: 1140px; */
        width: 100%;
        align-items: flex-start;
        gap: 20px;
        margin-top: -100px;
        margin-bottom: 65px;
        flex-direction: column;
    }
    .wrapper-info-product {
        display: none;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-sidebar-info-product-v2 .sidebar-info-product-v2 {
        gap: 0;
        padding: 14px;
    }
    .bottom-content-header-info-product-v2 p {
	display: none;
    }
    .sidebar-info-product-v2 .right-info-product-v2{
	margin-top: 10px;
    }
    .frame-info-product-v3 .header-info-product-v2 .right-info-product-v2{
        display: none;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom{
        padding: 14px;
        grid-template-columns: repeat(2, 1fr);
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .short-payment-support-info .banks-payment-support-lists img:nth-child(4),  .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .short-payment-support-info .banks-payment-support-lists img:nth-child(3){
        display: none !important;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .header .left {
        justify-content: space-between;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .header .left img{
        height: 18px;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .header .left b{
        font-size: 14px;
        font-weight: 500;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li b{
        /* color: #FFF; */
        /* font-size: 14px; */
        font-style: normal;
        font-weight: 500;
        line-height: 22px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li{
        display: flex;
        max-height: 120px;
        /* padding: 10px; */
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2{
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method {
        padding: 14px;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-input-area-product-v2 input{
        text-align: center;
    }
    .frame-info-product-v3 .header-info-product-v2{
        padding: 15px 15px;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .header{
        padding: 12px 12px;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul{
        list-style: none;
        display: flex;
        padding: 10px;
        flex-direction: column;
        justify-content: space-between;
        align-content: space-between;
        gap: 10px;
        align-self: stretch;
        flex-wrap: wrap;
        align-items: stretch;
        margin-bottom: 0px;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .button-action-payment ul li{
        width: 100%;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .area-list-payment-method .child-box .header .right{
        display:none;
    }
    .frame-info-product-v3 .bg-thumbnail-overlay{
        height: 130px;
    }
    .konfirmasi-pembelian-area-theme-v2{
        flex-direction: column;
    }
    .konfirmasi-pembelian-area-theme-v2{
        margin-bottom: 0px;
        padding-bottom: 0px;
        padding: 14px;
    }
    .konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2 {
        width: 100%;
    }
    .konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 {
        width: 100%;
    }
    .konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-input-theme-v2 .header-konfirmasi-pembelian-input-theme-v2 b{
        /* color: #FFF; */
        font-size: 13px;
    }
    .konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2 table tr td img {
        display: none;
    }
    .konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2 table tr td b{
        font-size: 14px;
    }
    .konfirmasi-pembelian-area-theme-v2 .area-konfirmasi-pembelian-summary-theme-v2 table tr td{
        font-size: 14px;
    }
    .frame-transaction-progress-details .info-transaction-progress-details{
        width: 100%;
        /* flex: 1; */
    }
    .transaction-progress-v2 h1{
        font-size: 24px;
        font-weight: 600;
    }
    .submit-pembelian-area-theme-v2{
        width: 100%;
    }
    .submit-pembelian-area-theme-v2 button{
        width: 100%;
    }
    .transaction-progress-v2{
        width: 100%;
        margin-top: 20px;
        margin-bottom: 30px;
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
    }
    .stepper-wrapper{
        width: 100%;
    }
    .payment-transaction-progress-details{
        width: 100%;
    }
    .frame-transaction-progress-details{
        display: flex;
        align-items: center;
        gap: 14px;
        align-self: stretch;
        flex-direction: column;
        width: 100%;
        align-content: center;
    }
    .frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-preview .tgp-detail b{
        overflow: hidden;
        color: var(--BaseWhite, #FFF);
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        align-self: stretch;
    }

    .single-payment-finish-wrapper .frame-transaksi-game-preview{
        width: 100%;
    }
    .single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-preview .tgp-detail b{

    }
    form.cek-transaksi{
        width: 100%;
    }
    .cek-transaksi-frame{
        overflow: hidden;
        padding: 10px;
        margin: 0px;
        margin-bottom: 20px;
    }
    .cek-transaksi-header h1{
        font-size: 24px;
    }
    .cek-transaksi-header{
        width: 100%;
    }
    .cek-transaksi-content{
        width: 100%;
    }
    .cek-transaksi-content-table-wrapper{
        overflow: auto;
    }
    .cek-transaksi-content table{
        width: 1000px;
    }
    .cek-transaksi-header .frame-frame-search-trx{
        display: flex;
        align-items: center;
        gap: 10px;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
    }
    .cek-transaksi-header .frame-frame-search-trx .ffst-search input{
        width: 100%;
    }
    .cek-transaksi-content .simulate-info-header h5{
        color: var(--gray-800);
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .frame-ffst-search{
        width: 100%;
    }
    .cek-transaksi-header .frame-frame-search-trx .hit-q-trx{
        width: 100%;
    }
    .cek-transaksi-content .stepper-wrapper{
        width: 100%;
    }
    .content-with-sidebar-static{
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
        min-height: 65vh;
        padding: 10px;
    }
    .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .denom-header-product-v2 h3{
        font-size: 16px;
    }
    .tmv1-header-right .open-search-mobile i{
        font-size: 20px;
        display: block;
    }
    .frame-grid-product-v2 i{
        font-size: 20px;
    }
    .frame-grid-product-z-v2 i{
        font-size: 20px;
    }
    .entitas-name-v3 {

    }
    .frame-grid-product-v2 .parent-grid-product-v2 .child-top-product-v3 .img-wrapper-v3 {
        background-color: #fff;
        overflow: hidden;
        flex-shrink: 0;
        border-radius: 8px 8px 0px 0px;
        position: relative
    }
    .show_before::before {
        top: -4px;
        left: 0;
        background: linear-gradient(90deg, #121926 0%,#F8FAFC00 100%);
        content: "";
        position: absolute;
        z-index: 2;
        width: 30px;
        height: 105%;
    }
    .show_after::after {
        top: -4px;
        right: 0;
        background: linear-gradient(90deg, #F8FAFC00 0%, #121926 100%);
        content: "";
        position: absolute;
        z-index: 2;
        width: 30px;
        height: 105%;
    }
    .flashsale-slider-wrapper {
        width: 100%;
        height: 100%;
        position: relative;
    }
    .flash-sale-wrapper {
        display: flex;
        gap: 20px;
        flex-direction: row;
        max-width: 100%;
        overflow-x: auto;
        padding: 0px;
    }
    .l-fade {
        display: none;
    }
    .r-fade {
        display: none;
    }
}

.floating-client-socialproof{
    position: fixed;
    bottom: 0;
    left: 25px;
    width: 373px;
    height: 148px;
    cursor: pointer;
    z-index: 500;
}

.frame-social-proof-preview{

}

.frame-social-proof-preview .social-proof-preview.style-1{
    display: flex;
    padding: 12px;
    align-items: flex-end;
    gap: 14px;
    border-radius: 7px;
    border: 1px solid #CED4DA;
    background: #FFF;
}
.frame-social-proof-preview .social-proof-preview.style-1 .desc-proof{
    display: flex;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    flex: 1;
}
.frame-social-proof-preview .social-proof-preview.style-1 .desc-proof small{
    color: #98A6AD;
    font-family: "Source Sans Pro";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px; /* 120% */
}
.frame-social-proof-preview .social-proof-preview.style-1 .desc-proof p{
    color: #212529;
    font-family: "Source Sans Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin: 0px;
    align-self: stretch;
}
.frame-social-proof-preview .social-proof-preview.style-1 .desc-proof p b{
    color: #212529;
    font-family: "Source Sans Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 146.667% */
    align-self: stretch;
}
.frame-social-proof-preview .social-proof-preview.style-1 .desc-proof .verification-area{
    display: flex;
    align-items: center;
    gap: 6px;
}
.frame-social-proof-preview .social-proof-preview.style-1 .desc-proof .verification-area i{
    font-size: 12px;
    color: #0069FF;
}
.frame-social-proof-preview .social-proof-preview.style-1 .desc-proof .verification-area span{
    color: #98A6AD;
    font-family: "Source Sans Pro";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px; /* 120% */
}
.frame-social-proof-preview .social-proof-preview.style-1 .desc-proof .verification-area span strong{
    color: #98A6AD;
    font-family: "Source Sans Pro";
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 12px;
}

.frame-social-proof-preview .social-proof-preview.style-1 .thumb-proof{
    display: flex;
    width: 73.014px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.frame-social-proof-preview .social-proof-preview.style-1 .thumb-proof small{
    color: #212529;
    font-family: "Source Sans Pro";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px; /* 120% */
    align-self: stretch;
}

.frame-social-proof-preview .social-proof-preview.style-1 .thumb-proof img{
    width: 70px;
    height: 70px;
    border-radius: 4px;
}

/* STYLE 2 SCP */
.frame-social-proof-preview .social-proof-preview.style-2{
    display: flex;
    gap: 10px;
    border: 1px solid #CED4DA;
    background: #FFF;
    border-radius: 60px;
    flex-direction: row-reverse;
    padding: 8px 12px;
    align-items: center;
}
.frame-social-proof-preview .social-proof-preview.style-2 .desc-proof{
    display: flex;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1;
}
.frame-social-proof-preview .social-proof-preview.style-2 .desc-proof small{
    color: #98A6AD;
    font-family: "Source Sans Pro";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px; /* 120% */
}
.frame-social-proof-preview .social-proof-preview.style-2 .desc-proof p{
    color: #212529;
    font-family: "Source Sans Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0px;
    align-self: stretch;
}
.frame-social-proof-preview .social-proof-preview.style-2 .desc-proof p b{
    color: #212529;
    font-family: "Source Sans Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 146.667% */
    align-self: stretch;
}
.frame-social-proof-preview .social-proof-preview.style-2 .desc-proof .verification-area{
    display: flex;
    align-items: center;
    gap: 6px;
}
.frame-social-proof-preview .social-proof-preview.style-2 .desc-proof .verification-area i{
    font-size: 12px;
    color: #0069FF;
}
.frame-social-proof-preview .social-proof-preview.style-2 .desc-proof .verification-area span{
    color: #98A6AD;
    font-family: "Source Sans Pro";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px; /* 120% */
}
.frame-social-proof-preview .social-proof-preview.style-2 .desc-proof .verification-area span strong{
    color: #98A6AD;
    font-family: "Source Sans Pro";
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 12px;
}

.frame-social-proof-preview .social-proof-preview.style-2 .thumb-proof{
    display: flex;
    width: 71px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.frame-social-proof-preview .social-proof-preview.style-2 .thumb-proof small{
    color: #212529;
    font-family: "Source Sans Pro";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px; /* 120% */
    align-self: stretch;
}

.frame-social-proof-preview .social-proof-preview.style-2 .thumb-proof img{
    width: 70px;
    height: 70px;
    border-radius: 61px;
}
/* END STYLE 2 SCP */

.frame-social-proof-preview .notice{
    color: #595959;
    font-family: "Source Sans Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    display: block;
}
.box-image-header {
    width: 100%;
    padding: 20px 0px;
    max-width: 1140px;
    display: block;
    margin: 0 auto;
}
@media (max-width: 440px){
    .floating-client-socialproof{
        width: 100%;
        bottom: -9999999999999999999px !important;
    }

.box-image-header {
        padding: 4%;
    }
}


.loading-submit-data{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.7);
    /* display: flex; */
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    display: none;
}
.loading-submit-data .content{
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    /* margin: 0 auto; */
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.loading-submit-data .content .sk-chase{

}
.loading-submit-data .content img{
    position: absolute;
    top: 66px;
    width: 82px;
    animation: bounce 0.3s infinite alternate;
    -webkit-animation: bounce 0.3s infinite alternate;
}

@keyframes bounce {
    from {
      transform: translateY(0px);
    }
    to {
      transform: translateY(-15px);
    }
  }
  @-webkit-keyframes bounce {
    from {
      transform: translateY(0px);
    }
    to {
      transform: translateY(-15px);
    }
  }
.lds-dual-ring {
    display: inline-block;
    width: 180px;
    height: 180px;
  }
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 164px;
    height: 164px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fe8000 transparent #3a3a3a transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

/* LOADING SPINNER */
.sk-chase {
    width: 120px;
    height: 120px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
  }
  
  .sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; 
    animation: sk-chase-dot 2.0s infinite ease-in-out both; 
  }
  
  .sk-chase-dot:before {
    content: '';
    display: block;
    width: 20%;
    height: 20%;
    background-color: #ff7600;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
  }
  
  .sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
  .sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
  .sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
  .sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
  .sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
  .sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
  .sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
  .sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
  .sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
  .sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
  .sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
  .sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }
  
  @keyframes sk-chase {
    100% { transform: rotate(360deg); } 
  }
  
  @keyframes sk-chase-dot {
    80%, 100% { transform: rotate(360deg); } 
  }
  
  @keyframes sk-chase-dot-before {
    50% {
      transform: scale(0.4); 
    } 100%, 0% {
      transform: scale(1.0); 
    } 
  }
  
  
  /* PENCARIAN */
        .almft-search-container {
            width: 100%;
            max-width: 28rem;
            margin: 1rem;
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
            box-sizing: border-box;
        }

        /* Wrapper untuk Input dan Ikon */
        .almft-input-wrapper {
            position: relative;
        }

        /* Input Pencarian */
        #search-input {
            width: 100%;
            padding: 0.75rem 2.5rem 0.75rem 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: box-shadow 0.2s ease-in-out;
            box-sizing: border-box;
        }

        #search-input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
        }

        /* Ikon Pencarian */
        .almft-search-icon {
            position: absolute;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            width: 1.25rem;
            height: 1.25rem;
            color: #a0aec0;
        }

        /* Kontainer Hasil Pencarian */
        #search-results {
display: none;
    margin-top: 1rem;
    border: 1px solid #0f2a49;
    border-radius: 0.5rem;
    background-color: #121926;
    max-height: 18rem;
    overflow-y: auto;
    position: relative;
    z-index: 10;
        }

        /* Tautan Item Hasil Individual */
        .almft-result-item-link {
            display: flex;
            align-items: center;
            padding: 0.75rem;
            border-bottom: 1px solid #0f2a49;
            text-decoration: none;
            color: inherit;
            transition: background-color 0.15s ease-in-out;
        }
        
        .almft-result-item-link:last-child {
            border-bottom: none;
        }

        .almft-result-item-link:hover {
            background-color: #0d345c;
        }

        /* Gambar pada Item Hasil */
        .almft-result-item-image {
            width: 40px;
            height: 40px;
            border-radius: 0.375rem;
            margin-right: 0.75rem;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        /* Konten Teks pada Item Hasil */
        .almft-result-item-content {
            flex: 1;
        }

        .almft-result-item-content p {
            margin: 0;
        }

        .almft-item-name {
            font-weight: 600;
            color: #fff;
        }

        .almft-item-description {
            font-size: 0.875rem;
            color: #718096;
            margin-top: 0.25rem;
        }
        
        /* Pesan Status (Tidak Ditemukan / Gagal) */
        .almft-status-message, .almft-error-message, .no-results {
            padding: 1rem;
            text-align: center;
            color: #718096;
        }

        .almft-error-message {
            color: #e53e3e;
        }
	  i#almft-search-icon, i#almft-clear-btn {
    display: block;
    margin-right: 70px;
    position: absolute;
	cursor: pointer;
}
/* Gaya Scrollbar untuk Dark Mode */
        ::-webkit-scrollbar {
            width: 10px; /* Lebar scrollbar */
        }

        ::-webkit-scrollbar-track {
            background: #121926; /* Warna track yang lebih gelap */
            border-radius: 0.5rem;
        }

        ::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #7c3aed, #a78bfa);
    border-radius: 10px;
    border: 2px solid #a78bfa;
        }

        ::-webkit-scrollbar-thumb:hover {
            background-color: #00ffff; /* Warna thumb saat di-hover */
        }
		
		/* Buttons */
		a.tombol {
    background: #2563eb;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}
      .btn {
        padding: 8px 16px;
        border-radius: 15px;
        border: none;
        cursor: pointer;
        width: 50%;
        display: block;
        margin-left: auto;
        margin-right: auto;
      }

      .btn-orange-outline {
        background: white;
        border: 1px solid #DA6B0E;
        color: #DA6B0E;
        border-radius: 5px;
        font-size: 13px;
        padding: 3px 15px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
      }

      .btn-orange-outline:hover {
        border: 1px solid #DA6B0E;
        background: #FCF0E7;
        color: #DA6B0E;
      }

      a.tombol-beli {
        width: 100%
      }

      .clr-picker {
        display: none !important;
      }

      a {
        text-decoration: none !important;
      }

      .frame-info-product-v3 .content-info-product-v2 .frame-denom-info-product-v2 .denom-info-product-v2 .list-denom li .pricing-icon .pricing-detil span {
        color: #fff;
        font-size: 18px;
      }