#vdei-site-popup {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.5); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 9999;
}

#vdei-site-popup .vdei-site-popup-wrapper {
    background: white; 
    border-radius: 5px; 
    position: relative;
    padding: 40px;
    max-width: 600px;
    width: 94%;
}

#vdei-site-popup #vdei-proceed-button {
    margin-right: 10px;
}
#vdei-site-popup .vdei-site-popup-close {
    position: absolute;
    top:10px;
    right: 10px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
#vdei-site-popup .vdei-site-popup-close:hover svg path {
    stroke: #ffffff;
}
#vdei-site-popup button {
    font-family: 'Inter';
    font-weight: 800;
    font-size: 16px;
    padding:5px 15px;
    box-shadow: none;
    border: 2px solid;
    border-radius:6px;
    text-transform: uppercase;
    background-color: transparent;
}
#vdei-site-popup button:hover {
    border-color: transparent;
    color: #ffffff;
}

#vdei-site-popup .vdei-site-popup-wrapper h3 {
 margin: 0 0 15px 0;
 font-size: 32px;
 line-height: 30px;
}

#vdei-site-popup .vdei-site-popup-wrapper p {
    font-size: 16px;
}