/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2; /* Sit on top */
    padding-top: 50px; /* Location of the box */
    padding-bottom: 50px;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* 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 */
.modal-wrapper {
    background-color: #fefefe;
    margin: auto;
    /*padding: 0 20px;*/
    border: 1px solid #888;
    /*width: 50%;*/
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animateFade;
    animation-duration: 0.4s;
    min-width: 20%;
    border-radius: 8px;
}
.modal-header{
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 20px;
}
.modal-title{
    font-size: 18px;
    font-weight: bold;
}
.modal-content{
    padding: 16px 20px;
}
/* Add Animation */
@keyframes animateFade {
    from { opacity: 0.5}
    to {opacity: 1}
}
