#beehiivNewsletterPopup {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

#beehiivNewsletterPopup .popupBlock {
    background: white;
    padding: 20px;
    width: 380px;
    max-width: calc(100% - 40px);
    margin: 10px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    -webkit-box-shadow: 2px 2px 20px rgb(0 0 0 / 25%);
    box-shadow: 2px 2px 20px rgb(0 0 0 / 25%);
}

#closePopup {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #cccecf;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

#beehiivNewsletterPopup .popupBlock h2 {
    font-size: 18px;
    margin: 10px 0 10px;
    font-weight: bold;
    color: #45cee2;
}

#beehiivNewsletterPopup .popupBlock p {
    font-size: 14px;
    margin: 0 0 30px;
    color: #595959;
}

#beehiivNewsletterPopup .popupBlock img {
    width: initial;
}

/* @media (max-width: 600px) {
    #popupContainer {
        width: 90%;
        height: auto;
    }

    iframe {
        width: 100%;
        height: 100%;
    }
} */