.popup-container {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
}

.popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    width: 95%;
    height: 95%;
    background: #fff;
    padding: 1rem;
        border-radius: 16px;
}

.popup-content iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.popup-content.desktop iframe {
    width: auto;
    max-width: 100%;
    height: 95vh;
    border: 1px solid #c5c2c2;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.popup-content.mobile iframe {
    width: 430px;
    height: 100%;
    margin: auto;
    border: 1px solid #c5c2c2;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.popup-view-options {
    /* position: absolute;
    top: 10px;
    left: 10px; */
}

.popup-view-options label {
    margin-right: 10px;
    color: #000;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
}

@media (max-width: 768px) {
    .popup-content.desktop iframe {
        width: 100%;
        height: 95vh;
    }
    .popup-content.mobile iframe {
        width: 100%;
        height: 100%;
    }
}
img.gto-demo-card-img {
    height: 325px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
}
