.rts-text-info {
    font-family: InterTight;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.32;
    letter-spacing: 0.35px;
    text-align: center;
    color: #fff;

    position: absolute;
    bottom: 60px;
    align-items: center;
    width: 100%;
}

.rts-text-info.copyright {
    font-size: 10px;
    font-weight: normal;
    letter-spacing: 0.25px;
    color: #f5d4e0;
    bottom: 25px !important;
}


.rts-splash-screen {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(168deg, #ff357e 18%, #f99c9e 192%);
}

.rts-splash-image-animation {
    max-width: 60%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.rts-splash-image {
    position: absolute;
    max-width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

@keyframes mirrorflip {
    from {
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    to {
        -moz-transform: rotateY(-360deg);
        -ms-transform: rotateY(-360deg);
        transform: rotateY(-360deg);

    }
}