/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 999999;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100vw;
    /* Full width */
    height: 100vh;
    /* 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 {
    display: flex;
    flex-direction: column;
    background-color: #EFE4DE;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #EFE4DE;
    border-radius: 12px;
    width: 60%;
    /* Could be more or less, depending on screen size */
    /*
  background-image: url("../img/popup-bg.jpg");
  background-size: cover;
*/
}

/* The Close Button */
.popup-close {
    color: #222;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-align: end;
    align-self: center;
}

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

.popup-heading {
    font-weight: 200;
    color: #222;
    justify-self: center;
    text-align: center;
    flex: auto;
}

.popup-txt {
    justify-self: center;
    text-align: center;
    padding: 2rem;
}

.popup-divider {
    width: 100%;
    background-color: #EFE4DE;
    color: #EFE4DE;
}

.popup-image-container {
    display: flex;
    justify-content: center;
}

.popup-logo {
    max-width: 200px;
}

.popup-header-row {
    display: flex;
}
