.box-popup{position:fixed;top:0;left:0;width:100%;height:100vh;background-color:var(--popup_bckg_popup);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;z-index:99;opacity:0;visibility:hidden;-webkit-transition:all .2s;transition:all .2s}.box-popup *{-webkit-box-sizing:border-box;box-sizing:border-box}.box-popup.active{-webkit-transform:translateY(0%);transform:translateY(0%);opacity:1;visibility:visible}.box-popup.active .popup_wrap{opacity:1;-webkit-transform:translateY(0);transform:translateY(0);-webkit-transition:all .2s .2s;transition:all .2s .2s}.box-popup .close{position:absolute;top:2px;right:2px;width:30px;height:30px;padding:10px;cursor:pointer;border-radius:50%;-webkit-transition:all 0.2s;transition:all 0.2s;z-index:99}.box-popup .close:after,.box-popup .close:before{content:"";position:absolute;top:5px;left:50%;width:3px;height:calc(100% - 14px);-webkit-transform:rotate(45deg);transform:rotate(45deg);background:var(--close_icon_color,#fff);opacity:.75;-webkit-transition:all 0.2s;transition:all 0.2s}@media only screen and (min-width:768px){.box-popup .close:after,.box-popup .close:before{height:calc(100% - 10px)}}.box-popup .close:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.box-popup .close:hover:after,.box-popup .close:hover:before{opacity:1}.box-popup .popup_wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:start;-ms-flex-align:start;align-items:start;width:100%;max-width:var(--popup_max_width,var(--wrap));max-height:var(--popup_max_height,var(--wrap));margin:auto;opacity:0;-webkit-transform:translateY(-100vw);transform:translateY(-100vw);-webkit-transition:all .2s;transition:all .2s}.box-popup .content_wrap{position:relative;display:block;margin:auto 0;width:100%;padding:var(--popup_content_padding_mobile);border-radius:var(--popup_border_radius);background-color:var(--popup_bckg_popup_content);-webkit-box-shadow:var(--popup_content_shadow);box-shadow:var(--popup_content_shadow);max-width:inherit;max-height:inherit;overflow:hidden;overflow-y:auto}.box-popup .content_wrap::-webkit-scrollbar{position:absolute;left:0;width:5px;height:5px;background:var(--popup_bckg_popup_content)}.box-popup .content_wrap::-webkit-scrollbar-thumb{background:#fff}@media only screen and (min-width:768px){.box-popup .content_wrap{padding:var(--popup_content_padding)}}.box-popup .content_wrap video{width:auto;height:auto;max-width:100%;max-height:100%;margin:auto;display:block;border-radius:var(--popup_border_radius);overflow:hidden}.box-popup .content_wrap .iframe_wrap{width:100%;height:100%;border-radius:var(--popup_border_radius);overflow:hidden}