﻿@charset "UTF-8";
/* ==========================================================================
CSS Resets & Fixes
========================================================================== */
* {
    box-sizing: border-box;
}

.clearfix:after {
    content: '';
    clear: both;
    display: table;
}

img {
    max-width: 100%;
}

/* ==========================================================================
Transition
========================================================================== */
/* ==========================================================================
Body
========================================================================== */
body {
    width: 100%;
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    word-break: break-word;
    background-image: url(../img/header-white.png), linear-gradient(160deg, black 0%, #050719 20%, #2d3c68 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: top, center;
    background-position-y: 3em, 0px;
    background-size: inherit;
    background-attachment: scroll, fixed;
}

body a {
    color: white;
}

@media only screen and (max-width: 1280px) {
    body {
        background: #0d1323;
        background-attachment: unset;
    }
}

/* ==========================================================================
Container & Grid
========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* ==========================================================================
Main Menu
========================================================================== */
.menu {
    position: relative;
    display: flex;
    margin: 20px 0;
    height: 180px;
    justify-content: center;
    align-items: center;
}

.menu__item, .menu__logo, .menu__login {
    color: white;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
}

.menu__item, .menu__logo {
    width: calc((100% - 56px) / 5);
    margin: 0 7px;
}

.menu__item:first-of-type, .menu__logo:first-of-type {
    margin-left: 0;
}

.menu__item:last-of-type, .menu__logo:last-of-type {
    margin-right: 0;
}

.menu__logo {
    height: 100%;
    background: url(../img/logo-optimized.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 100ms ease-out;
}

.menu__logo:hover {
    transform: scale(1.05);
}

.menu__item {
    height: 50px;
}

.menu__item--left, .menu__item--right .menu__item__wrapper__content {
    transform: skewX(25deg);
}

.menu__item--left .menu__item__wrapper__content, .menu__item--right {
    transform: skewX(-25deg);
}

.menu__item__wrapper {
    background: linear-gradient(to top, #01030c, #143e63);
    position: relative;
}

.menu__item__wrapper:before {
    content: '';
    padding: 2px 5px 5px 5px;
    width: 100%;
    height: 100%;
    top: -2px;
    left: -5px;
    position: absolute;
    z-index: -1;
    background: linear-gradient(to top, orange, grey);
    opacity: 0;
}

.menu__item__wrapper:after {
    content: '';
    padding: 2px 5px 5px 5px;
    width: calc(100% - 10px);
    height: calc(100% - 2px - 2px);
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    background: linear-gradient(to right, transparent 5%, #6090BB 50%, transparent 95%);
    opacity: 0;
    transition: opacity 100ms ease-out;
}

.menu__item__wrapper__content {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.menu__item--active .menu__item__wrapper:before {
    opacity: 1;
    border-radius: 4px;
}

.menu__item:hover:not(.menu__item--active):not(.menu__item--disabled) .menu__item__wrapper:after {
    /* background: linear-gradient(to right, black, #6090BB 50%, black); */
    opacity: 1;
}

.menu__item--disabled:not(.menu__item--active) {
    opacity: 0.25;
    filter: grayscale(1);
    cursor: not-allowed;
    cursor: default;
    position: relative;
}

.menu__item--disabled:not(.menu__item--active):before {
    content: attr(data-disabled-text);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: white;
    display: flex;
    align-items: center;
    z-index: 200;
    font-size: 14px;
    justify-content: center;
    font-weight: bold;
}

.menu__item--disabled:not(.menu__item--active)[class$="left"]:before {
    transform: skewX(-25deg);
}

.menu__item--disabled:not(.menu__item--active)[class$="right"]:before {
    transform: skewX(25deg);
}

.menu__item--disabled:not(.menu__item--active) .menu__item__wrapper {
    filter: blur(4px);
}

.menu__login {
    display: flex;
    align-items: center;
    position: absolute;
    top: 25px;
    right: -180px;
    transition: 50ms ease-out;
}

.menu__login:hover {
    transform: scale(1.125);
}

.menu__login__text {
    margin-left: 12px;
}

.menu__login__picture {
    width: 36px;
    height: 36px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #252525;
    border-radius: 0;
    border: 4px solid #252525;
}

/* ==========================================================================
Slider
========================================================================== */
.slider__item__content, .news__article__content {
    text-shadow: -1px -1px 30px #000, 1px -1px 30px #000, -1px 1px 30px #000, 1px 1px 30px #000;
}

.slider {
    height: 330px;
    margin-bottom: 60px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.75);
    background-color: black;
}

.slider__item {
    width: 100%;
    height: 100%;
    background-color: grey;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-decoration: none;
}

.slider__item__content {
    width: inherit;
    height: inherit;
    padding: 30px 60px;
    /*background: linear-gradient(to right, black 0%, rgba(0,0,0,0.8) 25%, rgba(0,0,0,0.5) 40%, transparent 75%);*/
}

.slider__item__content__title {
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 16px;
    font-weight: 300;
}

.slider__item__content__description {
    margin: 0;
}

.slider__arrow {
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 100;
    font-size: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    transition: 100ms ease-in-out;
    opacity: 0;
    /* Hide per default, as per Sandras Info */
}

.slider__arrow--prev {
    left: 0;
}

.slider__arrow--next {
    right: 0;
}

.slider__arrow:hover {
    opacity: 1;
}

.slider .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 20px 0;
    list-style-type: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.slider .slick-dots li {
    cursor: pointer;
    margin: 0 6px;
}

.slider .slick-dots li.slick-active button {
    background-color: rgba(255, 255, 255, 0.75);
}

.slider .slick-dots button {
    background-color: rgba(255, 255, 255, 0.33);
    cursor: pointer;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 100%;
    text-indent: -9999px;
    transition: 100ms ease-in-out;
}

.slider .slick-dots button:focus {
    outline: 0;
}

/* ==========================================================================
Heading (with Decoration)
========================================================================== */
.heading {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    max-width: 100%;
    overflow: hidden;
}

.heading__text {
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    margin: 0;
}

.heading__text:before, .heading__text:after {
    top: 50%;
    transform: translateY(-50%);
    content: '';
    display: block;
    width: 180px;
    height: 2px;
    background: white;
    position: absolute;
}

.heading__text:before {
    left: calc(-200px);
}

.heading__text:after {
    right: calc(-200px);
}

/* ==========================================================================
News / Articles
========================================================================== */
.news {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.news--tall .news__article {
    height: 480px;
}

.news__article, .news .ad {
    width: calc(100% / 3 - 4/3*12px);
    height: 300px;
    margin: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.33);
    background-color: grey;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 1px 1px 0px black;
    /*&:first-of-type, 
        &:nth-of-type(4n),
        &:nth-of-type(7n),
        &:nth-of-type(11n),
        &:nth-of-type(14n),
        &:nth-of-type(17n) {
            margin-left: 0;
        }
        &:nth-of-type(3n) {
            margin-right: 0;
        }*/
}

@media only screen and (max-width: 1280px) {
    .news__article, .news .ad {
        margin-left: 0;
        margin-right: 0;
    }
}

.news__article--ad:after, .news .ad--ad:after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: attr(data-type);
    padding: 10px 12px;
    text-shadow: 3px 3px 8px black;
    opacity: 0.8;
}

.news__article--ad .news__article__content, .news .ad--ad .news__article__content {
    box-shadow: inset 0px 0px 0 4px rgba(255, 255, 255, 0.3);
}

.news__article:nth-of-type(1), .news__article:nth-of-type(2), .news__article:nth-of-type(3), .news .ad:nth-of-type(1), .news .ad:nth-of-type(2), .news .ad:nth-of-type(3) {
    margin-top: 0;
}

@media only screen and (max-width: 1280px) {
    .news__article:nth-of-type(1), .news__article:nth-of-type(2), .news__article:nth-of-type(3), .news .ad:nth-of-type(1), .news .ad:nth-of-type(2), .news .ad:nth-of-type(3) {
        margin-top: 12px;
    }
}

.news__article:nth-of-type(3n + 1), .news .ad:nth-of-type(3n + 1) {
    margin-left: 0;
}

.news__article:nth-of-type(3n), .news .ad:nth-of-type(3n) {
    margin-right: 0;
}

.news__article:hover .news__article__background, .news .ad:hover .news__article__background, .news__article:hover .news .ad__background, .news .ad:hover .news .ad__background {
    transform: scale(1.05);
}

.news__article__background, .news .ad__background {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: grey;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 100ms ease-out;
}

.news__article__content, .news .ad__content {
    /*width: calc(100% + 1px);*/
    width: 100%;
    height: 100%;
    padding: 20px;
    background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.8) 25%, rgba(0, 0, 0, 0.5) 40%, transparent 75%);
    position: relative;
    /*z-index: 50;*/
}

.news__article__content__title, .news .ad__content__title {
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 16px;
    font-weight: 300;
    font-size: 19px;
}

.news__article__content__preview, .news .ad__content__preview {
    margin: 0;
    font-size: 14px;
}

.news__article__content.news__article__content__title__hidden, .news .ad__content {
    /*width: calc(100% + 1px);*/
    width: 100%;
    height: 100%;
    padding: 20px;
    background: none;
    position: relative;
    /*z-index: 50;*/
}
/* ==========================================================================
Partner
========================================================================== */
.partner {
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.3));
    margin: 80px 0;
    margin-bottom: 0;
}

.partner__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: none;
}

.partner__content__logo {
    max-height: 70px;
    max-width: 230px;
    /* margin: 0 80px; */
    /*filter: brightness(0) invert(1);*/
    transition: transform 100ms ease-in;
}

.partner__content__logo:hover {
    filter: none;
    transform: translateY(-6px) scale(1.1);
}

@media only screen and (max-width: 1280px) {
    .partner__content__logo {
        height: 40px;
    }
}

@media only screen and (max-width: 1280px) {
    .partner {
        margin: 20px 0;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.footer__copyright {
    font-size: 14px;
    opacity: 0.8;
}

.footer__copyright a {
    color: white;
    text-decoration: none;
    padding-left: 6px;
}

.footer__socialmedia__channel {
    color: white;
    text-decoration: none;
    font-size: 26px;
    margin: 0 6px;
}

.footer__socialmedia__channel:first-of-type {
    margin-left: 0;
}

.footer__socialmedia__channel:last-of-type {
    margin-right: 0;
}

.footer__socialmedia__channel--twitter:hover {
    color: #1da1f2;
}

.footer__socialmedia__channel--facebook:hover {
    color: #3b5998;
}

.footer__socialmedia__channel--youtube:hover {
    color: #ff0000;
}

.footer__socialmedia__channel--discord:hover {
    color: #7289da;
}

.footer__socialmedia__channel--twitch:hover {
    color: #6441a4;
}
.footer__socialmedia__channel--instagram>i:hover {
    color: #dd2299;
}

.footer__language {
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 1280px) {
    .footer {
        margin: 20px 0;
    }
}

/* ==========================================================================
Button
========================================================================== */
.button {
    display: flex;
    align-items: center;
    padding: 10px 40px;
    cursor: pointer;
    display: block;
    background: rgba(0, 0, 0, 0.1);
    height: 42px;
    text-transform: uppercase;
    border: 2px solid grey;
    color: white;
    text-transform: uppercase;
    transition: 100ms ease-out;
    text-decoration: none;
    opacity: 0.6;
    transform: skewX(-25deg);
    display: inline-block;
    margin: 20px 10px;
}

.button:hover {
    opacity: 1;
    transform: skewX(-25deg) scale(1.05);
}

.button__wrapper__content {
    transform: skewX(25deg);
    white-space: nowrap;
}

.button--full {
    display: block;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
Page: Login
========================================================================== */
.auth {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: transform 300ms ease-out, opacity 300ms ease-out;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 50px;
    padding-top: 30px;
    background: #2d2d2d;
    background: radial-gradient(circle, #2d2d2d 0%, #171717 100%);
    position: relative;
}

.auth__title {
    margin: 0;
    font-weight: 300;
    text-transform: uppercase;
}

.auth__button {
    position: absolute;
    top: 30px;
    right: 50px;
}

.auth__form {
    margin-top: 50px;
}

.auth__form__label {
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
}

.auth__form__input {
    width: calc(100% - 10px);
    margin-left: 10px;
    height: 42px;
    margin-bottom: 30px;
    background: linear-gradient(to top, #353434, #222222);
    border: 1px solid #ce9d31;
    color: white;
    padding: 10px;
}

.auth__form__input:focus {
    outline: 0;
}

.auth__form__checkbox input[type="checkbox"] {
    display: none;
    /* Hide the checkmark by default */
    /* Unhide on the checked state */
    /* Adding focus styles on the outer-box of the fake checkbox */
}

.auth__form__checkbox input[type="checkbox"] + label:after {
    content: none;
}

.auth__form__checkbox input[type="checkbox"]:checked + label:after {
    content: '';
}

.auth__form__checkbox input[type="checkbox"]:focus + label:before {
    outline: #3b99fc auto 5px;
}

.auth__form__checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 36px;
    font-size: 12px;
    line-height: 22px;
    /* Checkmark of the fake checkbox */
}

.auth__form__checkbox label:before, .auth__form__checkbox label:after {
    position: absolute;
    content: '';
    /* Needed for the line-height to take effect */
    display: inline-block;
}

.auth__form__checkbox label:before {
    height: 20px;
    width: 20px;
    border: 1px solid #ce9d31;
    left: 0px;
    top: 0px;
}

.auth__form__checkbox label:after {
    height: 5px;
    width: 9px;
    border-left: 2px solid #ce9d31;
    border-bottom: 2px solid #ce9d31;
    transform: rotate(-45deg);
    left: 6px;
    top: 6px;
}

.auth__form__submit {
    min-width: 280px;
    margin: 40px auto 40px auto;
}

.auth__link {
    text-decoration: none;
    color: white;
    display: block;
    font-size: 12px;
    margin: 20px 0;
    transition: 100ms ease-out;
}

.auth__link:hover {
    color: #ce9d31;
}

.button--top-right {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
}

/* ==========================================================================
Article
========================================================================== */
.article__banner {
    width: 100%;
    height: 360px;
    background: grey;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article__publishdate {
    text-align: right;
    transform: translateY(-38px);
}

.article iframe {
    width: 100%;
    height: 675px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    margin-top: 30px;
    margin-bottom: 30px;
}
.article .content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
Mobile
========================================================================== */
.mobilemenu {
    display: none;
}

@media only screen and (max-width: 1280px) {
    .slider__arrow {
        display: none !important;
    }
    .slider__item__content {
        padding: 40px 20px;
    }
    .button--mob-full {
        position: relative;
        width: 100%;
        display: block;
        text-align: center;
        margin: 20px 0;
    }
    /* ==========================================================================
    Mobile: Container
    ========================================================================== */
    .container {
        padding: 0 20px;
    }
    .container--no-padding-mobile {
        padding: 0;
    }
    /* ==========================================================================
    Mobile: Main Menu
    ========================================================================== */
    .menu {
        display: none;
    }
    .site-content {
        margin-top: 110px;
    }
    .site-content--small {
        margin-top: 80px;
    }
    .mobilemenu {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        display: block;
        height: 90px;
        z-index: 200;
        transition: 75ms ease-out;
    }
    .mobilemenu--small {
        height: 60px;
    }
    .mobilemenu.is-open {
        /* Find burger */
        /* Find navigation */
    }
    .mobilemenu.is-open [class$="burger"] span:nth-of-type(1n) {
        transform: rotate(-45deg) translate(-9px, 6px);
    }
    .mobilemenu.is-open [class$="burger"] span:nth-of-type(2n) {
        opacity: 0;
    }
    .mobilemenu.is-open [class$="burger"] span:nth-of-type(3n) {
        transform: rotate(45deg) translate(-8px, -8px);
    }
    .mobilemenu.is-open [class$="nav"] {
        left: calc(100vw - 250px);
        box-shadow: 0 0 220px black;
    }
    .mobilemenu__header {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 0 20px;
        background: black;
        position: relative;
        box-shadow: 0 0 60px rgba(0, 0, 0, 0.75);
    }
    .mobilemenu__header__logo {
        width: 60px;
        height: calc(100% - 10px);
        background: url(../img/logo-optimized.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        position: relative;
        z-index: 250;
    }
    .mobilemenu__header__login {
        color: white;
        text-decoration: none;
        padding-left: 20px;
        text-transform: uppercase;
        position: relative;
        z-index: 250;
        font-size: 18px;
        display: flex;
        align-items: center;
    }
    .mobilemenu__header__login__text {
        margin-left: 14px;
    }
    .mobilemenu__header__login__picture {
        width: 32px;
        height: 32px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #252525;
        border-radius: 100%;
        border: 7px solid #252525;
    }
    .mobilemenu__header__burger {
        display: inline-block;
        cursor: pointer;
        position: absolute;
        right: 20px;
        z-index: 250;
    }
    .mobilemenu__header__burger span {
        display: block;
        width: 50px;
        height: 5px;
        border-radius: 1px;
        background-color: white;
        margin: 6px 0;
        transition: 75ms ease-out;
    }
    .mobilemenu__nav {
        display: block;
        height: 100vh;
        width: 250px;
        transition: 50ms;
        background: rgba(0, 0, 0, 0.8);
        background: black;
        position: fixed;
        left: 100%;
        top: 0;
        bottom: 0;
        z-index: 200;
        padding: 20px;
        padding-top: calc(90px + 20px);
        padding-bottom: 80px;
        display: flex;
        flex-wrap: wrap;
    }
    .mobilemenu__nav__item {
        color: white;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 28px;
        text-align: right;
        display: block;
        line-height: 60px;
        border-bottom: 1px solid white;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .mobilemenu__nav__item:last-of-type {
        border-bottom: none;
    }
    .mobilemenu__nav__item.active {
        color: #d0b25c;
    }
    .mobilemenu__nav__item.disabled {
        opacity: 0.2;
        position: relative;
    }
    .mobilemenu__nav__item.disabled:before {
        position: absolute;
        content: attr(data-disabled-text);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        background: black;
        justify-content: flex-end;
    }
    /* ==========================================================================
    Mobile: Slider
    ========================================================================== */
    .slider {
        margin-top: -20px;
    }
    /* ==========================================================================
    Mobile: News
    ========================================================================== */
    .news__article {
        width: 100%;
        margin: 10px 0 !important;
    }
    /* ==========================================================================
    Mobile: Partner
    ========================================================================== */
    .partner__content {
        flex-wrap: wrap;
    }
    .partner__content__logo {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    /* ==========================================================================
    Mobile: Footer
    ========================================================================== */
    .footer {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer * {
        margin: 6px 0;
        width: 100%;
    }
    .footer__logo {
        order: 1;
        max-width: 188px;
    }
    .footer__socialmedia {
        order: 2;
        display: flex;
        justify-content: space-between;
    }
    .footer__copyright {
        order: 3;
        text-align: center;
    }
    /* ==========================================================================
    Mobile: Auth Form
    ========================================================================== */
    .auth {
        padding: 20px;
        min-height: calc(10vh - 20px);
        /*transform: none;
        opacity: 1;*/
    }
    .auth__button {
        position: static;
        text-align: center;
        margin: 20px auto;
        width: calc(100% - 20px);
    }
    .auth__form {
        margin-top: 40px;
    }
    .auth__form__submit {
        width: calc(100% - 20px);
        margin: 40px auto;
    }
    .article__publishdate {
        text-align: left;
        transform: none;
    }
    .article iframe {
        height: 200px;
    }
    .news--tall .news__article {
        height: 300px;
    }
}

h1, h2, h3, h4 {
    font-weight: 300;
    text-transform: uppercase;
}

h1.decor {
    display: inline-block;
    position: relative;
    max-width: 600px;
}

h1.decor:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 165, 0, 0) 0%, rgba(255, 165, 0, 0.5) 5%, orange 50%, rgba(255, 165, 0, 0.5) 95%, rgba(255, 165, 0, 0) 100%);
    border-radius: 100%;
}

.add-article input, .add-article select, .add-article textarea, .add-article label[for^="checkbox"], .add-article div.img {
    width: 100%;
    margin: 3px 0;
    padding: 6px;
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
}

.add-article label[for^="checkbox"] {
    display: flex;
    align-items: center;
}

.add-article label[for^="checkbox"] input {
    margin-right: 6px;
}

.add-article input[type="file"] {
    display: flex;
    align-items: center;
}

.add-article label[for], .add-article input[type="date"] {
    cursor: pointer;
}

.add-article input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.add-article label:not([for^="checkbox"]) {
    display: block;
    text-transform: uppercase;
}

.add-article label:not([for^="checkbox"]):not(:first-of-type) {
    margin-top: 12px;
}

.flex-half {
    display: flex;
    justify-content: space-between;
}

.flex-half > * {
    width: calc(50% - 20px/2);
}

/* Ugly table fix */
table, .single-article, .boxed {
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    margin: 20px 0;
}

.single-article {
    border: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    padding: 20px;
}

tr.head {
    text-transform: uppercase;
}

tr {
    transition: 200ms;
}

tr:not(.head):not(.active):hover,
tr:not(.head):not(.active).hover {
    background: rgba(255, 255, 255, 0.1);
}

tr.active {
    background: rgba(255, 255, 255, 0.2);
}

td {
    font-weight: 300;
    padding: 6px;
}

.notification {
    display: inline-block;
    padding: 12px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
}

.notification i {
    margin-right: 6px;
}

/* ==========================================================================
Sharebuttons
========================================================================== */
.sharebutton {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 45px;
    background: linear-gradient(to top, black, #272F47);
    text-decoration: none;
    transform: skewX(-25deg);
    margin: 0 6px;
    transition: 100ms;
}

.sharebutton__icon {
    color: white;
    font-size: 18px;
    transform: skewX(25deg);
}

.sharebutton:hover {
    transform: skewX(-25deg) scale(1.2);
}

.always-hide {
    display: none !important;
}

.menu__login.disabled, .mobilemenu__header__login.disabled {
    cursor: not-allowed;
    cursor: default;
    opacity: 0.2;
}

.menu__login.disabled:hover, .mobilemenu__header__login.disabled:hover {
    transform: none;
}

/* ==========================================================================
Shedule / Event Boxes
========================================================================== */
.eventboxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
}

.eventbox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    width: calc(100% / 3 - 4/3*12px);
    margin: 12px;
    background: radial-gradient(circle at center, #1D1D1D, black 100%);
    border: 1px solid #434343;
    position: relative;
    cursor: pointer;
}

.eventbox--highlight {
    border-color: #ffc661;
    border-top-width: 2px;
    border-bottom-width: 2px;
    border-style: solid;
}

.eventbox--highlight .eventbox__text__title {
    color: #ffc661;
}

.eventbox:nth-of-type(1), .eventbox:nth-of-type(2), .eventbox:nth-of-type(3) {
    margin-top: 0;
}

.eventbox:first-of-type, .eventbox:nth-of-type(4), .eventbox:nth-of-type(7), .eventbox:nth-of-type(10) {
    margin-left: 0;
}

.eventbox:nth-of-type(3), .eventbox:nth-of-type(6), .eventbox:nth-of-type(9), .eventbox:nth-of-type(12) {
    margin-right: 0;
}

.eventbox__logo {
    width: calc(100% - 2 * 30px);
    height: calc(100% - 2 * 30px);
    background-image: url();
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 150ms;
}

.eventbox__text {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    padding: 30px;
    transition: 150ms;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.eventbox__text__title {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.eventbox__text__date, .eventbox__text__location {
    margin-bottom: 12px;
}

.eventbox__text__title, .eventbox__text__date, .eventbox__text__location {
    flex-basis: 100%;
    text-align: center;
}

.eventbox__text__price {
    font-weight: bold;
    color: #ffc661;
}

.eventbox:hover .eventbox__text {
    opacity: 1;
}

.eventbox:hover .eventbox__logo {
    transform: scale(1.1);
}

@media only screen and (max-width: 1280px) {
    .eventbox {
        height: 160px;
        text-decoration: none;
        border: none;
        background: radial-gradient(circle at center, rgba(0, 0, 0, 0.33), rgba(0, 0, 0, 0.5) 100%);
    }
    .eventbox__logo {
        position: static;
        width: 40%;
        margin-left: 20px;
    }
    .eventbox__text {
        opacity: 1;
        position: static;
        background: transparent;
        text-decoration: none;
        padding: 0 20px;
        font-size: 12px;
        width: 60%;
    }
    .eventbox--highlight {
        border-color: #ffc661;
        border-top-width: 2px;
        border-bottom-width: 2px;
        border-style: solid;
    }
    .eventbox--highlight .eventbox__text__title {
        color: #ffc661;
    }
}

.single-event .banner {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    background: radial-gradient(circle at center, #1D1D1D, black 100%);
    border: 1px solid #434343;
}

.single-event .banner__logo {
    width: calc(100% - 2 * 30px);
    height: calc(100% - 2 * 30px);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.single-event h1 {
    font-size: 21px;
    margin-top: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.single-event h2 {
    font-size: 18px;
    margin: 0.8rem 0;
    margin-bottom: 30px;
}

.flex {
    display: flex;
}

.flex.fullwidth {
    flex-basis: 100%;
}

.flex.wrap {
    flex-wrap: wrap;
}

.flex .item {
    width: 100%;
}

.flex .item.half {
    width: 50%;
}

.flex .item.quarter {
    width: 25%;
}

.flex .item.quarter--margin {
    width: calc(25% - 20px);
    margin-left: 10px;
    margin-right: 10px;
}

.flex .item.quarter--margin:first-of-type, .flex .item.quarter--margin:nth-of-type(5n) {
    margin-left: 0;
}

.flex .item.quarter--margin:nth-of-type(4n) {
    margin-right: 0;
}

.flex .item.quarter--skewed {
    width: calc(25% - 2 * 18px);
}

@media only screen and (max-width: 1280px) {
    .flex .item.quarter--skewed {
        width: calc(25% - 20px);
    }
}

.flex .item.threequarters {
    width: 75%;
}

.flex .item.third {
    width: calc(100% / 3);
}

.flex .item.twothirds {
    width: calc(100% / 3 * 2);
}

@media only screen and (max-width: 1280px) {
    .flex .item.mob-full {
        width: 100%;
    }
}

.flex.space-between {
    justify-content: space-between;
}

.flex.hcenter {
    justify-content: center;
}

.flex.justify-center {
    justify-content: center;
}

.flex.justify-left {
    justify-content: flex-start;
}

.flex.justify-right {
    justify-content: flex-end;
}

@media only screen and (max-width: 1280px) {
    .flex.mob-justify-left {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 1280px) {
    .mobile-fullwidth-flexbase {
        flex-basis: 100%;
    }
}

h1.uppercase, h2.uppercase, h3.uppercase, h4.uppercase, h5.uppercase, h6.uppercase, p.uppercase, span.uppercase, div.uppercase, a.uppercase {
    text-transform: uppercase;
}

h1.bold, h2.bold, h3.bold, h4.bold, h5.bold, h6.bold, p.bold, span.bold, div.bold, a.bold {
    font-weight: bold;
}

h1.highlines, h2.highlines, h3.highlines, h4.highlines, h5.highlines, h6.highlines, p.highlines, span.highlines, div.highlines, a.highlines {
    line-height: 1.8rem;
}

h1.text-align-right, h2.text-align-right, h3.text-align-right, h4.text-align-right, h5.text-align-right, h6.text-align-right, p.text-align-right, span.text-align-right, div.text-align-right, a.text-align-right {
    text-align: right;
}

h1.text-align-center, h2.text-align-center, h3.text-align-center, h4.text-align-center, h5.text-align-center, h6.text-align-center, p.text-align-center, span.text-align-center, div.text-align-center, a.text-align-center {
    text-align: center;
}

@media only screen and (max-width: 1280px) {
    h1.mob-text-align-left, h2.mob-text-align-left, h3.mob-text-align-left, h4.mob-text-align-left, h5.mob-text-align-left, h6.mob-text-align-left, p.mob-text-align-left, span.mob-text-align-left, div.mob-text-align-left, a.mob-text-align-left {
        text-align: left;
    }
}

@media only screen and (max-width: 1280px) {
    h1.mob-text-align-right, h2.mob-text-align-right, h3.mob-text-align-right, h4.mob-text-align-right, h5.mob-text-align-right, h6.mob-text-align-right, p.mob-text-align-right, span.mob-text-align-right, div.mob-text-align-right, a.mob-text-align-right {
        text-align: right;
    }
}

@media only screen and (max-width: 1280px) {
    h1.mob-text-align-center, h2.mob-text-align-center, h3.mob-text-align-center, h4.mob-text-align-center, h5.mob-text-align-center, h6.mob-text-align-center, p.mob-text-align-center, span.mob-text-align-center, div.mob-text-align-center, a.mob-text-align-center {
        text-align: center;
    }
}

h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
    display: inline-block;
    position: relative;
}

h1.glow:after, h2.glow:after, h3.glow:after, h4.glow:after, h5.glow:after, h6.glow:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -30px;
    right: -30px;
    width: calc(100% + 60px);
    height: 2px;
    background: linear-gradient(to right, rgba(255, 165, 0, 0) 0%, rgba(255, 165, 0, 0.5) 5%, orange 50%, rgba(255, 165, 0, 0.5) 95%, rgba(255, 165, 0, 0) 100%);
    border-radius: 100%;
}

h1.glow--blue:after, h2.glow--blue:after, h3.glow--blue:after, h4.glow--blue:after, h5.glow--blue:after, h6.glow--blue:after {
    background: linear-gradient(to right, transparent 5%, #6090BB 50%, transparent 95%);
}

.teamlogo {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 180px;
    position: relative;
    background: transparent;
    background-size: 3px;
    background-position: 0 0, 100% 0;
    background-repeat: no-repeat;
    /* Right */
    /* Left */
    /* Team Logo */
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    transition: 150ms;
}

@media only screen and (max-width: 1280px) {
    .teamlogo {
        height: 40px;
        background: none !important;
        border: none !important;
        transform: none !important;
    }
}

.teamlogo--right {
    border-top: 3px solid transparent;
    border-bottom: 3px solid #fff;
    background-image: linear-gradient(to top, #fff, transparent), linear-gradient(to top, #fff, transparent);
    transform: skewX(-25deg);
}

.teamlogo--right .teamlogo__image, .teamlogo--right .teamlogo__text span {
    transform: skewX(25deg);
}

.teamlogo--right:hover:not([disabled]) {
    border-top: 3px solid orange;
    border-bottom: 3px solid white;
    background-image: linear-gradient(to top, white, orange), linear-gradient(to top, white, orange);
}

.teamlogo--right:hover:not([disabled]) .teamlogo__image {
    transform: skewX(25deg) scale(1.1);
}

.teamlogo--left {
    border-top: 3px solid #fff;
    border-bottom: 3px solid transparent;
    background-image: linear-gradient(to bottom, #fff, transparent), linear-gradient(to bottom, #fff, transparent);
    transform: skewX(25deg);
}

.teamlogo--left .teamlogo__image, .teamlogo--left .teamlogo__text span {
    transform: skewX(-25deg);
}

.teamlogo--left:hover:not([disabled]) {
    border-top: 3px solid white;
    border-bottom: 3px solid orange;
    background-image: linear-gradient(to bottom, white, orange), linear-gradient(to bottom, white, orange);
}

.teamlogo--left:hover:not([disabled]) .teamlogo__image {
    transform: skewX(-25deg) scale(1.1);
}

.teamlogo__image {
    position: absolute;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 150ms;
}

@media only screen and (max-width: 1280px) {
    .teamlogo__image {
        width: 100%;
        height: 100%;
        transform: none !important;
    }
}

.teamlogo__text {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 3px;
    bottom: 0;
    left: 3px;
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 25px;
    text-transform: uppercase;
    font-size: 26px;
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    transition: 150ms;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

@media only screen and (max-width: 1280px) {
    .teamlogo__text {
        display: none;
    }
}

.teamlogo[disabled] {
    cursor: default;
}

.teamlogo[disabled] .teamlogo__image {
    background-image: url(../img/teams/tbd.png);
    filter: brightness(250%);
    opacity: 0.33;
}

.teamlogo:hover:not([disabled]) .teamlogo__text {
    opacity: 1;
}

@media only screen and (max-width: 1280px) {
    .partner__content a {
        display: flex;
        flex-basis: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
Bracket
========================================================================== */
.bracket {
    display: flex;
    flex-direction: row;
}

.bracket.placeholder {
    pointer-events: none;
}

.bracket--admin .game-top a {
    color: #46a5df;
}

.bracket--admin .game-bottom a {
    color: #ff3600;
}

.bracket .round {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% / 4);
    list-style: none;
    padding: 0;
}

.bracket .round .title {
    display: none;
}

.bracket .round .spacer {
    flex-grow: 1;
}

.bracket .round .spacer:first-of-type, .bracket .round .spacer:last-of-type {
    flex-grow: .5;
}

.bracket .round .game-spacer {
    flex-grow: 1;
    border-right: 2px solid white;
    min-height: 60px;
}

.bracket .round .game {
    text-transform: uppercase;
    line-height: 24px;
    padding-left: 10px;
    white-space: nowrap;
    transition: 150ms;
    /*&:hover {
                text-shadow: 0 0 24px white;
            }*/
}

.bracket .round .game.winner {
    font-weight: bold;
}

.bracket .round .game span {
    float: right;
    margin-right: 8px;
    transform: translateY(4px);
}

.bracket .round .game a {
    text-decoration: none;
}

.bracket .round .game-top {
    border-bottom: 2px solid white;
}

.bracket .round .game-bottom {
    transform: translateY(-24px);
    border-bottom: 2px solid white;
}

.bracket .round.final {
    width: calc(100% / 4 - 50px);
}

.bracket .round.final span:not(.round__name) {
    height: 24px;
    margin-right: 0;
}

.bracket .round.final span:not(.round__name) img {
    width: 45px;
    transform: translateX(50px);
}

.bracket--boxed {
    background: rgba(0, 0, 0, 0.5);
    padding: 25px;
    border: 5px solid #929292;
}

/* ==========================================================================
End of: Bracket
========================================================================== */
.uppercase {
    text-transform: uppercase;
}

.bold {
    font-weight: bold;
}

/* ==========================================================================
Eventlist
========================================================================== */
.eventlist {
    border: none;
    background: transparent;
    padding: 0;
}

.eventlist td {
    padding: 16px 0;
}

.eventlist tr:hover {
    background: transparent !important;
}

.eventlist th {
    text-align: left;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 14px;
}

.eventlist tr th {
    padding: 18px 0;
    border-bottom: 2px solid transparent;
    border-image-slice: 1;
}

.eventlist tr th:nth-of-type(1) {
    padding-left: 12px;
    width: 25%;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25));
}

.eventlist tr th:nth-of-type(2) {
    width: 50%;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.25), white, rgba(255, 255, 255, 0.25));
}

.eventlist tr th:nth-of-type(3) {
    width: 25%;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
}

.eventlist tr td {
    border-bottom: 1px solid transparent;
    border-image-slice: 1;
}

.eventlist tr td:nth-of-type(1) {
    padding-left: 12px;
    width: 25%;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15));
    border-image-slice: 1;
}

.eventlist tr td:nth-of-type(2) {
    width: 50%;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.33), rgba(255, 255, 255, 0.15));
    border-image-slice: 1;
}

.eventlist tr td:nth-of-type(3) {
    width: 25%;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    border-image-slice: 1;
}

.eventlist tr:last-of-type td {
    border: none !important;
}

.eventlist .middle {
    display: flex;
    align-items: center;
    height: 60px;
}

.eventlist .logo {
    display: inline-block;
    margin-right: 100px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100%;
    width: 160px;
}

.eventlist tr[link] {
    cursor: pointer;
}

.eventlist tr[link] td {
    transition: 300ms;
}

.eventlist tr[link]:hover td {
    background: rgba(255, 255, 255, 0.05);
}

.buttongroup--center {
    display: flex;
    justify-content: center;
}

.buttongroup--alt button:not(.active-alt) {
    cursor: pointer;
    background: linear-gradient(to top, #01030c, rgba(100, 100, 100, 0.33));
}

.buttongroup--alt button.active-alt {
    opacity: 1;
    filter: none;
    background: linear-gradient(to top, #01030c, #143e63);
    cursor: initial;
}

.buttongroup button {
    background: linear-gradient(to top, #01030c, #143e63);
    margin-left: 4px;
    margin-right: 4px;
    border: 0;
    outline: 0;
    font-size: 24px;
    color: white;
    padding: 6px 24px;
    cursor: pointer;
    transform: skewX(-25deg);
    filter: grayscale(1) brightness(80%);
    opacity: 0.5;
    cursor: pointer;
    transition: 150ms;
}

.buttongroup button.inverse {
    transform: skewX(25deg);
}

.buttongroup button:first-of-type {
    margin-left: 0;
}

.buttongroup button:last-of-type {
    margin-right: 0;
}

.buttongroup button i, .buttongroup button span {
    transform: skewX(25deg);
}

.buttongroup button span {
    display: inline-block;
    text-transform: uppercase;
}

.buttongroup button.active {
    filter: none;
    cursor: initial;
    opacity: 1;
}

.buttongroup button:hover { /* .buttongroup button:not(.active, .active-alt):hover { */
    transform: skewX(-25deg) scale(1.1);
}

.buttongroup button.inverse img {
    transform: skewX(-25deg);
}

.buttongroup button.inverse:hover { /* .buttongroup button.inverse:not(.active, .active-alt):hover { */
    transform: skewX(-25deg) scale(1.1);
}

.buttongroup--small button {
    font-size: 18px;
}

@media only screen and (max-width: 1280px) {
    .hide-on-mobile {
        display: none !important;
    }
}

@media only screen and (max-width: 1280px) {
    .force-show-on-mobile {
        display: block !important;
    }
}

@media only screen and (max-width: 1280px) {
    .mobile-overflow-container {
        width: calc(100% + 40px) !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        border-left: 0 !important;
        border-right: 0 !important;
        max-width: unset;
    }
}

@media only screen and (max-width: 1280px) {
    .site-content {
        margin-top: 90px;
    }
}

@media only screen and (max-width: 1280px) {
    h1 {
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 1280px) {
    .mobile-block {
        display: block;
    }
}

@media only screen and (max-width: 1280px) {
    .mobile-spacer {
        width: 100%;
        height: 20px;
    }
}

@media only screen and (max-width: 1280px) {
    .partner {
        padding: 12px 0;
    }
}

@media only screen and (max-width: 1280px) {
    .partner__content {
        flex-wrap: nowrap;
    }
}

@media only screen and (max-width: 1280px) {
    .partner__content a {
        width: calc(100% / 4);
        padding: 0 10px;
    }
}

@media only screen and (max-width: 1280px) {
    .partner__content a img {
        width: auto;
        max-width: 100%;
        height: 20px;
    }
}

@media only screen and (max-width: 1280px) {
    .partner__content a:first-of-type {
        padding-left: 0;
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 1280px) {
    .partner__content a:last-of-type {
        padding-right: 0;
        justify-content: flex-end;
    }
}

@media only screen and (max-width: 1280px) {
    .bracket {
        display: block;
        position: relative;
    }
    .bracket.placeholder {
        display: none;
    }
    .bracket .round {
        width: 100%;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .bracket .round .title {
        display: block;
        text-transform: uppercase;
        text-align: center;
    }
    .bracket .round .game {
        border: none;
        transform: none;
        height: 60px;
        line-height: 50px;
        background: rgba(10, 10, 10, 0.33);
        display: flex;
        align-items: center;
        overflow: hidden;
    }
    .bracket .round .game a {
        text-decoration: none;
    }
    .bracket .round .game.game-top, .bracket .round .game.game-bottom {
        width: calc(100% / 2 - 20px);
    }
    .bracket .round .game.game-top {
        text-align: right;
        padding-left: 20px;
        padding-right: 0;
    }
    .bracket .round .game.game-spacer {
        width: 40px;
        padding: 10px 0;
        min-height: unset;
        background: rgba(10, 10, 10, 0.33);
        position: relative;
    }
    .bracket .round .game.game-spacer:after {
        content: 'VS';
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    .bracket .round .game.game-bottom {
        text-align: left;
        padding-left: 0;
        padding-right: 20px;
    }
    .bracket .round .spacer {
        width: 100%;
        height: 6px;
    }
    .bracket .round.final {
        display: none;
    }
    .bracket .slick-dots {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 20px 0;
        padding-top: 10px;
        list-style-type: none;
    }
    .bracket .slick-dots li {
        cursor: pointer;
        margin: 0 6px;
    }
    .bracket .slick-dots li.slick-active button {
        background-color: rgba(255, 255, 255, 0.75);
    }
    .bracket .slick-dots button {
        background-color: rgba(255, 255, 255, 0.33);
        cursor: pointer;
        display: block;
        width: 12px;
        height: 12px;
        padding: 0;
        border: none;
        border-radius: 100%;
        text-indent: -9999px;
        transition: 100ms ease-in-out;
    }
    .bracket .slick-dots button:focus {
        outline: 0;
    }
}

.site-content {
    transition: filter 100ms ease-out;
}

.site-content--blurred {
    filter: blur(3px);
    pointer-events: none;
}

.single-team .banner {
    width: 100%;
    height: 160px;
    background-color: rgba(255, 255, 255, 0.1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 60px;
}

.row {
    display: block;
    width: 100%;
}

.row .column {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
}

.row .column.half {
    width: 50%;
}

.row .column.twothirds {
    width: calc(100% / 3 * 2 - 1px);
}

.row .column.half.gap:first-of-type {
    padding-right: 20px;
}

.row .column.half.gap:last-of-type {
    padding-left: 20px;
}

.row .column.half.tinygap:first-of-type {
    padding-right: 5px;
}

.row .column.half.tinygap:last-of-type {
    padding-left: 5px;
}

.row .column.third {
    width: calc(100% / 3);
}

.row .column.third.gap {
    width: calc(100% / 3);
    padding-left: 25px;
    padding-right: 25px;
}

.row .column.third.gap:first-of-type {
    padding-left: 0;
}

.row .column.third.gap:last-of-type {
    padding-right: 0;
}

@media only screen and (max-width: 1280px) {
    .row .column.gap--not-mobile {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.row .column.center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.row .column.left {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.row .column.right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media only screen and (max-width: 1280px) {
    .row .column.mob-full {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.row.space {
    margin-bottom: 20px;
}

@media only screen and (max-width: 1280px) {
    .row.space--not-mobile {
        margin-bottom: 0;
    }
}

.row.widespace {
    margin-bottom: 60px;
}

.row:after {
    content: '';
    clear: both;
    display: table;
}

.player {
    width: 100%;
}

.player__picture {
    width: 100%;
    height: 200px;
    background-image: url(../img/user_placeholder.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: calc(60px + 2px);
    position: relative;
}

.player__picture:after {
    position: absolute;
    bottom: -2px;
    left: -40px;
    right: -40px;
    content: '';
    width: calc(100% + 80px);
    height: 2px;
    background: linear-gradient(to right, black, white, black);
    border-radius: 100%;
}

.player__name {
    text-align: center;
    font-size: 19px;
}

.player--lead .player__picture {
    transform: scale(1.3);
    z-index: 2;
}

.player--lead .player__name:before {
    content: "\f024";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    margin-right: 12px;
}

.player--wide {
    display: flex;
}

.player--wide .player__picture {
    width: 50%;
    height: 100px;
    margin-bottom: 0;
}

.player--wide .player__picture:after {
    width: calc(100% + 20px);
    left: -10px;
    right: -10px;
}

.player--wide .player__name {
    width: 50%;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.standing {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    text-transform: uppercase;
    font-size: 18px;
}

.standing tr:not(:first-of-type) {
    height: 80px;
}

.standing tr td {
    /*padding: 18px 0;*/
    border-bottom: 2px solid transparent;
    border-image-slice: 1;
}

.standing tr td:nth-of-type(1) {
    width: 15%;
    font-size: 26px;
    padding-left: 12px;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15));
    border-image-slice: 1;
}

.standing tr td:nth-of-type(2) {
    width: 65%;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.15), white, rgba(255, 255, 255, 0.2));
    border-image-slice: 1;
}

.standing tr td:nth-of-type(3) {
    width: 20%;
    font-size: 26px;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    border-image-slice: 1;
}

.standing tr:first-of-type:hover {
    background: none;
}

.standing tr:first-of-type td {
    text-align: left;
    font-weight: 300;
    font-size: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.standing tr.highlighted {
    color: #f3af32;
}

.standing .logo, .standing .name {
    display: inline-block;
    height: 60px;
}

.standing .logo {
    width: 60px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.standing .name {
    display: inline-flex;
    padding-left: 16px;
    align-items: center;
    vertical-align: top;
    line-height: 60px;
}

.upcoming {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
}

.upcoming__event {
    width: 100%;
    margin: 20px 0;
    justify-content: center;
    text-decoration: none;
}

.upcoming__event__logo {
    width: 160px;
    height: 80px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    margin-top: 10px;
}

.upcoming__event__name, .upcoming__event__date {
    text-align: center;
}

.upcoming__event__name {
    margin: 10px 0;
    text-transform: uppercase;
    font-weight: bold;
}

.lastmatch__title {
    font-size: 19px;
    text-align: center;
    margin: 20px 0;
}

.lastmatch__team {
    display: flex;
    text-decoration: none;
    align-items: center;
    margin: 20px 0;
}

.lastmatch__team__logo, .lastmatch__team__name {
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.lastmatch__team__logo {
    width: 80px;
    height: 80px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 70px;
}

.lastmatch__team__name {
    /*line-height: 80px;*/
    text-transform: uppercase;
    font-size: 19px;
    /*white-space: nowrap;*/
}

.lastmatch__team--lost {
    opacity: 0.33;
}

.otherteams {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 40px;
}

.otherteams a {
    width: 80px;
    height: 60px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 100ms;
}

.darkbox {
    width: 100%;
    max-width: calc(100% - 100px);
    margin: 0 auto;
    background: radial-gradient(circle, #2d2d2d 0%, #171717 100%);
    background-attachment: fixed;
    min-height: 600px;
    padding: 45px 75px;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.25);
}

.darkbox__title {
    text-transform: uppercase;
    font-size: 29px;
}

.infobox {
    display: inline-block;
    position: relative;
    cursor: help;
}

.infobox__toggle {
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #383838 0%, black 100%);
    border: 1px solid black;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 150ms;
}

.infobox__toggle:before {
    content: "\f128";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 9px;
    opacity: 0.5;
    transition: 150ms;
}

.infobox__content {
    display: none;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    width: 340px;
    position: absolute;
    top: 0;
    left: 28px;
    font-size: 12px;
    z-index: 20;
}

.infobox:hover .infobox__content {
    display: block;
}

.infobox:hover .infobox__toggle:before {
    opacity: 1;
}

.input {
    margin-bottom: 25px;
}

.input__label {
    line-height: 21px;
}

.input__label__text {
    display: inline-block;
    margin-right: 10px;
    /* For Infobox */
    font-size: 14px;
}

.input__field {
    display: flex;
    align-items: center;
    /* padding-left: 10px; */
    padding-top: 10px;
}

.input__field__element, .input__field select, .input__field select option {
    width: calc(100% - 50px);
    height: 44px;
    background: #1f1f1f;
    border: 2px solid transparent;
    border-image: linear-gradient(to bottom right, #ffbf30, #ffff97);
    border-image-slice: 1;
    outline: none;
    color: white;
    padding: 8px;
    transition: 150ms;
}

.input__field__element:not([readonly]):focus, .input__field select:not([readonly]):focus, .input__field select option:not([readonly]):focus {
    background: linear-gradient(to bottom, #252525, #525252);
}

.input__field__element:focus + [class$="valid"]:before, .input__field select:focus + [class$="valid"]:before, .input__field select option:focus + [class$="valid"]:before {
    color: green;
}

.input__field__element:focus + [class$="invalid"]:before, .input__field select:focus + [class$="invalid"]:before, .input__field select option:focus + [class$="invalid"]:before {
    color: red;
}

.input__field__element[disabled], .input__field select[disabled], .input__field select option[disabled] {
    border-image: none;
    background: #3a3a3a;
    color: #8a8a8a;
}

.input__field__validation:before {
    content: "";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 16px;
    transition: 150ms;
    background: radial-gradient(circle, #383838 0%, black 100%);
    border: 1px solid black;
    border-radius: 100%;
    margin: 7px 10px;
    color: grey;
}

.input__field__validation--unknown:before {
    content: '\f128';
}

.input__field__validation--valid:before {
    content: "\f00c";
}

.input__field__validation--invalid:before {
    content: "\f00d";
}

.input__field__validation:not(.input__field__validation--valid):not(.input__field__validation--invalid):not(.input__field__validation--unknown):before {
    display: none;
}

.input--invalid .input__field__element, .input--invalid select, .input--invalid select option {
    border-image: linear-gradient(to bottom right, #c30606, #ab7373);
    border-image-slice: 1;
}

.fsl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 35px;
    background: #222222;
    padding: 0 20px;
    /* background: #2b2b2b; */
    border: 2px solid transparent;
    border-image: linear-gradient(to bottom right, #ffbf30, #ffff97);
    border-image-slice: 1;
    transform: skewX(-25deg);
    text-decoration: none;
    transition: 150ms;
}

.fsl-button.disabled {
    border: 1px solid grey;
    opacity: 0.5;
    pointer-events: none;
}

.fsl-button:not(.disabled):hover {
    box-shadow: inset 0 0 20px 2px #b79341;
}

.fsl-button__text {
    text-transform: uppercase;
    transform: skewX(25deg);
}

.fsl-button__text--nowrap {
    white-space: nowrap;
}

.fsl-button__text i {
    margin-right: 8px;
    opacity: 0.75;
    vertical-align: bottom;
}

.fsl-button--containered {
    margin-left: 14px;
}

@media only screen and (max-width: 1280px) {
    .fsl-button--mob-fw {
        width: 100%;
    }
}

/* Account Submenu */
.menu__login {
    width: 190px;
    right: -180px;
    top: 75px;
    justify-content: flex-end;
}

.menu__login:hover {
    transform: none;
}

.menu__login:hover + .menu__submenu {
    opacity: 1;
}

.menu__submenu {
    height: fit-content;
    opacity: 0;
    position: absolute;
    /*top: 130px;*/
    top: calc(75px + 36px + 10px - 20px);
    right: -280px;
    width: calc(200px + 60px);
    padding: 10px 30px;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    flex-wrap: wrap;
    transition: 150ms;
}

.menu__submenu.active, .menu__submenu:hover {
    opacity: 1;
}

.menu__submenu a {
    width: 100%;
    line-height: 50px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: right;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.25), white, rgba(255, 255, 255, 0.25));
    border-image-slice: 1;
    transition: 150ms;
}

.menu__submenu a:last-of-type {
    border-bottom: none;
}

.menu__submenu a:not([disabled]):hover, .menu__submenu a.active:not([disabled]) {
    color: #ffbf30;
}

.menu__submenu a[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}

.inputgroup {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 20px;
    padding: 10px 20px;
    border: 1px solid #3a3a3a;
    position: relative;
}

.inputgroup__remove {
    position: absolute;
    top: 14px;
    right: 14px;
    opacity: 0.5;
    cursor: pointer;
    font-size: 18px;
    transition: 150ms;
}

.inputgroup__remove:hover {
    opacity: 1;
    transform: scale(1.1);
}

.account-form {
    margin: 20px 0;
}

input[type="file"] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

input[type="file"] + label {
    width: 100%;
}

input[type="file"] + label div.fsl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 35px;
    background: #222222;
    padding: 0 20px;
    /* background: #2b2b2b; */
    border: 2px solid transparent;
    border-image: linear-gradient(to bottom right, #ffbf30, #ffff97);
    border-image-slice: 1;
    transform: skewX(-25deg);
    text-decoration: none;
    transition: 150ms;
    color: white;
    min-width: 0;
    padding: 0 30px;
    text-transform: uppercase;
    margin-left: 16px;
    cursor: pointer;
    width: 200px;
}

input[type="file"] + label div.fsl-button.disabled {
    border: 1px solid grey;
    opacity: 0.5;
    pointer-events: none;
}

input[type="file"] + label div.fsl-button:not(.disabled):hover {
    box-shadow: inset 0 0 20px 2px #b79341;
}

input[type="file"] + label div.fsl-button__text {
    text-transform: uppercase;
    transform: skewX(25deg);
}

input[type="file"] + label div.fsl-button__text--nowrap {
    white-space: nowrap;
}

input[type="file"] + label div.fsl-button__text i {
    margin-right: 8px;
    opacity: 0.75;
    vertical-align: bottom;
}

input[type="file"] + label div.fsl-button--containered {
    margin-left: 14px;
}

@media only screen and (max-width: 1280px) {
    input[type="file"] + label div.fsl-button--mob-fw {
        width: 100%;
    }
}

@media only screen and (max-width: 1280px) {
    input[type="file"] + label div.fsl-button {
        width: calc(100% - 2 * 16px);
        margin-left: 16px;
        margin-right: 16px;
    }
}

input[type="file"] + label div.fsl-button span {
    transform: skewX(25deg);
}

input[type="file"] + label input {
    width: calc(100% - 50px - 216px - 30px);
    margin-left: 30px;
}

/*input[type="file"]:focus + label,
input[type="file"] + label:hover {
    background: #51492A;
} */
.account-form__buttons {
    margin-top: 80px;
    transform: scale(1.2);
}

.account-form__buttons .column:first-of-type {
    justify-content: flex-end;
}

.account-form__buttons .column:first-of-type a {
    margin-right: 30px;
}

.account-form__buttons .column:last-of-type {
    justify-content: flex-start;
}

.account-form__buttons .column:last-of-type a {
    margin-left: 30px;
}

@media only screen and (max-width: 1280px) {
    .account-form__buttons .column:first-of-type, .account-form__buttons .column:last-of-type {
        justify-content: center;
    }
    .account-form__buttons .column:first-of-type a, .account-form__buttons .column:last-of-type a {
        margin: 10px 16px;
        width: calc(100% - 2 * 16px);
    }
}

.player-preview {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: 10px solid rgba(255, 255, 255, 0.1);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 200px;
    height: 200px;
    margin: 20px 0;
    margin-left: 10px;
}

.teamlogo-preview {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: 10px solid rgba(255, 255, 255, 0.1);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 200px;
    height: 200px;
    margin: 20px 0;
    margin-left: 10px;
}

.teambanner-preview {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: 10px solid rgba(255, 255, 255, 0.1);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: calc(100% - 10px - 50px);
    height: 200px;
    margin: 20px 0;
    margin-left: 10px;
    margin-right: 50px;
}

/* ==========================================================================
Event Registration
========================================================================== */
.event-registration {
    margin-top: 50px;
    color: #efefef;
    /* (Almost) White */
}

.event-registration .header {
    padding-bottom: 14px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-image: linear-gradient(to right, transparent, white, transparent);
    border-image-slice: 1;
    font-size: 14px;
    text-transform: uppercase;
}

.event-registration .event {
    color: #989797;
    /* Darker */
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5), transparent);
    transition: 150ms;
    text-align: center;
    padding: 30px 0;
}

.event-registration .event.active {
    color: inherit;
    background: transparent;
}

.event-registration .event.locked > *:not(.databoxes) {
    opacity: 0.33;
    pointer-events: none;
}

.event-registration .event .row {
    display: flex;
    align-items: center;
}

.event-registration .event:not(:last-of-type) {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-image: linear-gradient(to right, transparent, white, transparent);
    border-image-slice: 1;
}

.event-registration .event .logo {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 180px;
    height: 80px;
}

.event-registration .event .details {
    text-align: center;
}

.event-registration .event .details .name, .event-registration .event .details .date {
    margin-bottom: 20px;
}

.event-registration .event .details .name {
    font-weight: bold;
    text-transform: uppercase;
}

.event-registration .event .checkbox {
    width: 23px;
    height: 23px;
    background: #232323;
    border: 1px solid #CEB05C;
    cursor: pointer;
    transition: 150ms;
}

.event-registration .event .checkbox:before {
    content: "\f00c";
    display: inline-flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: transparent;
}

.event-registration .event .checkbox--is-checked {
    background: linear-gradient(to bottom, #212121, #555555);
}

.event-registration .event .checkbox--is-checked:before {
    color: inherit;
}

body.blur {
    /*overflow: hidden;*/
}

body.blur .site-content, body.blur .mobilemenu {
    filter: blur(4px);
    pointer-events: none;
}

.modal-container {
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 999;
    top: 0;
}

.modal {
    margin-top: 70px;
    width: 700px;
    background: #232323;
    box-shadow: -1px 2px 120px black;
    opacity: 0.9;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    padding-top: 8px;
    /*border: 1px solid black;*/
}

.modal:before {
    content: '';
    width: 100%;
    height: 8px;
    background: linear-gradient(to left, transparent, #143e63);
    position: absolute;
    left: 0;
    top: 0;
}

.modal__close {
    position: absolute;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    top: 28px;
    border-radius: 100%;
    opacity: 0.5;
    cursor: pointer;
    transition: 150ms;
}

.modal__close:hover {
    opacity: 1;
}

.modal__title {
    font-weight: bold;
    letter-spacing: 0.5px;
    font-size: 21px;
    margin: 20px 0;
}

.modal__content {
    margin: 20px 0;
    padding: 20px;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.2);
    max-height: 380px;
    overflow-y: scroll;
}

.modal__buttons {
    margin: 20px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.modal__buttons button {
    cursor: pointer;
}

.modal__buttons button.cancel {
    border: none;
    background: none;
    color: inherit;
    padding: 0 40px;
}

.modal__buttons button.save {
    /* .fsl-button applied */
    background: linear-gradient(to bottom right, #ffbf30, #ffff97);
    color: #4a3204;
    margin-right: 8px;
}

.modal__buttons button.save i {
    opacity: 0.9;
}

.registration-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 220px;
    max-width: calc(100% - 2 * 8px);
    margin: 10px 8px;
    min-height: 35px;
    padding: 6px 20px;
    border: none;
    text-transform: uppercase;
    transform: skewX(-25deg);
    cursor: pointer;
    transition: 150ms;
    background: #263C5E;
    color: #e4f1fe;
}

.registration-button__icon {
    margin-right: 8px;
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px;
    transform: skewX(25deg);
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    font-size: 13px;
}

.registration-button__icon:before {
    display: inline-flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: inherit;
}

.registration-button__text {
    display: inline-block;
    transform: skewX(25deg);
}

.registration-button__icon:before {
    content: '\f305';
}

.registration-button--pending {
    color: #FFCBBA;
    background: #622E00;
}

.registration-button--pending .registration-button__icon:before {
    content: '\f252';
}

.registration-button--rejected {
    color: #F19C9C;
    background: #490000;
}

.registration-button--rejected .registration-button__icon:before {
    content: '\f00d';
}

.registration-button--confirmed {
    color: #AAFFA2;
    background: #064601;
}

.registration-button--confirmed .registration-button__icon:before {
    content: '\f00c';
}

.registration-button--locked {
    opacity: 0.33;
}

@media only screen and (max-width: 1280px) {
    .registration-button {
        max-width: calc(100vw - 40px);
    }
}

@media only screen and (max-width: 1280px) {
    .darkbox {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .row {
        display: block !important;
    }
    .column {
        width: 100% !important;
    }
    .modal {
        height: 100%;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
    }
    .modal button {
        width: 100%;
    }
    .modal__content {
        max-height: calc(100% - 230px);
    }
    .container-desktop-only {
        padding: 0;
    }
    /*.fsl-button {
        width: 100%;
        margin: 10px 0 !important;
    }*/
    .account-form__buttons {
        margin-top: 20px;
        transform: none;
    }
    .account-form input[readonly] {
        display: none;
    }
}

.player {
    position: relative;
}

.player:before {
    content: attr(player);
    position: absolute;
    font-size: 450px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    right: 0;
    top: 0;
    line-height: 1;
}

.login .darkbox__title + .fsl-button {
    position: absolute;
    top: 45px;
    right: 75px;
}

@media only screen and (max-width: 1280px) {
    .login .darkbox__title + .fsl-button {
        position: static;
        width: calc(100% - 2 * 16px);
        margin-top: 20px;
        margin-left: 16px;
        margin-right: 16px;
    }
}

.login input {
    width: 100%;
}

.login .login-form {
    margin-top: 20px;
}

.login .login-form .fsl-button {
    width: calc(100% - 2 * 60px);
    margin-left: 60px;
    margin-right: 60px;
    margin-top: 20px;
}

@media only screen and (max-width: 1280px) {
    .login .login-form .fsl-button {
        width: calc(100% - 2 * 16px);
        margin-left: 16px;
        margin-right: 16px;
    }
}

.mobile-usermenu {
    display: none;
}

@media only screen and (max-width: 1280px) {
    .mobile-usermenu.active {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        background: black;
        text-transform: uppercase;
        min-width: 50vw;
        max-width: calc(100vw - 80px);
        height: 100vh;
        padding: 0 20px;
        padding-top: calc(90px);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        font-size: 18px;
        box-shadow: 0 0 220px black;
    }
    .mobile-usermenu a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-basis: 100%;
        color: #D9D9D9;
        text-decoration: none;
        height: 90px;
    }
    .mobile-usermenu a.active {
        color: #ffbf30;
    }
    .mobile-usermenu a:not(:last-of-type) {
        border-bottom: 1px solid transparent;
        border-image: linear-gradient(to right, rgba(255, 255, 255, 0.25), white, rgba(255, 255, 255, 0.25));
        border-image-slice: 1;
    }
    .mobile-usermenu a[disabled] {
        cursor: not-allowed;
        opacity: 0.5;
    }
}

@media only screen and (max-width: 1280px) {
    .modal {
        align-content: space-between;
    }
    .modal__buttons {
        flex-wrap: wrap;
    }
    .modal__buttons .cancel {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 1280px) {
    .js-addplayer {
        width: calc(100% - 2 * 16px);
        margin-left: 16px;
        margin-right: 16px;
        margin-top: 10px !important;
        margin-bottom: 20px;
    }
}

.user-ribbon {
    display: flex;
    margin: 20px 0;
}

@media only screen and (max-width: 1280px) {
    .user-ribbon {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.user-ribbon a {
    width: 100%;
    padding: 10px;
    border: 1px solid white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    margin: 0 10px;
    transform: skewX(-25deg);
    align-items: center;
    align-content: center;
    transition: 150ms;
    white-space: nowrap;
}

.user-ribbon a:first-of-type {
    margin-left: 0;
}

@media only screen and (max-width: 1280px) {
    .user-ribbon a:first-of-type {
        margin-left: auto;
    }
}

.user-ribbon a:last-of-type {
    margin-right: 0;
}

@media only screen and (max-width: 1280px) {
    .user-ribbon a:last-of-type {
        margin-right: auto;
    }
}

.user-ribbon a:not([disabled]):hover, .user-ribbon a.active {
    box-shadow: inset 0 -2px white;
}

.user-ribbon a.active * {
    font-weight: bold;
}

.user-ribbon a * {
    transform: skewX(25deg);
    transition: 150ms;
}

.user-ribbon a i {
    margin-right: 10px;
    opacity: 0.8;
}

.user-ribbon a[disabled] {
    opacity: 0.2;
    cursor: not-allowed;
}

@media only screen and (max-width: 1280px) {
    .user-ribbon a {
        width: calc(100% - 40px);
        margin: 10px 20px;
    }
}

.user-ribbon .append {
    transform: translateX(-10px) skewX(-25deg);
    margin-left: 0;
    margin-right: 0;
    width: auto;
    flex-wrap: nowrap;
    text-align: center;
    border-left: 0;
    background: rgba(255, 255, 255, 0.1);
    justify-content: center;
}

.user-ribbon .append i {
    margin: 0 12px;
    font-size: 19px;
}

@media only screen and (max-width: 1700px) {
    .menu__login {
        position: absolute;
        right: 0;
        width: calc((100% - 56px) / 7);
        margin: 0 7px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        bottom: 0;
        display: flex;
        align-items: flex-start;
        top: 130px;
    }
    .menu__submenu {
        right: 10px;
        bottom: -202px;
        top: auto;
        z-index: 5;
        background: rgba(0, 0, 0, 0.75);
    }
    .hide-on-medium {
        display: none;
    }
}

.eline-heading {
    display: flex;
    justify-content: center;
    margin: 60px 0;
    max-width: 100%;
    overflow: hidden;
}

@media only screen and (max-width: 1280px) {
    .eline-heading {
        margin-top: 20px;
    }
}

.eline-heading .text {
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    margin: 0;
}

.eline-heading .text:before, .eline-heading .text:after {
    height: 1px;
    background: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    display: block;
    max-width: 300px;
    width: calc(300px - 50%);
}

.eline-heading .text:before {
    left: calc(-300px - 20px + 50%);
}

.eline-heading .text:after {
    left: calc(100% + 20px);
}

.eline-heading h1.text:before, .eline-heading h1.text:after {
    max-width: 380px;
    width: calc(380px - 50%);
}

.eline-heading h1.text:before {
    left: calc(-380px - 20px + 50%);
}

.download-box {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 210px;
    border: 1px solid #595C70;
    border-radius: 2px;
    margin-bottom: 70px;
    position: relative;
    cursor: pointer;
    transition: 300ms;
    background-image: url(../img/media/vid_thumbnail.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.download-box__text {
    display: block;
    width: 100%;
    position: absolute;
    bottom: -70px;
    line-height: 70px;
    text-transform: uppercase;
    transition: 300ms;
}

.download-box:hover .download-box__text {
    color: #D0B25C;
}

.download-box__overlay {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 400;
    transition: 300ms;
}

.download-box:hover .download-box__overlay {
    opacity: 1;
    color: #CFB15D;
}

.download-box:hover {
    border-width: 1px;
    border-image: linear-gradient(to bottom left, #B9984A, #E8D28F);
    border-image-slice: 1;
}

@media only screen and (max-width: 1280px) {
    .download-box {
        margin-bottom: 14px !important;
    }
}

.download-line {
    width: calc(100% - 28px);
    margin: 35px 14px;
    height: 66px;
    line-height: 66px;
    background: linear-gradient(to bottom, #282828, #161616);
    transform: skewX(-25deg);
    box-shadow: inset 0 0 21px 3px black;
    overflow: hidden;
    word-break: keep-all;
    position: relative;
    padding-left: calc(80px + 14px);
    padding-right: 80px;
    cursor: pointer;
    transition: 300ms;
    font-size: 13px;
}

.download-line *, .download-line:before, .download-line:after {
    transform: skewX(25deg);
}

.download-line--pdf:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: calc(80px + 2 * 14px);
    height: calc(100% - 2 * 14px);
    margin: 14px 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/pdf-icon.png);
}

.download-line--image:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: calc(80px + 2 * 14px);
    height: calc(100% - 2 * 14px);
    margin: 14px 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(attr(href));
}

.download-line:hover, .download-line:hover:after {
    color: #CFB15D;
}

.download-line:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: calc(100% - 2 * 20px);
    margin: 20px 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/download-icon.png);
}

.download-item {
    display: flex;
    text-decoration: none;
    width: calc(100% - 28px);
    margin: 35px 14px;
    height: 66px;
    line-height: 66px;
    background: linear-gradient(to bottom, #383838, #161616);
    transform: skewX(-25deg);
    box-shadow: inset 0 0 21px 5px black;
    overflow: hidden;
    word-break: keep-all;
    position: relative;
    cursor: pointer;
    transition: 300ms;
    font-size: 13px;
    padding-right: 80px;
    border: 1px solid #272727;
}

.download-item .preview {
    display: inline-block;
    transform: skewX(25deg);
    padding-left: 30px;
    font-size: 32px;
    vertical-align: middle;
    padding-right: 12px;
    /*color: #DC9693;*/
    height: 100%;
    line-height: inherit;
    display: flex;
    align-items: center;
    font-size: 28px;
}

.download-item .description {
    display: inline-block;
    transform: skewX(25deg);
    text-transform: uppercase;
    font-size: 16px;
}

@media only screen and (max-width: 1280px) {
    .download-item .description {
        font-size: 14px;
    }
}

.download-item .icon {
    display: inline-block;
    transform: skewX(25deg);
    position: absolute;
    right: 0;
    width: 80px;
    display: flex;
    justify-content: center;
    align-content: center;
    font-size: 32px;
    height: 100%;
    top: 0;
    bottom: 0;
}

.download-item .icon i {
    line-height: inherit;
}

.download-item:hover .description, .download-item:hover .icon {
    color: #CFB15D;
}

.download-item .preview, .download-item .icon {
    opacity: 0.8;
}

.download-item:hover .preview {
    opacity: 0.9;
}

.download-item .preview-image {
    display: inline-block;
    transform: skewX(25deg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: calc(100% - 20px);
    width: 100px;
    margin: 10px 0;
}

@media only screen and (max-width: 1280px) {
    .download-item {
        margin: 14px;
    }
}

.video-player {
    display: flex;
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 5;
    justify-content: center;
    align-items: center;
}

.video-player .close {
    font-size: 68px;
    position: fixed;
    top: 21px;
    right: 42px;
    cursor: pointer;
}

@media only screen and (max-width: 1280px) {
    .video-player .close {
        background: rgba(0, 0, 0, 0.9);
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        right: 12px;
        bottom: 60px;
        top: unset;
    }
}

.video-player.hidden {
    display: none;
}

@media only screen and (max-width: 1280px) {
    .video-player {
        height: calc(100vh - 90px);
        top: 90px;
    }
}

.standing .medal {
    background: transparent;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 32px;
}

.standing .medal--gold {
    background-image: url(../img/standings/optimized/medal-gold.png);
}

.standing .medal--silver {
    background-image: url(../img/standings/optimized/medal-silver.png);
}

.standing .medal--bronze {
    background-image: url(../img/standings/optimized/medal-bronze.png);
}

.standing .medal--black {
    background-image: url(../img/standings/optimized/medal-black.png);
}

.standing.alt {
    max-width: calc(100% - 200px);
    margin: 0 auto;
}

.standing.alt td {
    width: unset !important;
    max-width: unset !important;
    display: flex;
    align-content: center;
    align-items: center;
    border: none !important;
    /*&:nth-child(3) {
                justify-content: flex-end;
                padding-right: 20px;
            }*/
}

.standing.alt td:nth-child(3), .standing.alt td:nth-child(4), .standing.alt td:nth-child(5), .standing.alt td:nth-child(6), .standing.alt td:nth-child(7) {
    font-size: 26px;
    justify-content: center;
}

.standing.alt tr {
    display: grid;
    grid-template-columns: 1fr 5fr 2.5fr 1fr 1fr 1fr 1fr;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
    border-image-slice: 1;
    border-bottom: 2px solid transparent;
}

.standing.alt.a tr {
    grid-template-columns: 1fr 4fr 1fr;
}

.standing.alt.a td:nth-child(4),
.standing.alt.a td:nth-child(5),
.standing.alt.a td:nth-child(6),
.standing.alt.a td:nth-child(7) {
    display: none;
}

.grid-table {
    width: 100%;
    max-width: calc(100% - 200px);
    margin: 0 auto;
}

@media only screen and (max-width: 1280px) {
    .grid-table {
        max-width: 100%;
    }
}

.grid-table__row {
    display: grid;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
    border-image-slice: 1;
    border-bottom: 2px solid transparent;
    padding: 12px 0;
    text-transform: uppercase;
    font-size: 24px;
    text-decoration: none;
    position: relative;
    /*
        &--highlight:after {
            content: "\f30b"; // Arrow Right
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            font-family: "Font Awesome 5 Pro";
            font-weight: 300;
            position: absolute;
            top: 0;
            left: -52px;
            bottom: 0;
            font-size: 28px;
            display: flex;
            align-items: center;
            display: none;
        }
        */
}

@media only screen and (max-width: 1280px) {
    .grid-table__row {
        font-size: 18px;
    }
}

.grid-table__row--header {
    padding: 5px 0;
    font-size: 12px;
}

.grid-table__row > * {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-table__row:not(.grid-table__row--header):before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: calc(100% + 2 * 20px);
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: 300ms;
}

.grid-table__row:not(.grid-table__row--header):hover:before {
    opacity: 1;
}

.grid-table__row--highlight {
    position: relative;
    color: #ffc661;
}

.grid-table__row[price-badge] {
    position: relative;
}

.grid-table__row[price-badge]:after {
    content: attr(price-badge);
    position: absolute;
    top: 0;
    right: -160px;
    display: flex;
    background: url();
    width: 200px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: black; */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(16deg);
    font-size: 24px;
    filter: sepia(1);
    font-weight: bold;
}

.schedule-table .grid-table__row {
    grid-template-columns: 1fr 2fr 1fr;
    /*&:nth-child(2) {
            font-weight: bold;
        }*/
}

.schedule-table .grid-table__row:not(.grid-table__row--header) {
    font-size: 18px;
}

.schedule-table__date, .schedule-table__event, .schedule-table__location {
    justify-content: flex-start;
}

.grid-table__row:not(.grid-table__row--header) .schedule-table__location {
    text-transform: none;
}

.schedule-table .logo {
    width: 100px;
    height: 60px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 60px;
}

.standings-table .grid-table__row {
    grid-template-columns: 1fr 5fr 2.5fr 1fr 1fr 1fr 1fr;
}

@media only screen and (max-width: 1280px) {
    .standings-table .grid-table__row {
        grid-template-columns: 1fr 5fr 2fr;
    }
}

.standings-table .grid-table__row.podium {
    font-weight: bold;
}

.standings-table .medal {
    background: transparent;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 46px;
}

@media only screen and (max-width: 1280px) {
    .standings-table .medal {
        height: 24px;
    }
}

.standings-table .medal--gold {
    background-image: url(../img/standings/optimized/medal-gold.png);
}

.standings-table .medal--silver {
    background-image: url(../img/standings/optimized/medal-silver.png);
}

.standings-table .medal--bronze {
    background-image: url(../img/standings/optimized/medal-bronze.png);
}

.standings-table .medal--black {
    background-image: url(../img/standings/optimized/medal-black.png);
}

.standings-table .logo {
    width: 45px;
    height: 45px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 40px;
}

.standings-table .rank, .standings-table .team {
    justify-content: flex-start;
}

.standings-table .team {
    /*word-break: keep-all;*/
}

@media only screen and (max-width: 1280px) {
    .standings-table .team {
        font-size: 14px;
    }
}

.standings-table .points {
    justify-content: flex-end;
    text-align: right;
    margin-right: 60px;
}

@media only screen and (max-width: 1280px) {
    .standings-table .logo {
        margin-right: 12px;
    }
    .standings-table .points {
        margin-right: 0;
    }
    .standings-table .award {
        display: none;
    }
}

@media only screen and (max-width: 1280px) {
    .standings-table--only-awards .grid-table__row {
        grid-template-columns: 5fr 1fr 1fr 1fr 1fr;
    }
    .standings-table--only-awards .award {
        display: flex;
    }
    .standings-table--only-awards .rank, .standings-table--only-awards .points {
        display: none;
    }
}

.standings-table--team {
    width: 100%;
    max-width: unset;
}

.standings-table--team .grid-table__row {
    grid-template-columns: 1fr 5fr 2fr;
    font-weight: 300;
}

.standings-table--team .grid-table__row.current {
    color: #f3af32;
}

.standings-table--team .logo {
    margin-right: 12px;
}

.standings-table--team .points {
    margin-right: 0;
}

.standings-switch {
    display: none;
    justify-content: flex-end;
    padding: 45px 0;
    padding-right: 20px;
}

@media only screen and (max-width: 1280px) {
    .standings-switch {
        display: flex;
    }
}

.standings-switch button {
    display: inline-flex;
    height: 45px;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.standings-switch .medal-icon {
    background-image: url(../img/standings/optimized/medal-active.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    transform: skewX(25deg);
    filter: brightness(0) invert(1);
}

.comselect {
    display: flex;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.33), transparent);
    padding: 12px;
    margin: 20px 0;
}

.comselect__event {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 300px;
}

.comselect__event__image {
    width: 100%;
    height: 90px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.comselect__event__name {
    margin-top: 12px;
    text-align: center;
}

.comselect__commentators {
    width: calc(100% - 300px);
    padding: 0 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: 150ms ease-in-out;
}

.comselect__commentators.dragover {
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.comselect__commentators .commentator {
    width: 90px;
    height: 90px;
    border-color: green;
    cursor: pointer;
}

.comselect__commentators .commentator:hover {
    transform: none;
    border-color: red;
    opacity: 0.5;
}

.commentators {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: radial-gradient(circle, #323232 0%, #171717 100%);
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    align-content: center;
    box-shadow: 0 0 10px black;
    z-index: 20;
    flex-wrap: wrap;
}

.commentators__title {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    margin: 10px 0;
    font-size: 21px;
}

.commentators__title span {
    display: inline-block;
    text-transform: none;
    margin-top: 2px;
    font-size: 14px;
}

.commentator {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100%;
    border: 2px solid #f3af32;
    margin: 6px;
    cursor: move;
    transition: 150ms ease-in-out;
    border-width: 2px;
    box-shadow: 0 0 10px black;
}

.commentator:hover {
    transform: scale(1.3) translateY(-9px);
    opacity: 0.75;
}

.admin {
    padding: 10px 40px;
}

/* Video Filter Dropdown */
.dropdown {
    position: relative;
    height: 65px;
    line-height: 65px;
    text-transform: uppercase;
    font-size: 19px;
    cursor: pointer;
}

.dropdown, .dropdown .list {
    width: 353px;
    padding-left: 15px;
    padding-right: 15px;
    background: #2f2f2f;
    border: 1px solid white;
    box-shadow: inset 0 0 26px 4px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 1280px) {
    .dropdown, .dropdown .list {
        width: 100%;
    }
}

.dropdown .list {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    position: absolute;
    left: -1px;
    top: 64px;
    border-top: 0;
    z-index: 20;
    display: none;
    margin-bottom: 40px;
    overflow: hidden;
    transition: 150ms;
}

.dropdown .option {
    padding-left: 15px;
    padding-right: 15px;
    white-space: nowrap;
    overflow: hidden;
    /*transition: $transition-short;*/
}

.dropdown .option:not(.selected):hover {
    background: #222223;
}

@media only screen and (max-width: 1280px) {
    .dropdown .option {
        text-align: right;
    }
}

@media only screen and (max-width: 1280px) {
    .dropdown .option.selected {
        padding-right: 40px;
    }
}

.dropdown:after {
    content: "\f078";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 28px;
    margin-right: 16px;
    transition: 150ms;
}

.dropdown.opened:after {
    transform: rotate(180deg);
}

.searchbar {
    position: relative;
    width: 353px;
    height: 58px;
    border-bottom: 1px solid white;
    /* Search Icon */
    /* Text Input */
    /* Reset Button */
}

@media only screen and (max-width: 1280px) {
    .searchbar {
        width: 100%;
        margin-top: 40px;
    }
}

.searchbar:before {
    content: "\f002";
    display: inline-flex;
    align-items: center;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    font-size: 24px;
    transition: 150ms;
}

.searchbar input {
    border: 0;
    outline: 0;
    color: white;
    background: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 40px;
    padding-right: 40px;
    font-weight: 300;
    font-size: 21px;
}

.searchbar .reset {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    width: 40px;
    justify-content: flex-end;
}

.searchbar .reset i {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 100%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    font-size: 12px;
    opacity: 0.75;
}

/* Live Stream */
.livestream {
    /* Reponsiveness Fix */
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 0;
    height: 0;
    overflow: hidden;
    /* Appearance */
    background: black;
    box-shadow: 3px 3px 50px black;
}

.livestream iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Videos */
.videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 38px;
    margin-left: -22.5px;
    margin-right: -22.5px;
}

/* Single Video Item */
.video {
    width: calc(100% / 3 - 2 * 22.5px);
    margin-left: 22.5px;
    margin-right: 22.5px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 40px;
}

@media only screen and (max-width: 1280px) {
    .video {
        display: flex;
        flex-wrap: wrap;
        width: calc(100% + 2 * 20px);
        height: 190px;
        margin-left: -20px;
        margin-right: -20px;
        align-items: center;
        background: radial-gradient(circle at center, rgba(0, 0, 0, 0.33), rgba(0, 0, 0, 0.5) 100%);
        flex-direction: column;
        justify-content: center;
    }
}

.video__preview {
    width: 100%;
    height: 210px;
    background-image: url(../img/media/vid_thumbnail.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 35px;
    border: 1px solid #595C70;
    border-radius: 2px;
    position: relative;
}

@media only screen and (max-width: 1280px) {
    .video__preview {
        display: inline-block;
        height: 100%;
        width: 50%;
        margin-bottom: 0;
        border: none;
        background-size: contain;
    }
}

.video__preview:before {
    content: 'Watch';
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 400;
    transition: 300ms;
}

.video:hover .video__preview {
    border-image: linear-gradient(to bottom left, #B9984A, #E8D28F);
    border-image-slice: 1;
}

.video:hover .video__preview:before {
    opacity: 1;
    color: #CFB15D;
}

.video__title {
    font-size: 26px;
    margin-bottom: 20px;
    transition: 300ms;
}

@media only screen and (max-width: 1280px) {
    .video__title {
        width: 50%;
        padding: 0 20px;
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.video:hover .video__title {
    color: #D0B25C;
}

.video__date {
    font-size: 14px;
    color: #7d7d7d;
}

@media only screen and (max-width: 1280px) {
    .video__date {
        width: 50%;
        padding: 0 20px;
    }
}

.download-box {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 210px;
    border: 1px solid #595C70;
    border-radius: 2px;
    margin-bottom: 70px;
    position: relative;
    cursor: pointer;
    transition: 300ms;
    background-image: url(../img/media/vid_thumbnail.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.download-box__text {
    display: block;
    width: 100%;
    position: absolute;
    bottom: -70px;
    line-height: 70px;
    text-transform: uppercase;
    transition: 300ms;
}

.download-box:hover .download-box__text {
    color: #D0B25C;
}

.download-box__overlay {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 400;
    transition: 300ms;
}

.download-box:hover .download-box__overlay {
    opacity: 1;
    color: #CFB15D;
}

.download-box:hover {
    border-width: 1px;
    border-image: linear-gradient(to bottom left, #B9984A, #E8D28F);
    border-image-slice: 1;
}

.container, .videos {
    overflow: hidden;
}

.container.overflow {
    overflow: visible;
}

.bselect-teams .bselect-teams__single {
    display: inline-block;
    background: #064601;
    margin: 12px;
    cursor: crosshair;
}

.game {
    transition: 300ms;
}

.game.dragover {
    background: rgba(255, 255, 255, 0.25);
}

/* Quick Form */
.quickform {
    text-align: center;
    /* Used to position inline-flex button in center */
    max-width: 600px;
    margin: 40px auto;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.33);
    box-shadow: 3px 3px 10px 3px black;
    position: relative;
}

@media only screen and (max-width: 1280px) {
    .quickform {
        padding: 20px;
    }
}

/* Quickform Alternative Style: Keep Left */
.quickform--left {
    margin-left: 0;
}

/* Quickform Alternative Style: Marings */
.quickform--margins {
    margin-left: 16px;
    margin-right: 16px;
}

/* Quickform Alternative Style: Fixes / Overlay */
.quickform--fixed {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.8);
    z-index: 300;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    /*border: 5px solid #3c3c3c;*/
    overflow-y: scroll;
    max-height: calc(100vh - 2 * 40px);
    background: #131313;
}

/* Quick Form: Close Button (optional) */
.quickform__close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 24px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    background: #272727;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    transition: 100ms ease-in;
    opacity: 0.75;
}

.quickform__close:hover {
    opacity: 1;
}

/* Quick Form: heading */
.quickform h1,
.quickform h2,
.quickform h3 {
    font-weight: 400;
    margin-right: 2px;
}

/* Quickform Copy to Clipboard Focus */
.quickform input[copytoclipboard] {
    transition: 150ms ease-in;
}

.quickform input[copytoclipboard]:active {
    font-size: 19px;
}

/* Quick Form: Icons */
.quickform i {
    /* vertical-align: top; */
}

/* Quick Form: Inputs */
.quickform label {
    display: block;
    text-align: left;
    position: relative;
}

.quickform label, .quickform input[type="submit"], .quickform .fsl-button {
    margin-top: 18px;
}

.quickform label input, .quickform label select {
    margin-top: 6px;
}

.quickform select, .quickform input, select.quickinput, input.quickinput, div.quickinput, textarea.quickinput {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    background: #272727;
    color: white;
    border: 0;
    border-radius: 0;
    outline: none;
}

textarea.quickinput {
    padding-top: 10px;
}

.quickform input[disabled], .quickform input[readonly] {
    opacity: 0.33;
}

.quickform input[disabled] {
    cursor: not-allowed;
}

.quickform select[disabled] {
    opacity: 0.33;
    cursor: not-allowed;
}

div.quickinput, textarea.quickinput {
    height: auto;
}

.quickform--fixed select, .quickform--fixed input {
    background: #272727;
}

label .field {
    font-weight: bold;
    margin: 0 4px;
}

label.notrans {
    text-transform: none !important;
}

/* Note */
.quickform .note {
    opacity: 0.25;
}

/* Custom Checkbox */
.quickform input[type="checkbox"], label.checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.quickform .checkmark, label.checkbox span.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #272727;
    cursor: pointer;
}

.quickform label.checkbox, label.checkbox {
    padding-left: 35px;
    line-height: 25px;
    cursor: pointer;
    position: relative;
}

.quickform label.checkbox--inline, label.checkbox--inline {
    padding-left: 25px;
}

.quickform .checkmark:after, label.checkbox span.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.quickform label:hover input:not([disabled]) ~ .checkmark, label.checkbox:hover input:not([disabled]) ~ .checkmark {
    background-color: #6d6d6d;
}

.quickform input[type="checkbox"]:checked ~ .checkmark, label.checkbox input[type="checkbox"]:checked ~ .checkmark {
    background-color: #7b6636;
}

.quickform input[type="checkbox"]:checked ~ .checkmark:after, label.checkbox input[type="checkbox"]:checked ~ .checkmark:after {
    display: block;
}

.quickform label.checkbox--disabled, label.checkbox--disabled span.checkmark {
    cursor: not-allowed;
}

/* FSL Submit Button */
.quickform .fsl-button {
    min-width: 400px;
}

@media only screen and (max-width: 1280px) {
    .quickform .fsl-button {
        min-width: unset;
    }
}

/* Bracket Team Select Fixed List */
.bselect-teams {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 280px;
    background: #202130;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-y: scroll;
    max-height: calc(100vh - 2 * 20px);
}

.bracket .round {
    position: relative;
    margin-top: 40px;
}

.bracket .round__name {
    white-space: nowrap;
    overflow: hidden;
    margin-right: 30px;
    font-size: 21px;
    overflow-x: scroll;
}

.bracket .round__name__more {
    font-size: 14px;
    height: auto !important;
}

.bracket .round__name__more--label {
    display: inline-block;
    margin-top: 8px;
    text-decoration: underline;
}

.bracket .round__name__more i {
    margin-right: 4px;
}

.bracket .round__name .edit {
    display: inline-block;
    font-size: 19px;
    opacity: 0.75;
    margin-left: 6px;
    cursor: pointer;
    margin-bottom: 10px;
}

.game .edit {
    display: inline;
    font-size: 12px;
    opacity: 0.75;
    margin-left: 6px;
    cursor: pointer;
}

.flatpickr-time {
    height: 40px;
    /* Time Input Field Fix */
}

.game:not(.game-spacer) {
    cursor: pointer;
}

.game:not(.game-spacer):hover {
    background: rgba(255, 255, 255, 0.25) !important;
}

/* Score Management Table */
table.score-table {
    border: 1px solid black;
    border-radius: 0;
    box-shadow: 3px 3px 10px black;
}

table.score-table th, table.score-table td {
    text-align: center;
    white-space: nowrap;
}

table.score-table td input {
    max-width: 100%;
}

table.score-table td.xscroll {
    overflow-x: scroll;
}

table.score-table tr {
    transition: 150ms ease-in;
}

table.score-table tr.pending, table.score-table tr.pending:hover {
    background: rgba(255, 195, 171, 0.25) !important;
}

table.score-table tr.updated, table.score-table tr.updated:hover {
    background: rgba(115, 243, 120, 0.25) !important;
}

/* Score Management Table: Save Button */
.ajax-update-standings {
    background: #2f2f2f;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    cursor: pointer;
    transition: 150ms ease-in;
}

.ajax-update-standings:hover {
    background: #7d7d7d;
}

/* Center Row Contents */
.row.center {
    display: flex;
    justify-content: center;
}

/* Messages / Notifications */
.message {
    position: relative;
    text-align: left;
    display: inline-flex;
    align-items: center;
    padding: 16px 10px;
    padding-left: 50px;
    color: #d8d8d8;
    background: rgba(0, 0, 0, 0.2);
    margin: 16px 0;
}

.message--block {
    width: 100%;
}

@media only screen and (max-width: 1280px) {
    .message--block {
        flex-wrap: wrap;
    }
}

.message:before {
    content: "\10f30f";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Duotone";
    font-weight: 300;
    margin-right: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50px;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.message[message-type="success"] {
    color: #e6ffdd;
    background: #425a39;
}

.message[message-type="success"]:before {
    font-family: "Font Awesome 5 Duotone";
    content: '\10f058';
}

.message[message-type="error"] {
    color: #ffd1d1;
    background: #5a3939;
}

.message[message-type="error"]:before {
    font-family: "Font Awesome 5 Duotone";
    content: '\10f071';
}

.copytoclipboard-wrapper {
    position: relative;
}

.copytoclipboard-wrapper__button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 36px;
    background: rgba(255, 255, 255, 0.25);
    justify-content: center;
    cursor: pointer;
    transition: 150ms ease-in;
}

.copytoclipboard-wrapper__button:hover {
    background: rgba(255, 255, 255, 0.33);
}

.copytoclipboard-wrapper__button:active {
    background: rgba(255, 255, 255, 0.5);
}

/* Quicktable */
.quicktable {
    border: none;
    padding: 20px 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.quicktable a {
    text-decoration: none;
}

.quicktable a:not(.no-icon) {
    position: relative;
    text-indent: -16px;
    transition: none;
}

.quicktable a:not(.no-icon):before {
    content: "\f0c1";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    margin: 0 6px;
    transition: 50ms ease-in;
    opacity: 0;
}

.quicktable a:not(.no-icon):hover {
    text-indent: 0;
    margin-left: 8px;
    font-weight: bold;
}

.quicktable a:hover:before {
    opacity: 1;
}

.quicktable tr td, .quicktable tr th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.quicktable thead tr td {
    /*font-weight: bold;*/
    padding-top: 0;
    white-space: nowrap;
}

.quicktable thead tr:hover {
    background: none !important;
}

table .medal {
    background: transparent;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    margin: 6px auto;
}

table .medal--gold {
    background-image: url(../img/standings/optimized/medal-gold.png);
}

table .medal--silver {
    background-image: url(../img/standings/optimized/medal-silver.png);
}

table .medal--bronze {
    background-image: url(../img/standings/optimized/medal-bronze.png);
}

table .medal--black {
    background-image: url(../img/standings/optimized/medal-black.png);
}

table td a {
    white-space: nowrap;
}

span.red {
    color: #ff8282;
}

span.green {
    color: #8fe88f;
}

span.orange {
    color: #fd9166;
}

/* Team Page Mobile */
@media only screen and (max-width: 1280px) {
    .player {
        margin: 0 auto;
        max-width: 300px;
        margin-top: 32px;
    }
}

.player__picture {
    /* Temporary Example Content */
    /*background-image: url(../img/teams/muffinhead.png) !important;
        background-color: transparent !important;*/
}

@media only screen and (max-width: 1280px) {
    .player__picture {
        margin-bottom: 16px;
    }
}

@media only screen and (max-width: 1280px) {
    .player--lead .player__picture {
        transform: none;
    }
}

@media only screen and (max-width: 1280px) {
    .single-team .banner {
        background-size: contain;
        background-color: transparent;
        background-position-y: top;
    }
}

.single-team__banner {
    margin-bottom: 60px;
}

@media only screen and (max-width: 1280px) {
    .single-team__banner {
        margin-bottom: 20px;
    }
}

/* Screen Size Switcher Classes */
.mobile-only {
    display: none !important;
}

@media only screen and (max-width: 1280px) {
    .mobile-only {
        display: block !important;
    }
}

.desktop-only {
    display: block !important;
}

@media only screen and (max-width: 1280px) {
    .desktop-only {
        display: none !important;
    }
}

/* Other Teams Slider: Remove Outline on Drag */
.otherteams a:active, .otherteams a:focus {
    outline: none;
}

/* ==========================================================================
Advertisement
========================================================================== */
.ad {
    display: block;
    position: relative;
    width: 300px;
    height: 300px;
    max-width: 100%;
    text-decoration: none;
    overflow: hidden;
    /* Required for Background Hover Scaling Effect */
    /* Ad Label */
}

.ad--tile {
    width: 383px;
    height: 300px;
}

@media only screen and (max-width: 1280px) {
    .ad--tile {
        width: 100% !important;
        max-width: 1200px;
        height: 216px;
    }
}

.ad--leaderboard {
    width: 1200px;
    height: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1280px) {
    .ad--leaderboard {
        display: none;
        width: 100%;
        max-width: 1200px;
        height: 200px;
    }
}

.ad__image {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    background-color: grey;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 100ms ease-out;
}

.ad:hover .ad__image {
    /*transform: scale(1.05);*/
}

.ad__content {
    width: calc(100% + 1px);
    height: 100%;
    padding: 20px;
    /*background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.8) 25%, rgba(0,0,0,0.5) 40%, transparent 75%);*/
    box-shadow: inset 0px 0px 0 4px rgba(138, 138, 138, 0.3);
    position: relative;
    /*z-index: 50;*/
}

.ad__content__title {
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 16px;
    font-weight: 300;
    font-size: 19px;
}

.ad:after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: attr(data-annotation);
    padding: 10px 12px;
    text-shadow: 3px 3px 42px black;
    opacity: 0.8;
    color: #7b7b7b;
}

/* Cookie Notice */
.cookienote {
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.cookienote > .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 1280px) {
    .cookienote > .container {
        flex-wrap: wrap;
    }
}

.cookienote__text {
    text-align: center;
    font-size: 16px;
}

.cookienote__button {
    min-width: 250px;
    margin-left: 80px;
    white-space: nowrap;
}

@media only screen and (max-width: 1280px) {
    .cookienote__button {
        margin: 10px auto;
    }
}

/* End of: Cookie Notice */
/* Responsive Video Container */
.flexvid-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.flexvid-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* End of: Responsive Video Container */
/* Status Dot & Text */
.status {
    display: inline-block;
}

.status--success {
    color: #8fe88f;
}

.status--warning {
    color: #ffc862;
}

.status--failed {
    color: #ff6868;
}

.status:before {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: red;
    display: inline-block;
    content: '';
    margin-right: 4px;
}

.status--success:before {
    background-color: #00ff00;
}

.status--warning:before {
    background-color: orange;
}

.status--failed:before {
    background-color: red;
}

/* End of: Status Dot & Text */
/* Databox */
.databox {
    margin: 20px 0;
    padding: 32px;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    box-shadow: 2px 3px 4px 3px #171717;
    border: 3px solid #292929;
    width: 100%;
    max-width: 460px;
    cursor: auto;
    text-align: left;
}

.databox__icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: #212121;
    border: 4px solid #2d2d2d;
    box-shadow: 2px 3px 8px 3px rgba(0, 0, 0, 0.25);
    position: absolute;
    margin: auto;
    left: -40px;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    display: none;
}

.databox__icon i {
    opacity: 0.8;
}

.databox__title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.databox__field {
    margin-top: 12px;
}

.databox__field__label {
    opacity: 0.8;
    font-size: 14px;
}

.databox__field__label i {
    margin-right: 4px;
}

.databox__field__value {
    font-size: 18px;
}

.databox__field__value {
    /*font-family: monospace;
    letter-spacing: 2px;*/
}

.databox__field__value--small {
    font-size: 18px;
}

.databox__buttons {
    margin-top: 12px;
}

.databox__buttons a, .simplebutton {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    margin: 8px auto;
    border: 1px solid white;
    transition: 150ms ease-in;
    opacity: 0.8;
    cursor: pointer;
}

.databox__buttons a:last-of-type {
    margin-bottom: 0;
}

.databox__buttons a:hover, .simplebutton:hover {
    box-shadow: inset 0 -2px white;
    opacity: 1;
}

.databox__buttons a:active, .simplebutton:active {
    font-weight: bold;
}

.databox__buttons a span, .simplebutton span {
    display: block;
}

.databox__buttons--skewed a, .simlebutton--skewed {
    width: calc(100% - 20px);
    transform: skewX(-25deg);
}

.databox__buttons--skewed a span, .simplebutton--skewed span {
    transform: skewX(25deg);
}

.databox__buttons a span i, .simplebutton span i {
    opacity: 0.8;
    margin-right: 10px;
}

.databoxes--attached .databox {
    border: none;
    box-shadow: none;
}

.databoxes--attached .databox:nth-of-type(2) {
    transform: translateX(-64px);
}

.databoxes--attached .databox:nth-of-type(2) .databox__icon {
    opacity: 0;
}

.databox {
    width: 50% !important;
    margin: 0 !important;
    transform: none !important;
}

@media only screen and (max-width: 1280px) {
    .databoxes {
        display: flex;
        flex-wrap: wrap;
    }
    .databox {
        width: 100% !important;
        margin-left: 12px;
        padding-left: 32px;
    }
    .databox__icon {
        display: none;
    }
}

/* End of: Databox */
/* Set right Opacity for [readonly] Datepicker Inputs */
.flatpickr-input[readonly] {
    opacity: 1 !important;
}

/* End of: Set right Opacity for [readonly] Datepicker Inputs */
/* Do not wrap white spaces helper class */
.nowrap {
    white-space: nowrap;
}

/* End of: Do not wrap white spaces helper class */
/* Footer Logo Dimension */
.footer__logo {
    width: 188px;
    height: 60px;
}

/* EO: Footer Logo Dimension */
/* Blue Ribbon */
.blue-ribbon {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.3));
    margin-top: 80px;
    padding: 20px 0;
}

/* EO: Blue Ribbon */
/* Footer Sponsors */
.sponsors {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sponsors__single {
    text-decoration: none;
    margin: 0 40px;
}
.sponsors__single img {
    max-height: 40px;
}
.sponsors__single:first-of-type {
    margin-left: 0;
}

.sponsors__single:last-of-type {
    margin-right: 0;
}

@media only screen and (max-width: 1280px) {
    .sponsors__single,
    .sponsors__single:first-of-type,
    .sponsors__single:last-of-type {
        margin: 0 12px;
    }
}

/* EO: Footer Sponsors */
/* Event Info */
.event-info {
    text-transform: uppercase;
}

.event-info__name {
    font-size: 60px;
    font-weight: bold;
    color: #e1b441;
    white-space: nowrap;
}

.event-info__date {
    font-size: 28px;
}

.event-info__pricepool {
    margin: 20px 0;
}

.event-info__pricepool__label {
    display: block;
    font-size: 26px;
    text-transform: uppercase;
    /*color: #e1b441;*/
}

.event-info__pricepool__value {
    font-size: 54px;
}

.event-info__streamingtimes {
    font-size: 26px;
    white-space: nowrap;
}

.event-info__streamingtimes__label {
    display: block;
}

.event-info__streamingtimes__item {
    /*display: block;*/
    color: #e1b441;
}

@media only screen and (max-width: 1280px) {
    .event-info__streamingtimes {
        font-size: 19px;
        margin-bottom: 20px;
        white-space: inherit;
    }
}

@media only screen and (min-width: 1280px) {
    .single-event {
        padding-top: 180px;
    }
    .single-event .banner {
        border: none;
        background: radial-gradient(circle at center, #1D1D1D, black 100%);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: calc(200px + 200px);
        padding-top: 165px;
        z-index: -1;
        box-shadow: 0 3px 100px rgba(0, 0, 0, 0.2);
    }
}

/* EO: Event Info */

/* Fixed Menu */
@media only screen and (min-width: 1280px) {
    .fixed {
        top: -130px;
        transition: top 300ms ease-in-out;
    }
    .fixed.active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: linear-gradient(to right, black, #0e1429, black);
        box-shadow: 0 3px 10px black;
        /*border-bottom: 2px solid black;*/
        /*opacity: 0.95;*/
    }
    .fixed.active .menu {
        /*height: 100px;*/
    }
    .fixed.active .menu__login {
        top: 40px;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1700px) {
    .fixed.active .menu__login {
        top: 75px;
    }
}

@media only screen and (min-width: 1280px) {
    .fixed.active .menu__logo {
        transform: scale(1.33);
    }
    .fixed.active .menu__submenu {
        background: black;
    }
    .fixed.active:hover {
        opacity: 1;
    }
    .fixed--tiny.active .menu {
        height: 80px;
    }
    .site-content--shifted {
        margin-top: 180px;
        padding-top: 30px;
    }
    .menu__login {
        transition: none;
    }
}

/* EO: Fixed Menu */
/* Better News Title Fix */
h1.decor {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

@media only screen and (max-width: 1280px) {
    .article .article__publishdate {
        text-align: center;
        margin-top: 30px;
    }
}

/* EO: Better News Title Fix */
/* Articles Heading Fix */
.heading {
    overflow: visible;
}

/* EO: Articles Heading Fix */
/* Articles Date, Paragraphs and Images Fix */
.article h1 {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    text-align: left;
}

@media only screen and (max-width: 1280px) {
    .article h1 {
        text-align: center;
    }
}

.article p, .article hr {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    text-align: justify;
    font-size: 19px;
    line-height: 1.4;
}

.article ul {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    font-size: 19px;
    line-height: 1.4;
}

.article img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.article__publishdate {
    transform: none;
    margin-top: 30px;
    font-size: 19px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

/* EO: Article Date, Paragraphs and Images Fix */
/* Mobile Event Info Fixes */
@media only screen and (max-width: 1280px) {
    .event-info__name {
        font-size: 36px;
    }
    .event-info__date {
        font-size: 21px;
    }
    .event-info__pricepool__label {
        font-size: 19px;
    }
    .event-info__pricepool__value {
        font-size: 32px;
    }
}

/* EO: Mobile Event Info Fixes */
/* Bracket Path Highlight */
.bracket .round .game.game-top.highlight, .bracket .round .game.game-bottom.highlight {
    border-color: #f9a40f;
}

.bracket .round .game.game-top:not(.highlight), .bracket .round .game.game-bottom:not(.highlight) {
    opacity: 0.5;
}

.bracket .round .game.game-spacer:not(.highlight) {
    opacity: 0.5;
}

.bracket .round .game.game-spacer.highlight--top {
    border-image: linear-gradient(to bottom, #f9a40f 50%, rgba(255, 255, 255, 0.5) 100%);
    border-image-slice: 1;
}

.bracket .round .game.game-spacer.highlight--bottom {
    border-image: linear-gradient(to top, #f9a40f 50%, rgba(255, 255, 255, 0.5) 100%);
    border-image-slice: 1;
}

/* EO: Bracket Path Highlight */
/* Player Nicknames */
.player__name__nickname {
    font-size: 26px;
    color: #fca30b;
}

.player--wide .player__name {
    flex-wrap: wrap;
    align-content: center;
    text-align: left;
}

.player--wide .player__name__nickname {
    flex-basis: 100%;
}

/* EO: Player Nicknames */
/* Clickable Table Rows */
tr[href] {
    cursor: pointer;
    transition: 100ms ease-in-out;
}

tr[href]:hover {
    /*transform: scale(1.05);*/
}

/* EO: Clickable Table Rows */
/* Screenshot Preview */
.screenshot-preview {
    width: 503px;
    height: 322px;
    background-color: rgba(255, 255, 255, 0.1);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 10px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

/* EO: Screenshot Preview */
/* Myaccount Label Layer Click Fix */
.player input, .player select, .player a {
    position: relative;
    z-index: 5;
}

.player .input__field__element, .player .input__field select {
    background: rgba(50, 50, 50, 0.33);
}

/* Myaccount Label Layer Click Fix */
/* Re-Designed Last Matches */
.last-matches {
    display: block;
    width: 100%;
}

.last-matches__logo {
    width: 260px;
    height: 135px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    margin-top: 60px;
}

.last-matches__heading {
    display: none;
    width: 100%;
    text-align: center;
    font-weight: bold;
    margin-top: 3px;
}

.last-matches__row {
    display: flex;
    width: 100%;
    height: 120px;
    font-size: 19px;
    border-top-style: solid;
    border-top-width: 2px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-image: linear-gradient(to right, transparent, white, transparent);
    border-image-slice: 1;
}

.last-matches__row:not(:first-child) {
    border-top: 0;
}

@media only screen and (max-width: 1280px) {
    .last-matches__row {
        height: auto;
        font-size: inherit;
        padding: 30px 0;
    }
}

.last-matches__row--separated {
    border-top-style: solid;
    border-top-width: 2px;
    border-image: linear-gradient(to right, transparent, white, transparent);
    border-image-slice: 1;
}

.last-matches__row__team {
    display: flex;
    width: calc((100% - 100px) / 2);
    height: 100%;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    text-decoration: none;
    transition: 150ms ease-in-out;
    position: relative;
    /* Ordering */
}

@media only screen and (max-width: 1280px) {
    .last-matches__row__team {
        flex-wrap: wrap;
    }
}

.last-matches__row__team--looser * {
    transition: 150ms ease-in-out;
    opacity: 0.33;
}

.last-matches__row__team--looser:hover * {
    opacity: 1;
}

.last-matches__row__team:before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: calc(100% + 2 * 20px);
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: 150ms ease-in-out;
}

.last-matches__row__team:hover:before {
    opacity: 1;
}

@media only screen and (max-width: 1280px) {
    .last-matches__row__team__points, .last-matches__row__team__name, .last-matches__row__team__logo {
        flex-basis: 100%;
    }
}

.last-matches__row__team__points {
    display: inline-flex;
    width: auto;
    justify-content: center;
    word-break: keep-all;
    white-space: nowrap;
}

.last-matches__row__team__points span {
    display: inline-block;
    margin: 0 10px;
}

.last-matches__row__team__points span.highlight {
    color: #D0B25C;
}

.last-matches__row__team__name {
    display: inline-flex;
    width: auto;
    justify-content: center;
    word-break: keep-all;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
}

@media only screen and (max-width: 1280px) {
    .last-matches__row__team__name {
        position: static;
        width: auto;
        margin-bottom: 15px;
    }
}

.last-matches__row__team__logo {
    width: 80px;
    height: 80px;
    /*background-color: grey;*/
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/teams/tbd.png);
}

@media only screen and (max-width: 1280px) {
    .last-matches__row__team__logo {
        width: 65px;
        height: 65px;
        margin-bottom: 30px;
    }
}

.last-matches__row__team:first-of-type .last-matches__row__team__points {
    order: 1;
}

@media only screen and (max-width: 1280px) {
    .last-matches__row__team:first-of-type .last-matches__row__team__points {
        order: 3;
    }
}

.last-matches__row__team:first-of-type .last-matches__row__team__name {
    order: 2;
}

@media only screen and (max-width: 1280px) {
    .last-matches__row__team:first-of-type .last-matches__row__team__name {
        order: 2;
    }
}

.last-matches__row__team:first-of-type .last-matches__row__team__logo {
    order: 3;
}

@media only screen and (max-width: 1280px) {
    .last-matches__row__team:first-of-type .last-matches__row__team__logo {
        order: 1;
    }
}

.last-matches__row__team:last-of-type .last-matches__row__team__logo {
    order: 1;
}

.last-matches__row__team:last-of-type .last-matches__row__team__name {
    order: 2;
}

.last-matches__row__team:last-of-type .last-matches__row__team__points {
    order: 3;
}

.last-matches__row__divider {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* EO: Re-Designed Last Matches */
/* Mobile Page Content - Prevent Overflow */
@media only screen and (max-width: 1280px) {
    .site-content {
        overflow: hidden;
    }
}

/* EO: Mobile Page Content - Prevent Overflow */
/* FSL Bracket */
.fsl-bracket-container {
    width: 200%;
    /* height: 50%; */
    height: 460px;
    transform: scale(0.5) translateX(-50%) translateY(-50%);
    margin-bottom: 40px;
}

.fsl-bracket {
    display: flex;
    padding: 0 12px;
    font-size: 21px;
    letter-spacing: 1px;
}

@media only screen and (max-width: 1280px) {
    .fsl-bracket {
        overflow-x: scroll;
    }
}

/* Bracket - Round  */
.fsl-bracket .round {
    width: 575px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

.fsl-bracket .round:not(:first-of-type) {
    /*padding-left: 30px;
    margin-left: 48px; */
    margin-left: 78px;
}

/* Bracket - Line */
.fsl-bracket .line {
    position: relative;
    height: 60px;
    margin: calc(55px / 2) 0;
    white-space: nowrap;
    cursor: pointer;
    transition: 50ms ease-in-out;
    text-decoration: none;
}

.fsl-bracket .line .line__team {
    transition: 50ms ease-in-out;
}

.fsl-bracket .line:hover > *:not(.line__vertical) {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
}

.fsl-bracket .line:hover .line__team {
    letter-spacing: 1px;
    /*text-indent: 12px;*/
    /*text-align: center;*/
}

/* Bracket - Line - Line Before */
.fsl-bracket .round:not(:first-child) .line:before {
    content: '';
    height: 2px;
    width: 28px;
    position: absolute;
    top: calc((60px + 2px) / 2);
    left: 0;
    background: white;
    transform: translateX(-28px);
}

.fsl-bracket .round:not(:first-child) .line--previous-match-finished:before {
    background: #F3D860;
}

/* Bracket - Line - Line After */
.fsl-bracket .round:not(:last-child) .line:after {
    content: '';
    height: 2px;
    width: 50px;
    position: absolute;
    top: calc((60px + 2px) / 2);
    right: 0;
    background: white;
    transform: translateX(50px);
    z-index: -1;
}

.fsl-bracket .round:not(:last-child) .line--winner:after,
.fsl-bracket .round:not(:last-child) .line--winner .line__vertical {
    background: #F3D860;
}

.fsl-bracket .round:not(:last-child) .line--looser:after,
.fsl-bracket .round:not(:last-child) .line--looser .line__vertical {
    background: rgba(255, 255, 255, 0.5);
}

.fsl-bracket .line .line__standing,
.fsl-bracket .line .line__team,
.fsl-bracket .line .line__wins {
    display: inline-block;
    color: white;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    transform: skewX(-20deg);
    position: relative;
    z-index: 1;
}

.fsl-bracket .line .line__standing span.content,
.fsl-bracket .line .line__team span.content,
.fsl-bracket .line .line__wins span.content {
    display: inline-flex;
    height: 100%;
    align-items: center;
    transform: skewX(20deg);
}

.fsl-bracket .line .line__standing {
    width: 85px;
    text-align: center;
    border-left: 12px solid rgba(0, 0, 0, 0.25);
    font-weight: bold;
    margin-right: 8px;
    position: relative;
}

.fsl-bracket .line:first-child .line__standing:before {
    content: 'Standing';
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    width: calc(100% + 12px);
    text-align: center;
    height: 24px;
    position: absolute;
    top: -24px;
    left: -12px;
    transform: skewX(20deg);
}

.fsl-bracket .line .line__team {
    width: 360px;
    padding-left: 28px;
    margin-left: 0px;
    margin-right: 8px;
}

.fsl-bracket .line .line__wins {
    position: relative;
    width: 75px;
    text-align: center;
}

.fsl-bracket .line .line__wins .scores {
    position: absolute;
    width: auto;
    top: 0;
    left: 85px;
    display: flex;
    flex-wrap: nowrap;
    opacity: 0;
    transition: opacity 50ms ease-in-out;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 40px 0px rgba(0, 0, 0, 0.25);
}

.fsl-bracket .line:hover .line__wins .scores {
    opacity: 1;
}

.fsl-bracket .line .line__wins .scores .scores__item {
    display: inline-flex;
    height: 60px;
    width: 85px;
    margin: 0 4px;
    align-items: center;
    justify-content: center;
    background: #202438;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fsl-bracket .line .line__wins .scores .scores__item--lost {
    color: rgba(255, 255, 255, 0.5);
}

.fsl-bracket .line .line__wins .scores .scores__item .content {
    transform: skewX(20deg);
}

/* Bracket - Line - Winner Highlight */
.fsl-bracket .line--looser .line__standing,
.fsl-bracket .line--looser .line__team,
.fsl-bracket .line--looser .line__wins {
    color: rgba(255, 255, 255, 0.5);
}

.fsl-bracket .line--winner .line__standing {
    border-color: #F3D860;
}

.line__vertical {
    position: absolute;
    width: 2px;
    height: 60px;
    background: white;
    right: -52px;
    top: 31px;
}

.line__vertical--bottom {
    bottom: 27px;
    top: unset;
    background: white;
}

/* EO: FSL Bracket */
.fsl-bracket-mobile {
    width: 100%;
    overflow: hidden;
}

.fsl-bracket-mobile .round {
    overflow: hidden;
}

.fsl-bracket-mobile .round .title {
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
}

.fsl-bracket-mobile .round .match {
    width: 100%;
    display: flex;
    padding: 20px 0;
    line-height: 42px;
    font-size: 12px;
    position: relative;
}

.fsl-bracket-mobile .round .match:not(:last-child):after {
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.fsl-bracket-mobile .round .match .middle {
    width: 60px;
    text-align: center;
    font-size: 16px;
}

.fsl-bracket-mobile .round .match .left,
.fsl-bracket-mobile .round .match .right {
    width: calc((100% - 60px) / 2);
}

.fsl-bracket-mobile .round .match .team,
.fsl-bracket-mobile .round .match .scores .item {
    background: rgba(0, 0, 0, 0.25);
    display: block;
}

.fsl-bracket-mobile .round .match .team {
    padding: 0 24px;
}

.fsl-bracket-mobile .round .match .team {
    display: block;
    text-align: right;
    white-space: nowrap;
    transform: skewX(-20deg);
}

.fsl-bracket-mobile .round .match .right .team {
    text-align: left;
}

/* Highlight Lines Before & After */
.fsl-bracket-mobile .round .match .team {
    position: relative;
}

.fsl-bracket-mobile .round .match .team:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 6px;
    transform: skewX(20deg);
}

.fsl-bracket-mobile .round .match .left .team:before {
    left: 0;
}

.fsl-bracket-mobile .round .match .right .team:before {
    right: 0;
}

.fsl-bracket-mobile .round .match .won .team:before {
    background: #D4B655;
}

.fsl-bracket-mobile .round .match .lost .team:before {
    background: black;
}

/* EO: Highlight Lines Before & After */
/* Grey Out Lost Texts */
.fsl-bracket-mobile .round .match .lost a,
.fsl-bracket-mobile .round .match .scores .lost span {
    color: rgba(255, 255, 255, 0.5);
}

/* EO: Grey Out Lost Texts */
.fsl-bracket-mobile .round .match .scores {
    padding-top: 2px;
}

.fsl-bracket-mobile .round .match .left .scores {
    text-align: right;
}

.fsl-bracket-mobile .round .match .scores .item {
    display: inline-block;
    margin: 2px;
    margin-top: 0;
    line-height: 36px;
    width: 48px;
    padding: 0 12px;
    text-align: center;
    transform: skewX(-20deg);
    white-space: nowrap;
}

/* Deskew Mobile Bracket Span Content */
.fsl-bracket-mobile .round .match span.deskew {
    display: inline-block;
    transform: skewX(20deg);
}

/* EO: Deskew Mobile Bracket Span Content */
/* Mobile Bracket Slider */
.fsl-bracket-mobile .slick-slide {
    height: unset;
}

.fsl-bracket-mobile .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 20px 0;
    padding-top: 10px;
    list-style-type: none;
}

.fsl-bracket-mobile .slick-dots li {
    cursor: pointer;
    margin: 0 6px;
}

.fsl-bracket-mobile .slick-dots li.slick-active button {
    background-color: rgba(255, 255, 255, 0.75);
}

.fsl-bracket-mobile .slick-dots button {
    background-color: rgba(255, 255, 255, 0.33);
    cursor: pointer;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 100%;
    text-indent: -9999px;
    transition: 100ms ease-in-out;
}

/* EO: Mobile Bracket Slider */
/* Account Form Mobile Fixes */
@media only screen and (max-width: 1280px) {
    .account-form .input__field__element,
    .account-form .input__field select,
    .account-form .input__field select option,
    .account-form .input__field .fsl-button {
        width: 100%;
        max-width: calc(100vw - 40px);
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .account-form .input__field .fsl-button:not(:first-child) {
        margin-top: 16px;
        min-width: unset;
        white-space: nowrap;
    }
    .wrap-mobile {
        flex-wrap: wrap;
    }
    .player {
        max-width: 100%;
    }
    .player-preview {
        margin-left: auto;
        margin-right: auto;
    }
}

/* EO: Account Form Mobile Fixes */
/* Large Scale Displays Optimization */
/* EO: Large Scale Displays Optimization */
/* Event Photos */
.photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.photos a {
    margin: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.33);
    transition: 100ms ease-in-out;
}

.photos a:hover {
    transform: scale(1.075);
}

/* EO: Event Photos */
/* News Tile Title Fix */
h2.news__article__content__title {
    margin-top: 0;
}

/* EO: News Tile Title Fix */
/* Uniform Form Boxes / Tables */
.uniform {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

textarea.uniform {
    padding: 20px 40px;
    width: 100%;
    border: none;
    min-height: 200px;
}

/* Uniform Form Boxes / Tables */
/* Monospace Font */
.monospace {
    font-family: monospace;
}

/* EO: Monospace Font */
/* Selection Colors */
::-moz-selection {
    color: black;
    background: gold;
}

::selection {
    color: black;
    background: gold;
}

/* EO: Selection Colors */
/* Text Center */
.text-center {
    text-align: center;
}

/* EO: Text Center */
/* Article Table Fix */
.article table {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0;
    border: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    padding: 24px;
}

@media only screen and (max-width: 1280px) {
    .article table {
        /*display: none;*/
    }
}

.article table th {
    font-weight: bold;
    color: #c09353;
    vertical-align: top;
}

@media only screen and (min-width: 1280px) {
    .article table th {
        word-break: keep-all;
    }
}

.article table tr {
    transition: none;
}

.article table tr:first-child:hover {
    background: none !important;
}

.article table tr br {
    display: none;
}

.article table th,
.article table td {
    padding: 0 4px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

.article table tbody {
    font-family: monospace;
    font-size: 14px;
}

/* EO: Article Table Fix */
/* Article Links Fix */
.article p a {
    text-decoration: none;
    color: #c09353;
    display: inline-block;
    position: relative;
    transition: 50ms ease-in-out;
}

.article p a:before {
    content: '» ';
}

.article p a:after {
    content: ' «';
}

.article p a:hover {
    color: #ffd9a2;
}

/* EO: Article Links Fix */
/* News Tile Fix */
.news .ad__content {
    background: none;
}

/* EO: News Tile Fix */
/* Table Overscroll */
@media only screen and (max-width: 1280px) {
    .article {
        width: 100%;
    }
}

@media only screen and (max-width: 1280px) {
    .table-overscroll table {
        min-width: 900px;
        box-shadow: none;
        margin-bottom: 0;
        margin-top: 0;
    }
}

@media only screen and (max-width: 1280px) {
    .table-overscroll {
        overflow-x: scroll;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
}

/* EO: Table Overscroll */
/* Event Photos */
.event-selection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.event-selection a {
    width: calc(100% / 3 - 20px);
    height: 160px;
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 30px solid transparent;
    margin: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    transition: 50ms ease-in-out;
}

.event-selection a:hover {
    /*border-width: 20px;*/
    transform: scale(1.05);
}

/* EO: Event Photos */
/* Qualifier Matches: Round */
.qualifier-matches__round:not(:last-child) {
    margin-bottom: 60px;
}

.qualifier-matches__round__name,
.qualifier-matches__round__info {
    text-align: center;
}

.qualifier-matches__round__name {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.qualifier-matches__round__info {
    line-height: 1.33;
}

.qualifier-matches__round__info i {
    margin-right: 6px;
    opacity: 0.75;
}

.qualifier-matches__round__games {
    margin-top: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Qualifier Matches: Game */
.qualifier-matches__game {
    display: flex;
    text-transform: uppercase;
    line-height: 42px;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0), #fff, rgba(255, 255, 255, 0));
    border-image-slice: 1;
    border-bottom: 1px solid transparent;
}

.qualifier-matches__game:first-child {
    border-top: 1px solid transparent;
}

.qualifier-matches__game__left,
.qualifier-matches__game__right {
    width: 50%;
    padding: 6px;
    margin: 0 30px;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width: 1280px) {
    .qualifier-matches__game__left,
    .qualifier-matches__game__right {
        margin: 0 6px;
        overflow: hidden;
    }
}

.qualifier-matches__game__left--lost,
.qualifier-matches__game__right--lost {
    color: rgba(255, 255, 255, 0.5);
}

a.qualifier-matches__game__left,
a.qualifier-matches__game__right {
    cursor: pointer;
    transition: 100ms ease-in-out;
}

a.qualifier-matches__game__left:hover {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.2), transparent);
}

a.qualifier-matches__game__right:hover {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
}

.qualifier-matches__game__left {
    text-align: right;
    position: relative;
}

.qualifier-matches__game__left:after,
.qualifier-matches__game__left--lost:after {
    content: 'VS';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 100%;
    position: absolute;
    right: -60px;
    top: 0;
    font-weight: bold;
    color: white;
}

/* EO: Qualifier Matches */
/* Unified Toggle Buttons */
.togglebuttons {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

@media only screen and (max-width: 1280px) {
    .togglebuttons {
        width: 100%;
        margin-top: 32px;
        margin-bottom: 32px;
        justify-content: center;
    }
}

.togglebuttons.standings-switch {
    display: none;
}

@media only screen and (max-width: 1280px) {
    .togglebuttons.standings-switch {
        display: flex;
    }
}

.togglebutton {
    display: inline-block;
    border: 0;
    outline: 0;
    font-size: 24px;
    color: white;
    background: transparent;
    transform: skewX(25deg);
}

.togglebutton:not(:last-child) {
    margin-right: 16px;
}

button.togglebutton {
    cursor: pointer;
}

button.togglebutton:not(:last-child) {
    margin-right: 4px;
}

.togglebutton--inverse {
    transform: skewX(-25deg);
}

.togglebutton--inverse .togglebutton__wrapper__content {
    transform: skewX(25deg);
}

.togglebutton__wrapper {
    background: linear-gradient(to top, #01030c, #143e63);
    position: relative;
}

.togglebutton__wrapper:before {
    content: '';
    padding: 2px 5px 5px 5px;
    width: 100%;
    height: 100%;
    top: -2px;
    left: -5px;
    position: absolute;
    z-index: -1;
    background: linear-gradient(to top, orange, grey);
    border-radius: 4px;
    opacity: 0;
}

.togglebutton--active .togglebutton__wrapper:before,
.togglebutton.active .togglebutton__wrapper:before {
    opacity: 1;
}

.togglebutton__wrapper__content {
    display: inline-flex;
    transform: skewX(-25deg);
    height: 42px;
    min-width: 90px;
    justify-content: center;
    align-items: center;
}

/* EO: unified Toggle Buttons */
/* Event Teaser */
.event-teaser {
    width: 100%;
    background: black;
    height: 100px;
    /* Important, Triangle Transforms rely on this (more or less...) */
    margin: 46px;
    font-size: 1.25rem;
    position: relative;
    text-decoration: none;
    display: block;
    text-align: center;
}

@media only screen and (max-width: 1280px) {
    .event-teaser {
        height: fit-content;
    }
}

.event-teaser__left,
.event-teaser__right {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-teaser__left {
    transform: skewX(25deg) translateX(-30px);
    /* Safe Zone Shift */
}

.event-teaser__right {
    transform: skewX(-25deg) translateX(30px);
    /* Safe Zone Shift */
}

.event-teaser__left__background,
.event-teaser__right__background {
    height: 100%;
    background: linear-gradient(to top, #01030c, #143e63);
}

.event-teaser__left__background:before,
.event-teaser__right__background:before {
    content: '';
    width: 100%;
    height: 100%;
    padding: 3px;
    padding-bottom: 5px;
    position: absolute;
    z-index: -1;
    background: linear-gradient(to top, orange, grey);
    /* Border Gradient */
    border-radius: 4px;
}

.event-teaser__left__background:before {
    left: -4px;
    bottom: -5px;
    padding-right: 0;
}

.event-teaser__right__background:before {
    top: -3px;
    right: -4px;
    padding-left: 0;
}

.event-teaser__content {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1;
    position: relative;
    text-shadow: 3px 3px 26px black;
}

@media only screen and (max-width: 1280px) {
    .event-teaser__content {
        flex-wrap: wrap;
        padding: 18px;
        padding-top: 0;
    }
}

@media only screen and (max-width: 1280px) {
    .event-teaser__content__time {
        width: 100%;
        margin-bottom: 18px;
    }
}

.event-teaser__content__time span {
    font-size: 2rem;
    display: inline-block;
    margin: 0 0.5rem;
    font-weight: bold;
    vertical-align: sub;
}

.event-teaser__content__logo {
    width: 180px;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media only screen and (max-width: 1280px) {
    .event-teaser__content__logo {
        width: 100%;
        height: 120px;
        order: -1;
    }
}

@media only screen and (max-width: 1280px) {
    .event-teaser__content__location {
        margin-bottom: 18px;
    }
}

.event-teaser__content__price {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.event-teaser--square {
    padding: 3px;
    padding-bottom: 5px;
    position: relative;
    background: linear-gradient(to top, orange, grey);
    /* Border Gradient */
    border-radius: 4px;
    margin-left: 0;
    margin-right: 0;
}

.event-teaser--square .event-teaser__content {
    background: linear-gradient(to top, #01030c, #143e63);
}

/* EO: Event Teaser */
/* Event List Price Badge */
.grid-table__row {
    position: relative;
}

.schedule-table__pricebadge {
    background: url(../img/pricebadge.svg);
    position: absolute;
    top: 15px;
    right: -80px;
    width: 80px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    height: calc(100% - 30px);
    font-weight: bold;
    text-shadow: 3px 3px 6px black;
    word-break: keep-all;
}

.schedule-table__pricebadge__text {
    font-size: 26px;
    filter: drop-shadow(3px 3px 6px black);
    text-shadow: 0px 0 31px black, 1px -1px 1px black, -1px 1px 1px black, -1px -1px 1px black;
}

/* EO: Event List Price Badge */
.livestream {
    position: relative;
}

.livestream .overlay {
    position: absolute;
    width: 420px;
    height: calc(100% - 140px);
    top: 60px;
    right: 0;
    bottom: 80px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.livestream .overlay iframe {
    border: none;
}
/* additional sytles */
.topNav{
    height: 3em;
    background: #161616;
}
.topNav__content{
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}
.seasonSelect{
    margin-right: auto;
    height: 2em;
    line-height: 2em;
    border: none;
    background-color: #161616;
    box-shadow: none;
    margin-left: 100px;
}
.seasonSelect > .list{
    top: 2em;
    border: none;
}
.topNav__login, .topNav__account, .topNav__register{
    text-decoration: none;
}
.languageChange {
    float: right;
    margin-right: 1em;
}
.languageChangeMobile{
    margin-left: auto;
    order: 2;
    padding-right: 4em;
}
.footer__legal{
    order: 2;
    text-align: center;
}
.footer__logo{
    order: 1;
}
.footer__socialmedia{
    order: 3;
}
.topNav__dropdown{
    height: 100%;
    padding: 1em;
}
.menu__submenu {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.9);
    z-index: 2;
    top: 3em;
    right: 0;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.9) !important;
}
.topNav__dropdown:hover .menu__submenu, .menu__submenu:hover {
    display: flex;
    opacity: 0.9;
}
@media only screen and (max-width: 1280px) {
    .topNav{
        display: none;
    }
    .seasonSelect{
        margin-left: 0;
    }
}
.admin__notes{
    width: 100%;
    margin-top: 10px;
    background: #232323;
    color: #ffffff;;
    padding: 1em;
}
.admin__comment__group {
    margin-top: 2em;
}
.admin__comment__submit {
    margin-top: 2em;
}
.randomizer{
    box-shadow: none;
    background: none;
}
.auto__reject{
    float: right;
}
.playins-bracket{
    justify-content: center;
}

.playins-bracket .round .line:before {
    content: '';
    height: 2px;
    width: 28px;
    position: absolute;
    top: calc((60px + 2px) / 2);
    left: 0;
    background: white;
    transform: translateX(-28px);
}
.playins-bracket .round .line.no-before:before {
    content: '';
    height: 0 !important;
    width: 28px;
    position: absolute;
    top: calc((60px + 2px) / 2);
    left: 0;
    background: white;
    transform: translateX(-28px);
}
.playins-bracket .round {
    width: 540px;
}
label.disabled{
    pointer-events: none;
}