.popup-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.popup-window-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
}

.popup-window-box {
    position: relative;
    background: #fff;
    border-radius: .5rem;
    width: 100%;
    max-width: 700px;
    max-height: 100%;
    overflow-y: auto;
    padding: 1.5rem;
}

.popup-window-close {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    background: transparent;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 1;
}

.popup-window-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: .25rem;
}

.popup-window-text {
    padding-right: 1.5rem;
}

.popup-window-dismiss {
    display: block;
    margin: 1rem auto 0;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .popup-window {
        padding: 1rem;
    }

    .popup-window-box {
        padding: 1rem;
    }
}
