.popup-widget .popup-widget-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, .75);
    padding: 20px;
    overflow: auto;
}

.popup-widget .popup-widget-modal.open {
    display: block;
}

.popup-widget .popup-widget-modal-body {
    height: 80vh;
    /*background-color: var(--color-dark-bg);*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-widget-modal-content-wrapper {
    /*width: 80%;*/
    /*background-color: #ffffff;*/
    /*border-radius: 8px;*/
    /*overflow: hidden;*/
    position: relative;
}

.popup-widget-modal-header {
    /*display: none;*/
    position: absolute;
    right: -40px;
    /*background-color: #87bddc;*/
    /*color: white;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: flex-end;*/
    /*padding: 10px;*/
}

.popup-widget-image {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    /*padding: 10px;*/
}

body.popup-widget-modal-open {
    overflow: hidden;
}