﻿/*body {
    font-family: Arial, Helvetica, sans-serif;
}
*/
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999999; /* Sit on top */
    padding-top: 1px; /* Location of the box */
    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-show {
    display: block;
}
/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    margin-top: 0px;
    padding: 10px;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.8s;
}

/* The Close Button */
    .close {
        
        background: #fff;
        color: maroon;
        border-radius: 5px;
        border:none;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: normal;
        font-size: 20px;
        float: right;
        width: 50px;        
        transition: 0.5s ease;
    }

        .close:hover,
        .close:focus {
            font-weight: bolder;
            font-size: 25px;
            text-decoration: none;
            cursor: pointer;
        }

/* Add Animation */
@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}