/* @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&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap'); */

:root {
    --theme-primary:        #2551B3;
    --theme-primary-light:  #49A7FF;
    --theme-primary-dark:   #5E39CD;
    --theme-accent:         #00FF6A;
    --theme-bg:             #140A42;
    --theme-bg-mid:         #250D7E;
    --theme-text:           #FFFFFF;
    --theme-text-muted:     #AEB1C8;
    --theme-surface:        rgba(68, 68, 68, 0.57);
    --theme-border:         rgba(255, 255, 255, 0.17);
}

body {
    background: linear-gradient(180deg, rgba(33, 167, 182, 0.59) 0%, #250D7E 28%, #140A42 65.49%), #2551B3;
    cursor: default;
}

.bg-gradient-theme-v1 {
  background-color: #2551B3; /* fallback */
  color: white;
}

.text-gradient-theme-v1 {
  background: linear-gradient(90deg, #49A7FF, #5E39CD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.swal2-popup {
    background: linear-gradient(135deg, #49A7FF, #5E39CD);
    color: white;
    border-radius: 30px;
}

.button-theme-v1 {
  background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%), #EE8103;
  border: 1px solid #5C7DBC;
  color: var(--BaseWhite, #FFF);
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: "Titillium Web";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  transition: all .2s ease;
}

/* Hover effect */
.button-theme-v1:hover {
  background: linear-gradient(180deg, #3B7EFA 0%, #4B1BDC 100%);
  border: 1px solid #5C7DBC;
  color: var(--BaseWhite, #FFF);
}

/* Active / clicked state */
.button-theme-v1:active {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  transform: translateY(1px);
}

.badge-self{
    display: flex;
    padding: 2px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: "Titillium Web";
    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;
}

/* Override Page Pagination - Adjusted for Blue-Purple Theme */
.page-link {
    color: #FFF !important;
    background-color: #140A42 !important; /* Mengikuti warna gelap dari background body */
    border: 1px solid #49A7FF; /* Border biru muda agar terlihat di background gelap */
    transition: all .3s ease;
}

.page-link:hover {
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%) !important;
    border-color: #49A7FF !important;
    color: #FFF !important;
    transform: translateY(-1px);
}

.page-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(73, 167, 255, 0.25);
    background-color: #250D7E;
    color: #FFF;
}

.page-item.active .page-link {
    color: #FFF !important;
    /* Menggunakan gradasi yang sama dengan tombol utama */
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%) !important;
    border-color: #5C7DBC !important;
    font-weight: bold;
}

.page-item.disabled .page-link {
    color: rgba(255, 255, 255, 0.3) !important;
    background-color: #140A42 !important;
    border-color: #250D7E !important;
    opacity: 0.6;
}

.tmv1-header{
    display: flex;
    padding: 16px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    -webkit-backdrop-filter: saturate(200%) blur(20px);
    backdrop-filter: saturate(200%) blur(20px);
    border-bottom: 1px solid rgb(255 255 255 / 17%);
    background: rgb(68 68 68 / 57%);
    position: sticky;
    top: 0;
    z-index: 800;

}
.tmv1-header .tmv1-content{
    width: 100%;
    max-width: 1140px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
}
.tmv1-header .tmv1-header-left{
    display: flex;
    /* width: 568.174px; */
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}
.tmv1-header .tmv1-header-left img{
    height: 40px;
}
.tmv1-header .tmv1-header-left ul{
    display: flex;
    padding: 0;
    margin: 0;
    gap: 16px;
}
.tmv1-header .tmv1-header-left ul li{
    list-style: none;
}
.tmv1-header .tmv1-header-left ul li a:hover{
    color: #00FF6A;
}
.tmv1-header .tmv1-header-left ul li a{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration:none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.tmv1-header .tmv1-header-right{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.frame-tmv1-header-frame-search{
    position: relative;
}
.frame-tmv1-header-frame-search .result-quick-search{
    background: #2386e3;
    position: absolute;
    z-index: 1000;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 0.5em;
    box-shadow: 0px 9px 41px -16px #6e6e6e;
    margin-top: 13px;
    right: -30px;
}
.frame-tmv1-header-frame-search .result-quick-search .notfound{
    padding: 12px;
    color: #fff;
    font-weight: 400;
}
.frame-tmv1-header-frame-search .result-quick-search .arrow-up{
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #0A88FF;
    position: absolute;
    top: -13px;
    /* margin-left: 10px; */
    left: 45%;
}
.frame-tmv1-header-frame-search .result-quick-search ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.frame-tmv1-header-frame-search .result-quick-search ul li{

}
.frame-tmv1-header-frame-search .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;
}
.frame-tmv1-header-frame-search .result-quick-search ul li:hover a{
    background: rgba(0, 0, 0, 0.20);
}
.frame-tmv1-header-frame-search .result-quick-search ul li .left{

}
.frame-tmv1-header-frame-search .result-quick-search ul li .left img{
    width: 40px;
    height: 40px;
    border-radius: 0.5em;
}
.frame-tmv1-header-frame-search .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;
}
.frame-tmv1-header-frame-search .result-quick-search ul li .right b{
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.14px;
}
.frame-tmv1-header-frame-search .result-quick-search ul li .right small{
    color: #E4E4E4;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.14px;
}
.tmv1-header .tmv1-header-right .tmv1-header-frame-search{
    border-radius: 6px;
    border: 1px solid #fff;
    background: rgba(0, 0, 0, 0.26);
    display: flex;
    width: 220px;
    padding: 8px 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.tmv1-header .tmv1-header-right .tmv1-header-frame-search:hover{
    border: 1px solid #00FF6A;
}
.tmv1-header .tmv1-header-right .tmv1-header-frame-search:focus-within{
    border: 1px solid #00FF6A;
}
.tmv1-header .tmv1-header-right .tmv1-header-frame-search:active{
    border: 1px solid #00FF6A;
}
.tmv1-header .tmv1-header-right .tmv1-header-frame-search input{
    width: 100%;
    -webkit-appearance: none;
    background: none !important;
    color: white;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.14px;
}
.tmv1-header .tmv1-header-right .tmv1-header-frame-search input::placeholder{
    color: #AEB1C8;
}
.tmv1-header .tmv1-header-right .tmv1-header-frame-search i{
    position: absolute;
    right: 15px;
    color: #fff;
    font-size: 18px;
}

.tmv1-header .tmv1-header-right .tmv1-header-frame-search:hover i,
.tmv1-header .tmv1-header-right .tmv1-header-frame-search:focus-within i {
    color: #00FF6A
}

.tmv1-header .tmv1-header-right .tmv1-menu-trigger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
    width: 32px !important;
    height: 32px !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    filter: none !important;
    text-decoration: none !important;
    -webkit-appearance: none !important;
    cursor: pointer;
    perspective: 600px;
}
.tmv1-header .tmv1-header-right .tmv1-menu-trigger i {
    font-size: 24px;
    color: white;
}

.tmv1-header .tmv1-header-right .tmv1-menu-trigger i:hover {
    color: #00FF6A;
}

/* START SLIDER HOME STYLE */
.slider-wrapper{
    margin-top: 30px;
}
.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: #00FF6A;
    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: px;*/
    /* 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;
}

/* Override old conflicting img-slide rules — canonical rules are in the 3-up carousel block below */
.slider-wrapper .img-slide {
    display: block;
    margin: auto;
    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;
    padding: 0;
}

.slider-wrapper .img-slide img {
    width: 100%;
    min-height: 95px;
    background: linear-gradient(90deg, #aaaaaa, #ececec);
    background-size: 400% 400%;
}

.slider-wrapper .img-current {
    display: block;
    border-radius: 8px;
    height: 100%;
    z-index: 45;
    width: 900px;
}

@media(max-width: 768px) {
    .slider-wrapper .img-slide {
        width: 100%;
    }
}

/* Hide old white gradient edge overlays */
.slider-wrapper .image-slider-items .before-replacement,
.slider-wrapper .image-slider-items .after-replacement {
    display: none;
}

.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 {
    display: none;
}

.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: static;
    top: auto;
    -webkit-transition: none;
    transition: none;
}

.slider-wrapper .transition-slide .img-slide.active {
    position: relative;
    z-index: 10;
}

.slider-wrapper .transition-slide .next-item {
    -webkit-transform: none;
    transform: none;
}

.slider-wrapper .transition-slide .prev-item {
    -webkit-transform: none;
    transform: none;
}

.slider-wrapper .transition-slide .inactive {
    display: none
}

.slider-wrapper .transition-slide .inactive.next-item {
    display: none;
}

.slider-wrapper .transition-slide .inactive.prev-item {
    display: none;
}

.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;
    }
}

.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-v1 {
    width: 100%;
    max-width: 1140px; /* UBAH DARI 1440px KE 1140px */
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px; /* Set ke 0 agar sejajar dengan container grid */
    box-sizing: border-box;
}

.frame-top-product-v1 .frame-header-top-product-v1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.frame-top-product-v1 .frame-header-top-product-v1 h3{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    /* width: 1140px;
    margin: 0 auto; */
}

.frame-grid-product-v1 h3 {
    padding: 0 20px;    
}

.frame-top-product-v1 .frame-header-top-product-v1 .trigger-top-product-nav{
    display: flex;
    width: 83px;
    justify-content: space-between;
    align-items: center;
}
.frame-top-product-v1 .frame-header-top-product-v1 .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-v1 .frame-header-top-product-v1 .trigger-top-product-nav a.disable{
    pointer-events: none !important;
    background: rgba(255, 255, 255, 0.20);
    color: #bbbbbb;
}
.frame-top-product-v1 .frame-header-top-product-v1 .trigger-top-product-nav a:hover{
    background: #00FF6A;
    color: #1A255C;
}
.frame-top-product-v1 .frame-header-top-product-v1 .trigger-top-product-nav a i{

}

.parent-top-product-v1 {
    display: flex;
    align-items: center;
    gap: 35px; /* Pastikan gap ini tidak mendorong konten keluar secara aneh */
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.parent-top-product-v1::-webkit-scrollbar {
    width: 0; /* Hide scrollbar */
    height: 0;
}

.parent-top-product-v1 .child-top-product-v1{
    display: flex;
    width: 200px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 5px 0 0 0;
}

.parent-top-product-v1 .child-top-product-v1 img{
    width: 200px;
    height: 200px;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.parent-top-product-v1 .child-top-product-v1 h6{
    width: 200px;
    color: #FFF;
    text-align: center;
    font-family: "Titillium Web";
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.parent-top-product-v1 .child-top-product-v1:hover h6 {
    color: #00FF6A;
}

.parent-top-product-v1 .child-top-product-v1:hover img {
    transform: scale(1.04); /* Hover effect for scaling */
}

.frame-grid-product-v1.bg-frame-v1 {
    border-radius: 8px;
    padding: 20px 20px;
    margin-top: 30px
}

.frame-grid-product-v1{
    display: flex;
    width: 100%;
    max-width: 1140px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1  0px;
    margin: 0 auto;
    margin-bottom: 20px;
    position: relative;
    padding: 40px 0px 0px 0px;
}
.frame-grid-product-v1 h3{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
    margin: 0;
    margin-top: 5px;
    /* padding: 0px 10px; */
}
.frame-grid-product-v1 i{
    color: #ffffff;
    font-size: 24px;
}
.frame-grid-product-v1 .parent-grid-product-v1{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
    justify-items: center;
}
.frame-grid-product-v1 .parent-grid-product-v1.limited-height{
    max-height: 1080px;
    overflow: hidden;
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1{
    display: flex;
    width: 160px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.28s ease,
                border-color 0.28s ease,
                background 0.28s ease;
    will-change: transform;
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        0deg,
        transparent,
        transparent 30%,
        rgba(0, 255, 255, 0.3)
    );
    transform: rotate(-45deg);
    transition: opacity 0.8s ease, transform 0.8s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1:hover {
    transform: translateY(-6px);
    border-color: rgba(73, 167, 255, 0.35);
    background: rgba(73, 167, 255, 0.07);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35),
                0 0 0 1px rgba(73, 167, 255, 0.18);
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition-duration: 0.1s;
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1.holo-active {
    transform: translateY(-6px);
    border-color: rgba(73, 167, 255, 0.35);
    background: rgba(73, 167, 255, 0.07);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35),
                0 0 0 1px rgba(73, 167, 255, 0.18);
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1.holo-active::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1.holo-active img {
    transform: scale(1.08);
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1.holo-active h6 {
    color: #00FF6A;
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1 img{
    width: 140px;
    height: 140px;
    border-radius: 14px;
    position: relative;
    z-index: 1;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1 h6{
    color: #FFF;
    text-align: center;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
    height: 26px;
    width: inherit;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1:hover h6{
    color: #00FF6A;
}
.frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1:hover img{
    transform: scale(1.08);
}
.frame-featured-product-v1{
    display: flex;
    padding: 50px 20px 30px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: #10032F;
}
.frame-featured-product-v1 .content-featured{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 1140px;
    margin: 0 auto;
}
.frame-featured-product-v1 .content-featured h2{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px; /* 112.5% */
    margin-bottom: 12px;
}
.frame-featured-product-v1 .content-featured p.sub{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 180% */
    align-self: stretch;
}
.frame-featured-product-v1 .content-featured .parent-featured-product-v1{
    display: flex;
    align-items: flex-start;
    gap: 35px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}
.frame-featured-product-v1 .content-featured .parent-featured-product-v1 .child-featured-product-v1{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    width: 356px;
}
.frame-featured-product-v1 .content-featured .parent-featured-product-v1 .child-featured-product-v1 .header-child-featured-product-v1{
    display: flex;
    align-items: center;
    gap: 8px;
}
.frame-featured-product-v1 .content-featured .parent-featured-product-v1 .child-featured-product-v1 .header-child-featured-product-v1 img{
    display: flex;
    width: 28px;
    height: 28px;
    padding: 0px 3px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.frame-featured-product-v1 .content-featured .parent-featured-product-v1 .child-featured-product-v1 .header-child-featured-product-v1 i{
    color: #FFF;
    font-size: 18px;
}
.frame-featured-product-v1 .content-featured .parent-featured-product-v1 .child-featured-product-v1 .header-child-featured-product-v1 h4{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin: 0px;
}
.frame-featured-product-v1 .content-featured .parent-featured-product-v1 .child-featured-product-v1 p{
    color: rgba(226, 232, 255, 0.80);
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 150% */
    align-self: stretch;
}

.overlay-more-games{
    position: absolute;
    width: 100%;
   /* left: 0;
    right: 0px; */
    bottom: 0px;
    /* background: red; */
    background: linear-gradient(180deg, rgb(20 10 66 / 0%) -4.35%, #140a42 35.41%);
    display: flex;
    height: 258px;
    padding-top: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.overlay-more-games span.overlay-desc{
    color: #D4D6EA;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.overlay-more-games button.more-game-btn{
    display: flex;
    height: 56px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #5C7DBC;
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%);
}
.overlay-more-games button.more-game-btn:hover{
    background: linear-gradient(180deg, #3B7EFA 0%, #4B1BDC 100%);
}
.overlay-more-games button.more-game-btn span{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.overlay-more-games button.more-game-btn i{
    color: #fff;
    font-size: 20px;
}
/* overlay ppob */
.parent-grid-product-v1.limited-height-ppob {
    max-height: 420px;
    overflow-y: hidden;
}
.overlay-more-ppob {
    width: 100%;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-top: -20px;
}
.overlay-more-ppob button.more-game-btn {
    display: flex;
    height: 56px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #5C7DBC;
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%);
}
.overlay-more-ppob button.more-game-btn:hover {
    background: linear-gradient(180deg, #3B7EFA 0%, #4B1BDC 100%);
}
.overlay-more-ppob button.more-game-btn span {
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.overlay-more-ppob button.more-game-btn i {
    color: #fff;
    font-size: 20px;
}

/* overlay voucher */
.parent-grid-product-v1.limited-height-voucher {
    max-height: 450px;
    overflow-y: hidden;
    padding-top: 12px;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
}
.overlay-more-voucher{
    width: 100%;
   /* left: 0;
    right: 0px; */
    bottom: 0px;
    /* background: red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-top: 20px;
}
.overlay-more-voucher span.overlay-desc{
    color: #D4D6EA;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.overlay-more-voucher button.more-game-btn{
    display: flex;
    height: 56px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #5C7DBC;
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%);
}
.overlay-more-voucher button.more-game-btn:hover{
    background: linear-gradient(180deg, #3B7EFA 0%, #4B1BDC 100%);
}
.overlay-more-voucher button.more-game-btn span{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.overlay-more-voucher button.more-game-btn i{
    color: #fff;
    font-size: 20px;
}
.footer-theme-v1{
    background: #0D0423;
}
.footer-theme-v1 .footer-payment-method-v1{
    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-v1 .footer-payment-method-v1 b{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    flex: 1 0 0;
}
.superparent-list-payment-method-v1{
    position: relative;
}
.superparent-list-payment-method-v1::before{
    top: 0;
    left: 0;
    background: linear-gradient(to right, #0D0423 0%, rgba(243, 250, 254, 0) 100%);
    content: "";
    position: absolute;
    z-index: 2;
    width: 100px;
    height: 100%;
}
.superparent-list-payment-method-v1::after{
    top: 0;
    right: 0;
    transform: rotateZ(180deg);
    background: linear-gradient(to right, #0D0423 0%, rgba(243, 250, 254, 0) 100%);
    content: "";
    position: absolute;
    z-index: 2;
    width: 100px;
    height: 100%;
}
.parent-list-payment-method-v1{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.list-payment-method-v1{
    display: flex;
    width: 884px;
    padding: 15px 0px;
    align-items: center;
    gap: 15px;
    overflow: auto;
}
.item-payment-method-v1{
    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;
}
.item-payment-method-v1 img{
    width: 80px;
    height: auto;
}
.footer-theme-v1 .footer-payment-method-v1 p{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 100% */
}

.frame-tmv1-header-frame-menu{
    position: relative;
}

.frame-tmv1-header-frame-menu .menu-pop-theme-v1{
    background: #0A88FF;
    position: absolute;
    z-index: 800;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 0.5em;
    box-shadow: 0px 9px 41px -16px #6e6e6e;
    margin-top: 18px;
    right: -12px;
}

.frame-tmv1-header-frame-menu .menu-pop-theme-v1 .arrow-up{
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #0A88FF;
    position: absolute;
    top: -13px;
    /* margin-left: 10px; */
    right: 15px;
}

.frame-tmv1-header-frame-menu .menu-pop-theme-v1 ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame-tmv1-header-frame-menu .menu-pop-theme-v1 ul li{

}

.frame-tmv1-header-frame-menu .menu-pop-theme-v1 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: 200px;
}

.frame-tmv1-header-frame-menu .menu-pop-theme-v1 ul li:hover a{
    background: rgba(0, 0, 0, 0.20);
}

.frame-tmv1-header-frame-menu .menu-pop-theme-v1 ul li a .right{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    align-items: flex-start;
    /* margin-left: 10px; */
}

.frame-tmv1-header-frame-menu .menu-pop-theme-v1 ul li a .right b{
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.14px;
}

.frame-tmv1-header-frame-menu .menu-pop-theme-v1 ul li a .right {
    padding-left: 12px;
}

/* Nav icons — size & color inherit from parent <a> */
.tmv1-header .tmv1-header-left ul li a svg,
.tmv1-header .tmv1-header-left ul li a i.svg-nav-globe,
.tmv1-header .tmv1-header-left ul li a i.svg-nav-search,
.tmv1-header .tmv1-header-left ul li a i.svg-nav-calc,
.tmv1-header .tmv1-header-left ul li a i.svg-nav-news,
.frame-tmv1-header-frame-menu .menu-pop-theme-v1 ul li a svg,
.frame-tmv1-header-frame-menu .menu-pop-theme-v1 ul li a i {
    flex-shrink: 0;
    vertical-align: middle;
    font-size: 15px;
}

.frame-tmv1-header-frame-menu .menu-pop-theme-v1 ul li a {
    color: #FFF;
}

/* Burger flip trigger — v1 spesifik (global rules ada di theme_global.css) */
.tmv1-menu-trigger:hover .burger-flip-inner,
.tmv1-menu-trigger.is-active .burger-flip-inner {
    transform: rotateY(180deg);
}

/* Desktop: dropdown transition v1 */
@media (min-width: 769px) {
    .frame-tmv1-header-frame-menu .menu-pop-theme-v1 {
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
}

/* Mobile: panel drawer v1 */
@media (max-width: 768px) {
    .frame-tmv1-header-frame-menu .menu-pop-theme-v1 {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 280px !important;
        height: 100vh !important;
        border-radius: 0 !important;
        overflow-y: auto !important;
        transform: translateX(110%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 9999 !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .frame-tmv1-header-frame-menu .menu-pop-theme-v1 .arrow-up {
        display: none !important;
    }

    .frame-tmv1-header-frame-menu .menu-pop-theme-v1.drawer-open {
        transform: translateX(0);
    }

    .frame-tmv1-header-frame-menu .menu-pop-theme-v1 > ul > li > a {
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .frame-tmv1-header-frame-menu .menu-pop-theme-v1 > ul > li > a .right {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        padding-left: 0;
    }

    body.drawer-body-lock .tmv1-header-left,
    body.drawer-body-lock .frame-tmv1-header-frame-search,
    body.drawer-body-lock .frame-trigger-search-mobile,
    body.drawer-body-lock > *:not(.tmv1-header):not(.sticky-header) {
        filter: blur(4px);
        transition: filter 0.32s ease;
    }
}

.frame-info-product-v1{
    width: 100%;
    display: flex;
    max-width: 1140px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0px 10px;
    margin: 0 auto;
}
.frame-info-product-v1 .header-info-product-v1{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(11, 13, 25, 0.20);
    backdrop-filter: blur(3px);
    margin-top: 30px;
    /* margin-bottom: 31px; */
}
.frame-info-product-v1 .header-info-product-v1 .top-content-header-info-product-v1{
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    justify-content: space-between;
}
.frame-info-product-v1 .header-info-product-v1 .left-info-product-v1{
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}
.frame-info-product-v1 .header-info-product-v1 .left-info-product-v1 img{
    width: 80px;
    height: 80px;
    border-radius: 14px;
}
.frame-info-product-v1 .header-info-product-v1 .left-info-product-v1 .properties-info-product-v1{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    justify-content: center;
}
.frame-info-product-v1 .header-info-product-v1 .left-info-product-v1 .properties-info-product-v1 h1{
    margin: 0px;
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    align-self: stretch;
}
.frame-info-product-v1 .header-info-product-v1 .left-info-product-v1 .properties-info-product-v1 h2{
    color: #E4E4E4;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    margin: 0px;
}
.frame-info-product-v1 .header-info-product-v1 .right-info-product-v1{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.frame-info-product-v1 .header-info-product-v1 .right-info-product-v1 b{
    color: #E2E8FF;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
}
.frame-info-product-v1 .header-info-product-v1 .right-info-product-v1 .download-list-info-product-v1{
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}
.frame-info-product-v1 .header-info-product-v1 .right-info-product-v1 .download-list-info-product-v1 a{
    border-radius: 8px;
    border: 1px solid #5C7DBC;
    background: rgba(11, 19, 39, 0.42);
    backdrop-filter: blur(8px);
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    text-decoration: none;
    transition: all 0.2s ease;
}
.frame-info-product-v1 .header-info-product-v1 .right-info-product-v1 .download-list-info-product-v1 a:hover{
    border-radius: 8px;
    border: 1px solid #5C7DBC;
    background: rgba(11, 19, 39, 0.80);
    backdrop-filter: blur(8px);
}
.frame-info-product-v1 .header-info-product-v1 .right-info-product-v1 .download-list-info-product-v1 a i{
    font-size: 14px;
}
.frame-info-product-v1 .header-info-product-v1 .right-info-product-v1 .download-list-info-product-v1 a span{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.frame-info-product-v1 .header-info-product-v1 .bottom-content-header-info-product-v1{

}

.frame-info-product-v1 .header-info-product-v1 .bottom-content-header-info-product-v1 p{
    align-self: stretch;
    overflow: hidden;
    color: rgba(226, 232, 255, 0.80);
    text-overflow: ellipsis;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 128.571% */
    margin-bottom: 0px;
}

.frame-info-product-v1 .content-info-product-v1{
    display: flex;
    width: 100%;
    max-width: 1140px;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 65px;
}
.frame-sidebar-info-product-v1{
    display: flex;
    width: 350px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
}
.sidebar-info-product-v1{
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(11, 13, 25, 0.20);
    backdrop-filter: blur(4px);
}
.frame-title-sidebar{

}
.frame-title-sidebar h4{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    align-self: stretch;
    margin: 0px;
}
.bottom-content-header-info-product-v1 .show-first, .bottom-content-header-info-product-v1 .read-more {
    color: #FFF !important;
}
.popup-bottom-bar .form-check .form-check-input {

}
.game-recomendation-v1{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
}
.game-recomendation-v1 li{
    width: 100%;
}
.game-recomendation-v1 li a{
    text-decoration: none;
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid rgba(217, 237, 255, 0.10);
    background: rgba(226, 232, 255, 0.05);
    width: 100%;
    transition: all .2s ease;
}
.game-recomendation-v1 li a:hover{
    text-decoration: none;
    border: 1px solid #00FF6A;
    background: rgba(226, 232, 255, 0.20);
}

.game-recomendation-v1 li a img{
    width: 44px;
    height: 44px;
    border-radius: 5px;
}
.game-recomendation-v1 li a span{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.frame-content-sidebar{

}

.frame-content-sidebar img{
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
}
.frame-content-sidebar p{
    color: #FFF !important;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}
.frame-content-sidebar a{
    color: #00FF6A;
    text-decoration: none;
}
.frame-content-sidebar span{
    color: #FFF !important;
}

.frame-content-sidebar strong{
    color: #FFF !important;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.sidebar-info-product-v1 p {
    align-self: stretch;
    overflow: hidden;
    color: rgba(226, 232, 255, 0.80);
    text-overflow: ellipsis;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 128.571% */
    margin-bottom: 0px;
}
.sidebar-info-product-v1 .read-more {
    margin-top: 10px
}
.sidebar-info-product-v1 p.showmore-btn {
    color: #fff!important;
    font-size: 14px;;
    line-height: 40px;
}
.frame-denom-info-product-v1{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1 0 0;
    width: 100%;
}
.denom-info-product-v1{
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(17, 8, 57, 0.80);
}

.frame-social-media-v1{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}
.frame-social-media-v1 a{
    text-decoration: none !important;
    display: flex;
    padding: 4px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    transition: background .2s ease;
    background: #4B4263;
}
.frame-social-media-v1 a:hover{
    background: linear-gradient(180deg, #49A7FF 0%, #00FF6A 100%);
}
.frame-social-media-v1 a img{
    width: 36px;
    height: 36px;
    border-radius: 6px;
}

.denom-info-product-v1 .denom-header-product-v1{
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.denom-info-product-v1 .denom-header-product-v1 span{
    display: flex;
    width: 28px;
    height: 28px;
    padding: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: #00FF6A;
    color: #0D0B42;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px; /* 100% */
}
.denom-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #00FF6A;
    color: #0D0B42;
    font-size: 16px;
}
.denom-info-product-v1 .denom-header-product-v1 h3{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0px;
}
.denom-info-product-v1 .denom-input-area-product-v1{
    display: flex;
    align-items: center;
    gap: 17px;
    align-self: stretch;
}
.denom-info-product-v1 .denom-input-area-product-v1 .frame-input-inner{
    flex: 1 0 0;
    width: 100%;
}
.denom-info-product-v1 .denom-input-area-product-v1 .frame-input-inner .error{
    color: white;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}
.denom-info-product-v1 .denom-input-area-product-v1 input{
    display: flex;
    padding: 16px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 8px;
    border: 1px solid #748BDD;
    background: rgba(45, 46, 108, 0.80);
    backdrop-filter: blur(8px);
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
    color: white;
    text-align: center;
}
.denom-info-product-v1 .denom-input-area-product-v1 input:focus{
    border: 1px solid #00FF6A;
    color: #fff;
}
/* Autofill Chrome */
.frame-info-product-v1
.content-info-product-v1
.frame-denom-info-product-v1
.denom-info-product-v1
.denom-input-area-product-v1
input:-webkit-autofill {
    -webkit-box-shadow: rgba(45, 46, 108, 0.80);
    -webkit-text-fill-color: #FFFF;
    transition: background-color 5000s ease-in-out 0s;
}

/* Autofill Chrome saat focus */
.frame-info-product-v1
.content-info-product-v1
.frame-denom-info-product-v1
.denom-info-product-v1
.denom-input-area-product-v1
input:-webkit-autofill:focus {
    -webkit-box-shadow: rgba(45, 46, 108, 0.80);
    -webkit-text-fill-color: #FFFFFF;
}
.denom-info-product-v1 .denom-input-area-product-v1 select{
    display: flex;
    padding: 16px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 8px;
    border: 1px solid #748BDD;
    background: rgba(45, 46, 108, 0.80);
    backdrop-filter: blur(7.800000190734863px);
    outline: none !important;
    box-shadow: none !important;
    color:#fff;

    -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='%23ffffff' 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;
}
.denom-info-product-v1 .how-to-product-v1{
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.denom-info-product-v1 .how-to-product-v1 p{
    color: #E2E8FF;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}
.denom-info-product-v1 .how-to-product-v1 a{
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}
.denom-info-product-v1 .how-to-product-v1 a:hover {
    color: #00FF6A;
}

.mlseparator{
    position: relative;
}

.mlseparator input {
    padding-left: 30px;
    padding-right: 30px;
}

.mlseparator:before,
.mlseparator:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 20px;
    color: #8998D9;
    z-index: 99;
}

.mlseparator:before {
    content: "(";
    left: 10px;
}

.mlseparator:after {
    content: ")";
    right: 10px;
}


.denom-info-product-v1 .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%;
}
.denom-info-product-v1 .list-denom li{
    display: flex;
    height: 110px;
    padding: 12px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    border-radius: 8px;
    border: 1px solid #7B7AA7;
    background: #341B70;
    cursor: pointer;
    transition: all .2s ease;
}
.denom-info-product-v1 .list-denom li:hover{
    border: 1px solid #00FF6A;
}
.denom-info-product-v1 .list-denom li.active{
    border-radius: 8px;
    border: 1px solid #00FF6A;
    background: linear-gradient(270deg, #49A7FF 0%, #5E39CD 100%), url('../../img/powerplay-denom-active.svg');
    background-size: cover;
    background-blend-mode: overlay;
}
.denom-info-product-v1 .list-denom li b{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 146.667% */
}
.denom-info-product-v1 .list-denom li .pricing-icon{
    display: flex;
    padding-top: 2px;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
    backdrop-filter: blur(2px);
}
.denom-info-product-v1 .list-denom li .pricing-icon i{
    color: #E9E9E9;
    font-size: 14px;
}

.denom-info-product-v1 .list-denom li:hover .pricing-icon i{
    color: #E9E9E9;
    font-size: 14px;
    animation: nav-calc-wiggle 0.5s ease forwards;
}

.denom-info-product-v1 .list-denom li .pricing-icon .pricing-detil{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.denom-info-product-v1 .list-denom li .pricing-icon .pricing-detil small{
    color: #00FF6A;
    font-family: "Titillium Web";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: line-through;
}
.denom-info-product-v1 .list-denom li .pricing-icon .pricing-detil span{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.denom-info-product-v1 .area-list-payment-method{
    width: 100%;
}
.denom-info-product-v1 .area-list-payment-method .child-box{
    background: #E0E7FF;
    margin-bottom: 18px;
    border-radius: 8px !important;
    border: 1px solid #13073d;
    transition: all .2s ease;
}
.denom-info-product-v1 .area-list-payment-method .child-box:hover{
    border: 1px solid #00FF6A;
}

.denom-info-product-v1 .area-list-payment-method .child-box.active{
    border: 1px solid #00FF6A;
}

.denom-info-product-v1 .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: white;
    background: #341B70;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    cursor: pointer;
    position: relative;
}
.denom-info-product-v1 .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;
}
.denom-info-product-v1 .area-list-payment-method .child-box .header .left img{
    height: 23px;
    filter: invert(94%) sepia(91%) saturate(0%) hue-rotate(124deg) brightness(113%) contrast(101%);
}
.denom-info-product-v1 .area-list-payment-method .child-box .header .left b{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.denom-info-product-v1 .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: linear-gradient(0deg, rgba(64, 64, 64, 0.20) 0%, rgba(64, 64, 64, 0.20) 100%), linear-gradient(270deg, #00FF6A 0%, #207AEF 100%);
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 13px; /* 92.857% */
}
.denom-info-product-v1 .area-list-payment-method .child-box .header .right b{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment{
    display: none;
}
.denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment ul{
    list-style: none;
    display: flex;
    padding: 24px 24px 0px 24px;
    flex-direction: row;
    justify-content: space-between;
    align-content: space-between;
    gap: 15px;
    align-self: stretch;
    background: #E0E7FF;
    flex-wrap: wrap;
    align-items: flex-start;
}
.denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment ul li{
    display: flex;
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #CDCDCD;
    background: #FFF;
    width: calc(51% - 15px);
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    transform: .2s ease;
    min-height: 120px;
}
.denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment ul li .ribbon__content{
    position: absolute;
    /* right: 0; */
    display: flex;
    /* padding: 2px 6px; */
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 33px;
    background: linear-gradient(0deg, rgba(64, 64, 64, 0.20) 0%, rgba(64, 64, 64, 0.20) 100%), linear-gradient(270deg, #00FF6A 0%, #207AEF 100%);
    color: var(--BaseWhite, #FFF);
    font-family: "Titillium Web";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 13px;
    top: -12px;
    left: 12px;
    text-transform: uppercase;
}
.denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment ul li:hover{
    border: 1px solid #341B70;
}
.denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment ul li.active{
    border: 1px solid #341B70;
}
.denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment ul li.disabled{
    border: 1px solid #CDCDCD;
    background: #EEEFF4;
    pointer-events: none !important;
}
.denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment ul li .info-top{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 10px;
}
.denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment ul li .info-top img{
    height: 21px;
    flex-shrink: 0;
}
.denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment ul li .info-top b{
    color: #514A6D;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment ul li .info-bottom{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    width: 100%;
}
.denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment ul li .info-bottom b{
    color: #000;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.denom-info-product-v1 .area-list-payment-method .child-box .short-payment-support-info{
    display: flex;
    padding: 12px 40px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    cursor: pointer;
}
.denom-info-product-v1 .area-list-payment-method .child-box .short-payment-support-info .banks-payment-support-lists{
    display: flex;
    align-items: center;
    gap: 15px;
}
.denom-info-product-v1 .area-list-payment-method .child-box .short-payment-support-info .banks-payment-support-lists img{
    height: 15px;
}
.denom-info-product-v1 .area-list-payment-method .child-box .short-payment-support-info a.open-button-action-payment{
    color: #000;
}


/* AREA KONFIRMASI PEMBAYARAN */
.konfirmasi-pembelian-area-theme-v1{
    display: flex;
    padding-bottom: 50px;
    justify-content: center;
    align-items: flex-start;
    gap: 27px;
    align-self: stretch;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1{
    flex: 1;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .header-konfirmasi-pembelian-input-theme-v1{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .header-konfirmasi-pembelian-input-theme-v1 i{
    color: #00FF6A;
    font-size: 14px;
    transform: rotate(-37deg);
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .header-konfirmasi-pembelian-input-theme-v1 b{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px; /* 131.25% */
    flex: 1 0 0;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .form-frame-v1{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
    width: 100%;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .form-frame-v1 label{
    display: flex;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .form-frame-v1 input{
    display: flex;
    padding: 10px 14px;
    align-items: flex-end;
    gap: 10px;
    align-self: stretch;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #88A2DB;
    background: #2D2E6C;
    backdrop-filter: blur(8px);
    color: #fff;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline:none !important;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .form-frame-v1 input::placeholder{
    color: #8998D9;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .form-frame-v1 input:hover{
    border: 1px solid #00FF6A;
}

.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .form-frame-v1 input:focus{
    border: 1px solid #00FF6A;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .form-frame-v1 input::-webkit-outer-spin-button,
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .form-frame-v1 input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .form-frame-v1 small{
    color: rgba(226, 232, 255, 0.80);
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .form-frame-v1 input:hover {
    border: 1px solid #00FF6A;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .form-frame-v1 .wrong-email-badge{
    margin: 0px;
    color: #ff5757;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    display: none;
}

.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .seaparator-frame-v1{
    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-v1 .area-konfirmasi-pembelian-input-theme-v1 .seaparator-frame-v1::before{
    content: " ";
    width: 145px;
    height: 1px;
    position: absolute;
    background: #748BDD;
    z-index: 99;
    top: 10px;
    left: 0;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .seaparator-frame-v1 span{
    color: #748BDD;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-input-theme-v1 .seaparator-frame-v1::after{
    content: " ";
    width: 145px;
    height: 1px;
    position: absolute;
    background: #748BDD;
    z-index: 99;
    top: 10px;
    right: 0;
}

.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-summary-theme-v1{
    width: 330px;
}

.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-summary-theme-v1 table{
    width: 100%;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-summary-theme-v1 table tr{
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-summary-theme-v1 table tr td{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 150% */
    padding: 10px;
    padding-left: 0px;
    padding-right: 0px;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-summary-theme-v1 table tr td b{
    color: #FFF;
    text-align: right;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px; /* 150% */
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-summary-theme-v1 table tr td:first-child{
    text-align: left;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-summary-theme-v1 table tr td:last-child{
    text-align: right;
    width: 50%;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-summary-theme-v1 .area-payment-final-preview{
    display: flex;
    padding: 4px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    background: #333F8C;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-summary-theme-v1 .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;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-summary-theme-v1 .area-payment-final-preview .logo-payment-final-preview img{
    height: 24px;
    max-width: 100%;
    object-fit: contain;
}
.konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-summary-theme-v1 .area-payment-final-preview b{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 150% */
    padding: 5px 12px;
    display: flex;
}
.submit-pembelian-area-theme-v1{
    display: flex;
    width: 300px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.submit-pembelian-area-theme-v1 button{
    display: flex;
    padding: 15.5px 60px 16.5px 60px;
    justify-content: center;
    align-items: center;
    gap: 17.447px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #5C7DBC;
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%);
    color: #FFF;
    text-align: center;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    align-content: center;
    transition: all .2s ease;
    cursor: pointer;
}
.submit-pembelian-area-theme-v1 button.disabled{
    pointer-events: none !important;
    background: linear-gradient(0deg, #BECBEE 0%, #BECBEE 100%), linear-gradient(180deg, #49A7FF 0%, #4961FF 100%);
}
.submit-pembelian-area-theme-v1 button:hover{
    background: linear-gradient(180deg, #3B7EFA 0%, #4B1BDC 100%);
}
.submit-pembelian-area-theme-v1 .transaksi-aman-logo{
    display: flex;
    align-items: center;
    gap: 20px;
}
.submit-pembelian-area-theme-v1 .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: #FFF;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}
.area-insert-coupons-before-checkout b a.coupon-field-trigger{
    color: #00FF6A;
    font-family: "Titillium Web";
    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-radius: 8px;
    border: 1px solid #88A2DB;
    background: #2D2E6C;
    position: relative;
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon input{
    border-radius: 8px !important;
    width: 100%;
    background-color: #2D2E6C !important;
    border: 0;
    padding: 0;
    color: #fff;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon input::placeholder{
    color: #8998D9;
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon:hover{
    border: 1px solid #00FF6A;
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon:focus-within{
    border: 1px solid #00FF6A;
}
.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: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%), #078043;
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 14px;
    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: linear-gradient(180deg, #3B7EFA 0%, #4B1BDC 100%);
}
.area-insert-coupons-before-checkout .frame-area-insert-coupon a.frame-coupon-discount-applied.removed_disc{
    background: #F00;
}
.area-insert-coupons-before-checkout .parent-frame-area-insert-coupon{
    width: 100%;
    display: none;
}
.area-insert-coupons-before-checkout .frame-coupon-discount-errormsg{
    color: rgba(226, 232, 255, 0.80);
    font-family: "Titillium Web";
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: 16.5px; /* 150% */
}
.area-insert-coupons-before-checkout .frame-coupon-discount-errormsg.success{
    color: #00FF6A;
    font-weight: 600;
}
.area-insert-coupons-before-checkout .frame-coupon-discount-errormsg.failed{
    color: #ff5656 !important;
}

input.user_id.first-input.inputuserandserver::placeholder {
    color: #8998D9;
}
input.server_id.second-input.inputuserandserver::placeholder {
    color: #8998D9;
}
.denom-info-product-v1 .denom-input-area-product-v1 input:hover{
    border: 1px solid #00FF6A;
}

.transaction-progress-v1{
    display: flex;
    width: 1100px;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    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-v1 h1{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}



.stepper-wrapper {
    display: flex;
    width: 650px;
    margin: 0 auto;
    /* margin-bottom: 20px; */
    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 #49A7FF;
    width: 100%;
    top: 16px;
    left: -50%;
    z-index: 2;
}
.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #8C9EAD;
    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: #8C9EAD;
    margin-bottom: 6px;
    font-size: 13px;
    color: white;
}
.stepper-item .step-name {
    color: #8C9EAD;
    text-align: center;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.stepper-item.completed .step-name{
    color: #49A7FF;
}
.stepper-item.active {
    font-weight: bold;
}
.stepper-item.completed .step-counter {
    background-color: #49A7FF;
}
.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #49A7FF;
    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{
    display: flex;
    align-items: flex-start;
    gap: 25px;
    align-self: stretch;
}
.frame-transaction-progress-details .payment-transaction-progress-details{
    display: flex;
    width: 563px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    border: 1px solid rgba(245, 245, 245, 0.10);
}
.frame-transaction-progress-details .payment-transaction-progress-details .header-payment-transaction-detail{
    display: flex;
    height: 54px;
    padding: 15px 20px;
    align-items: center;
    gap: 27px;
    align-self: stretch;
    border: 1px solid #EBF1F5;
    background: #E0E7FF;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.frame-transaction-progress-details .payment-transaction-progress-details .header-payment-transaction-detail img{
    height: 24px;
}

.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail{
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    background: rgba(17, 8, 57, 0.80);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail .amount-must-pay{
    color: #FFF;
    text-align: center;
    font-family: "Titillium Web";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}
.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail .amount-must-pay span{
    color: #00FF6A;
    font-family: "Titillium Web";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail .virtual-account-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail .virtual-account-info small{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 150% */
}
.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail .virtual-account-info .virtual-account-info-number{
    display: flex;
    align-items: center;
    gap: 10px;
}
.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail .virtual-account-info .virtual-account-info-number b{
    color: #FFF;
    text-align: right;
    font-family: "Titillium Web";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
}
.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail .virtual-account-info .virtual-account-info-number a{
    border-radius: 5px;
    border: 1px solid #00FF6A;
    background: #13164E;
    display: flex;
    padding: 5px;
    align-items: center;
    gap: 10px;
    color: #00FF6A;
    font-size: 12px;
    text-decoration: none;
    transition: all .2s ease;
}
.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail .virtual-account-info .virtual-account-info-number a:hover{
    background: #00FF6A;
    color: #13164E;
}

.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail .tempo-time-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail .tempo-time-info small{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 150% */
}
.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail .tempo-time-info b{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.frame-transaction-progress-details .payment-transaction-progress-details .body-payment-transaction-detail .tempo-time-info b span{
    color: #00FF6A;
    text-align: right;
    font-family: "Titillium Web";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.frame-transaction-progress-details .info-transaction-progress-details{
    flex: 1;
}

.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview{
    margin: 0 auto;
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-preview{
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}
.frame-transaction-progress-details .info-transaction-progress-details .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-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-preview .tgp-detail small{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 150% */
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-preview .tgp-detail b{
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-family: "Titillium Web";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px; /* 125% */
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-preview .tgp-detail span{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 125% */
}

/* CRK2 */
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-detail{
    margin-top: 20px;
}

.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-detail table{
    width: 100%;
}

.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-detail table tr{
    border: 0px;
    /* border-bottom: 1px solid #ebf1f5; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-detail table tr td{
    /* background: white; */
    color: #E2E8FF;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 150% */
}

.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-detail table tr td b{
    color: #FFF;
    text-align: right;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px; /* 150% */
}

.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-detail table tr td:first-child{
    text-align: left;
    padding-left: 0px;
    padding: 12px;
    padding-left: 0px;
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-detail table tr td:last-child{
    text-align: right;
    padding-right: 0px;
}

.frame-transaction-progress-details .info-transaction-progress-details .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-transaction-progress-details .info-transaction-progress-details .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-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-detail table tr td .badge-self{
    justify-content: flex-end;
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-detail table tr td .trx-number-info b{

}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-detail table tr td .trx-number-info a{
    border-radius: 5px;
    border: 1px solid #00FF6A;
    background: #13164E;
    display: flex;
    padding: 5px;
    align-items: center;
    gap: 10px;
    color: #00FF6A;
    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: #00FF6A;
    color: #13164E;
}

/* Spinner lingkaran kecil rapi 8 titik & Status sukses/process*/
.spinner-dots-small {
  position: relative;
  width: 12px;
  height: 12px;
}

.spinner-dots-small div {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #00FF6A;
  border-radius: 50%;
  animation: spinner 1.2s linear infinite;
}

/* 8 titik spinner */
.spinner-dots-small div:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.spinner-dots-small div:nth-child(2) { top: 15%; left: 85%; transform: translate(-50%, -50%); animation-delay: 0.15s; }
.spinner-dots-small div:nth-child(3) { top: 50%; left: 100%; transform: translate(-50%, -50%); animation-delay: 0.3s; }
.spinner-dots-small div:nth-child(4) { top: 85%; left: 85%; transform: translate(-50%, -50%); animation-delay: 0.45s; }
.spinner-dots-small div:nth-child(5) { top: 100%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0.6s; }
.spinner-dots-small div:nth-child(6) { top: 85%; left: 15%; transform: translate(-50%, -50%); animation-delay: 0.75s; }
.spinner-dots-small div:nth-child(7) { top: 50%; left: 0; transform: translate(-50%, -50%); animation-delay: 0.9s; }
.spinner-dots-small div:nth-child(8) { top: 15%; left: 15%; transform: translate(-50%, -50%); animation-delay: 1.05s; }

/* animasi memudar untuk efek putar */
@keyframes spinner {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.status-processing {
    height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 3px 6px 3px 6px;
    border: 1px solid #00FF6A;
    border-radius: 6px;
    color: #00FF6A;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Titillium Web';
    gap: 6px;
}
.status-sukses {
    height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 3px 6px 3px 6px;
    border: 1px solid #00FF6A;
    border-radius: 6px;
    color: #00FF6A;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Titillium Web';
    gap: 6px;
}
button.btn.btn-orange-outline {
    background: white;
    color: #13164E;
    width: 100%;
    padding: 10px;
    border: none;
    margin-top: 15px;
    border-radius: 8px;
}

button.btn.btn-orange-outline:hover {
    color: white;
    background: #00FF6A;
}
.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 rgba(255, 255, 255, 0.20);
    background: rgba(17, 8, 57, 0.80);
    margin-top: 20px;
}

.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-suggestion p{
    color: #E2E8FF;
    font-family: "Titillium Web";
    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;
    filter: invert(90%) sepia(89%) saturate(52%) hue-rotate(347deg) brightness(111%) contrast(98%);
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-help .help-content b{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px; /* 150% */
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-help p{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 150% */
    margin: 0px;
    align-self: stretch;
}
.frame-transaction-progress-details .info-transaction-progress-details .frame-transaksi-game-preview .transaksi-game-help p a{
    color: #00FF6A;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    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: white;
}
.panduan-simple-list .heading b{
    color: #FFF;
    font-family: "Titillium Web";
    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: #FFF;
    font-family: "Titillium Web";
    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: 1px solid #5C7DBC;
    background: rgba(255, 255, 255, 0.05);
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    width: 140px;
    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-radius: 6px;
    margin-bottom: 7px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #5C7DBC;
}
.accrodion-how-to .child-accordion .header-accordion{
    color: #FFF;
    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;
    transition: all .2s ease;
}
.accrodion-how-to .child-accordion .header-accordion:hover{
    border-radius: 6px;
    /* border: 1px solid #FFF; */
    background: rgba(255, 255, 255, 0.14);
}
.accrodion-how-to .child-accordion .header-accordion:hover i{
    color: #00FF6A;
}
.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: #FFF;
    font-family: "Titillium Web";
    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: 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 27px;
    align-self: stretch;
    border: 1px solid rgba(245, 245, 245, 0.10);
    background: #0C052B;
    /* margin-top: 20px; */
}
.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 #5C7DBC;
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%);
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none !important;
}

.area-qrris .download-qrcode:hover{
    background: linear-gradient(180deg, #3B7EFA 0%, #4B1BDC 100%);
}
.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 #5C7DBC;
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%);
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none !important;
}
.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-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 150% */
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-preview .tgp-detail b{
    overflow: hidden;
    color: #FFF;
    text-overflow: ellipsis;
    font-family: "Titillium Web";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px; /* 125% */
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-preview .tgp-detail span{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 125% */
}

/* CRK2 */
.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 #ebf1f5; */
    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: #E2E8FF;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px; /* 150% */
}

.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr td b{
    color: #FFF;
    text-align: right;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.5px; /* 150% */
}

.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 #00FF6A;
    background: #13164E;
    display: flex;
    padding: 5px;
    align-items: center;
    gap: 10px;
    color: #00FF6A;
    font-size: 12px;
    text-decoration: none;
    transition: all .2s ease;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-detail table tr td .trx-number-info a:hover{
    background: #00FF6A;
    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: #E2E8FF;
    font-family: "Titillium Web";
    font-size: 14px;
    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;
    align-items: center;
    gap: 5px;
    align-content: center;
    flex-direction: row;
}
.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-family: "Titillium Web";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px; /* 150% */
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-help p{
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 150% */
    margin: 0px;
    align-self: stretch;
}
.single-payment-finish-wrapper .frame-transaksi-game-preview .transaksi-game-help p a{
    color: #00FF6A;
    font-family: "Titillium Web";
    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: 1440px; */
    /* padding-bottom: 84px; */
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cek-transaksi-header{
    display: flex;
    width: 1100px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 4px;
    background: url('../../img/cektransaksi-powerplay-bg.webp');
    margin: 0 auto;
    /* margin-top: 40px;
    margin-bottom: 50px; */
    border-radius: 4px;
    background-size: cover;
    background-position: right;
}
.cek-transaksi-header h1{
    color: #fff;
    font-family: "Titillium Web";
    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: #fff;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    top: 10px;
    left: 16px;
    z-index: 99;
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search p{
    display: flex;
    align-items: center;
    width: 414px;
    height: 44px;
    padding: 12px 8px;
    padding-left: 100px;
    font-family: "Titillium Web";
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border-radius: 8px;
    border: 1px solid #748BDD;
    background: rgba(45, 46, 108, 0.80);
    backdrop-filter: blur(8px);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search span::after {
    content: ":";
    margin-left: 4px;
    color: #fff;
    font-weight: 600;
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search input{
    display: flex;
    width: 414px;
    height: 44px;
    padding: 12px 8px;
    align-items: center;
    gap: 10px;
    padding-left: 120px;

    /* text-align: center; */
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff;

    border-radius: 8px;
    border: 1px solid #748BDD;
    background: rgba(45, 46, 108, 0.80);
    backdrop-filter: blur(8px);
    outline: none!important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search input{
    border: 1px solid #748BDD;
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search input:hover{
    border: 1px solid #00FF6A;
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search input:focus{
    border: 1px solid #00FF6A;
}
.cek-transaksi-header .frame-frame-search-trx .ffst-search input::placeholder{
    color: #8998D9 !important;
}
/* Autofill di Chrome, Safari, Edge */
.cek-transaksi-header .frame-frame-search-trx .ffst-search input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px rgba(45, 46, 108, 0.8) inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    transition: background-color 5000s ease-in-out 0s; /* mencegah flash autofill */
}
.cek-transaksi-header .frame-frame-search-trx .hit-q-trx{
    display: flex;
    padding: 9px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #5C7DBC;
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%), #EE8103;
    color: var(--BaseWhite, #FFF);
    text-align: center;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px;
    transition: all .2s ease;
}
.cek-transaksi-header .frame-frame-search-trx .hit-q-trx:hover{
    border: 1px solid #5C7DBC;
    background: linear-gradient(180deg, #3B7EFA 0%, #4B1BDC 100%);
}
.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-family: "Titillium Web"  !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: #fff !important;
    font-family: "Titillium Web" !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 22px !important;
}
.cek-transaksi-header .frame-footer-search-trx p a{
    color: #00FF6A !important;
    font-family: "Titillium Web" !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 22px !important;
    text-decoration-line: underline !important;
}

.cek-transaksi-content{
    display: flex;
    width: 1100px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    /* background: #fff; */
    margin: 0 auto;
    border-radius: 4px;
    background: rgba(17, 8, 57, 0.80);
}
.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: #fff;
    font-family: "Titillium Web";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.cek-transaksi-content .stepper-wrapper{
    width: 650px;
    /* margin-left: auto !important; */
    margin: 0 auto;
}
.cek-transaksi-content .stepper-wrapper .stepper-item .step-name{
    font-size: 15px;
}
.cek-transaksi-content .frame-transaksi-game-preview{
    width: 594px;
    margin: 0 auto;
}

.cek-transaksi-content h6{
    color: #fff;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}
.cek-transaksi-content-table-wrapper{
    border: 1px solid #748BDD;
    border-radius: 4px;
    width: 100%;
}
.cek-transaksi-content table{
    width: 100%;
    /* border: 1px solid #D9DFE2; */
}
.cek-transaksi-content table thead{
    background: #204EC2;
}
.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-family: "Titillium Web";
    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: #fff;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cek-transaksi-content table tbody tr:nth-child(odd) td {
    background-color: #1A255C;
}

.cek-transaksi-content table tbody tr:nth-child(even) td {
    background-color: #121B4A;
}

.cek-transaksi-content table tbody tr td .badge-self{
    display: flex;
    padding: 2px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: "Titillium Web";
    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;
    border: 1px solid #5C7DBC;
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%), #EE8103;
    color: var(--BaseWhite, #FFF);
    text-align: center;
    font-family: "Titillium Web";
    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 #5C7DBC;
    background: linear-gradient(180deg, #3B7EFA 0%, #4B1BDC 100%);
}

.cek-transaksi-content .transaksi-game-help .help-content{
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}
.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: #1c1c1c;
    font-size: 18px;
}
.cek-transaksi-content .transaksi-game-help .help-content p{
    color: #1c1c1c;
    font-size: 14px;
}
.cek-transaksi-content .transaksi-game-help .help-content a{
    color: #0d4e78;
    text-decoration: none;
    font-weight: 600;
}

.cek-transaksi-content-resp .single-payment-finish-wrapper{
    margin: 0 auto;
    margin-top: 20px;
}

.content-with-sidebar-static{
    display: flex;
    width: 1140px;
    min-height: 730px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(17, 8, 57, 0.80);
    margin: 0 auto;
    margin-top: 31px;
    margin-bottom: 31px;
}
.content-with-sidebar-static .simple-content-static{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
}
.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(--BaseWhite, #FFF);
    text-align: center;
    font-family: "Titillium Web";
    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{
    font-family: "Titillium Web";
    color: #FFF;
    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: #00FF6A!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: #351b70;
    z-index: 1000;
    padding: 10px;
    border-radius: 0.5em;
    border: 1px solid #7b7aa7;
    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: #351b70;
    border-width: 11px;
    margin-left: -17px;
}
.popover-custom:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: #7b7aa7;
    border-width: 13px;
    margin-left: -20px;
}
.popover-image{
    /* width: 240px !important; */
    cursor: pointer;
    width: 100% !important;
}

.modal-content {
  background: rgba(17, 8, 57, 1);
  color: white;
}
.modal-header{
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #2a1d7c;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}
.modal-header button{
    -webkit-appearance: none !important;
    appearance: none !important;
    border: none !important;
    color: white !important;
    font-size: 16px !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;
    filter: invert(100%);
}
.modal-footer .btn-danger.themev1 {
    border-radius: 6px;
    border: 1px solid #5C7DBC;
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%);
    height: 42px;
}
.modal-footer .btn-danger.themev1:hover{
    background: linear-gradient(180deg, #3B7EFA 0%, #4B1BDC 100%);
}

.modal-footer .btn-secondary.themev1 {
    border-radius: 6px;
    border: 1px solid #5C7DBC;
    background: transparent;
    height: 42px;
}

.modal-footer .btn-secondary.themev1:hover{
    background: #20115d;
    border: 1px solid #516386;
}

.form-floating textarea {
    border: 1px solid #748BDD;
    background: rgba(45, 46, 108, 0.80);
    color: #fff;
}

.form-floating textarea:focus {
    border: 1px solid #00FF6A;
    color: #fff;
        background: rgba(45, 46, 108, 0.80);

}
.form-floating input {
    border: 1px solid #748BDD;
    background: rgba(45, 46, 108, 0.80);
    color: #fff;
}
.form-floating input:focus {
    border: 1px solid #00FF6A;
    color: #fff;
        background: rgba(45, 46, 108, 0.80);

}
.form-floating label {
    color: white;
}

.modal-footer {
    border-top: 1px solid #2a1d7c;
}

.frame-trigger-search-mobile{
    display: none;
}

.frame-tmv1-header-frame-search form .close-search-mobile{
    display: none;
}

/* flash sale */
.frame-header-flash-sale-v1 .title-frame h3 {
    text-transform: uppercase;
}
.frame-grid-product-v1 .frame-header-flash-sale-v1{
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding: 0px 10px;
}

.frame-grid-product-v1 .frame-header-flash-sale-v1 .title-frame{
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}


.frame-grid-product-v1 .frame-header-flash-sale-v1 .trigger-top-product-nav{
    display: flex;
    width: 83px;
    justify-content: space-between;
    align-items: center;
}
.frame-grid-product-v1 .frame-header-flash-sale-v1 .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-grid-product-v1 .frame-header-flash-sale-v1 .trigger-top-product-nav a.disable{
    pointer-events: none !important;
    background: rgba(255, 255, 255, 0.20);
    color: #bbbbbb;
}
.frame-grid-product-v1 .frame-header-flash-sale-v1 .trigger-top-product-nav a:hover{
    background: #00FF6A;
    color: #1A255C;
}
.frame-grid-product-v1 .frame-header-flash-sale-v1 .trigger-top-product-nav a i{

}

.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: 4px 10px;
}
.card-flash-sale {
    display: flex;
    width: 270px;
    padding: 12px;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #575757;
    /* 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 {
    border: 1px solid #00FF6A;
}

.card-flash-sale img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    border: 1px solid #575757;
}

.card-flash-sale:hover img {
    border: 1px solid #cfcfcf;
}

.card-flash-sale .label-group-fs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex: 1 0 0;
}
.card-flash-sale .label-group-fs h6 {
    color: #00FF6A;
    text-align: left;
    font-family: "Titillium Web";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
    line-height: normal;
    margin: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    align-self: stretch;
    max-width: 125px;
}
.card-flash-sale .label-group-fs b {
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 157.143% */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-right: 10px;
    width: 130px;
}

.badge-off-sale {
    background: #C5E5FF;
    position: relative;
    right: 0;
    top: 0;
    transform: rotate(35.993deg);
}

.badge-off-sale b {
    margin: 0px;
    color: #000;
    font-family: "Titillium Web";
    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: 12px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    width: 120px;
    display: block;
    background: #C5E5FF;
    background: linear-gradient(#d90000 0%, #ff5f33 100%);
    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: 10;
    font-family: "Titillium Web";

}
.calc-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: 60px 0px;
    gap: 30px;
    height: calc(100% - 386px);
    padding: 16px;
}
.calc-section {
    display: flex;
    max-width: 560px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.calc-form-wrapper {
    display: flex;
    width: 100%;
    max-width: 560px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.calc-head-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}
.calc-container img {
    max-width: 175px;
}
.calc-container h1 {
    color: #fff;
    font-family: "Titillium Web", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0px;
}
.calc-container span {
    color: #fff;
    text-align: center;
    text-align: center;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}
.input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.input-wrapper label {
    width: 100%;
    color: #FFF;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.input-wrapper input {
    width: 100%;
    padding: 16px 14px;
    border-radius: 8px;
    border: 1px solid #748BDD;
    background: rgba(45, 46, 108, 0.80);
    backdrop-filter: blur(8px);
    outline: none !important;
    box-shadow: none !important;
    color: white;
    transition: all .1s ease;
}
.input-wrapper input:hover{
    border: 1px solid #00FF6A;
}
.input-wrapper input:focus{
    border: 1px solid #00FF6A;
}
.input-wrapper input::-webkit-outer-spin-button,
    .input-wrapper input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
}

.input-wrapper input[type=number] {
  -moz-appearance: textfield;

}

button.primary-btn-tv1 {
    margin-top: 10px;
    display: flex;
    height: 56px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 8px;
    color: #fff;
    border: 1px solid #5C7DBC;
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%);
    width: 100%;
    transition: all 0.1s ease;
    margin: 0px;
}
button.primary-btn-tv1:hover {
    background: linear-gradient(180deg, #3B7EFA 0%, #4B1BDC 100%);
}
.result-calc {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #9AA4B2;
    background: linear-gradient(180deg, rgba(11, 13, 25, 0.20) 0%, rgba(56, 66, 127, 0.20) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
}
.result-calc.xrow {
    flex-direction: row;
    justify-content: space-between;
}

.result-calc h3 {
    color: #00FF6A;
    text-align: center;
    font-family: "Titillium Web";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.result-calc b{
    color: #FFF;
    text-align: center;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.zodiac-group-slider input {
    border: none;
    background: transparent;
}
/* The slider itself */
.zodiac-group-slider .slider {
  appearance: none;  /* Override default CSS styles */
  width: 100%; /* Full-width */
  height: 6px; /* Specified height */
  background: #ebe9e7; /* Grey background */
  outline: none; /* Remove outline */
  border-radius: 5px;
  padding: 0px;
}
.zodiac-group-slider .slider:hover {
    border: none;
}

.zodiac-group-slider .slider:focus {
    border: none;

}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.zodiac-group-slider .slider::-webkit-slider-thumb {
  appearance: none; /* Override default look */
  width: 20px; /* Set a specific slider handle width */
  height: 20px; /* Slider handle height */
  background: #fff; /* Green background */
  border-radius: 50%;
  cursor: pointer; /* Cursor on hover */
}

.zodiac-group-slider .slider::-moz-range-thumb {
  appearance: none; /* Override default look */
  width: 20px; /* Set a specific slider handle width */
  height: 20px; /* Slider handle height */
  background: #fff; /* Green background */
  border-radius: 50%;
  cursor: pointer; /* Cursor on hover */
}


.anchor-nav {
    width: 100%;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
}
.btn-category-primary {
    color: #fff;
    border: 1px solid #00FF6A;
    background: rgba(226, 232, 255, 0.05);
    width: fit-content;
    margin: 0px;
    gap: 6px;
}
.btn-category-primary:hover {
    border-radius: 8px;
    border: 1px solid #00FF6A;
    background: linear-gradient(270deg, #49A7FF 0%, #5E39CD 100%);
    background-size: cover;
    background-blend-mode: overlay;
    color: #fff;

}
.category-block {
    width: 100%;
}
.divider-top {
    border-top: solid 1px #2d2874;
    padding-top: 20px;
    scroll-margin-top: 80px;
}
/* Blog section */
.card.dv-card-blog {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(11, 13, 25, 0.20);
    transition: all 0.1s ease;
}
.dv-card-blog .card-title.dv-blog-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    align-self: stretch;
    overflow: hidden;
}
.card-title.dv-blog-title {
    color: #fff !important;
    line-height: 1.5;
    font-family: "Titillium Web";
    font-weight: 600;
}

.text-muted.dv-color {
    color: #A6A6A6!important;
}

.card.dv-card-blog:hover {
    border-radius: 8px;
    border: 1px solid #2994F8;
    background: rgba(32, 13, 116, 0.80);
}
.card.dv-content-blog {
    background: transparent;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    font-family: "Titillium Web";
}

.dv-blog p,
.dv-blog span,
.dv-blog li {
    color: #F6F6F6;
}

.dv-blog h1,
.dv-blog h2,
.dv-blog h3,
.dv-blog h4,
.dv-blog h5
{
    color: #fff;
}
.dv-blog a
{
    color: #00FF6A;
    text-decoration: none;
}
.content.dv-blog img {
    max-width: 100%;
}
.rounded-pill.dv-pill {
    border-radius: 4px;
    background: #00FF6A!important;
    color: #000;
}

.rounded-pill.dv-pill:hover {
    background: #00FF6A!important;
    color: #000;
}
.card-widget-article {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(11, 13, 25, 0.20);
    backdrop-filter: blur(3.549999952316284px);
    font-family: "Titillium Web";
}

.card-widget-article h4 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

a.dv-other-blog {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}
a.dv-other-blog:hover {
    color: #00FF6A;
}
.dv-flex-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dv-content-widget p {
    color: #fff;
    font-size: 14px;
    line-height: 21px;

}
.dv-content-widget a {
    color: #00FF6A;
    text-decoration: none;
}
.dv-content-widget img {
    max-width: 100%;
}
.sticky-widget-blog {
    height: fit-content;
    top: 100px;
    position: sticky;
}
/* end desktop */
@media (min-width: 481px) and (max-width: 767px) {

    .frame-grid-product-v1 {
        padding: 40px 10px 0px 10px;
    }
    .frame-grid-product-v1 .parent-grid-product-v1{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
    }
    .parent-top-product-v1 .child-top-product-v1 h6{
        width: 120px;
    }
    .footer-theme-v1 .footer-payment-method-v1{
        width: 100%;
    }
    .parent-list-payment-method-v1{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .superparent-list-payment-method-v1{
        width: 100%;
        overflow: hidden;
    }
    .frame-top-product-v1{
        overflow: hidden;
        gap: 16px;
        height: auto;
        margin-top: 20px;
    }

    .frame-grid-product-v1.bg-frame-v1 {
        margin-top:20px
    }
}
/*tablet view */
@media (min-width: 768px) and (max-width: 990px) {
    .frame-grid-product-v1 {
        padding: 40px 10px 0px 10px;
    }
    .frame-grid-product-v1 .parent-grid-product-v1{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
    }
    .frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1 img{
        width: 180px;
        height: 180px;
    }
    .parent-top-product-v1 .child-top-product-v1 img{
        width: 180px;
        height: 180px;
    }
    .footer-theme-v1 .footer-payment-method-v1{
        width: 100%;
    }
    .parent-list-payment-method-v1{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .superparent-list-payment-method-v1{
        width: 100%;
        overflow: hidden;
    }
    .frame-top-product-v1{
        overflow: hidden;
        gap: 16px;
        height: auto;
        margin-top: 20px;
    }

    .frame-grid-product-v1.bg-frame-v1 {
        margin-top:20px
    }
}

@media (min-width: 991px) and (max-width: 1080px) {
    .frame-grid-product-v1 {
        padding: 40px 10px 0px 10px;
    }
    .frame-grid-product-v1 .parent-grid-product-v1{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        width: 100%;
    }
    .frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1 img{
        width: 190px;
        height: 190px;
    }
    .parent-top-product-v1 .child-top-product-v1 img{
        width: 190px;
        height: 190px;
    }
    .footer-theme-v1 .footer-payment-method-v1{
        width: 100%;
    }
    .parent-list-payment-method-v1{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .superparent-list-payment-method-v1{
        width: 100%;
        overflow: hidden;
    }
    .frame-top-product-v1{
        overflow: hidden;
        gap: 16px;
        height: auto;
        margin-top: 20px;
    }

    .frame-grid-product-v1.bg-frame-v1 {
        margin-top:20px
    }
}

@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-v1 {
        padding: 40px 10px 0px 10px;
    }
    .frame-grid-product-v1 .parent-grid-product-v1{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
    }
    .frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1 img{
        width: 140px;
        height: 140px;
    }
    .parent-top-product-v1 .child-top-product-v1 img{
        width: 140px;
        height: 140px;
    }
    .frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1 h6{
        width: 124px;
    }
    .footer-theme-v1 .footer-payment-method-v1{
        width: 100%;
    }
    .parent-list-payment-method-v1{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .superparent-list-payment-method-v1{
        width: 100%;
        overflow: hidden;
    }
    .frame-top-product-v1{
        overflow: hidden;
        gap: 16px;
        height: auto;
        margin-top: 20px;
    }

    .frame-grid-product-v1.bg-frame-v1 {
        margin-top:20px
    }
}


/*mobile view */
/*@media (max-width: 450px){ */
@media (min-width: 320px) and (max-width: 480px) {

    .popover-custom{
        top: 40px;
        left: auto;
        right: -16px;
    }
    .popover-custom:after, .popover-custom:before{
        left: auto;
        right: 14px;
    }
    .popover-custom:after{
        right: 16px !important;
    }

    .frame-tmv1-header-frame-search form{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
    }
    .frame-tmv1-header-frame-search form .close-search-mobile{
        display: flex;
        font-size: 24px;
        color: #00FF6A;
        text-decoration: none !important;
        padding: 8px 12px;
    }
    .frame-tmv1-header-frame-search form .close-search-mobile i{

    }

    .frame-tmv1-header-frame-menu .menu-pop-theme-v1 ul li a > .d-flex b {
        overflow: hidden;
        color: #FFF;
        text-overflow: ellipsis;
        white-space: nowrap; /* Supaya teks tidak wrap ke baris berikutnya */
        font-family: "Titillium Web", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: -0.14px;
    }

    .frame-tmv1-header-frame-menu .menu-pop-theme-v1 ul li a > .d-flex i {
        color: #FFF; /* Icon putih */
        font-size: 14px; /* Bisa disesuaikan */
        padding-left: 5px; /* Mirip padding sebelumnya */
    }

    .calc-form-wrapper .input-wrapper label {
        font-size: 13px;
    }
    .calc-container h1 {
        font-size: 24px;
        text-align: center;
    }
    .frame-tmv1-header-frame-search .result-quick-search{
        right: 10px;
        left: 10px;
    }

    .frame-trigger-search-mobile{
        display: flex;
    }
    .frame-trigger-search-mobile a{
        font-size: 24px;
        color: #fff;
        text-decoration: none !important;
    }
    .frame-trigger-search-mobile a i{

    }

    .frame-top-product-v1 .frame-header-top-product-v1 .trigger-top-product-nav{
        display: none !important;
    }
    .tmv1-header .tmv1-header-left img{
        height: 38px;
    }
    .tmv1-header .tmv1-header-left ul li a{
        display: none;
    }
    .frame-tmv1-header-frame-search{
        position: absolute;
        left: 0;
        right: 0;
        background: rgb(52 94 189);
        top: 0;
        padding: 14px;
        z-index: 99;
        display: none;
        border-bottom: 1px solid rgba(17, 8, 57, 1);
    }
    .tmv1-header .tmv1-header-right .tmv1-header-frame-search{
        width: 100%;
    }
    .tmv1-header .tmv1-content{
        width: 100%;
    }
    .frame-grid-product-v1{
        margin-bottom: 20px;
        padding: 20px 10px 0px 10px;
    }
    .frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1 img{
        width: 90px;
        height: 90px;
    }
    .frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1 h6{
        width: 100%;
        max-width: 100px;
        font-size: 14px;
        font-weight: 400;
    }
    .frame-grid-product-v1 .parent-grid-product-v1{
        /*gap: 12px; */
        grid-template-columns: repeat(3, 1fr);
        /* display: flex; */
        /* flex-direction: row; */
        flex-wrap: wrap;
        width: 100%;
        row-gap: 20px;
        column-gap: 18px;
    }
    .frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1{
        gap: 12px;
        flex: 1 1;
        width:100%;
        margin-bottom: 0px;
        padding: 8px 6px 0px;
        box-sizing: border-box;
    }
    .frame-featured-product-v1 .content-featured{
        width: 100%;
        display: flex;
        align-items: center;
    }
    .frame-featured-product-v1 .content-featured h2{
        text-align: center;
        font-size: 22px;
    }
    .frame-featured-product-v1 .content-featured p.sub{
        text-align: center;
        font-size: 15px;
    }
    .parent-grid-product-v1.limited-height-voucher {
        max-height: 525px;
        overflow-y: hidden;
        -webkit-mask-image: linear-gradient(to bottom, black 0%, black 82%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 0%, black 82%, transparent 100%);
    }
    .footer-theme-v1 .footer-payment-method-v1{
        width: 100%;
    }
    .parent-list-payment-method-v1{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .superparent-list-payment-method-v1{
        width: 100%;
        overflow: hidden;
    }
    .frame-top-product-v1{
        overflow: hidden;
        gap: 12px;
        height: auto;
        margin-top: 24px;
        margin-bottom: 10px;
    }

    .frame-grid-product-v1.bg-frame-v1 {
        margin-top:10px
    }
    .superparent-list-payment-method-v1::after{
        display: none;
    }
    .superparent-list-payment-method-v1::before{
        display: none;
    }
    .parent-top-product-v1{
        display: flex;
        /* width: 1140px; */
        height: 239px;
        align-items: center;
        gap: 20px;
        flex-shrink: 0;
        width: 100%;
        /* overflow: auto; */
        overflow-x: auto;
        margin: 0 auto;
        padding: 0px 10px;
    }
    .frame-top-product-v1 .frame-header-top-product-v1 h3{
        width: 100%;
        margin: 0 auto;
        font-size: 18px;
    }
    .frame-grid-product-v1 h3{
        font-size: 18px;
        padding: 0px;
    }

    .parent-top-product-v1 .child-top-product-v1 img{
        width: 90px;
        height: 90px;
    }
    /* enhancement padding mobile */
    .slider-wrapper .img-slide.active {
        padding: 0px 10px;
    }
    .frame-top-product-v1 .frame-header-top-product-v1{
        padding: 0px 10px;
    }

    /* SEMENTARA */
    .slider-wrapper{
        /* display: none !important; */
        margin-top: 24px;
    }
    .slider-wrapper .img-current{
        height: 150px;
        width: 100% !important;
        margin: 0 auto;
        object-fit: fill;
    }
    .parent-top-product-v1{
        height: auto;
        gap: 14px;
    }
    .overlay-more-games{
        width: 95%;
    }
    .sidebar-info-product-v1 {
        padding: 15px;
    }
    .frame-featured-product-v1 {
        padding: 40px 10px 30px 10px;
    }
    .frame-featured-product-v1 .content-featured .parent-featured-product-v1 .child-featured-product-v1{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        align-self: stretch;
        width: 100%;
        align-content: center;
    }
    .frame-featured-product-v1 .content-featured .parent-featured-product-v1 .child-featured-product-v1 h4{
        color: var(--BaseWhite, #FFF);
        font-family: "Titillium Web";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        margin: 0px;
    }
    .frame-featured-product-v1 .content-featured .parent-featured-product-v1 .child-featured-product-v1 .header-child-featured-product-v1{
        display: flex;
        align-items: center;
        gap: 8px;
        flex-direction: row;
    }

    .frame-featured-product-v1 .content-featured .parent-featured-product-v1{
        display: grid;
        align-content: center;
        justify-content: center;
        align-items: center;
        justify-items: center;
        grid-template-columns: repeat(1, 1fr);
    }
    .frame-featured-product-v1 .content-featured .parent-featured-product-v1 .child-featured-product-v1 p{
        text-align: center;
        margin: 0px;
    }
    .parent-top-product-v1 .child-top-product-v1 h6{
        width: 100px;
        font-size: 14px;
        font-weight: 400;
    }
    .frame-info-product-v1{
        width: 100%;
        gap: 14px;
    }
    .frame-denom-info-product-v1{
        gap: 14px;
        width: 100%;
    }
    .frame-sidebar-info-product-v1{
        display: none;
    }
    .frame-info-product-v1 .content-info-product-v1{
        width: 100%;
    }
    .frame-info-product-v1 .header-info-product-v1 .right-info-product-v1{
        display: none;
    }
    .denom-info-product-v1 .list-denom{
        grid-template-columns: repeat(2, 1fr);
    }
    .denom-info-product-v1 .area-list-payment-method .child-box .short-payment-support-info {
        padding: 14px;
    }
    .denom-info-product-v1 .area-list-payment-method .child-box .short-payment-support-info .banks-payment-support-lists img:nth-child(4),  .denom-info-product-v1 .area-list-payment-method .child-box .short-payment-support-info .banks-payment-support-lists img:nth-child(3){
        display: none !important;
    }
    .denom-info-product-v1 .area-list-payment-method .child-box .header {
        padding: 10px;
    }
    .denom-info-product-v1 .area-list-payment-method .child-box .header .left img{
        height: 18px;
    }
    .denom-info-product-v1 .area-list-payment-method .child-box .header .left b{
        font-size: 18px;
    }
    .denom-info-product-v1 .list-denom li b{
        color: #FFF;
        font-family: "Titillium Web";
        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
        /* white-space: nowrap; */
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .denom-info-product-v1{
        padding: 15px;
    }
    .denom-info-product-v1 .denom-input-area-product-v1 input{
        text-align: center;
    }
    .frame-info-product-v1 .header-info-product-v1{
        margin-top: 14px;
        padding: 15px;
    }
    .frame-info-product-v1 .header-info-product-v1 a.showmore-btn{
        color: #fff!important;
        font-size: 14px;;
        line-height: 40px;
    }
    .frame-info-product-v1 .header-info-product-v1 .read-more b{
        color: #fff!important;
        font-size: 14px;;
        line-height: 40px;
    }
    .denom-info-product-v1 .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: 15px;
        align-self: stretch;
        background: #E0E7FF;
        flex-wrap: wrap;
        align-items: stretch;
        margin-bottom: 0px;
        margin-top: 10px;
    }
    .denom-info-product-v1 .area-list-payment-method .child-box .button-action-payment ul li{
        width: 100%;
    }
    .denom-info-product-v1 .area-list-payment-method .child-box .header .right{
        display:none;
    }
    .konfirmasi-pembelian-area-theme-v1{
        flex-direction: column;
    }
    .konfirmasi-pembelian-area-theme-v1{
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    .konfirmasi-pembelian-area-theme-v1 .area-konfirmasi-pembelian-summary-theme-v1 {
        width: 100%;
    }
    .submit-pembelian-area-theme-v1{
        width: 100%;
    }
    .submit-pembelian-area-theme-v1 button{
        width: 100%;
    }
    .transaction-progress-v1{
        width: 95%;
        margin-top: 20px;
        margin-bottom: 30px;
        padding: 15px;
    }
    .stepper-wrapper{
        width: 100%;
    }
    .frame-transaction-progress-details .payment-transaction-progress-details{
        width: 100%;
    }
    .frame-transaction-progress-details{
        display: flex;
        align-items: center;
        gap: 14px;
        align-self: stretch;
        flex-direction: column;
        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;
        margin-top: 0px;
        padding: 10px;
    }
    .cek-transaksi-header{
        width: 100%;
        padding: 15px;
    }
    .cek-transaksi-content{
        width: 100%;
        padding: 10px;
    }
    .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-header .frame-frame-search-trx .ffst-search p {
        width: 100%;
    }
    .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;
    }
    .footer-theme-v1 .footer-payment-method-v1 b {
        font-size: 18px;
    }
    .top-product-v1-wrapper {
        width: 100%;
        height: 100%;
        position: relative;
    }
    .show_before::before {
        top: 0;
        left: 0;
        background: linear-gradient(90deg, #253aa1 0%, rgb(33 167 182 / 0%) 100%);
        content: "";
        position: absolute;
        z-index: 2;
        width: 30px;
        height: 100%;    }
    .show_after::after {
        top: 0;
        right: 0;
        /* background: linear-gradient(90deg, rgb(33 167 182 / 0%) 0%, #253aa1 100%); */
        content: "";
        position: absolute;
        z-index: 2;
        width: 20px;
        height: 100%;
    }

    .frame-grid-product-v1 .frame-header-flash-sale-v1{
        padding: 0px 10px;
    }

    .frame-grid-product-v1 .frame-header-flash-sale-v1 .trigger-top-product-nav{
        display: none !important;
    }
    .flash-sale-wrapper {
        display: flex;
        gap: 20px;
        flex-direction: row;
        max-width: 100%;
        overflow-x: auto;
        padding: 0px 10px;
    }
    .result-calc.xrow {
        flex-direction: column;
    }
}

.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%;
    }
}

@media (max-width: 319px){
    .frame-grid-product-v1 .parent-grid-product-v1 {
           /*gap: 12px; */
           grid-template-columns: repeat(2, 1fr);
           /* display: flex; */
           /* flex-direction: row; */
           flex-wrap: wrap;
           width: 100%;
           row-gap: 20px;
           column-gap: 18px;
    }
    .frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1 img{
        width: 90px;
        height: 90px;
    }
    .frame-grid-product-v1 .parent-grid-product-v1 .child-top-product-v1 h6{
        width: 100px;
        font-size: 14px;
        font-weight: 400;
    }
}


.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);
    }
  }


.countdown-style3-container span {
	color: #fff!important;
}

.countdown-style4-container span {
	color: #fff!important;
}

.countdown-style5-container span {
	color: #fff!important;
}

@keyframes nav-globe-spin {
    0%   { transform: rotate(0deg) scale(1); }
    40%  { transform: rotate(200deg) scale(1.12); }
    100% { transform: rotate(360deg) scale(1); }
}
@keyframes nav-search-bounce {
    0%   { transform: translateY(0) scale(1); }
    30%  { transform: translateY(-4px) scale(1.1); }
    60%  { transform: translateY(1px) scale(0.95); }
    100% { transform: translateY(0) scale(1); }
}
@keyframes nav-calc-wiggle {
    0%   { transform: rotate(0deg); }
    20%  { transform: rotate(-12deg); }
    50%  { transform: rotate(12deg); }
    75%  { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

/* News (Artikel) & Broadcast (Page Static) hover animations */
@keyframes nav-news-shake {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25%       { transform: rotate(-8deg) scale(1.05); }
    75%       { transform: rotate(8deg) scale(1.05); }
}
@keyframes nav-broadcast-pulse {
    0%, 100% { transform: scale(1); }
    40%      { transform: scale(1.18); }
    70%      { transform: scale(0.93); }
}

.tmv1-header .tmv1-header-left ul li a:hover .svg-nav-globe {
    animation: nav-globe-spin 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.tmv1-header .tmv1-header-left ul li a:hover .svg-nav-search {
    animation: nav-search-bounce 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.tmv1-header .tmv1-header-left ul li a:hover .svg-nav-calc,
.dropdown-calculator-menu:hover .svg-nav-calc {
    animation: nav-calc-wiggle 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.tmv1-header .tmv1-header-left ul li a:hover .svg-nav-news {
    animation: nav-news-shake 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.tmv1-header .tmv1-header-left ul li a:hover .svg-nav-broadcast {
    animation: nav-broadcast-pulse 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── Calculator Dropdown (desktop hover) ───────────────────────── */
.dropdown-calculator-menu {
    position: relative;
    align-self: stretch;
    display: flex !important;
    align-items: center;
}

.calculator-dropdown-trigger i.fa-chevron-down {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-calculator-menu:hover .calculator-dropdown-trigger i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-calculator-menu:hover .calculator-dropdown-trigger,
.dropdown-calculator-menu.active .calculator-dropdown-trigger {
    color: #fff;
}

.calculator-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1D1E20;
    border: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 16px 32px -12px rgba(14, 18, 27, 0.10);
    z-index: 1000;
    min-width: 303px;
    padding: 0;
    overflow: hidden;
}

.calculator-dropdown-item {
    margin-bottom: 0;
    height: 50px;
    overflow: hidden;
}

.calculator-dropdown-item:last-child {
    border-bottom: none;
}

.calculator-dropdown-item a {
    display: flex;
    position: relative;
    width: 303px;
    height: 50px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.calculator-dropdown-item a:hover {
    opacity: 0.9;
}

.calculator-dropdown-item .item-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    z-index: 2;
}

.calculator-dropdown-item .item-title {
    color: #fff;
    text-shadow: none;
    font-size: 14px;
    font-weight: 600;
}

.calculator-dropdown-item .item-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 50px;
}

.calculator-dropdown-item:nth-child(1) .item-bg {
    background: linear-gradient(90deg, #1D1E20 38.1%, rgba(29, 30, 32, 0.00) 67.27%), url('https://digivospaces.b-cdn.net/UniPlay/Statics/calc-winrate-bg.png') lightgray 77.555px -102.052px / 81.902% 499.306% no-repeat !important;
    box-shadow: 0 2px 1px 0 rgba(10, 13, 20, 0.03);
}

.calculator-dropdown-item:nth-child(2) .item-bg {
    background: linear-gradient(90deg, #1D1E20 38.1%, rgba(29, 30, 32, 0.00) 67.27%), linear-gradient(90deg, #1F5537 38.1%, rgba(28, 72, 48, 0.00) 67.27%), url('https://digivospaces.b-cdn.net/UniPlay/Statics/calc-magic-wheel.png') lightgray 60.142px -56.844px / 100% 327.375% no-repeat !important;
    box-shadow: 0 2px 1px 0 rgba(10, 13, 20, 0.03);
}

.calculator-dropdown-item:nth-child(3) .item-bg {
    background: linear-gradient(90deg, #1D1E20 38.1%, rgba(29, 30, 32, 0.00) 67.27%), url('https://digivospaces.b-cdn.net/UniPlay/Statics/calc-zodiak-bg.png') lightgray 77.555px -44.052px / 75.902% 448.306% no-repeat !important;
    box-shadow: 0 2px 1px 0 rgba(10, 13, 20, 0.03);
}

.calculator-dropdown-item:nth-child(1):hover .item-bg {
    background: linear-gradient(90deg, #49A7FF 38.1%, rgba(230, 46, 5, 0.00) 67.27%), url('https://digivospaces.b-cdn.net/UniPlay/Statics/calc-winrate-bg.png') lightgray 77.555px -102.052px / 81.902% 499.306% no-repeat !important;
}

.calculator-dropdown-item:nth-child(2):hover .item-bg {
    background: linear-gradient(90deg, #49A7FF 38.1%, rgba(230, 46, 5, 0.00) 67.27%), url('https://digivospaces.b-cdn.net/UniPlay/Statics/calc-magic-wheel.png') lightgray 60.142px -56.844px / 100% 327.375% no-repeat !important;
}

.calculator-dropdown-item:nth-child(3):hover .item-bg {
    background: linear-gradient(90deg, #49A7FF 38.1%, rgba(29, 30, 32, 0.00) 67.27%), url('https://digivospaces.b-cdn.net/UniPlay/Statics/calc-zodiak-bg.png') lightgray 77.555px -44.052px / 75.902% 448.306% no-repeat !important;
}

/* ── Desktop: sembunyikan elemen mobile-only di nav ───────────── */
@media (min-width: 769px) {
    .menu-pop-theme-v1 .mobile-only {
        display: none !important;
    }

    .dropdown-submenu.dropdown-calculator-mobile {
        display: none !important;
    }

    .cek-transaksi-mobile {
        display: none !important;
    }
}

/* ── Mobile: submenu kalkulator dalam drawer ──────────────────── */
@media (max-width: 768px) {
    .dropdown-submenu:hover .submenu {
        display: none !important;
    }

    .dropdown-submenu > a {
        overflow: visible;
    }

    .dropdown-submenu > a i.fa-chevron-down,
    .dropdown-submenu > a i.fa-chevron-up {
        transition: transform 0.3s ease;
        display: inline-block;
        transform-origin: center center;
        vertical-align: middle;
    }

    .dropdown-submenu.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .dropdown-submenu .submenu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
        background: transparent;
        margin-left: 10px;
    }

    .dropdown-submenu.active .submenu {
        display: block !important;
        background: transparent !important;
    }

    .dropdown-submenu.active {
        background: transparent !important;
    }

    .dropdown-submenu .submenu li {
        margin: 0;
    }

    .dropdown-submenu .submenu li a {
        color: #fff;
        padding: 10px 15px;
        font-weight: 600;
        font-size: 14px;
    }

    .dropdown-submenu .submenu,
    .dropdown-submenu .submenu li,
    .dropdown-submenu .submenu li a,
    .dropdown-submenu .submenu li a > div {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }
}


/* Header row: title + countdown only */
.frame-header-flash-sale-v1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

.frame-header-flash-sale-v1 .title-frame {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Wrapper — position:relative so buttons can be absolute inside */
.flashsale-slider-wrapper-v1 {
    position: relative;
    width: 100%;
}

/* Fade edges via CSS mask — tembus ke background asli, tidak tabrakan dengan gradien */

/* The scrollable row */
.flash-sale-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 52px 12px 52px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
}
.flash-sale-wrapper::-webkit-scrollbar { display: none; }
.flash-sale-wrapper { -ms-overflow-style: none; scrollbar-width: none; }

/* Side nav buttons — hidden by default, fade in on wrapper hover */
.fs-nav-btn-v1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(20, 10, 66, 0.75);
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    opacity: 0;
    transition: background 0.2s ease, border-color 0.2s ease,
                transform 0.2s ease, opacity 0.25s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.fs-nav-btn-v1.fs-nav-left  { left: 8px; }
.fs-nav-btn-v1.fs-nav-right { right: 8px; }

/* Reveal on wrapper hover */
.flashsale-slider-wrapper-v1:hover .fs-nav-btn-v1 {
    opacity: 1;
}
.fs-nav-btn-v1:hover {
    background: #00FF6A;
    color: #1A255C;
    border-color: #00FF6A;
    transform: translateY(-50%) scale(1.12);
}

/* Disabled state */
.fs-nav-btn-v1.disable {
    pointer-events: none;
    opacity: 0 !important;
}

/* Hide buttons entirely when auto-scroll is not active */
.flashsale-slider-wrapper-v1.no-autoscroll .fs-nav-btn-v1 {
    display: none;
}

/* Wrapper with fade edges */
.top-product-v1-wrapper {
    position: relative;
    width: 100%;
}

/* Fade div elements tidak dipakai lagi (diganti mask-image) */
.top-product-v1-wrapper .tp-fade-left,
.top-product-v1-wrapper .tp-fade-right {
    display: none;
}

/* Scrollable track */
.parent-top-product-v1 {
    overflow-x: auto;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: 52px;
    padding-right: 52px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
}
.parent-top-product-v1::-webkit-scrollbar { display: none; }
.parent-top-product-v1 { -ms-overflow-style: none; scrollbar-width: none; }

/* Side nav buttons — hidden by default, fade in on wrapper hover */
.tp-nav-btn-v1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(20, 10, 66, 0.75);
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    opacity: 0;
    transition: background 0.2s ease, border-color 0.2s ease,
                transform 0.2s ease, opacity 0.25s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.tp-nav-btn-v1.tp-nav-left  { left: 8px; }
.tp-nav-btn-v1.tp-nav-right { right: 8px; }

/* Reveal on wrapper hover */
.top-product-v1-wrapper:hover .tp-nav-btn-v1 {
    opacity: 1;
}
.tp-nav-btn-v1:hover {
    background: #00FF6A;
    color: #1A255C;
    border-color: #00FF6A;
    transform: translateY(-50%) scale(1.12);
}

/* Disabled state */
.tp-nav-btn-v1.disable {
    pointer-events: none;
    opacity: 0 !important;
}

/* Hide buttons entirely when auto-scroll is not active */
.top-product-v1-wrapper.no-autoscroll .tp-nav-btn-v1 {
    display: none;
}

.slider-wrapper {
    margin-top: 30px;
    margin-bottom: 20px;
}

.slider-wrapper .image-slider {
    position: relative;
    min-height: 50px;
}

/* Items container clips overflow so off-screen slides don't show */
.slider-wrapper .image-slider-items {
    position: relative;
    overflow: hidden;
}

/* ── img-prev / img-next: absolute side thumbnails inside each slide ── */
.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%; }

/* ── transition-slide: translateX approach ── */
.slider-wrapper .transition-slide .img-slide {
    position: absolute;
    top: 0;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.slider-wrapper .transition-slide .img-slide.active {
    position: relative;
    transform: translateX(0);
    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%);
}

/* Inactive slides: no pointer events */
.slider-wrapper .transition-slide .inactive {
    pointer-events: none;
}

/* Inactive peek slides sit behind active, visible from sides */
.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;
}

/* Hide img-prev/img-next thumbnails on inactive peek slides */
.slider-wrapper .transition-slide .inactive .img-next,
.slider-wrapper .transition-slide .inactive .img-prev {
    display: none;
}

/* ── Prev/Next nav arrows ── */
.slider-wrapper .image-slider .next,
.slider-wrapper .image-slider .prev {
    position: absolute;
    top: 45%;
    cursor: pointer;
    width: auto;
    padding: 10px 20px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transition: .7s ease;
    text-decoration: none;
    user-select: none;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 30;
    border-radius: 50%;
    opacity: 0;
    transition: all ease 0.3s;
}
.slider-wrapper .image-slider:hover .next,
.slider-wrapper .image-slider:hover .prev { opacity: 0.7; color: white; }
.slider-wrapper .image-slider .prev:hover,
.slider-wrapper .image-slider .next:hover { opacity: 1; }
.slider-wrapper .image-slider .next:hover,
.slider-wrapper .image-slider .prev:hover { color: #FFFFFF; }
.slider-wrapper .image-slider .prev { left: 10%; }
.slider-wrapper .image-slider .next { right: 10%; }

@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 .prev { left: 5%; }
    .slider-wrapper .image-slider .next { right: 5%; }
}

/* ── Dots ── */
.slider-wrapper .image-slider__dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 10px 20px;
    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; }
}

.slider-wrapper .image-slider__dot {
    background: #cdd5df;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    cursor: pointer;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}
.slider-wrapper .image-slider__dot.active,
.slider-wrapper .image-slider__dot:hover { background: #567ee8; }
.slider-wrapper .image-slider__dot.active {
    width: 52px;
    border-radius: 10px;
}

@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; }
}

@media (max-width: 768px) {
    .flashsale-slider-wrapper-v1::before,
    .flashsale-slider-wrapper-v1::after,
    .top-product-v1-wrapper .tp-fade-left,
    .top-product-v1-wrapper .tp-fade-right {
        width: 40px;
    }

    .fs-nav-btn-v1,
    .tp-nav-btn-v1 {
        display: none;
    }

    .flash-sale-wrapper {
        padding-left: 0;
        padding-right: 0;
        margin-top: 20px;
    }

    .parent-top-product-v1 {
        padding-left: 0;
        padding-right: 0;
    }
}

:root {
    /* Skeleton colors — sesuai background gelap v1 */
    --skel-base:  #1e1250;
    --skel-shine: #2e1e70;

    /* Theme primary RGB untuk pulse animation */
    --theme-primary-rgb: 0, 255, 106;
}

@keyframes skeletonShimmer {
    0%   { background-position: -600px 0; }
    100% { background-position:  600px 0; }
}

/* Base skeleton block */
.skel {
    border-radius: 8px;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: var(--skel-base);
    background-image: linear-gradient(
        90deg,
        var(--skel-base)   0%,
        var(--skel-shine) 40%,
        var(--skel-base)  80%
    );
    background-size: 600px 100%;
    background-repeat: no-repeat;
    animation: skeletonShimmer 1.4s ease-in-out infinite;
}

/* Ukuran helper */
.skel-img     { width: 100%; aspect-ratio: 1 / 1; }
.skel-img-sm  { width: 70px; height: 70px; flex-shrink: 0; }
.skel-line    { height: 12px; width: 100%; margin-bottom: 8px; }
.skel-line-sm { height: 10px; width: 70%; margin-bottom: 6px; }
.skel-line-xs { height: 9px;  width: 50%; }
.skel-h3      { height: 20px; width: 60%; margin-bottom: 10px; }

/* Skeleton grid container — mirror dari .parent-grid-product-v1 */
.skeleton-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
    padding: 10px 0;
}

/* Skeleton card — mirror dari .child-top-product-v1 */
.skeleton-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    padding: 10px;
    background: var(--skel-base);
    overflow: hidden;
}

.skeleton-product-card .skel-img {
    border-radius: 14px;
    width: 140px;
    height: 140px;
}

/* Skeleton flash sale wrapper */
.skeleton-fs-wrapper {
    display: flex;
    gap: 16px;
    overflow: hidden;
    padding: 6px 8px 8px;
}

.skeleton-fs-card {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: 270px;
    padding: 12px;
    border-radius: 12px;
    background: var(--skel-base);
    border: 1px solid var(--skel-base);
}

.skeleton-fs-labels {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Skeleton denom list */
.skeleton-denom-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    pointer-events: none;
}

.skeleton-denom-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 110px;
    padding: 12px;
    border-radius: 8px;
    background: var(--skel-base);
    border: 1px solid var(--skel-base);
    gap: 10px;
}

.skel-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .skeleton-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .skeleton-denom-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@keyframes gameCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.reveal-hidden {
    opacity: 0;
    pointer-events: none;
}

.reveal-animate {
    animation: gameCardFadeIn 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    pointer-events: auto;
}

/* Ikon di dalam nav link */
.tmv1-header .tmv1-header-left ul li a i {
    font-size: 13px;
    opacity: 0.80;
    transition: opacity 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.tmv1-header .tmv1-header-left ul li a:hover i {
    opacity: 1;
    transform: scale(1.18);
}

/* Active state nav link */
.tmv1-header .tmv1-header-left ul li a.active {
    color: #00FF6A;
    font-weight: 700;
}

.tmv1-header .tmv1-header-left ul li a.active i {
    opacity: 1;
    transform: scale(1.1);
}


.flash-sale-category-tabs {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 14px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-left: 2px;
}

.flash-sale-category-tabs::-webkit-scrollbar {
    display: none;
}

.fs-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Titillium Web', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
    /* Warna default — dark sesuai palet v1 */
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.fs-tab-btn i {
    font-size: 12px;
}

.fs-tab-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

/* Active tab — gradient biru-ungu sesuai palet v1 */
.fs-tab-btn.active {
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%);
    color: #fff;
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(73, 167, 255, 0.30);
}

/* Card flash sale — animasi filter */
.card-flash-sale.fs-hidden {
    display: none;
}

.card-flash-sale.fs-show-anim {
    animation: fadeInCard 0.22s ease forwards;
}

@keyframes fadeInCard {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes denomCardLift {
    0%   { transform: translateY(0)   scale(1);    }
    50%  { transform: translateY(-3px) scale(1.01); }
    100% { transform: translateY(-2px) scale(1.01); }
}

@keyframes denomActivePulse {
    0%   { box-shadow: 0 0 0 0   rgba(var(--theme-primary-rgb), 0.40); }
    70%  { box-shadow: 0 0 0 8px rgba(var(--theme-primary-rgb), 0);    }
    100% { box-shadow: 0 0 0 0   rgba(var(--theme-primary-rgb), 0);    }
}

/* Override hover pada .list-denom li — tambah lift + glow */
.frame-info-product-v1 .content-info-product-v1
.frame-denom-info-product-v1 .denom-info-product-v1
.list-denom li {
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.frame-info-product-v1 .content-info-product-v1
.frame-denom-info-product-v1 .denom-info-product-v1
.list-denom li:hover {
    animation: denomCardLift 0.25s ease forwards;
    box-shadow: 0 6px 20px rgba(0, 255, 106, 0.18);
    z-index: 2;
}

/* Glow ring inset saat hover */
.frame-info-product-v1 .content-info-product-v1
.frame-denom-info-product-v1 .denom-info-product-v1
.list-denom li::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 1px rgba(0, 255, 106, 0.35) inset;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.frame-info-product-v1 .content-info-product-v1
.frame-denom-info-product-v1 .denom-info-product-v1
.list-denom li:hover::after {
    opacity: 1;
}

/* Active state — pulse animation */
.frame-info-product-v1 .content-info-product-v1
.frame-denom-info-product-v1 .denom-info-product-v1
.list-denom li.active {
    animation: denomActivePulse 0.6s ease 0.05s;
}


.denom-flash-sale-section {
    width: 100%;
    padding: 12px 1rem 0 1rem;
    background: linear-gradient(180deg, rgba(0, 255, 106, 0.05) 0%, transparent 100%);
}

.denom-fs-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.denom-fs-icon {
    font-size: 16px;
    color: #00FF6A;
}

.denom-fs-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #00FF6A;
    font-family: 'Titillium Web', sans-serif;
}

.denom-fs-countdown {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-left: auto;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.list-denom-flash-sale {
    padding: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.list-denom-flash-sale li.denom-fs-item {
    position: relative;
    overflow: visible;
}

.denom-fs-badge-wrap {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 3;
}

.denom-fs-discount-badge {
    display: inline-block;
    background: #FF3838;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 999px;
    line-height: 1.5;
    box-shadow: 0 2px 6px rgba(255, 56, 56, 0.45);
    font-family: 'Titillium Web', sans-serif;
}

.list-denom-flash-sale li.denom-fs-item:hover {
    animation: denomCardLift 0.25s ease forwards;
}

/* Divider antara flash sale denom dan denom biasa */
.denom-section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 1rem;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Titillium Web', sans-serif;
}

.denom-section-divider::before,
.denom-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.product-load-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
}

.product-load-error .error-icon i {
    color: #00FF6A;
    font-size: 32px;
    opacity: 0.85;
}

.product-load-error .error-msg {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
}

.product-load-error .btn-retry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 8px;
    border: 1px solid #5C7DBC;
    background: linear-gradient(180deg, #49A7FF 0%, #5E39CD 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Titillium Web', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-load-error .btn-retry:hover {
    background: linear-gradient(180deg, #3B7EFA 0%, #4B1BDC 100%);
    transform: translateY(-1px);
}

/* Shared homepage popup banner */
#popupModal {
    z-index: 1000001 !important;
}

#popupModal .modal-dialog,
#popupModal .modal-content {
    z-index: 1000002 !important;
}

#popupModal .btn-close-custom {
    z-index: 1000003 !important;
}

@media (min-width: 769px) {
    #popupModal .btn-close-custom {
        top: -20px !important;
        right: -20px !important;
        bottom: unset !important;
        left: unset !important;
    }
}
