#wfb-popup {
    display: none;
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    max-width: 90%;
    text-align: center;
}

#wfb-popup.show {
    display: flex;
    width: 50%;
    gap: 5px;
    flex-direction: column;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media screen and (max-width:768px){
    #wfb-popup.show {
    width: 100%;

}
}

#wfb-popup.fade-out {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
}

#wfb-popup p {
    font-size: 16px;
    margin: 0 0 20px 0 !important;
    font-weight: 600;
    color: #000000;
}


#wfb-popup button {
    margin: 6px;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    background-color: #6200ee;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    color: white;
    cursor: pointer;
    font-size: 15px;
    transition: box-shadow 0.3s ease;
}

#wfb-popup button:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #6200ee;
}
