﻿/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 102; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 6rem auto;
    padding: 2rem;
    border: 1px solid #888;
    border-radius: 0.5rem;
    width: 55%;
    box-shadow: 0 19px 38px rgba(0 0 0 0.12), 0 15px 12px rgba(0 0 0 0.22);
    box-sizing: border-box;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}