/* popup-style.css */
.custom-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    box-shadow: 6px 4px 24px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    width: 267px;
    z-index: 9998;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.custom-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.custom-popup-close {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    position: absolute;

    border: none;
    border-radius: 50%;
}

a.custom-popup-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 8px;
}

.custom-popup-content img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.custom-popup-content p.custom-popup-text {
    font-size: 14px;
}
.custom-popup-content .custom-popup-cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.64px;
}
.custom-popup-bottom {
    gap: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
