
.image-preview{
    height: 150px;
	overflow: hidden;
}

.negative,.positive{
    cursor: pointer;
}

@media all and (max-width: 375px) {
	.image-preview{
		height: 200px;
	}
	
	#qrcode img {
        background: #fff;
        padding: 10px !important;
        border-radius: 12px;
    }
}
.box-area{
	border: 2px dashed #ccc;
	border-radius: 8px;
	padding: 5px;
	text-align: center;
	width: 100%;
	/* min-height: 200px; */
	}
@media (min-width: 376px) and (max-width: 575.98px) {
	.image-preview{
		height: 150px;		
	}
	.box-area{
		width: 50%;
	}
}
/*---------------------input number upDOWn arrow rermove--------------*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* For Firefox */
}
/*---------------------input number end--------------*/
/*---------------------input password start--------------*/
.password-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.my-btn-bordered{
    /* Border for top and bottom sides */
    border-width: 1px 4px 4px 1px;
    /* Border color */
    border-color: #000000;
    /* Border style (solid, dashed, etc.) */
    border-style: solid;
    border-radius: 3px 3px 3px 3px;
    width: 30px;
    cursor: pointer;
}

.my-btn-bordered:hover{
    width: calc(30px + 1px);
    border: 1px solid #000;
}

.password-wrapper .fa-eye-slash, 
.password-wrapper .fa-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* .password-wrapper input[type="password"] {
    padding-right: 30px;
} */
/*---------------------input password end--------------*/
/*------drag element-----*/
.dragELM{ 
    height: auto; background-color: #0084ff; padding:10px;
}
.dragELM a{
    color: #fff;
}
.nav2{
    display: flex;
}
/*------drag element end-----*/
/*------------------------------- animations------------------- */
.w3-animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
.w3-animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
.w3-animate-top{position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
.w3-animate-left{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
.w3-animate-right{position:relative;animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
.w3-animate-bottom{position:relative;animation:animatebottom 0.4s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}
.w3-animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
.w3-animate-input{transition:width 0.4s ease-in-out}.w3-animate-input:focus{width:100%!important}
/*------------------------------- animations end------------------- */

/* ---------------------------- ON OFF toggle ---------------------------- */
.toggle-button {
    display: inline-block;
    width: 50px;
    height: 25px;
    background-color: #ccc;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    outline: none;
    transition: background-color 0.2s;
    font-size: 10px;
}

.toggle-button::after {
    content: '';
    position: absolute;
    top: 9.87%;
    left: 6%;
    width: 38%;
    height: 77%;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s, left 0.3s; /* This will provide the smooth sliding effect */
}

.toggle-button.ON {
    background-color: #4CAF50;
}

.toggle-button.ON::after {
    left: 55%;  /* Adjusted to the correct position */
}
.ON span{
    margin-left: -50%;
    transition: transform 0.3s;
    color:#fff;
}
.OFF span{
    margin-left: 45%;
    transition: transform 0.3s;
}


/* ---------------------------- ON OFF toggle ---------------------------- */
/* ------------------------------   TABLE section   ------------------------------ */
/* .table-container{
    width: 100%;
} */
/* Webkit browsers */
.table-container::-webkit-scrollbar { width: 8px;  height: 10px; }
.table-container::-webkit-scrollbar-thumb { background-color: darkgrey; border-radius: 10px;}
.table-container::-webkit-scrollbar-thumb:hover { background-color: #000; }
.table-container::-webkit-scrollbar-track { background-color: lightgrey; border-radius: 10px;}

/* Firefox */
/* .table-container {
    scrollbar-width: thin;
    scrollbar-color: darkgrey lightgrey;
}

.table-container {
    overflow: auto; 
    max-width: 100%; 
    height: 500px;
    padding: 0;
    border: 1px solid;
}

.table-container table {
    width: 100%; 
    border: 1px solid #000;
    padding: 0;
}

.table-container th, td {
    padding: 8px 15px;
    border: 1px solid black;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 2;
}

.sticky-col {
    position: sticky;
    left: 0;
    z-index: 1;
    background-color: #9e2626;
}

th.sticky-col.sticky-header {
    z-index: 3;
} */

.text-info {
  color: #0dcaf0 !important; /* Bootstrap's info color (light blue) */
}

/* ------------------------------   TABLE section end  ------------------------------ */
.text-bold{
    font-weight: bold !important;
}
.shade{
    background-color: #00ff7371;
}
.shade1{
    background-color: #00000075 !important;
}
.bg-trans-w{
    background: #ffffffa4 !important;
}


.crypto-container {
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.crypto-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.crypto-item:last-child {
    border-bottom: none;
}

.total-item {
    box-shadow: 0px 8px 15px 0px rgba(24, 25, 27, 0.05);
    border: 1px solid #ffffff;
    padding: 12px 1px 10px 19px; 
    display: flex;
    align-items: center;
    border-radius: 15px;
    gap: 12px;
}

.total-item .box-icon {
    width: 35px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.custom-tabs {
    /* background-color: #1F1F1F!important; */
    border-radius: 15px;
    border: 1px solid #fff;
    padding: 3px;
}

.custom-tabs .nav-link {
    color: #533dea !important;
    border-radius: 15px;
}

.custom-tabs .nav-link.active {
    background-color: #533dea !important;
    color: #fff!important;
}

.qrcode{
    width: 70%;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid #ffffff;
}

#qrcode {
    background: #fff;
    padding: 10px!important;
    border-radius: 12px;
}

.support-container,.float-icon {
  position: fixed;
  bottom: 78px;
    right: 10px;
  z-index: 1000;
}

/*-------------------------*/


.btn-check + .btn {
            background-color: #e5e6e7;
            border: 2px solid #e5e6e7;
            border-radius: 6px;
            color: #000;
            position: relative;
            padding: 0.4rem 1rem;
            transition: all 0.3s ease;
            font-size:13px;
            font-weight:600;
        }

        /* Checked state styles */
        .btn-check:checked + .btn {
            background-color: white;
            border: 2px solid #ffd933; /* Outline color */
            color: #000; /* Text color */
        }

        /* Tick mark when checked */
        .btn-check:checked + .btn::after {
            content: "✔";
            font-size: 0.8rem;
            background-color: #ffd933;
            color: #000;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            position: absolute;
            top: -2px;
            right: -2px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Optional hover styles */
        .btn:hover {
            filter: brightness(0.9);
        }
        
        /*-----------------------------*/
        
        
        .gradient-circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, #0DDDBC, #3082CE, #853393);
            background-size: 300% 300%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: animateGradient 5s infinite linear;
            cursor: pointer;
        }

        .inner-circle {
            width: 82%;
            height: 82%;
            background-color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            overflow: hidden;
            box-shadow: inset 4px 4px 11px rgba(0, 0, 0, 0.5),4px 4px 11px rgba(0, 0, 0, 0.5);
        }

        .inner-circle h1 {
            font-size: 24px;
            font-weight: bold;
            background: radial-gradient(circle, #0DDDBC, #3082CE, #853393);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: animateGradient 5s infinite linear;
            transition: opacity 0.3s;
        }

        .checkmark-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
        }
        
        .checkmark-circle,
        .checkmark-tick {
            fill: none;
            stroke: #0DDDBC;
            stroke-width: 5;
            stroke-linecap: round;
            stroke-dasharray: 157; /* Total length */
            stroke-dashoffset: 157; /* Start hidden */
            animation-timing-function: ease-in-out;
        }
        
        .checkmark-circle {
            animation: drawCircle 0.6s forwards;
        }
        
        .checkmark-tick {
            stroke-dasharray: 50;
            stroke-dashoffset: 50;
            animation: drawTick 0.4s forwards 0.6s;
        }
        
        @keyframes drawCircle {
            0% { stroke-dashoffset: 157; }
            100% { stroke-dashoffset: 0; }
        }
        
        @keyframes drawTick {
            0% { stroke-dashoffset: 50; }
            100% { stroke-dashoffset: 0; }
        }

        @keyframes animateGradient {
            0% { background-position: 0% 0%; }
            25% { background-position: 100% 0%; }
            50% { background-position: 100% 100%; }
            75% { background-position: 0% 100%; }
            100% { background-position: 0% 0%; }
        }


        .dash-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            border-radius: 16px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            color: #fff;
            transition: 0.3s;
            height: 100%;
          }
          
          .dash-card .icon-box {
            font-size: 26px;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
          }

          
          
          .dash-card .label {
            font-size: 13px;
            color: #f0f0f0;
            text-transform: uppercase;
          }
          
          .dash-card .value {
            font-size: 18px;
            font-weight: bold;
            color: #fff;
          }

          .icon-box.bg1{ background: #ab00e7; }
          .icon-box.bg2{ background: #25C866;}
          .icon-box.bg3{ background: #0082FE;}
          
          /* bg4 - Orange */
            .coin-box .blur.bg4 { background-color: #FF9800; opacity: 0.4; }
            .icon-box.bg4 { background: #FF9800; }

            /* bg5 - Red */
            .coin-box .blur.bg5 { background-color: #F44336; opacity: 0.4; }
            .icon-box.bg5 { background: #F44336; }

            /* bg6 - Yellow */
            .coin-box .blur.bg6 { background-color: #FFEB3B; opacity: 0.4; }
            .icon-box.bg6 { background: #FFEB3B; }

            /* bg7 - Cyan */
            .coin-box .blur.bg7 { background-color: #00BCD4; opacity: 0.4; }
            .icon-box.bg7 { background: #00BCD4; }

            /* bg8 - Pink */
            .coin-box .blur.bg8 { background-color: #E91E63; opacity: 0.4; }
            .icon-box.bg8 { background: #E91E63; }

            /* bg9 - Lime */
            .coin-box .blur.bg9 { background-color: #88dc39; opacity: 0.4; }
            .icon-box.bg9 { background: #88dc39; }

            /* bg10 - Indigo */
            .coin-box .blur.bg10 { background-color: #3F51B5; opacity: 0.4; }
            .icon-box.bg10 { background: #3F51B5; }

            /* bg11 - Deep Purple */
            .coin-box .blur.bg11 { background-color: #673AB7; opacity: 0.4; }
            .icon-box.bg11 { background: #673AB7; }

            /* bg12 - Deep Orange */
            .coin-box .blur.bg12 { background-color: #FF5722; opacity: 0.4; }
            .icon-box.bg12 { background: #FF5722; }

            /* bg13 - Teal */
            .coin-box .blur.bg13 { background-color: #009688; opacity: 0.4; }
            .icon-box.bg13 { background: #009688; }

          
          .bg-gradient-primary { background: linear-gradient(135deg, #1e90ff, #007cf0); }
          .bg-gradient-danger { background: linear-gradient(135deg, #ff416c, #ff4b2b); }
          .bg-gradient-info { background: linear-gradient(135deg, #17ead9, #6078ea); }
          .bg-gradient-warning { background: linear-gradient(135deg, #f7971e, #ffd200); }
          .bg-gradient-success { background: linear-gradient(135deg, #00c9a7, #92fe9d); }
          .bg-gradient-dark { background: linear-gradient(135deg, #141e30, #243b55); }
          .bg-gradient-lightblue { background: linear-gradient(135deg, #2193b0, #6dd5ed); }
          .bg-gradient-orange { background: linear-gradient(135deg, #fc4a1a, #f7b733); }
          .bg-gradient-purple { background: linear-gradient(135deg, #7b2ff7, #f107a3); }
          .bg-gradient-inv{background: linear-gradient(135deg, #2575fc, #6a11cb);}


          .bg-gradient-pinkblue { background: linear-gradient(135deg, #ff6a88, #ff99ac); }
        .bg-gradient-tealgreen { background: linear-gradient(135deg, #11998e, #38ef7d); }
        .bg-gradient-sunset { background: linear-gradient(135deg, #f83600, #f9d423); }
        .bg-gradient-coolblue { background: linear-gradient(135deg, #2193b0, #6dd5ed); }
        .bg-gradient-fire { background: linear-gradient(135deg, #f12711, #f5af19); }
        .bg-gradient-neon { background: linear-gradient(135deg, #00f2fe, #4facfe); }
        .bg-gradient-ocean { background: linear-gradient(135deg, #00c6ff, #0072ff); }
        .bg-gradient-wine { background: linear-gradient(135deg, #3a1c71, #d76d77); }
        .bg-gradient-mango { background: linear-gradient(135deg, #ffe259, #ffa751); }
        .bg-gradient-royal { background: linear-gradient(135deg, #141e30, #4b6cb7); }




          .wallet-card {
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
          }
          
          .bg-gradient-wallet {
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
          }
          
          .wallet-header {
            display: flex;
            align-items: center;
            gap: 15px;
          }
          
          .wallet-icon {
            background: rgba(255, 255, 255, 0.1);
            padding: 18px;
            border-radius: 50%;
            font-size: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
          }
          
          .wallet-info .wallet-label {
            font-size: 14px;
            text-transform: uppercase;
            color: #e0e0e0;
            margin-bottom: 4px;
          }
          
          .wallet-info .wallet-amount {
            font-size: 26px;
            font-weight: bold;
            color: #ffffff;
          }
          
          .wallet-footer {
            margin-top: 15px;
            text-align: right;
          }
          
.center-icon {
    position: absolute;
    top: -14px; /* raise above the menu bar */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.bottom-navigation-bar {
    height: 60px;
    /* background-color: #fff; */
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: visible;
}
.lh-1 {
  line-height: .8 !important;
}
.marquee-currency {
  overflow: hidden;
  position: relative;
  height: auto;
}

.marquee-currency-content {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-left 15s linear infinite;
}

.marquee-currency-content .item {
  flex: none;
  min-width: 80px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-83%);
  }
}


.support-container {
      width: 60px;
      height: 60px;
      border-radius: 50px;
      background: radial-gradient(circle, #00ffd7, #0084ff, #da00ff);
      background-size: 300% 300%;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: animateGradient 5s infinite linear;
      cursor: pointer;
      position: fixed;
      bottom: 65px;
      right: 10px;
      z-index: 1000;
  }
  
  .support-container.call {
      bottom: 85px;
  }
  .support-container.pay {
      bottom: 345px;
  }
  
  .support-icon {
      width: 75%;
      height: 75%;
      background-color: #fff;
      color: #000;
      border-radius: 50px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      transition: transform 0.3s ease;
      /* padding: 5px 0;*/
  }
  
  .support-icon:hover {
      transform: scale(1.1);
  }
  
  /*.support-container .support-icon i {*/
  /*    font-size: 25px;*/
  /*    margin-bottom: -30px;*/
  /*    color: #25d366;*/
  /*}*/
  .support-container.pay .support-icon i{
      color: #d32525;
      font-size: 34px;
  }
  
  .support-container.call .support-icon i{
      color: #2563d3;
      font-size: 34px;
  }
  
  .support-icon p {
      font-size: 14px;
      color: #000;
      transform: rotate(270deg);
      white-space: nowrap;
      margin-bottom: 26px;
  }
  
  
  .support-options {
    position: absolute;
    bottom: 50px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  
  .support-option {
    width: 40px;
    height: 40px;
    background-color: #25d366; /* WhatsApp green */
    color: white!important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .support-option.live-chat {
    background-color: #007bff; /* Live Chat blue */
  }
  
  .support-option i {
    font-size: 20px;
    color: white;
  }
  
  .support-container.open .support-options {
    opacity: 1;
    visibility: visible;
  }
  
  .support-container.open .support-option {
    opacity: 1;
    transform: translateY(0);
  }
  
  @keyframes animateGradient {
      0% { background-position: 0% 0%; }
      25% { background-position: 100% 0%; }
      50% { background-position: 100% 100%; }
      75% { background-position: 0% 100%; }
      100% { background-position: 0% 0%; }
  }

.noti-box {
    display: none;
}
.noti-box.show.active {
    display: block;
}

.condition-card {
    /* background: #1c1c1c; */
    /* border: 1px solid #333; */
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 229, 0, 0.1);
    transition: 0.3s ease-in-out;
}
.condition-card:hover {
    box-shadow: 0 0 15px rgba(255, 229, 0, 0.3);    
}

.yellow{
    color: #fffb00;
}

.my-box {
    border-radius: 12px 12px 0 0; /* top-left, top-right, bottom-right, bottom-left */
    box-shadow: 0 0px 15px rgba(255, 255, 255, 1); /* only on top */
}

.pt-55 {
    padding-top: 55px;
}
.pb-100{
    padding-bottom: 100px;
}

.icn {
    position: absolute;
    right: 16px;
    top: 19px;
}


.fs-7 {
    font-size: 0.6rem !important;
}

.v-scroll{
  max-height: 400px;      /* adjust height as needed */
  overflow-y: auto;       /* vertical scroll */
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; /* smooth on iOS */
}

/* WebKit scrollbar styling (Chrome, Safari, Edge) */
/* .vertical-scroll::-webkit-scrollbar{ width: 10px; }
.vertical-scroll::-webkit-scrollbar-track{ background: transparent; }
.vertical-scroll::-webkit-scrollbar-thumb{
  background-color: #38b000; 
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.06);
} */

/* Firefox */
/* .vertical-scroll{ scrollbar-width: thin; scrollbar-color: #38b000 transparent; } */



/* -------------lottery------------- */
    .lottery-container {
        padding: 15px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 15px;
    }
    /* .lottery-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.06);
        text-align: center;
        padding: 15px 10px;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .lottery-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    }
    .lottery-number {
        font-size: 28px;
        font-weight: 700;
        color: #ff5722;
    }
    .lottery-prize {
        font-size: 14px;
        color: #666;
        margin-top: 5px;
    } */
    /* Modal Styles */
    .lottery-modal {
        display: none;
        position: fixed;
        z-index: 999;
        left: 0; top: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.6);
        justify-content: center;
        align-items: center;
    }
    .lottery-modal-content {
        background: #fff;
        border-radius: 16px;
        padding: 20px;
        width: 90%;
        max-width: 320px;
        text-align: center;
        animation: lottery-fadeIn 0.3s ease;
    }
    .lottery-modal h2 {
        margin-bottom: 10px;
    }
    .lottery-modal input {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ddd;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    .lottery-btn {
        display: inline-block;
        background: linear-gradient(135deg, #ff5722, #ff9800);
        color: white;
        padding: 10px 18px;
        border-radius: 12px;
        border: none;
        font-size: 16px;
        cursor: pointer;
    }
    .lottery-btn:hover {
        opacity: 0.9;
    }
    @keyframes lottery-fadeIn {
        from {transform: scale(0.9); opacity: 0;}
        to {transform: scale(1); opacity: 1;}
    }
    /* --------------lottery--------------- */

    :root[data-bs-theme=dark] .my-modal-border{
    --bs-border-opacity: 1;
    border-color: #edf4ff !important;
    }
    



