/* CSS Document */

#popupOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 999;
}
#popupMessage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #333;
    padding: 0;
    border-radius: 8px;
    box-shadow: 3px 3px 16px #666;
    z-index: 1000;

}
#popupMessage p {
    font-size: 19px;
    line-height: 1.7em;
    margin: 1px;
    padding: 1px;
}
#popupMessage .close {
    margin-top: 10px;
    text-align: center;
}
#popupMessage .close span {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 5px 10px;
    text-align: center;
    color: #fff;
    width: 300px;
    max-width: calc(100% - 24px);
    border-radius: 28px;
    border: 2px solid #00b02e;
    background: #00b02e;
}
#popupClose {
    cursor: pointer;
    margin: 0;
    padding: 25px 30px;
}
@media screen and (max-width: 767px) {
    #popupMessage {
        left: 10%;
        transform: translate(-5%, -50%);
    }
    #popupMessage p {
        font-size: 15px;
    }
    #popupMessage .close span {
        font-size: 16px;
        width: calc(100% - 20px);
        max-width: initial;
        padding: 8px 10px;
    }
    #popupClose {
        padding: 30px;
    }
}
