<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * LOADER
 */

 .crew {
    margin: 0;
}

.crew .loader {
    position: absolute;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    z-index: 10;
    overflow: hidden;
    background: #292929 url("/skins/crew/bg-loader.png") no-repeat center;
}

.crew .container {
    width: 128px;
    height: 128px;
    top: calc(50% - 113px);
    left: calc(50% - 64px);
    background-color: rgba(12, 12, 12, .2);
    border: 2px solid rgba(255, 255, 255, .1);
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.crew .ring {
    position: absolute;
    left: 62px;
    top: -2px;
    height: 63px;
    width: 63px;
    border-radius: 0 100% 0 0;
    border: 1px solid rgba(255, 255, 255, .7);
    border-width: 0 2px 0 0;
    transform-origin: 0 100%;
    animation: rotate 1.1s ease-in-out infinite;
    pointer-events: none;
}

.crew .ring::after {
    position: absolute;
    top: 100%;
    border-radius: 100%;
    border-width: 0;
    background: #fff;
    background-color: rgb(255, 255, 255);
    box-shadow: none;
    background-color: #da2121;
    content: '';
    height: 34px;
    width: 34px;
    left: calc(100% - 19px);
    transform: rotate(150deg);
    background: url("/skins/crew/superhero.svg") no-repeat 0 0;
    background-size: cover;
}

.crew .link {
    width: 210px;
    text-decoration: none;
    color: rgba(255, 255, 255, .15);
    font-size: .6125rem;
    text-transform: uppercase;
    letter-spacing: .75rem;
    text-align: center;
    position: absolute;
    top: 140%;
    left: calc(50% - 100px);
    transition: .5s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.crew .link:hover {
    color: rgba(255, 255, 255, .875);
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.crew .logo {
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 40px);
    width: 35px;
    height: 41px;
    opacity: .35;
    display: block;
    transition: 1.1s;
}

.crew .logo:hover {
    transform: scale(1.1);
}

@media only screen and (max-width:480px),
only screen and (max-height:350px) {
    .crew .logo {
        width: 45px;
        height: 45px
    }
}

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

    100% {
        transform: rotate(260deg);
    }
}

/*
* STYLES
*/
.crew {
    --primary-color: #d50000;
}

.crew .interface .company {
    font-size: 1rem;
    color: #000000;
}</pre></body></html>