.wpshare247-shortcode-popup-button .popup-btn{
    display: flex;
    align-items: center;
    gap: 6px;
}
.wpshare247-shortcode-popup-button .overlay{
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    position: fixed;
    inset: 0;
    background-color: #00000030;
}
.wpshare247-shortcode-popup-button .overlay.active{
    opacity: 1;
    visibility: visible;
}
.wpshare247-shortcode-popup-button .popup{
    width: 600px;
    height: fit-content;
    border-radius: 12px;
    background-color: #fff;
    padding: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0);
}
.wpshare247-shortcode-popup-button .overlay.active .popup{
    transform: translate(-50%, -50%);
    transition: all .5s ease-in-out;
    transition-delay: .1s;
}
.wpshare247-shortcode-popup-button .popup .close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99;
}