#RaiAcceptIframeModal {
    display: block;
}

.raiaccept-no-scroll-body {
    height: 100%; overflow-y: hidden;
}

.raiaccept-iframe-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.raiaccept-iframe-modal-content {
    width: 100%;
    height: 100%;
    max-width: 640px;
    max-height: 750px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

@media (max-width: 899px) {
    .raiaccept-iframe-modal-content {
        max-height: 100%;
        max-width: 100%;
    }
}