info-popup{
    position: fixed;
    width: 100%;
    height:100%;
    top:0;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 999999999;
    display:flex;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}
info-popup.active{
    visibility: visible;
    opacity: 1;
}
info-popup .info-popup-body{
    width:100%;
    height: 100%;
    max-width:850px;
    max-height: 600px;
    background-color: rgb(var(--color-background));
    display: grid;
    gap:20px;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    border-radius:10px;
    overflow: hidden;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s;
}
info-popup.active .info-popup-body{
    transform: translateY(0px);
}
info-popup .info-popup_image{
    width: 100%;
    height: 100%;
}

info-popup .info-popup_container{
    display:flex;
    flex-direction: column;
    justify-content: center;
    padding-left:30px;
    padding-right:30px;
}

info-popup .block-heading{
    margin-bottom:20px;
}

info-popup .rte{
    margin-bottom:70px;
}
info-popup #PopupForm{
    margin-bottom:10px;
}
info-popup .info-popup_form{
    margin-bottom:45px;
}
info-popup .info-popup_form input{
    width: 100%;
}

info-popup .info-popup_form .field{
    margin-bottom:30px;
}
info-popup .info-popup_form .field::after{
    content: none;
}
info-popup .info-popup_form .field input{
    border:none;
    border-bottom:1px solid rgba(var(--color-entry-line),0.2);
    padding-top:12px;
    padding-bottom:12px;
    outline: none;
    opacity: 0.5;
}
info-popup .fields button{
    width: 100%;
}
info-popup .info-popup_share-ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:10px;
}

info-popup .info-popup_image-sitename{
    position: absolute;
    top:20px;
    left:20px;
    color: #ffffff;
}

info-popup .info-popup_image-container{
    position: relative;
}

info-popup .info-popup_close{
    position: absolute;
    height:30px;
    width:30px;
    padding: 0;
    /* border-color:rgba(var(--color-entry-line),0.5);
    border-width:1px; */
    border: none;
    top: 20px;
    right:20px;
    cursor: pointer;
    /* background: transparent; */
    display: flex;
    justify-content: center;
    align-items: center;
}
info-popup .info-popup_close:hover{
    /* background-color: rgba(var(--color-button-background)); */
    /* color: rgba(var(--color-button-text)); */
}
@media(max-width:768px){
    info-popup .info-popup-body{
        grid-template-columns: repeat(1,1fr);
        grid-template-rows: repeat(auto-fit, minmax(0, 1fr));
        max-height: 80vh;
    }
    info-popup .rte{
        margin-bottom:20px;
    }
    info-popup .info-popup_form{
        margin-bottom:20px;
    }
}