#vp-popup-root{position:fixed;inset:0;z-index:999999;display:none}
#vp-popup-root .vp-overlay{position:absolute;inset:0;background:rgba(0,0,0,.45);opacity:0;transition:opacity .25s ease}
#vp-popup-root .vp-modal {
    position: absolute;
    inset: 0;
    margin: auto;
    max-width: 820px;
    width: 92vw;
    max-height: 92vh;
    border-radius: 14px;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity .25s 
ease, transform .25s 
ease;
    display: flex
;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}
#vp-popup-root .vp-media{position:relative;width:100%;height:auto;display:flex;flex-direction:column;align-items:center;}
#vp-popup-root .vp-video{width:100%;height:auto;display:block}
#vp-popup-root .vp-image{width:100%;height:auto;display:block;border-radius:8px;}
#vp-popup-root .vp-button {
    padding: 10px 20px;
    background: #FE5F2E;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background .3s 
ease;
    position: absolute;
    z-index: 1;
    right: 40px;
    bottom: 70px;
}#vp-popup-root .vp-button:hover{background:#0056b3;}
#vp-popup-root .vp-close {
    position: absolute;
    top: 0;
    right: 0px;
    width: 36px;
    height: 36px;
    border: none;
    background: #fff;
    color: #000;
    font-size: 32px;
    border-radius: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex
;
    align-items: center;
    justify-content: center;
    padding-left: 7px;
}
#vp-popup-root .vp-close:hover{opacity: .7}
#vp-popup-root:not(.vp-hidden){display:block}
#vp-popup-root:not(.vp-hidden) .vp-overlay{opacity:1}
#vp-popup-root:not(.vp-hidden) .vp-modal{opacity:1;transform:translateY(0)}
#vp-popup-root.vp-hidden{display:none}

@media(max-width: 768px) {
#vp-popup-root .vp-button {
    bottom: 20px;
    right: 20px;
}
}