@font-face {
    font-family: 'IRANyekan';
    src: url('../fonts/Yekan.woff') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'IRANyekan', sans-serif;
    margin: 0;
    padding: 0;
    background: rgb(32, 32, 32);
    color: white;
    max-width: 1270px;
    margin: 0 auto;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: #ffcb00;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    border-bottom: 1px solid #2f2f2f;
}

.logo .logo-img {
    width: 50px;
}

button {
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}

.register {
    background: #ffcb00;
}

.login {
    background: #c4c4c45c;
    color: white;
}

.register-form,
.login-form {
    background: #373737;
    padding: 10px 16px;
    border-radius: 10px;
    position: absolute;
    top: 70%;
    transform: translate(-50%, -50%);
    left: 50%;
    animation: up .5s ease-in;
    display: none;
    width: 800px;
    z-index: 100;
}

.right-image {
    width: 50%;
}

.right-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.main-form {
    width: 50%;
    padding: 0 10px;
}

.active {
    display: flex;
}

@media (max-width:768px) {

    .register-form,
    .login-form {
        width: 87%;
    }

    .right-image {
        display: none;
    }

    .main-form {
        width: 100%;
    }
}

@keyframes up {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.form-topic {
    text-align: center;
    color: #ffcb00;
}

.form-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    margin-top: 13px;
}

.form-item input {
    padding: 12px 10px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #2b2b2b;
    color: rgb(206, 203, 203);
    padding-right: 25px;
}

.form-item label {
    position: absolute;
    font-size: 12px;
    right: 17px;
    top: -15px;
}

.form-item svg {
    width: 20px;
    position: absolute;
    top: 10px;
    right: 3px;
}

.agrement {
    padding: 10px;
    font-size: 13px;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background: #6a6a6a;
    color: white;
}

.send-login {
    margin-top: 10px;
}

.redirect-user {
    padding: 10px;
    display: flex;
    justify-content: center;
    font-size: 14px;
    align-items: center;
    gap: 3px;
}

.redirect-user .r-btn {
    background: none;
    color: #ffcb00;
    padding: 0;
}

.casino-game-item {
    display: flex;
    padding: 10px;
}

.casino-game-item img {
    width: 100%;
    border-radius: 20px;
}

.close-register svg,
.close-login svg {
    width: 30px;
    position: absolute;
    left: 10px;
}



.result-message {
    position: absolute;
    left: 50%;
    top: 88px;
    transform: translateX(-50%);
    padding: 11px 0;
    width: 275px;
    border-radius: 6px;
    display: none;
    animation: op 1s ease;
    z-index: 200;
}

.result-message span {
    margin: 10px;
    font-size: 13px;
}

.show-time {
    width: 100%;
    height: 3px;
    position: relative;
    bottom: -11px;
    animation: timeout 5s ease-in;
    direction: rtl;
}

@keyframes timeout {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

@keyframes op {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* تنظیمات برای زبان انگلیسی (LTR) */
html[dir="ltr"] .result-message {
    direction: ltr;
}

html[dir="ltr"] .Selvatore {
    direction: ltr;
}

html[dir="ltr"] .main-form {
    text-align: left;
}


.language-selector select {
    padding: 5px;
    border-radius: 5px;
    border: none;
    background: #151515;
    color: #fff;
    font-size: 14px;
}

.user-account-box {
    background: #373737;
    padding: 10px 16px;
    border-radius: 10px;
    position: absolute;
    top: 69%;
    transform: translate(-50%, -50%);
    left: 50%;
    animation: up .5s ease-in;
    width: 800px;
    display: none;
    padding-top: 25px;
    z-index: 100;
}

.active-account {
    display: block;
}

@media (max-width:768px) {
    .user-account-box {
        width: 87%;
    }
}

.cant-change {
    background: #222 !important;
}

.balance-box {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 5px;
}

.change-name {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 3px;
    background: #515151;
    padding: 7px 0;
    border-radius: 6px;
}

.change-name svg {
    width: 25px;
}

.add-balance {
    display: flex;
    align-items: center;
    padding: 0 7px;
}

.user-b-header {
    display: flex;
    gap: 5px;
    align-items: center;
}

.user-b-header .add-balance {
    gap: 4px !important;
}

.close-user-account {
    width: 30px;
    position: absolute;
    left: -3px;
    top: -3px;
    z-index: 10;
}

.log-out {
    display: flex;
    justify-content: center;
    padding: 18px;
}


.main-container {
    background: #2d3748;
    min-height: 100vh;
    color: #e2e8f0;
    padding: 1rem;
    direction: rtl;
    max-width: 1270px;
    margin: 0 auto;
}

.header {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.back-btn {
    border: none;
    color: #e2e8f0;
    cursor: pointer;
    background: #2d3748;
    position: absolute;
    border-radius: 5px;
    height: 79%;
}

.header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
    flex: 1;
    text-align: center;
    margin-right: 3rem;
}

.tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
}

.tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: center;
}

.tab.active {
    background: #424b5a;
    color: #e2e8f0;
}

.currency-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 20px;
    color: #e2e8f0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.currency-btn.active {
    border: 1px solid #7dee7d;
    color: white;
}

.currency-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.currency-btn.active:hover {
    background: #38a169;
}

.currency-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.eth {
    background: #627eea;
}

.btc {
    background: #f7931a;
}

.usdt {
    background: #26a17b;
}

.usdc {
    background: #2775ca;
}

.more {
    background: #ffd700;
}

.add-currency {
    color: #48bb78;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.form-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
}
.form-group input{
    width: 92%;
    cursor:auto;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.form-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
    outline: none;
}

.help-link {
    color: #48bb78;
    text-decoration: underline;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.bonus-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bonus-text {
    color: #a0aec0;
    font-size: 0.9rem;
}

.min-deposit {
    color: #a0aec0;
    font-size: 0.9rem;
}

.bonus-selector {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    padding: 1rem;
    color: #e2e8f0;
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.bonus-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.info-box {
    background: rgba(72, 187, 120, 0.2);
    border: 1px solid #48bb78;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.info-box a {
    color: #48bb78;
    text-decoration: underline;
}

.deposit-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.deposit-header {
    font-size: 1rem;
    color: #a0aec0;
    margin-bottom: 1rem;
}

.qr-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.qr-code {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #1a202c;
    text-align: center;
    padding: 0.5rem;
}

.deposit-info {
    flex: 1;
}

.wallet-address {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #e2e8f0;
    word-break: break-all;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.wallet-address .address-part {
    color: #48bb78;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    color: #e2e8f0;
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.warning-box {
    background: rgba(72, 187, 120, 0.2);
    border-left: 4px solid #48bb78;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.4;
}

@media (max-width: 500px) {
    .form-section {
        flex-direction: column;
    }

    .qr-container {
        flex-direction: column;
        text-align: center;
    }

    .currency-selector {
        justify-content: center;
    }
}

#countdown {
    direction: ltr;
}


/* From Uiverse.io by Juanes200122 */ 
#svg-global {
  zoom: 1.2;
  overflow: visible;
}

@keyframes fade-particles {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-40px);
    opacity: 0;
  }
}

#particles {
  animation: fade-particles 5s infinite alternate;
}
.particle {
  animation: floatUp linear infinite;
}

.p1 {
  animation-duration: 2.2s;
  animation-delay: 0s;
}
.p2 {
  animation-duration: 2.5s;
  animation-delay: 0.3s;
}
.p3 {
  animation-duration: 2s;
  animation-delay: 0.6s;
}
.p4 {
  animation-duration: 2.8s;
  animation-delay: 0.2s;
}
.p5 {
  animation-duration: 2.3s;
  animation-delay: 0.4s;
}
.p6 {
  animation-duration: 3s;
  animation-delay: 0.1s;
}
.p7 {
  animation-duration: 2.1s;
  animation-delay: 0.5s;
}
.p8 {
  animation-duration: 2.6s;
  animation-delay: 0.2s;
}
.p9 {
  animation-duration: 2.4s;
  animation-delay: 0.3s;
}

@keyframes bounce-lines {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

#line-v1,
#line-v2,
#node-server,
#panel-rigth,
#reflectores,
#particles {
  animation: bounce-lines 3s ease-in-out infinite alternate;
}
#line-v2 {
  animation-delay: 0.2s;
}

#node-server,
#panel-rigth,
#reflectores,
#particles {
  animation-delay: 0.4s;
}


.af-box{
    background: #273040;
    visibility: hidden;
    overflow-y: hidden;
    max-height: 0;
    transition: all 0.6s ease-in;
    display: block;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    border-radius: 0 0 10px 10px;
    position: relative;
    top: -8px;
    z-index: -1;
}
.af-box.active{
    visibility: visible;
    padding: 19px;
    max-height: 1000px;
    opacity: 1;
}
.af-title{
    display: flex;
    justify-content: center;
    font-weight: bold;
}
.percent-commission{
    display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}
.percent-show{
    display: flex;
  flex-direction: column;
  padding: 0 10px;
  font-size: 12px;
}
.com-point{
    color: #93ff27;
  font-weight: bold;
  font-size: 17px;
}
.max-com{
    display: flex;
    width: 34%;
    color: #93ff27;
    font-weight: Bold;
}
.com-text{
    font-size: 13px;
    padding: 10px;
    background: #2f3746;
    border-radius: 10px;
    border-left: 1px solid #93ff27;
}
.ref-link-box{
    padding: 2px;
    margin-top: 20px;
}
.ref-link{
    font-size: 12px;
}
.link-box{
    background: #2f3746;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 5px;
  border-radius: 10px;
}
.ref-title-text{
    font-size: 14px;
    font-weight: bold;
}
.copy-link-btn{
    background: #273040;
    padding: 0 4px;
    border-radius: 9px;
    cursor: pointer;
}

.ref-info{
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    background: #2f3746;
    border-radius: 10px;
    margin-top: 10px;
}

.total-friends,.total-rewards{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 3px;
    font-size: 13px;
}
.opened-box{
    display: none;
}
.opened-box.active{
    display: block;
}

.closed-box.hide{
    display: 'none';
}

.create-ref-btn{
  display: flex;
  justify-content: center;
  background: #f5c518;
  border-radius: 10px;
  color: black;
  font-weight: bold;
  padding: 9px;
  box-shadow: 0 2px 1px black;
  cursor: pointer;
}
.r-history{
    margin-top: 20px;
}
.r-h-item{
    display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #333d4d;
  margin-top: 10px;

}
.r-h-all-items{
    padding: 10px;
    background: #2f3746;
    font-size: 13px;
    max-height: 250px;
    overflow-y: auto;
}
.r-h-amount{
    color: #93ff27;

}

 .support-box{
    background: #273040;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in;
    display: block;
    border-radius: 0 0 10px 10px;
    position: relative;
    top: -8px;
    z-index: -1;
 }
 .support-box.active{
    visibility: visible;
    max-height: 1000px;
    opacity: 1;
    padding: 10px;
}
.support-box svg{
   width: 20px;
  height: 20px;
}
.s-box-title{
    display: flex;
    justify-content: center;
    font-weight: bold;
    padding-top: 5px;
}
.s-box-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.s-box-head-title{
    display: flex;
    align-items: center;
    gap: 8px;

}
.s-box-content{
    padding: 3px;
}
.new-ticket-btn{
    background: #3e4a5e;
    padding: 2px 9px;
    border-radius: 10px;
    font-size: 13px;
}
.about-this-page{
    font-size: 13px;
    max-width: 5px 0;
}
.s-box-list{
    padding: 10px;
    background: #2d3748;
    border-radius: 10px;
    font-size: 13px;
    max-height: 300px;
    overflow-y: auto;
}
.ticket-item-head{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #394457;
    padding: 5px;
}
.ticket-status{
    display: flex;
    align-items: center;
    gap: 5px;
}
.detail-ticket-l{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}
.detail-ticket-l span,.detail-ticket-l svg{
    cursor: pointer;
}
.t-item{
    background: #273040;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
}
.s-opened-box{
    display: none;
}
.s-opened-box.active{
    display: block;
}

.s-closed-box.hide{
    display: 'none';
}

.ticket-detail-head{
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 11px;
    background: #3c4555;
    border-radius: 10px;
}
.ticket-detail-box{
    display: none;
    position: fixed;
    width: 100%;
    top: 0;
    height: 100%;
    background: #2d3748;
    left: 0;
    z-index: 100;
}
.ticket-detail-box.active{
    display: block;
}
.messages-list{
    margin: 10px;
    padding: 10px;
    overflow-y: scroll;
    max-height: 100%;
    box-sizing: border-box;
    padding-bottom: 200px;
}
.messages-list.no-message{
    position: relative;
    bottom: -34%;
    text-align: center;
}

.message-item{
    width: 70%;
  background: #3c4555;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 10px;
}

.message-item.support{
    background: #384847;
}


.message-head{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #2d3748;
    padding: 0 5px;
}
.message-text{
    padding: 4px;
}

.send-answer-form{
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 13px;
    border-top: 1px solid #3f4d64;
    display: flex;
    justify-content: center;
    right: -12px;
    background: #2d3748;
}
.send-answer-form textarea{
    width: 73%;
    padding: 0 10px;
    padding-top: 0px;
    outline: none;
    border: none;
    background: #3c4555;
    color: white;
    padding-top: 13px;
}
.send-answer-form span{
    background: #525e71;
    padding: 3px 10px;
    align-items: center;
    display: flex;
}
.t-d-icon{
    background: #2d3748;
    border-radius: 5px;
    top: 5px;
    position: relative;
}
.closed-text{
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 13px;
  border-top: 1px solid #3f4d64;
  display: flex;
  justify-content: center;
  right: -12px;
  background: #2d3748;
}

.new-ticket-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #404959;
    padding: 15px;
    width: 300px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    display: none;
}
.new-ticket-box.active{
    display: flex;
}
.new-ticket-head{
    display: flex;
  flex-direction: column;
  width: 100%;
}
.new-ticket-input{
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 6px;
    background: #273040;
    color: white;
}
.ticket-create-btn{
    width: 100%;
    text-align: center;
    margin: 10px;
    background: #465e38;
    border-radius: 6px;
}
.close-new-ticket-box{
    position: absolute;
    right: 10px;
    top: 10px;
}

    .menu{
      margin: 0;
      font-size: 1.5em;
      position: relative;
      align-items: center;
      justify-content: center;
      background-color: var(--bgColorMenu);
      position: absolute;
      top: 47px;
  }

    .menu__item {
      all: unset;
      flex-grow: 1;
      z-index: 100;
      display: flex;
      cursor: pointer;
      position: relative;
      border-radius: 50%;
      align-items: center;
      will-change: transform;
      justify-content: center;
      padding: 0.55em 0 0.85em;
      transition: transform var(--timeOut, var(--duration));
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 12px;

    }
    @media (max-width:768px) {
      .menu{
        width: 32.05em;
        display: flex;
        left: -34px;
        top: 91%;
      }
      #withdraw-form{
        flex-direction: column;
      }
    }
    @media (min-width:768px) {

      .menu__item{
        width: 80px;
      }
      .casino-game-item img{
        width: 26%;
      }
      /* .bar-btn{
        display: none;
      } */
    }

    .menu__item::before {

      content: "";
      z-index: -1;
      width: 5.2em;
      height: 5.2em;
      border-radius: 50%;
      position: absolute;
      transform: scale(0);
      transition: background-color var(--duration), transform var(--duration);

    }


    .menu__item.active {

      transform: translate3d(0, -.8em, 0);
      color: #f5c518;

    }

    .menu__item.active::before {

      transform: scale(1);
      background-color: var(--bgColorItem);

    }

    .icon {
      width: 2.6em;
      stroke: white;
      fill: white;
      stroke-width: 1pt;
      stroke-miterlimit: 10;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 400;

    }

    .menu__item.active .icon {

      animation: strok 1.5s reverse;

    }

    @keyframes strok {

      100% {

        stroke-dashoffset: 400;

      }

    }

    .menu__border {

      left: 0;
      bottom: 99%;
      width: 10.9em;
      height: 2.4em;
      position: absolute;
      clip-path: url(#menu);
      will-change: transform;
      background-color: var(--bgColorMenu);
      transition: transform var(--timeOut, var(--duration));

    }

    .svg-container {

      width: 0;
      height: 0;
    }


    @media screen and (max-width: 50em) {
      .menu {
        font-size: .8em;
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100%;
        margin: 0;
        right: -36px;
      }
    }
    .menu__item svg{
      width: 28px;
    }
  .inside-menu-box {
    position: fixed;
    max-width: 0;
    background: #2d3748;
    height: 100%;
    top: 0;
    z-index: 101;
    transition: max-width 0.4s ease-in, opacity 0.4s ease-in;
    padding: 10px;
    overflow-y: auto;
    box-sizing: border-box;
    padding-bottom: 100px;
    display: block;
    opacity: 0;
    pointer-events: none;
    width: 100%;
  }

  .inside-menu-box.active {
    max-width: 100%;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    max-width: 1270px;
  }


    .inside-menu-head{
      display: flex;
      justify-content: center;
      padding: 20px;
      font-size: 20px;
      font-weight: bold;
      color: #bd9b1f;
      background: #273040;
      border-radius: 10px;
    }
    .inside-menu-item{
      padding: 5px 15px;
      display: flex;
      align-items: center;
      gap: 6px;
      background: #273040;
      margin: 9px 0;
      border-radius: 10px;
      position: relative;
      margin-bottom: 0;
    }
    .inside-menu-item span{
      color: white;
    }
    .inside-menu-item .navigation{
      position: absolute;
      width: 18px;
      background: #2d3748;
      padding: 8px 5px;
      border-radius: 10px;
    }
    .inside-menu-item .item-icon{
      width: 37px;
    }
    .close-inside-menu{
      width: 35px;
      position: absolute;
      top: 31px;
      background: #161f2f;
      height: 35px;
      border-radius: 5px;
    }
    .withdraw-box{
      padding: 0px;
      padding-bottom: 0px;
      position: absolute;
      top: 0;
      display: none;
      width: 100%;
      z-index: 101;
    }
    .withdraw-box.active{
      display: block;
    }
    .withdraw-btn{
      padding: 13px;
    }
    .main-container{
      padding-bottom: 100px;
    }

    /* internal css */
    .back-btn{
      top: 5px;
      left: 5px;
    }

    .wallet-val{
      color: #f5c518;
    }
    .lds-ripple,
    .lds-ripple div {
        box-sizing: border-box;
    }

    .lds-ripple {
        display: inline-block;
        position: relative;
        width: 80px;
        height: 80px;
        right: -38%;
    }

    .login-loading,
    .register-loading,
    .withdraw-loading {
        display: none;
    }

    .lds-ripple div {
        position: absolute;
        border: 4px solid currentColor;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

    .lds-ripple div:nth-child(2) {
        animation-delay: -0.5s;
    }

    @keyframes lds-ripple {
        0% {
            top: 36px;
            left: 36px;
            width: 8px;
            height: 8px;
            opacity: 0;
        }

        4.9% {
            top: 36px;
            left: 36px;
            width: 8px;
            height: 8px;
            opacity: 0;
        }

        5% {
            top: 36px;
            left: 36px;
            width: 8px;
            height: 8px;
            opacity: 1;
        }

        100% {
            top: 0;
            left: 0;
            width: 80px;
            height: 80px;
            opacity: 0;
        }
    }

    .withdraw-item{
      display: flex;
      justify-content: space-around;
      padding: 10px 5px;
      align-items: center;
      margin-top: 7px;
    }

    .approved{
      background: rgba(72, 187, 120, 0.2);
      border-left: 4px solid #48bb78
    }
    .rejected{
      background: rgba(225, 86, 86, 0.2);
      border-left: 4px solid #bb4848;
    }
    .pending{
      background: rgba(225, 184, 86, 0.2);
      border-left: 4px solid #bb9e48;
    }

    .status-c{
      height: 20px;
    }

    .left-s{
      transform: rotate(90deg);
      display: flex;
      align-items: center;
      position: absolute;
      left: 30px;
    }
    .right-s{
      position: absolute;
      right: 30px;
      transform: rotate(-90deg);
    }
    .middel-website-title{
      position: relative;
      display: flex;
      height: 156px;
      width: 360px;
      margin: 0 auto;
    }
    .title-n{
      text-align: center;
      position: absolute;
      left: 50%;
      transform: translate(-50%);
      top: 69px;
      font-weight: bold;
    }
    .sport{
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%);
      background: #4b4b4b;
      width: 300px;
      text-align: center;
      padding: 20px 10px;
      height: 258px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 10px;
      border: 1px solid #12e0ad;
      flex-direction: column;
      gap: 20px;
      display: none;
    }
    .sport.active{
      display: flex;
    }
    /* From Uiverse.io by scissorsdog */ 
.loader__balls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.loader__balls__group {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  height: 100px;
  width: 40px;
}
.ball {
  height: 30px;
  width: 30px;
  border-radius: 15px;
  position: absolute;
  transform-origin: bottom;
}

/* ANIMATION BALL 1*/
.loader__balls__group :nth-child(1) {
  background-color: #99e2d0;
  animation-name: jumpinBallAnimation1;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
}
@keyframes jumpinBallAnimation1 {
  0% {
    transform: translateY(0) scale(1, 1);
  }
  10% {
    transform: translateY(0) scale(1.3, 0.8);
  }
  11% {
    transform: translateY(0) scale(0.7, 1.2);
    animation-timing-function: cubic-bezier(0, 0, 0.5, 1);
  }
  39% {
    transform: translateY(-75px) scale(1);
    animation-timing-function: cubic-bezier(0, 0, 0.5, 1);
  }
  40% {
    transform: translateY(-75px) scale(1);
  }
  41% {
    transform: translateY(-75px) scale(1);
    animation-timing-function: cubic-bezier(1, 0, 1, 0);
  }
  69% {
    transform: translateY(0px) scale(1, 1);
    animation-timing-function: cubic-bezier(1, 0, 1, 0);
  }
  70% {
    transform: translateY(0) scale(1.5, 0.4);
  }
  80% {
    transform: translateY(0) scale(0.8, 1.2);
  }
  90% {
    transform: translateY(0) scale(1.1, 0.8);
  }
  100% {
    transform: translateY(0) scale(1, 1);
  }
}

/* ANIMATION BALL 2*/
.loader__balls__group :nth-child(2) {
  background-color: #12e0ad;
  animation-name: jumpinBallAnimation2;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
}
@keyframes jumpinBallAnimation2 {
  0% {
    transform: translateY(0) scale(1, 1);
  }
  10% {
    transform: translateY(0) scale(1.3, 0.8);
  }
  11% {
    transform: translateY(0) scale(0.7, 1.2);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }
  39% {
    transform: translateY(-75px) scale(1);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }
  40% {
    transform: translateY(-75px) scale(1);
  }
  41% {
    transform: translateY(-75px) scale(1);
    animation-timing-function: cubic-bezier(1, 0, 1, 0.5);
  }
  69% {
    transform: translateY(0px) scale(1, 1);
    animation-timing-function: cubic-bezier(1, 0, 1, 0.5);
  }
  70% {
    transform: translateY(0) scale(1.5, 0.4);
  }
  80% {
    transform: translateY(0) scale(0.8, 1.2);
  }
  90% {
    transform: translateY(0) scale(1.1, 0.8);
  }
  100% {
    transform: translateY(0) scale(1, 1);
  }
}


  .loader__balls__group :nth-child(3) {
    background-color: #16c197;
    animation-name: jumpinBallAnimation3;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
  }
  @keyframes jumpinBallAnimation3 {
    0% {
      transform: translateY(0) scale(1, 1);
    }
    10% {
      transform: translateY(0) scale(1.3, 0.8);
    }
    11% {
      transform: translateY(0) scale(0.7, 1.2);
      animation-timing-function: cubic-bezier(0, 1, 0.5, 1);
    }
    39% {
      transform: translateY(-75px) scale(1);
      animation-timing-function: cubic-bezier(0, 1, 0.5, 1);
    }
    40% {
      transform: translateY(-75px) scale(1);
    }
    41% {
      transform: translateY(-75px) scale(1);
      animation-timing-function: cubic-bezier(1, 0, 1, 1);
    }
    69% {
      transform: translateY(0px) scale(1, 1);
      animation-timing-function: cubic-bezier(1, 0, 1, 1);
    }
    70% {
      transform: translateY(0) scale(1.5, 0.4);
    }
    80% {
      transform: translateY(0) scale(0.8, 1.2);
    }
    90% {
      transform: translateY(0) scale(1.1, 0.8);
    }
    100% {
      transform: translateY(0) scale(1, 1);
    }
  }
  .loader__balls__group .item1 {
    animation-delay: 0ms;
  }
  .loader__balls__group .item2 {
    animation-delay: 100ms;
  }
  .loader__balls__group .item3 {
    animation-delay: 200ms;
  }
