.splintr-thankyou {
    text-align: center;
}
.splintr-thankyou p {
    margin-bottom: 1.5em;
}
.splintr-thankyou__logo {
    margin: 0 auto;
    padding: 1em;
    height: 5em;
    width: 250px;
    background-image: url('https://www.splintr.com/images/logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-origin: content-box;
    background-color: #ff98af;
    border-radius: 50px;
}
.splintr-thankyou__text {
    font-size: 120%;
    font-weight: bold;
}
.splintr-success {
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    user-select: none;
    transform: translate(-50%, -50%);
    font-size: 1em;
    z-index: 10001;
    min-width: 90%;
}
.splintr-success__heading {
    display: block;
    margin: 1em;
    text-align: center;
}
.splintr-success__heading__text {
    font-size: 2em;
    line-height: 1em;
    margin: 0.5em 0;
}
.splintr-success__heading__logo {
    background-image: url('https://www.splintr.com/images/logo.svg');
    animation-name: twinkle;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    background-repeat: no-repeat;
    height: 3em;
    width: 200px;
    text-align: center;
    background-position: center;
    background-size: contain;
    background-color: #ff98af;
    padding: 0.5em;
    border-radius: 20px;
    margin: auto;
    background-origin: content-box;
}
.splintr-success__content {
    margin: 1em;
    text-align: center;
}
.splintr-success__content h4 {
    color: white;
}
@media screen and (min-width: 991px) {
    .splintr-success {
        font-size: 150%;
        min-width: 60%;
    }
}
@keyframes twinkle {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}
#splintr-success-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    cursor: pointer;
}
