.backdrop {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: zoom-out;
}

.backdrop.no {
    cursor: default;
}

.popup-frame {
    display: none;
    position: fixed;
    left: 20%;
    top: 0;

    width: 60%;
    height: 100%;

    overflow: scroll;
}

.popup-frame > div {
    margin-top: 50px;
    margin-bottom: 50px;
    background: white;
    padding: 10px 12px;
    border-radius: 4px;
}

.popup-frame > div.no-border {
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.popup-frame > .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    font-size: 48px;
    cursor: pointer;
    color: white;
}

@media only screen and (max-width: 768px) {
    .popup-frame {
        width: 90%;
        left: 5%;
        top: 30px;
    }
}