<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*.popup1 {
    position: fixed;
    top: 10%;
    min-height: 160px;
    padding-left: 20px;
    padding-top: 0px;
    padding-bottom: 20px;
    padding-right: 20px;
    background-color: black;
    font-weight: bold;
    color: white;
    margin: 5px;
    z-index: 999;

}*/





.popup1 {
    position: fixed;
    top: 55%;
    left: 50%;

    height: 800px;
    width: 600px;

    transform: translate(-50%, -50%);
    z-index: 999;
    overflow: hidden;
}
   .responsive {
    width: auto;
    height: 100%;
}



.btn-float-right {
    float: right;
    color: red;
    font-size: x-large;
}



/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .popup1 {
        top: 60%;
        left: 50%;
        width: 100%;
        flex-wrap: wrap;
    }

    .responsive {
        width: 100%;
        height: auto;
    }
}





</pre></body></html>