.wpsp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 50px;
}

.wpsp-popup-content {
    background: #fff;
    /* max-width: 500px; */
    /* width: 90%; */
    margin: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .wpsp-popup-content,
    .wpsp-popup-content img {
        height: 60vh;
        width: auto;
    }
}

.wpsp-close {
    color: #333;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    line-height: 1;
}

.wpsp-popup-content p {
    margin: 0;
}

.wpsp-popup-content a {
    display: flex;
}