.redirect_notification {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .3);
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 1;
}

.redirect_notification * {
    box-sizing: border-box;
}

.redirect_notification .content {
    background-color: #fff;
    border-radius: 15px;
    padding: 65px 40px;
    border: 2px solid #50738f;
    display: flex;
    flex-direction: column;
}

.redirect_notification .content .hio-logo {
    width: 70px;
    height: 70px;
    margin: auto;
    display: flex;
}

.redirect_notification .content .title {
    color: #50738f;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

.redirect_notification .content p {
    color: #7c7c7c;
    text-align: center;
    font-family: "Encode Sans Semi Condensed";
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}