@font-face {
    font-family: 'EurostileExt';
    src: url("/assets/fonts/EurostileExt-Bla.woff2") format("woff2");
    font-weight: 900;
    font-display: swap;
    font-style: normal;
    font-named-instance: 'Black';
}

@font-face {
    font-family: 'EurostileExt';
    src: url("/assets/fonts/EurostileExt-BlaIta.woff2") format("woff2");
    font-weight: 900;
    font-display: swap;
    font-style: italic;
    font-named-instance: 'Black-Italic';
}

@font-face {
    font-family: 'EurostileExt';
    src: url("/assets/fonts/EurostileExt-Med.woff2") format("woff2");
    font-weight: 600;
    font-display: swap;
    font-style: normal;
    font-named-instance: 'Medium';
}

@font-face {
    font-family: 'EurostileExt';
    src: url("/assets/fonts/EurostileExt-Reg.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
    font-style: normal;
    font-named-instance: 'Regular';
}


:root {
    --accent-color: #4682e9;
    --accent-color-dark: #2c62c0;
    --accent-color-light: #6a9ef1;
}

body {
    background: #141d2b;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "EurostileExt", sans-serif;
    margin: 0;
    letter-spacing: 0;
    cursor: default;
    background: -webkit-linear-gradient(#ffffff 20%, #a0a0a0 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


h6 {
    font-weight: 700;
}

h5 {
    font-weight: 600;
}

h4 {
    font-weight: 600;
}

h3 {
    font-weight: 500;
}

h2 {
    font-weight: 500;
}

h1 {
    font-weight: 500;
}

body > menu {
    background: linear-gradient(to bottom, rgb(10, 12, 17) 5%, rgba(8, 14, 21, 0.6) 80%, rgba(0, 0, 8, 0) 100%);
}

body > splash {
    background: #141d2b;
}

body > content > section:not(:first-of-type) {
    background: linear-gradient(to bottom, rgba(0, 0, 5, .8) 0px, rgba(0, 0, 5, 0) 250px);
}

section.active-match > content > columns > columnwrap > tile.scoreboard > players > player > titlewrap > rank > spinnerwrap > spinner {
    width: 17px !important;
    height: 17px !important;
    background: transparent !important;
    border: 1.5px solid #ffffff !important;
    border-radius: 0 !important;
    animation: none !important;
    transform: translate3d(0, 0, 0) rotate(45deg);
    animation: iw6RankSpinner 1s linear infinite !important;
}

@keyframes iw6RankSpinner {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(-45deg);
    }

    25% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(45deg);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(45deg);
    }
}

section.active-match > content > columns > columnwrap > tile.scoreboard > players > player > titlewrap > rank > spinnerwrap > spinner::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    content: '';
    animation: iw6SpinnerInnerAnim 1s linear infinite;
}

@keyframes iw6SpinnerInnerAnim {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(0);
    }

    30% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

body > bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

body > bg > img,
body > splash > img {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    -webkit-mask-image: linear-gradient(to bottom, #000000 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000000 50%, transparent 100%);
    mask-repeat: no-repeat;
}