@charset "utf-8";
/* CSS Document */


#very-important {
	display: none; /* Hidden by default */
}
.m2 {
	margin: 2px 0px;
}
.popup {
    /* We replaced display:none with these three lines for the animation */
    visibility: hidden;
    opacity: 0;
    transition: opacity 4s ease, visibility 4s ease; 
    
    position: fixed;
    z-index: 1050;
    right: 50px;
    top: 50px;
    width: 380px;
    background-color: #6497cc;
    border-radius: 20px;
    filter: drop-shadow(0px 7px 7px #c2bdbd);
}

/* This is the trigger class the JavaScript will use to turn the lights on */
.popup.show-fade {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    background-color: #fefefe;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #888;
    width: 84%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}