body {
    max-width: 100vw;
    height: 100vh;
}

html.iframeInserted, html.iframeInserted body {
    overflow: hidden;
}

#jumper_iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#jumper_iframe.UnderLoading {
    display: none;
}

#jumper_loader {
    width: 100%;
    height: 100%;
    background-color: transparent;
}

#jumper_loader .InnerContainer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#jumper_loader.AfterLoading {
    display: none;
}

#jumper_loader .LoaderAnimation {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid royalblue;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

#jumper_loader .LoaderAnimation::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border-bottom: 4px solid cornflowerblue;
    border-left: 4px solid transparent;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}