.xgn-popup__wrapper {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99998;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    background: rgba(0,0,0,0.65);
}

.xgn-popup__content {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 60%;
    justify-content: space-around;
    padding-bottom: 25px;
    background: rgb(255,255,255);
    margin: auto;
}

.xgn-popup__close {
position: absolute;
right: 15px;
top: 15px;
width: 15px;
height: 15px;
background: url(https://epsonemear.a.bigcontent.io/v1/static/popup-close-icon) no-repeat;
cursor: pointer;
content: '';
}

.hidden {
    display: none;
}

.disable-scroll {
    height: 100%;
    overflow: hidden;
}

.xgn-popup__content {
    max-width: 800px;
}

@media (max-width: 769px) {
    .xgn-popup__content {
        display: flex;
        flex-direction: column;
        width: 80%;
        gap: 15px;
        justify-content: space-around;
        padding-bottom: 25px;
        background: rgb(255,255,255);
        margin: auto;
    }
}
