.redirect-modal-outer {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.redirect-modal {
    width: auto;
    max-width: calc(100vw - 20px);
    border-radius: 10px;
    position: fixed;
    top: calc(50vh - 100px);
    left: 50vw;
    transform: translate3d(-50%, -50%, 0);
    background: white;
    padding: 24px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.redirect-modal img {
    max-height: 40px;
    margin: 0 auto;
}