* {
    margin:0;
    padding:0;
    border:0;
}
body {
    background: #000;
    font-family: sans-serif;
    position: relative;
    width: 100%;
    height: 100vh;
}
#ct {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.ct-aLoadingScreen {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #446adb;
    background: #446adb;
    color: #ffffff;
    color: #ffffff;
    z-index: 2;
}
.ct-aLoadingProgress {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-style: italic;
    padding: 1rem 2rem;
}
.ct-aLoadingBar {
    content: '';
    height: 0.2rem;
    border-radius: 1rem;
    position: absolute;
    background: #446adb;
    background: #ffffff;
    left: 0;
    bottom: 0;
    transition: 1s cubic-bezier(0.31, 0.59, 0.29, 1) width;
}
.ct-aLoadingScreen.hidden {
    visibility: hidden;
    display: none;
}


