#indiconnect-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

#indiconnect-modal-content {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    width: 90%;
    max-width: 800px;
    height: 90%;
    position: relative;
    display: flex;
    flex-direction: column;
}

#indiconnect-modal-iframe {
    flex: 1;
    width: 100%;
    border: none;
}

#indiconnect-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    z-index: 10000;
}

#indiconnectPaymentIframe {
    width: 100%;
    height: 100%;
    transform-origin: top left;
}

.responsive-container {
    position: relative;
    width: 35%;
    height: 85%;
    margin: 3% auto;
    background: #fff;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .responsive-container {
        width: 50%;
        /* For tablets */
    }
}

/* @media (max-width: 768px) {
    .responsive-container {
      width: 80%; 
    }
  } */

@media (max-width: 768px) {
    #indiconnectModal .modal-content {
        width: 90%;
        height: 90%;
    }

    .responsive-container {
        width: 100%;
        max-width: 360px;
    }
}