.bendex-popup__container {}
.bendex-popup__container--open-y {}

.bendex-popup__overlay, .bendex-popup__dialog {
    width: 0px; height: 0px; max-width: 0px; max-height: 0px; overflow: hidden;
    opacity: 0;
    position: fixed; bottom: 0px; left: 0px; z-index: -1;
}

.bendex-popup__overlay {
    transition: opacity 0.3s;
}

.bendex-popup__overlay--open-y {
    position: fixed; top: 0px; left: 0px; z-index: 9999;
    width: 100vw; height: 100vh; max-width: 100vw; max-height: 100vh;
    background-color: #000000CC;
    opacity: 1;
}

@keyframes bendex-popup__dialog--open-y {
    0% { transform: translate(-50%, 50%); opacity: 0.4; }
    100% { transform: translate(-50%, -50%); opacity: 1; }
}

.bendex-popup__dialog--open-y {
    background-color: white;
    opacity: 1;
    width: calc(100vw - 4rem); max-width: 100vw;
    height: calc(100vh - 2rem); max-height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    animation-name: bendex-popup__dialog--open-y;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
}

/* .bendex-popup__dialog-root {}
.bendex-popup__head {} */

.bendex-popup__closer {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 10002;
}
.bendex-popup__closer-icon {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url('/images/icons/cross_black.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.bendex-popup__body {
    position: absolute;
    top: 25px;
    left: 40px;
    width: calc(100% - 80px);
    height: calc(100% - 50px);
    z-index: 10001;
}

.bendex-popup__body-root, .bendex-popup__iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}