/* 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: #222;
    /* 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: #000;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #CA6CE5;
    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: #CA6CE5;
    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: #FFC9EA;
    justify-self: center;
    text-align: center;
    flex: auto;
}

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

.popup-divider {

    width: 100%;
    background-color: #CA6CE5;
    color: #CA6CE5;

    background: url("../img/logo.png") no-repeat top center;
    background-size: contain;
    display: block;
    height: 50px;
    border: 0;
    position: relative;
}



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

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

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


.popup-btn {
    display: grid;
    border: solid #CA6CE5 2px;
    justify-self: start;
    padding: 8px 16px;
    font-weight: 400;
    font-size: 14px;
    transition: ease background .5s;
}

.popup-btn:hover {
    background-color: #CA6CE5;
}

.popup-btn h4 {
    text-transform: capitalize;
    color: #FFC9EA;
    letter-spacing: 1px;
}

.popup-btn:hover h4 {
    color: #FFC9EA;
}
