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

/* Modal Content/Box */
.modal-content {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #38133E;
    margin: 5% auto; /* 15% from the top and centered */
    width: 650px; /* Could be more or less, depending on screen size */
    position: relative;
}

/* The Close Button */
.close {
    color: #FFF;
    font-size: 25px;
    font-weight: bold;
    position: absolute;
    right: 5px;
    top: 0;
}

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