  .susd-redirect-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 400px;
    z-index: 9999999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.susd-redirect-wrapper .susd-redirect-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.susd-redirect-wrapper .susd-redirect-content-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.susd-redirect-wrapper .susd-redirect-content {
    position: fixed;
    top: 25%;
    margin: auto;
    width: 50%;
    min-width: 200px;
    background: #fff;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
}

.susd-redirect-message {
	color: #333 !important;
}

.susd-redirect-wrapper .susd-redirect-content .susd-redirect-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.susd-redirect-wrapper .susd-redirect-content .susd-redirect-action button.continue {
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 3px;
}

.susd-redirect-warning-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0 0 0 / .9);
    z-index: 9999999999;
}

.susd-redirect-warning-wrapper .susd-redirect-warning {
    width: 50%;
    padding: 50px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,.25);
}

.susd-redirect-skip {
    text-decoration: underline !important;
}

.susd-redirect-wrapper.minimize {
    position: fixed;
    top: initial;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 20%;
    min-width: 100px;
    height: initial;
    display: block;
}

.susd-redirect-wrapper.minimize .susd-redirect-overlay,
.susd-redirect-wrapper.minimize .susd-redirect-inital-message {
    display: none;
}

.susd-redirect-wrapper.minimize:hover .susd-redirect-content {
    background: rgba(255, 255, 255, 1);
    transition: background 200ms;
}

.susd-redirect-wrapper.minimize .susd-redirect-content {
    position: relative;
    top: initial;
    margin: auto;
    width: 100%;
    background: rgba(255,255,255, 0.85);
    border-radius: 5px;
    padding: 10px;
    text-align: center;
}

@media only screen and (max-width: 768px) {

    .susd-redirect-wrapper {
        min-width: initial;
    }

    .susd-redirect-wrapper .susd-redirect-content {
        position: fixed;
        width: 90%;
        padding: 20px;
    }

    .susd-redirect-wrapper.minimize {
        bottom: 0;
        padding: 10px;
        min-width: 300px;
        margin: initial;
    }

    .susd-redirect-wrapper.minimize .susd-redirect-content {
        left: 0;
        right: 0;
    }
}
