.popup-button {
    cursor: pointer;
}

.popup {
    width: 400px;
    background: #fff;
    border-radius: 6px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
    z-index: 1;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.open-popup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.popup h2 {
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
}

.popup button {
    width: 100%;
    margin-top: 50px;
    padding: 10px 0;
    background: #333;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.page-wrapper.modalBlur>*:not(.popup) {
    -webkit-filter: blur(8px) opacity(10%);
    filter: blur(8px) opacity(10%);
}

.blink_me {
    animation: changeColor 2s ease-in-out infinite;

    -webkit-animation-name: changeColor;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    
    -moz-animation-name: changeColor;
    -moz-animation-duration: 2s;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-iteration-count: infinite;
    
    animation-name: changeColor;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@-moz-keyframes changeColor {  
    0% { color: #17a24a; }
    40% { color: #000; }
    100% { color: #000; }
}

@-webkit-keyframes changeColor {  
    0% { color: #17a24a; }
    40% { color: #000; }
    100% { color: #000; }
}

@keyframes changeColor {  
    0% { color: #17a24a; }
    40% { color: #000; }
    100% { color: #000; }
}
