.webweby-popup{
    position:fixed;
    inset:0;
    color:var(--webweby-popup-text,#111827);
}
.webweby-popup[hidden]{display:none!important}
.webweby-popup-overlay{
    position:absolute;
    inset:0;
    background:var(--webweby-popup-overlay,rgba(0,0,0,.58));
}
.webweby-popup-box{
    position:absolute;
    background:var(--webweby-popup-bg,#fff);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 24px 80px rgba(0,0,0,.28);
    width:min(var(--webweby-popup-width,520px),var(--webweby-popup-maxvw,30vw));
    max-height:72vh;
}
.webweby-popup-center .webweby-popup-box{top:50%;left:50%;transform:translate(-50%,-50%)}
.webweby-popup-bottom .webweby-popup-box{left:50%;bottom:24px;transform:translateX(-50%)}
.webweby-popup-slide .webweby-popup-box{right:24px;bottom:24px}
.webweby-popup-close{
    position:absolute;
    top:10px;
    right:10px;
    z-index:2;
    width:30px;
    height:30px;
    border:0;
    border-radius:999px;
    background:rgba(0,0,0,.10);
    color:inherit;
    cursor:pointer;
    font-size:22px;
    line-height:1;
}
.webweby-popup-grid{
    display:block;
}
.webweby-popup-type-image_text .webweby-popup-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
}
.webweby-popup-image{
    min-height:100%;
}
.webweby-popup-image img{
    display:block;
    width:100%;
    height:100%;
    max-height:72vh;
    object-fit:cover;
}
.webweby-popup-type-image .webweby-popup-image img{
    height:auto;
    object-fit:contain;
}
.webweby-popup-content{
    padding:22px;
    overflow:auto;
    max-height:72vh;
}
.webweby-popup-title{
    margin:0 0 10px;
    font-size:20px;
    line-height:1.2;
}
.webweby-popup-text{
    font-size:14px;
    line-height:1.55;
}
.webweby-popup-text p{margin:0 0 10px}
.webweby-popup-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:8px;
    min-height:40px;
    padding:0 16px;
    border-radius:999px;
    background:var(--webweby-popup-btn,#111827);
    color:var(--webweby-popup-btn-text,#fff);
    text-decoration:none;
    font-weight:700;
}
.webweby-popup-button:hover,.webweby-popup-button:focus{color:var(--webweby-popup-btn-text,#fff);text-decoration:none}
@media(max-width:1199px){
    .webweby-popup-box{
        width:min(var(--webweby-popup-width,520px),38vw);
    }
}
@media(max-width:767px){
    .webweby-popup-hide-mobile{display:none!important}
    .webweby-popup-box{
        width:calc(100% - 24px);
        max-height:82vh;
        border-radius:16px;
    }
    .webweby-popup-bottom .webweby-popup-box,
    .webweby-popup-slide .webweby-popup-box{
        left:12px;
        right:12px;
        bottom:12px;
        transform:none;
        width:auto;
    }
    .webweby-popup-type-image_text .webweby-popup-grid{
        display:block;
    }
    .webweby-popup-content{padding:20px;max-height:52vh}
    .webweby-popup-title{font-size:20px}
    .webweby-popup-image img{max-height:38vh}
}
@media(min-width:768px){
    .webweby-popup-hide-desktop{display:none!important}
}
