@media (max-width:500px) {
   .mobile-container #info-container-mobile, .mobile-container .wll{
        bottom:0%;
        width: 100%;
        display: none;
        height: 600px;
        position: absolute;
        background-color: var(--modal-background-color);
        border: 1px solid #1d1e29;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        transition: 1s;
        z-index: 2;
        animation: slideInUp 0.6s ease-out forwards;
        overflow-x: hidden;
    }

    .mobile-container .wallet-info-div{
    padding-bottom: 2rem;
}

.mobile-container .action-buttons-info{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin: 0rem auto 1rem;
    text-align: center;
    width: 90%;
}
.mobile-container .action-buttons-info img{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
   
}
.mobile-container .action-buttons h5, .mobile-container .action-buttons-info h5{
    color: #ccc;
    font-size: 16px;
}
.mobile-container .action-buttons p, .mobile-container .action-buttons-info p{
    color: #666;
    font-size: 14px;
}    
 .mobile-container ::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}   
}
@media (min-width:501px) {
.desktop-container #info-container-desktop, .desktop-container .wll{
        display: none;
        top:50%;
        left: 50%;
        width: 400px;
        transform: translate(-50%, -50%);
        height: 600px;
        position: absolute;
        background-color: var(--modal-background-color);
        border-radius: 30px;
        transition: 1s;
        animation: forwards;
        z-index: 2;
        overflow-x: hidden;
    }
   .desktop-container ::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}   
.desktop-container .wallet-info-div{
    padding-bottom: 2rem;
}

.desktop-container .action-buttons-info{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin: 0rem auto 1rem;
    text-align: center;
    width: 90%;
}
.desktop-container .action-buttons-info img{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
   
}
.desktop-container .action-buttons h5, .action-buttons-info h5{
    color: #ccc;
    font-size: 16px;
}
.desktop-container .action-buttons p, .action-buttons-info p{
    color: #666;
    font-size: 14px;
}
}
