body {
    background-color: #131413;
    color: var(--light-color);
    font-family: var(--font-regular);
    font-size: 1.25em;
    line-height: 1.2;
    background-image: url("/account/assets/images/theme/bg-main.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
a {
    color: var(--primary-color-light);
    transition: all 0.3s ease;
}
a:hover {
    color: var(--light-color);
    text-decoration: none;
}
.container {
    width: 780px !important;
    position: relative !important;
}
:root {
    --primary-color: #0CAE50;
    --primary-color-light: #2BEA7A;
    --secondary-color: #6c757d;
    --secondary-color-light: #646B64;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --font-regular: 'fc_iconicregular', sans-serif;
    --font-bold: 'fc_iconicbold', sans-serif;
    --font-italic: 'fc_iconicbold_italic', sans-serif;
}
header {
    background-color: var(--primary-color);
    padding: 15px 15px;
}

/* HEADER */
.headerNav {
    display: block;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.logoHeader {
    text-align: center;
}
.headerNav a {
    color: var(--light-color);
    text-decoration: none;
    display: block;
}
a.navIcon {
    position: absolute;
    right: 0;
    top: 0;
}

.backBtn {
    position: absolute;
    left: 0;
    top: 0;
}
.subHeader {
    background-color: #05130B;
}
.subHeaderContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.subHeaderContent > span {
    margin-right: 15px;
}

.titleCard {
    font-size: 32px;
    font-family: var(--font-bold);
    color: var(--primary-color-light);
    text-align: center;
    text-shadow: 0 0 6px rgba(43, 234, 122, 0.65);
    margin-bottom: 0px;
}
.subTitleCard {
    font-family: var(--font-regular);
    color: var(--secondary-color-light);
    text-align: center;
    font-size: 20px;
}


/* PARTNER GAME LINK */
a.partnerGameLink {
    display: block;
    position: relative;
}
.partnerImg {
    border-radius: 20px;
}
.partnerLogo {
    position: absolute;
    max-width: 120px;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all 0.3s ease;
}
a.partnerGameLink:hover .partnerLogo {
    bottom: 50px;
    max-width: 140px;
}

/* SLIDER */
.listHeroSection {
    list-style: none;
    padding: 0;
}

.slideshow-container {
    position: relative;
    margin: auto;
    overflow: hidden; /* ซ่อนส่วนเกินของรูป */
  }

  .listHeroSection {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative; /* สำคัญสำหรับการเลื่อน */
    width: 300%; /* เปลี่ยนตามจำนวนสไลด์ (3 สไลด์ * 100%) */
    transition: transform 0.6s ease-in-out; /* เพิ่ม Transition */
   }
   
   .listHeroSection li {
    float: left; /* จัดเรียงสไลด์ในแนวนอน */
    width: calc(100% / 3); /* คำนวณความกว้างต่อสไลด์ (100% / จำนวนสไลด์) */
    display: block; /* ทำให้เป็น Block Element */
   }

  .listHeroSection li img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* ซ่อนสไลด์ทั้งหมด */
 
  /* CSS สำหรับการแสดงผลสไลด์ที่กำลัง active */
  .listHeroSection li.active {
    display: block;
  }
  
  /* ปุ่ม Prev/Next */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    padding: 20px;
    margin-top: -22px;
    color: var(--light-color);
    transition: 0.6s ease;
    border-radius: 100px;
    user-select: none;
    text-decoration: none;
    background-color: #0bae50c9;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 10px;
  }
  
  .next {
    right: 10px;
    left: inherit;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* จุดบ่งชี้สไลด์ */
  .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #2bea7a33;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active-dot, .dot:hover {
    background-color: var(--primary-color-light);
  }
  
  /* Animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  .dotSection {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }


/* BUTTON RESET */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #078d3f;
    --bs-btn-hover-border-color: #078d3f;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}
.btn {
    --bs-btn-font-size: 1.45rem;
    border-radius: 0.75rem;
}
.btn-outline-primary {
    --bs-btn-color: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-focus-shadow-rgb: 13,110,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0d6efd;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0d6efd;
    --bs-gradient: none;
}



/* TAB LOTTON MAIN */
/* ซ่อนเนื้อหาแท็บทั้งหมด */
.contentTab {
    display: block; /* ใช้ display: block เพื่อให้ transition ทำงานได้ */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out; /* กำหนด Transition สำหรับการ fade */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  
  /* แสดงเฉพาะเนื้อหาแท็บที่ active */
  .contentTab.tabActive {
    opacity: 1;
    visibility: visible;
    position: relative; /* ให้แท็บที่ active อยู่ด้านหน้าสุด */
  }
  .contentTabMain {
    position: relative;
  }
a.navtabMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #323732;
    border-radius: 10px;
    padding: 10px 0;
    text-decoration: none;
    color: var(--light-color);
    transition: all 0.3s ease;
}
a.navtabMenu:hover {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
a.navtabMenu img {
    max-height: 42px;
    margin-right: 10px;
}
a.navtabMenu.active {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}


.cardTable {
    border-radius: 10px;
    border: 1px solid #343434;
    background: #181918;
    margin-bottom: 16px;
}
.cardTableTitle {
    border-radius: 9px 9px 0 0;
    border-bottom: 1px solid #343434;
    background: #2A2B2A;
    padding: 8px 10px;
}
.cardTableContent {
    padding: 10px;
}
.tableHeaderText {
    display: flex;
    align-items: center;
}
.logoLotto {
    margin-right: 10px;
    border-radius: 50%;
    max-width: 26px;
}
.headLotton {
    flex: 1;
    color: var(--primary-color);
    font-family: var(--font-bold);
}
.headDate {
    background-color: #3E3E3E;
    border-radius: 100px;
    padding: 3px 14px;
}

.numLottoBox {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.boxhead {
    color: var(--secondary-color);
}
.lottoNum {
    font-size: 32px;
    font-family: var(--font-bold);
}
.textGreen {
    color: var(--primary-color-light);
}
.textRed {
    color: var(--danger-color);
}
.footerLogo {
    margin-bottom: 16px;
    display: block;
}
.footerSublogo, .footerCopyright {
    color: var(--secondary-color);
    font-size: 20px;
}
.footerCopyright {
    margin-bottom: 30px;
    display: block;
}



/* SLIDE MENU */
/* สำหรับ Overlay (พื้นหลังสีเทา) */
.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 100; /* ให้ overlay อยู่ด้านบนสุด */
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-x: hidden;
    transition: 0.5s;
    visibility: hidden; /* ซ่อนตอนเริ่มต้น */
    opacity: 0; /* ซ่อนตอนเริ่มต้น */
  }
  
  /* สำหรับ Slide-out Menu */
  .slideMenu {
    height: 100%;
    width: 0; /* กำหนดความกว้างเริ่มต้นเป็น 0 เพื่อซ่อนเมนู */
    position: fixed;
    z-index: 101; /* ให้เมนูอยู่ด้านบนของ overlay */
    top: 0;
    right: 0; /* เลื่อนเข้ามาจากด้านขวา */
    background-color: #070907;
    overflow-x: hidden;
    transition: 0.5s; /* Animation สำหรับการเลื่อน */
  }
  
  /* สไตล์เมื่อเมนูเปิด */
  body.no-scroll {
    overflow: hidden;
  }
  .slideMenu.open {
    width: 300px; /* กำหนดความกว้างเมื่อเมนูเปิด (85% ของหน้าจอ) */
  }
  
  /* สไตล์เมื่อ Overlay เปิด */
  .overlay.active {
    visibility: visible;
    opacity: 1;
  }
  
  /* สไตล์เมนูและปุ่มปิด */
  .slideMenu a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 32px;
    color: var(--light-color);
    display: block;
    transition: 0.3s;
  }
  
  .slideMenu a:hover, .slideMenu a.active {
    color: var(--primary-color-light);
  }
  
  .slideMenu .closeBtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: var(--primary-color-light);
  }
  .logoSlide {
    display: block;
    padding: 15px 30px;
    margin-bottom: 50px;
  }

  .footerSlide {
    position: absolute;
    bottom: 20px;
    padding: 20px;
    color: var(--secondary-color);
    font-size: 20px;
  }
  .footerSlide p {
    margin-top: 30px;
  }

/* MODAL */
/* Modal Overlay */
.modal {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Overlay สีดำโปร่งแสง */
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
  }
  
  /* Modal Content */
  .modal-content {
    border: 1px solid var(--0-cae-50, #0CAE50);
    background: #131413;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease-out;
    box-shadow: 0 14px 40px 0 rgba(12, 174, 80, 0.25);
    padding: 10px;
  }

  /* Modal เปิด */
  .modal.is-open {
    visibility: visible;
    opacity: 1;
  }
  
  .modal.is-open .modal-content {
    transform: translateY(0);
  }
  .modal-body {
    color: #fff;
  }

.linkBox {
    border-radius: 10px;
    border: 1px solid var(--323732, #323732);
    background: #1D1E1D;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--light-color);
    margin-bottom: 20px;
    padding: 20px 0;
    transition: all 0.3s ease;
}
.linkBox:hover {
    border: 1px solid var(--323732, var(--primary-color-light));
    color: var(--primary-color-light);
}
.linkBox img {
    margin-bottom: 20px;
}
.titleTextModal {
    display: flex;
    color: var(--light-color);
    text-align: center;
    justify-content: center;
    font-size: 32px;
    font-family: var(--font-bold);
    margin-bottom: 16px;
}

.accTitle {
    font-family: var(--font-bold);
    margin-top: 30px;
    color: var(--primary-color-light);
    margin-bottom: 0;
    text-align: center;
    font-size: 32px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step .step-label {
    color: var(--secondary-color);
}
.step.active .step-label {
    color: var(--light-color);
}
.step .step-number {
    font-size: 64px;
    font-family: var(--font-bold);
    color: var(--secondary-color-light);
    background-color: transparent;
    border-radius: 16px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border: 1px solid var(--secondary-color-light);
}
.step.active .step-number {
    background-color: var(--primary-color-light);
    border: 1px solid var(--primary-color-light);
    color: var(--light-color);
}
.connector {
    position: relative;
    width: 30px;
    height: 30px;
}
.connector span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color-light);
    transform: translateY(-50%);
}
.boxColumn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-1 {
    flex: 1;
}

.form-control {
    padding: .6rem .7rem;
    line-height: 1.5;
    color: var(--light-color);
    background-color: #081513;
    border: var(--bs-border-width) solid #1C433D;
    border-radius: 10px;
    font-size: inherit;
}
.form-control:focus {
    color: var(--light-color);
    background-color: #061210;
    border-color: var(--primary-color-light);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(12 174 80 / 30%);
}
.form-control::placeholder {
  color: var(--secondary-color);
  opacity: 1;
}
.textlinkForm {
    text-align: center;
}


.custom-select-wrapper {
  position: relative;
}

.custom-select {
  position: relative;
  cursor: pointer;
}


.select-selected {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; /* จัด space-between เพื่อแยกข้อความกับไอคอน */
  }
  
  /* เพิ่มสไตล์สำหรับ div ที่จะแสดงผล */
  .selected-display-content {
    display: flex;
    align-items: center;
  }

.select-icon {
  transition: transform 0.3s;
  color: #6c757d;
  font-size: 24px;
}

.select-selected.open .select-icon {
  transform: rotate(180deg); /* หมุนไอคอนเมื่อ Dropdown เปิด */
}

.select-items {
    position: absolute;
    background-color: #081513;
    width: 100%;
    left: 0;
    top: 100%;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 33%);
    z-index: 99;
    border-radius: 10px;
    margin-top: 5px;
    border: 1px solid #1c433d;
    padding: 10px;
}

.select-items.select-hide {
  display: none;
}

.select-items div {
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.select-items div:hover {
  background-color: #0a1818;
  border-radius: 10px;
}

.select-items img, .select-selected img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
}

.bgCard {
    border-radius: 16px;
    border: 1px solid #1C433D;
    background: #081513;
    padding: 20px;
}
.bannerSpin {
    border-radius: 16px;
    border: 1px solid #05A749;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(13, 14, 16, 0.95) 81.25%), url(<path-to-image>) lightgray 50% / cover no-repeat;
}
.boxBannerSpin {
    position: relative;
    margin-bottom: 30px;
}
.bannertext {
    position: absolute;
}
.bannertext {
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
}
.bannertext h2 {
    font-family: var(--font-italic);
    font-size: 42px;
    color: var(--primary-color-light);
}
.bannertext h4 {
    color: var(--light-color);
    font-family: var(--font-italic);
    font-size: 28px;
}
.smallText {
    font-size: 16px;
}
.smallText li span {
    color: var(--light-color);
}

.passwordBox {
    position: relative; /* ให้ไอคอนอยู่ในตำแหน่งที่ถูกต้อง */
  }
  
  .passwordBox input {
    padding-right: 40px; /* เพิ่มพื้นที่ด้านขวาสำหรับไอคอน */
  }
  
  .password-toggle {
    position: absolute; /* จัดให้ไอคอนลอยอยู่เหนือช่องกรอก */
    right: 10px; /* ระยะห่างจากขอบด้านขวา */
    top: 50%; /* จัดให้อยู่กึ่งกลางในแนวตั้ง */
    transform: translateY(-50%);
    cursor: pointer; /* เปลี่ยน Cursor เมื่อเอาเมาส์ไปชี้ */
    color: #6c757d; /* สีของไอคอน */
  }

.btnwithIcon {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.btnwithIcon .material-symbols-rounded, .userNameNav .material-symbols-rounded {
    margin-right: 10px;
}
.walletNav .material-symbols-rounded {
    margin-right: 0;
}
.userNameNav .material-symbols-rounded {
    color: var(--light-color);
}

.userNav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}
.textUser {
    text-decoration: none;
    color: var(--light-color);
}
.textUser:hover {
    color: var(--primary-color-light);
}

.userNameNav, .walletNav {
    display: flex;
}
.textWallet {
    margin: 0 10px;
    font-family: var(--font-bold);
}
.textGrey {
    color: var(--secondary-color-light);
}
.imgWidth100 {
    width: 100%;
}
.linkImg {
    position: relative;
    display: block;
    transition: all 0.3s ease;
}
.linkImg img {
    border-radius: 16px;
}
.posTextLoto {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 20px;
}
.posTextLoto h1 {
    font-family: var(--font-bold);
    color: var(--light-color);
    font-size: 70px;
    margin-bottom: auto;
    transition: all 0.3s ease;
}
.icoLotto {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translate(0, -50%);
    width: 240px;
}
.icoAnimate {
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.linkImg:hover .icoAnimate {
    animation-name: moveUpDown;
}
.linkImg:hover .posTextLoto h1 {
    color: var(--primary-color-light);
}

@keyframes moveUpDown {
    0% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 30px)); /* ขยับขึ้นไป 10px */
    }
    100% {
        transform: translateY(-50%);
    }
}

.posSmBanner {
    position: absolute;
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-color);
    width: 100%;
}
.posSmBanner strong {
    font-size: 22px;
    transition: all 0.3s ease;
}
.linkImg:hover .posSmBanner strong {
    color: var(--primary-color);
}


.smAnimate {
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.linkImg:hover .smAnimate {
    animation-name: moveUpAndDown;
}

@keyframes moveUpAndDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); /* ขยับขึ้นไป 10px */
    }
    100% {
        transform: translateY(0%);
    }
}


.mainMenuBox {
    border-radius: 10px;
    border: 1px solid #323732;
    display: flex;
    padding: 12px 0;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--light-color);
    transition: all 0.3s ease;
    margin-bottom: 6px;
    background-color: #14141491;
}
.mainMenuBox img {
    margin-right: 10px;
    height: 36px;
    transition: all 0.3s ease;
}
.mainMenuBox:hover {
    border: 1px solid var(--primary-color-light);
    color: var(--primary-color-light);
}
.bottom-nav {
    display: none;
}


.numList {
    display: block;
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
    padding: 10px 6px;
    text-align: center;
    text-decoration: none;
    color: var(--light-color);
    transition: all 0.3s ease;
    background-color: #081513;
}
.numList:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.inputAddnum {
    position: relative;
}
.leftSign {
    padding-left: 80px;
}
.bahtSign {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translate(50%, -50%);
    border-right: 1px solid #1c433d;
    height: 49px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    color: var(--primary-color-light);
    font-family: var(--font-bold);
}
.rigtBtnOnBox {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translate(0, -50%);
    padding: 2px 24px;
}

.boxRemark {
    border-radius: 10px;
    border: 1px solid #343434;
    background: #232423;
    padding: 20px;
    color: var(--secondary-color);
}
.lightText {
    color: var(--light-color);
}
.listNumber {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-type: decimal;
}
.confirmDeposit img {
    margin-bottom: 20px;
}
.confirmDeposit {
    color: var(--light-color);
}
.confirmDeposit h1 {
    font-family: var(--font-bold);
    color: var(--danger-color);
}
.smallMark {
    color: var(--danger-color);
    font-size: 16px;
    margin-bottom: 20px;
}

.countdownTime {
    font-size: 18px;
    color: var(--secondary-color);
}
.countdownTime span {
    color: var(--danger-color);
}

.amountDeposit h1 {
    font-family: var(--font-bold);
    color: var(--primary-color-light);
    font-size: 48px;
    line-height: 2rem;
    margin-bottom: 18px;
}
.textDanger {
    color: var(--danger-color);
}

.boxCardBank {
    padding: 0 20px;
    position: relative;
    margin-bottom: 40px;
}
.cardBankBg {
    background-color: #2B372D;
    padding: 16px 16px 80px 16px;
    border-radius: 14px;
}
.bankName {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.logoBank {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
}
.titleBankname h5, .titleBankname h3 {
    margin-bottom: 0;
}
.titleBankname h3 {
    font-family: var(--font-bold);
    color: var(--primary-color-light);
}
.dividerline {
    height: 1px;
    background-color: #ffffff40;
    margin-bottom: 20px;
}
.bottomCardDetail {
    position: absolute;
    width: 100%;
    border-radius: 0 0 20px 20px;
    background: rgba(0, 0, 0, 0.80);
    box-shadow: 0 -7px 17px 0 rgba(22, 22, 22, 0.47);
    backdrop-filter: blur(10px);
    left: 0;
    bottom: -14px;
    padding: 8px 16px;
}
.detailCredit {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
.leftCreadit, .rightCreadit {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 16px;
}

.leftCreadit h3, .rightCreadit h3 {
    color: var(--primary-color-light);
    margin-bottom: 0;
    font-size: 28px;
    font-family: var(--font-bold);
}
.rightCreadit {
    text-align: right;
}


.kbank-bg {
    background-color: #007638;
}


.imgCard {
    position: absolute;
    bottom: 67px;
    width: 20px;
}
.imgCard.cardLeft {
    left: 0;
}
.imgCard.cardRight {
    right: 0;
}

.boxGetCredit {
    border-radius: 12px;
    border: 1px solid var(--323732, #323732);
    background: rgba(14, 19, 15, 0.74);
    padding: 20px;
    margin-bottom: 30px;
}

/* custom */
.cardBlock {
    position: relative;
    border-radius: 20px;
    box-shadow: 0px 6px 14.5px 0px rgba(0, 0, 0, 1.25);
    padding: 20px;
}

.cardBlock::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 3px;
    width: 80%;
    background: linear-gradient(90deg, rgba(109, 79, 226, 0.00) 0%, #c3f3cd 50%, rgba(109, 79, 226, 0.00) 100%);
}

.color-gold {
    color: #E09A52;
}

.font-bold {
    font-family: var(--font-bold);
}

.blockCredit {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    margin-top: 20px;
}

.refresh-credit.abs {
    position: absolute;
    right: 0;
    top: 0;
}


/* slots */
.tabDetail {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding-top: 30px;
}

.tabDetail.active {
    display: block;
    opacity: 1;
}

.linkPartner {
    display: block;
    border-radius: 8px;
    /* background: #372F55; */
    margin-bottom: 3px;
    padding: 3px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
}

.linkPartner:hover {
    background: #085d38;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.2);
}

.partSlide {
    background: transparent;
}

.partSlide:hover {
    background: #085d38;
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.2);
}

.linkPartner img {
    width: 100%;
}

.titlePartner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.logoPartner {
    position: relative;
    margin-top: 20px;
}

.logoPartner img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -70%);
    width: 90px;
}

.bgGame {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

/* slots */
.gameList {
    margin-left: 100px;
}

.contentGame {
    position: relative;
    margin-bottom: 120px;
}

.slidePartner {
    max-width: 90px;
    position: absolute;
    top: 7px;
    left: 0;
    width: 100%;
    background: var(--Linear, linear-gradient(201deg, #0d9861 0%, #06623b 27.58%, #1a311f 86.19%));
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    color: var(--secondary-color);
    height: 600px;
    overflow: hidden; /* Add this to hide default scrollbar */
}

.partnerSlider {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    position: relative;
    height: 94%;
    overflow-y: scroll;
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #2eae7a transparent; /* For Firefox */
}

.partnerSlider::-webkit-scrollbar {
    width: 8px;
}

.partnerSlider::-webkit-scrollbar-track {
    background: transparent;
}

.partnerSlider::-webkit-scrollbar-thumb {
    background-color: #2eae7a;
    border-radius: 10px;
    border: 2px solid transparent; /* Add padding around scrollbar thumb */
    background-clip: content-box; /* Ensure padding is not part of thumb */
}

.slidePartner::after {
    border-radius: 0px 0px 7px 7px;
    background: linear-gradient(180deg, rgba(34, 24, 79, 0.00) 12.06%, rgb(1 66 28 / 82%) 54.81%, #000c04 99.02%);
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 10%;
}

.gameCard {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    display: block;
    border-radius: 5px;
}
.gameCard img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: transform 0.2s ease-in-out;
}
.gameCard:hover img {
    transform: scale(1.1);
}
.gameCard::after {
    content: "";
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}
.gameCard span {
    position: absolute;
    left: 8px;
    bottom: 8px;
    z-index: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
}

.progress-bar {
    background: linear-gradient(180deg, #FEF8BF 0%, #DC9224 100%);
}

.progress, .progress-stacked {
    background-color: #38266D;
}

/* Progress Bar */
.progress-bar {
  background-image: linear-gradient(45deg, #FF5722 25%, #FF9800 25%, transparent 50%, #ff980000 50%, #FF9800 75%, transparent 75%, #9c27b000);
  position: relative;
  z-index: 2;
  display: flex;
  /* ใช้ Flexbox จัดให้อยู่กึ่งกลาง */
  align-items: center;
  justify-content: center;
  color: black;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar-stripes {
  background-image: linear-gradient(306deg, #ffc107 25%, #ffc107 25%, #ffd700 50%, #edb304 50%, #ffd700 75%, #ffc107 75%, #ffc107);
  background-size: 40px 40px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation: moveStripes 1s linear infinite;
}

@keyframes moveStripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress-value {
  position: relative;
  z-index: 3;
  font-size: 14px;
  font-weight: bold;
}

.shakeImg:hover {
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 0.5s;

  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.bankBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cardReward {
    border-radius: 14px;
    border: 1px solid #19321f;
    background: #095a36;
    box-shadow: 0px -6px 3px 0px rgba(16, 21, 42, 0.19) inset;
    display: block;
}

.imgReward {
    width: 100%;
    height: 178px;
    overflow: hidden;
    position: relative;
    border-radius: 13px 13px 0 0;
    margin-bottom: 20px;
    display: block;
}

.imgReward img {
    width: 100%;
    height: 100%;
    object-position: center;
}

.imgReward::before {
    border-radius: 0;
    background: linear-gradient(180deg, rgba(44, 30, 98, 0.00) 0%, #1e894d 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
}

.color-gold {
    color: #E09A52;
}

.point {
    display: flex;
    align-items: center;
}

.btn-reward {
    display: block;
    border-radius: 6px;
    background: var(--Linear, linear-gradient(180deg, #27c024 0%, #03a300 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.29);
    margin-left: 5px;
    text-align: center;
    padding: 8px 16px;
    text-decoration: none;
}

.btn-reward.disable {
    background: var(--Linear, linear-gradient(180deg, #294e32 0%, #13442a 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.29);
    color: #ababab;
}

.btn-reward2 {
    display: block;
    border-radius: 6px;
    background: var(--Linear, linear-gradient(180deg, #27c024 0%, #03a300 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.29);
    margin-left: 5px;
    text-align: center;
    padding: 8px;
    white-space: nowrap;
}

.btn-reward2.disable {
    background: var(--Linear, linear-gradient(180deg, #294e32 0%, #13442a 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.29);
    color: #ababab;
}

.imgageReward {
    overflow: hidden;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    left: 50%;
    position: relative;
    transform: translate(-50%, 0);
    margin-bottom: 30px;
    margin-top: 30px;
    border-radius: 20px;
    /* box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.38); */
}

.imgageReward img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 200px;
}

.pointBg {
    background-color: #e62b2bde;
    color: var(--main-color);
    text-align: center;
    position: absolute;
    top: 10px;
    padding: 6px 10px;
    border-radius: 6px;
}

.form-control:disabled {
    background-color: #3f3f3f;
    opacity: 1;
    color: #d7d7d7;
}

.rewardImgs {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.rewardImgs img,
.imgAnnonue img,
.imgAccount img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.grad_color_green {
    background: linear-gradient(90deg, #034d40 0%, #16905e 55%, #164426 100%);
    box-shadow: 0px 4px 4px 0px rgb(148 215 176);
}

.btn-main-sm {
    display: inline-block;
    padding: 5px 10px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
}

.history {
    border-radius: 10px;
    background: #5C588D20;
    padding: 10px 16px;
    margin-bottom: 8px;
}


.activity {
    display: block;
    position: relative;
}

.activity img {
    margin-bottom: 16px;
    border-radius: 14px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.activity:hover img {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
}

.activity h5 {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    font-size: 34px;
    color: transparent;
    font-family: var(--font-extrabold);
    margin-bottom: 0;
    position: absolute;
    left: 10%;
    top: 35%;
    transform: translate(0, -50%);
    z-index: 99;
}

.activity h2 {
    font-family: var(--font-extrabold);
    color: #ffffff80;
    font-size: 60px;
    margin-bottom: 0;
    position: absolute;
    left: 10%;
    top: 54%;
    transform: translate(0, -50%);
    transition: all 0.3s ease;
    z-index: 99;
}

.activity:hover h2 {
    color: #ffffff;
}

.activity .iconAct {
    position: absolute;
    box-shadow: none;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    transition: all 0.3s ease;
}

.activity:hover .iconAct {
    top: 40%;
    box-shadow: none;
}

.imgAccount img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.imgAnnonue {
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

.imgAccount {
    overflow: hidden;
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    left: 50%;
    top: -30px;
    transform: translate(-50%, 0);
}

.accountName {
    margin-top: 60px;
    margin-bottom: 30px;
}

.cardBorder {
    border-radius: 14px;
    border: 1px solid #898989;
    background: #23322f;
    padding: 16px;
    height: 100%;
    text-align: center;
}

.cardyouBank {
    border-radius: 10px;
    border: 1px solid #898989;
    background: #23322f;
    padding: 18px;
}

.rigIcons {
    padding-right: 50px !important;
}

.copyIcons {
    position: absolute;
    display: inline-block;
    right: 12px;
    top: 50%;
    transform: translate(0, -50%);
}

.cardNormal {
    border-radius: 14px;
    border: 1px solid #1a311f;
    background: linear-gradient(210deg, #0d9861 4.66%, #06623b 34.85%, #1a311f 81.67%);
    box-shadow: 0px -6px 3px 0px rgba(16, 21, 42, 0.19) inset;
    padding: 20px;
}

.banknameCard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 20px;
}

.bankBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.leftBankname h6,
.bankBottom h6 {
    color: var(--secondary-color);
}

.leftBankname h4,
.bankBottom h4 {
    margin-bottom: 0;
    font-family: var(--font-bold);
}

.bankIcon img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
}