body{
   
   background-color: #f8f8f8;
    font-family: Arial, sans-serif;
    
    overflow: hidden;
}

    /* Style for the mobile frame */
    .mobile-frame {
        position: relative;
    width: 375px;
    height: 667px;
    /* border: 10px solid #333; */
    border-radius: 40px;
    margin: 50px auto;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); */
    }

    /* Style for the content inside the frame */
    .content {
        padding: 5px;
        color: #333;
    }

    /* Responsive design for smaller screens */
    @media (max-width: 768px) {
        .mobile-frame {
              width: 90vw;
    height: calc(90vw * 1.778);
    /* border-width: 5px; */
    /* border-radius: 20px; */
        }
    }
    
    @media (min-width: 768px) {
    
    .view{
        width: 22% !important;
    }
    
    }
    
.login-container {
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999; 
    width: 90%;

    
}
    

.container-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999; 
    width: 90%;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: 9998; /* Ensure it's below the popup */
}

.width-90 {
    width: 90%;
    position: relative;
    margin-top: 36px;
    margin-bottom: 29px;
}

.input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.input:focus {
    border-color:  #ff732a;
}

.input:not(:placeholder-shown) + .label {
    /*color: red;*/
    top: -20px;
    left: 0;
    font-size: 12px;
    transition: all 0.3s;
}

.label {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 16px;
    color: #888;
    transition: all 0.3s;
}

.input:focus + .label {
    /*color: red;*/
    top: -20px;
    left: 0;
    font-size: 12px;
    transition: all 0.3s;
}


.button {
    width: 100%;
    height: 35px;
    border-radius: 5px;
    border: 1px solid #ff732a;
    background-color: #ff732a;
    color: #fff;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.loader {
         display: none; 
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.top-alert {
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: auto;
    text-wrap: nowrap;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    color: #595959;
    display: flex;
    align-items: center;
    gap: 11px;
    transition: all 0.2s;
}

.icon.danger.wrong {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f44336;
    color: white;
    border-radius: 50%;
}

.icon.success.check {
    width: 24px;
    height: 24px;
    position: relative;
    background-color: #13e513;
    border-radius: 10px;
}

.icon.success.check svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.icon.success.check svg path {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.5s ease-in-out forwards;
}

@keyframes drawCheck {
    0% {
        stroke-dashoffset: 50;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.wallet-body{
    position: absolute;
    /*top: 50%;*/
    top: -5%;
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    padding: 20px;
    border-radius: 5px;
    background: linear-gradient( #ff732a 28%, #FFF 28%);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    width: 90%;
    text-align: center;
}

.wallet-transaction{
       /* position: relative; */
    /* top: 48px; */
    height: 464px;
    overflow: auto;
    /* margin-top: 59px; */
    margin-top: 42px;
}

/**/

.wallet-transaction .rows{
          display: flex;
    background-color: #fff;
    align-items: center;
    gap: 9px;
    margin-top: 11px;
    margin-bottom: 10px;
    border-bottom: 1px solid silver;
    padding-bottom: 7px;
}

.wallet-transaction .date{
      margin-right: 70%;
    font-size: 14px;
    color: #686868;
}

.wallet-transaction .rows .logo{
  width: 13%;
}

.wallet-transaction .rows .logo img{
    width: 100%;
}

.wallet-transaction .time-stamp{
       color: #a6a6a6;
    font-size: 12px;
    margin-right: 52px; 
    text-align: left;
}

.wallet-transaction .amount{
        font-size: 18px;
    font-weight: bold;
    text-wrap: nowrap;
}

.wallet-transaction .amount.receive{
    color: #1ff31f;
}


.wallet-transaction .amount.debit{
    color: red;
}

.wallet-data .balance-text{
    margin-bottom: 10px;
}

.withdraw{
    margin-top: 12px;
}
.wallet-data .balance{
        font-size: 36px;
    font-weight: bold;
}

.wallet-data .withdraw{
      margin-top: 17px;
}

.wallet-data .withdraw button{
           padding: 10px;
    color: #ff732a;
    border: none;
    border-radius: 5px;
    font-size: 17px;
}

.wallet-data .withdraw button:focus{
    background-color: #fff;
}

.logout-button{
       float: right;
    width: 14%;
    margin-left: 100%;
    border: none;
    border-radius: 5px;
   box-shadow: 0 2px 30px rgb(0 0 0 / 9%);
}

.rows .from{
        width: 180px;
    text-wrap: nowrap;
    text-align: left;
}

.view{
        position: fixed;
    z-index: 9999;
    padding: 20px;
    background-color: #fff;
    top: 14%;
    bottom: 50%;
    width: 81%;
    height: 431px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.view .header{
        display: flex;
    justify-content: space-between;
}

.view .header .title{
        font-size: 21px;
    font-weight: bold;
}

.view .header .Closs{
    
}

.view .header .Closs button{
        text-align: center;
    border: 1px solid black;
    border-radius: 6px;
    background-color: #fff;
}

.view .cart{
        border: 1px solid #a1a1a1;
    height: 79%;
    margin-top: 27px;
    border-radius: 10px;
    padding: 22px;
}

.view .cart .amount{
        font-size: 35px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

.view .cart .text2{
    font-size: 12px;
}

.from_to{
        font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

.loader2{
       transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgb(0 0 0 / 50%);
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    margin: auto;
}

.cart input{
        width: 91%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.message{
        text-align: left;
    text-wrap: nowrap;
    font-size: 12px;
    color: #515151;
    /*    overflow: hidden;*/
    /*max-width: 50%;*/
}