/* The Modal (background) */

.subscribe-mmodal {
    opacity: 1;
    visibility: hidden;
    display: flex;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: all 500ms ease-in-out;
    background-color: transparent;
}


/* Modal Content/Box */

.subscribe-mmodal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    transition: all 500ms ease;
}


/* The Close Button */

.subscribe-mmodal-close {
    color: #878686;
    float: right;
    font-size: 30px;
    font-weight: bold;
}

.subscribe-mmodal-close:hover,
.subscribe-mmodal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.subscribe-mmodal.is-active {
    visibility: visible;
    opacity: 1;
}