#spp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
#spp-popup-box {
    width: 90%;
    max-width: 600px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#spp-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    color: #ffffff;
    background: #ff0000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}
#spp-popup-box > p {
    font-family: "open-sans", sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px;
}
#spp-popup-overlay .text-blocks{
    margin-bottom: 2rem;
}
#spp-popup-overlay .text-blocks .button{
    margin-bottom: 10px;
    margin-right: 10px;
}
.spp-popup-content {
    font-family: "open-sans", sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px;
    margin: 3rem auto;
}
#spp-popup-close:hover {
    background: #cc0000;
}
#spp-popup-box .text-blocks{
    background: inherit;
}
#spp-popup-close::after {
    content: '×';
    font-size: 18px;
    color: #ffffff;
    line-height: 1;
}