.mod {
    display: none;
    position: fixed;
    z-index: 1000000000000000000000000000000000000000000000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.8);
    border-radius: 4px 4px 4px 4px;
}
.mod-content {
    background-color: #fefefe;
    margin: auto;
    margin-top: -20px;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 10px 10px 10px 10px;
}

.Modclose {
    color: #aaaaaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
    z-index: 1000000000000;
    transition: all 300ms;
}
.Modclose:hover,
.Modclose:focus {
    color: #03455C;
    text-decoration: none;
    cursor: pointer;
    font-size: 40px;
    z-index: 1000000000000;
    transform: rotate(180deg);
}