/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    border: 1px solid #888;
    width: 780px;
    height: 480px;
    z-index: 200;
    background: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -390px;
    margin-top: -240px;
}

/* The Close Button */
#popup-subscriber .close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 1rem;
}

#popup-subscriber .close:hover,
#popup-subscriber .close:focus {
    color: #ccc;
    text-decoration: none;
    cursor: pointer;
}

.modal-content {
}

.popup-subscriber-form-wrapper {
    width: 60%;
    float: left;
    text-align: center;
    background-color: #ded3be;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-subscriber-image-wrapper {
    width: 40%;
    float: left;
    padding: 3px;
}

.popup-subscriber-clear {
    clear: both;
}

#popup-subscriber h3 {
    margin: 1rem auto;
    font-size: 1.2rem;
}

@media all and (max-width: 790px) {
    .modal-content {
        width: 90%;
        height: auto;
        left: 5%;
        top: 5%;
        margin: auto;
    }

    .popup-subscriber-form-wrapper, .popup-subscriber-image-wrapper {
        width: 100%;
        margin: auto;
        float: none;
    }
}