/*import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700|Teko:600");*/

@font-face {
    font-family: 'Exo 2';
    src: url('/font/static/Exo2-Regular.ttf') format('truetype');
    font-display: swap;
}

.footer {
    font-size: 12px;
    margin-top: 80px;
    padding: 10px 0;
    border-top: 2px solid var(--border-color);
}

.footer p {
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 1240px) {

    .footer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 80px;
    }
}


.form-field {
    margin-bottom: 20px;
}

.redAccent{
    text-decoration: underline;
    text-decoration-color: #b33834;
    text-underline-offset: 6px;
}

.form-control {
    width: 100%;
    background: #2b2d3a;
    border: 0;
    padding: 10px;
    color: var(--white);
    font-size: 14px;
}

.form-control:focus, .form-control:active {
    outline: none;
}

.form-control::placeholder {
    color: #5c627e;
}

.clubs-form {
    width: 100%;
    position: relative;
    display: none;
}
@media (min-width: 990px) {

    .clubs-form {
        display: block;
    }
}

.clubs-form input {
    width: 100%;
    background: #2b2d3a;
    border: 0;
    padding: 9px 200px 9px 25px;
    border-radius: 1000px;
    color: var(--white);
    font-size: 14px;
}

.clubs-form input:focus, .clubs-form input:active {
    outline: none;
}

.clubs-form input::placeholder {
    color: #5c627e;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #FFF;
}


.form-title {
    margin: 0 0 40px;
    font-size: 36px;
}


.form-alert:not(:empty) {
    background: #21212a;
    color: #FFF;
    padding: 10px;
    margin: 10px 0 20px;
    border-left: 4px solid #b33834;
}


.form-hint {
    font-size: 12px;
    font-style: italic;
    margin-top: 10px;
}


.form-danger-zone {
    border: 4px solid #b33834;
    padding: 10px;
    margin-top: 40px;
    font-size: 14px;
}

.form-danger-zone a {
    color: #FFF;
}


select {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: .75em 2.5em .75em .75em;
    border: 0;
    border-bottom: 2px solid var(--border-color);
    background: var(--graph-bg) url(icons/icon-select.svg) no-repeat;
    background-position: right 10px center;
    background-size: 12px auto;
    font-size: 16px;
    color: var(--text-color);
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.1), 0px 3px 27px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

select:hover {
    border-color: var(--text-color);
}

select:focus {
    outline: none;
}

.theme-light select {
    border-color: var(--title-color);
}

select option {
    color: var(--text-color);
    background: var(--bg-color);
}

select option[disabled] {
    color: #5c6172;
}



.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    -webkit-appearance: none;
    appearance: none;
    width: 1rem;
    height: 1rem;
    margin: 0;
    border-radius: 2px;
    border: 2px solid #8f94a5;
    cursor: pointer;
}

.checkbox input:checked {
    background: #FFF;
    box-shadow: inset 0 0 0 2px #8f94a5;
}

.checkbox input:focus {
    outline: none;
}

.checkbox label {
    padding-left: 1rem;
    font-size: 12px;
    cursor: pointer;
}


* {
    box-sizing: border-box;
}


html {
    margin: 0;
    padding: 0;
}


body {
    --primary-dark: #1d1f27;
    --bg-color: #21212a;
    --border-color: #434355;
    --text-color: #8f94a5;
    --title-color: #FFF;
    --graph-bg: #000000;
    --graph-color: #bdc0cf;
    --primary: #313443;
    --secondary: #363848;
    --white: #FFF;
    --green: #357b35;
    --red: #b33834;
    --orange: #ef9206;
    --gold: #ffc000;
    --silver: #d0d0d0;
    --bronze: #c47800;
    margin: 0;
    background-color: var(--bg-color);
    background-image: url(layout/bg-body.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    font-family: "Exo 2", sans-serif;
    color: var(--text-color);
    font-weight: 300;
    max-width: 100%;
    overflow-x: hidden;
}

body.theme-light {
    --primary-dark: #DEDEDE;
    --bg-color: #F1F1F1;
    --border-color: #FFF;
    --text-color: #313131;
    --title-color: #212121;
    background-image: url(../images/bg-pattern-theme-light.html);
}

body.menu {
    overflow: hidden;
}


a {
    color: var(--text-color);
}


code {
    font-family: monospace;
    font-size: 1em;
    padding: 2px 4px;
    color: var(--text-color);
    background-color: #313443;
    border-radius: 2px;
}


pre {
    background: #313443;
    border: 1px solid #434355;
    padding: .5rem;
    line-height: 2rem;
}

pre code {
    padding: 0;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;
}


blockquote {
    font-size: 14px;
    font-style: italic;
    line-height: 1.5em;
    background: rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    padding: 1em 1em 1em 2em;
    border-left: 3px solid var(--border-color);
}


.link-small {
    display: inline-block;
    margin-top: 1em;
    font-size: 12px;
    line-height: 1.25em;
    text-decoration: none;
    box-shadow: 0 1px var(--border-color);
}


.content-page p {
    margin: 20px 0;
}


.wrapper {
    max-width: calc(1640px + 10vw);
    padding: 0 5vw;
    margin: 0 auto;
}

.wrapper--tiny {
    padding: 0;
    max-width: 420px;
    margin: 0 auto;
}

.wrapper--small {
    padding: 0;
    max-width: 650px;
    margin: 0 auto;
}

.wrapper--medium {
    padding: 0;
    max-width: 950px;
    margin: 0 auto;
}

.wrapper--fullScreen{
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.logo {
    text-align: center;
    padding: 60px 0 30px;
}
@media (min-width: 1240px) {

    .logo {
        padding: 120px 0 60px;
    }
}

.logo h1 {
    font-weight: 300;
    margin: 0;
}

.logo a {
    color: #FFF;
    text-decoration: none;
}

.theme-light .logo a {
    color: var(--title-color);
}

.logo a:hover, .logo a:active {
    text-decoration: none;
}

.logo__sub-title, .social__title {
    display: block;
    font-size: 12px;
    color: var(--text-color);
    letter-spacing: .9px;
    padding: 0 20px;
    margin-top: 5px;
    font-weight: 300;
}
@media (min-width: 1240px) {

    .logo__sub-title, .social__title {
        font-size: 16px;
    }
}


.columns {
    display: flex;
}

.columns--abilities {
    flex-wrap: wrap;
    justify-content: center;
}

.columns--direction-column {
    flex-direction: column;
}

.columns .columns__column {
    width: 50%;
}

.columns .columns__column--half {
    width: 25%;
}

.columns .columns__column--third {
    width: 33.333%;
}

.columns--collapsing {
    display: block;
}
@media (min-width: 640px) {

    .columns--collapsing {
        display: flex;
    }
}

.columns--collapsing .columns__column {
    width: 100%;
}
@media (min-width: 640px) {

    .columns--collapsing .columns__column {
        width: 50%;
    }

    .columns--collapsing .columns__column:first-child {
        padding-right: 10px;
    }

    .columns--collapsing .columns__column:last-child {
        padding-left: 10px;
    }
}

.columns--center {
    justify-content: center;
}


.bg-basic {
    background: #FFF !important;
}


.color-basic {
    color: #FFF !important;
}

.theme-light .color-basic {
    color: var(--text-color) !important;
}


.border-basic {
    border: 1px solid #FFF !important;
}


.bg-rare {
    background: #56a8ff !important;
}


.color-rare {
    color: #56a8ff !important;
}


.border-rare {
    border: 1px solid #56a8ff !important;
}


.bg-epic {
    background: #f128f1 !important;
}


.color-epic {
    color: #f128f1 !important;
}


.border-epic {
    border: 1px solid #f128f1 !important;
}


.bg-legendary {
    background: orange !important;
}


.color-legendary {
    color: orange !important;
}


.border-legendary {
    border: 1px solid orange !important;
}


.bg-green {
    background: #357b35 !important;
}


.color-green {
    color: #357b35 !important;
}


.border-green {
    border: 1px solid #357b35 !important;
}


.bg-red {
    background: #b33834 !important;
}


.color-red {
    color: #b33834 !important;
}


.border-red {
    border: 1px solid #b33834 !important;
}


.bg-discord {
    background: #7289DA !important;
}


.color-discord {
    color: #7289DA !important;
}


.border-discord {
    border: 1px solid #7289DA !important;
}


.svg-badge-basic {
    color: #FFF;
}

.svg-badge-basic svg {
    fill: var(--graph-color);
}

.svg-badge-basic .st0,
.svg-badge-basic .st1,
.svg-badge-basic .st2 {
    stroke: var(--graph-color);
}


.svg-badge-bronze {
    color: #c47800;
}

.svg-badge-bronze svg {
    fill: #c47800;
}

.svg-badge-bronze .st0,
.svg-badge-bronze .st1,
.svg-badge-bronze .st2 {
    stroke: #c47800;
}


.svg-badge-silver {
    color: #d0d0d0;
}

.svg-badge-silver svg {
    fill: #d0d0d0;
}

.svg-badge-silver .st0,
.svg-badge-silver .st1,
.svg-badge-silver .st2 {
    stroke: #d0d0d0;
}


.svg-badge-gold {
    color: #ffc000;
}

.svg-badge-gold svg {
    fill: #ffc000;
}

.svg-badge-gold .st0,
.svg-badge-gold .st1,
.svg-badge-gold .st2 {
    stroke: #ffc000;
}

@media (min-width: 1240px) {

    .text-right {
        text-align: right;
    }
}


.text-left {
    text-align: left !important;
}


.center-element {
    display: flex;
    align-items: center;
    justify-content: center;
}


.no-text-transform {
    text-transform: none;
    line-height: 1.5em;
}


.tiny-help {
    display: block;
    font-size: 11px;
    font-style: italic;
    text-transform: none;
    margin: 5px 0;
}


hr {
    margin: 20px 0;
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}


.desktop-only {
    display: none !important;
}
@media (min-width: 990px) {

    .desktop-only {
        display: block !important;
    }
}


.below-desktop-only {
    display: block !important;
}
@media (min-width: 990px) {

    .below-desktop-only {
        display: none !important;
    }
}


.medium-only {
    display: none;
}
@media (min-width: 640px) and (max-width: 1099px) {

    .medium-only {
        display: block;
    }
}

@media (min-width: 640px) {

    .mobile-only {
        display: none !important;
    }
}


big {
    font-size: 16px;
}
@media screen and (min-width: 992px) {

    big {
        font-size: larger;
    }
}


.header {
    width: 100%;
    z-index: 1000;
    transition: top 250ms;
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.15), 0px 10px 50px rgba(0, 0, 0, 0.35);
}
@media (min-width: 990px) {

    .header--small {
        top: -47px;
    }
}

.header svg path {
    fill: currentColor;
}


.header__top {
    background: var(--secondary);
    display: none;
}
@media (min-width: 990px) {

    .header__top {
        display: block;
    }
}

.header__top .wrapper {
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.header__bottom {
    background: var(--primary);
}

.header__bottom .wrapper {
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.header__content {
    width: calc(50% - 50px);
}

.header__content--search {
    display: flex;
    align-items: center;
}
@media (min-width: 990px) {

    .header__content--search {
        padding-left: 15px;
    }

    .showMobile{
        display: none;
    }

}

@media (max-width: 990px) {

    .showMobile{
        display: block;
    }

    .showMobile > a{
        margin-right: 0;
        text-decoration: none;
        padding: 20px;
        color: var(--white);
    }

}

.header__content--right {
    text-align: right;
}

.header__content--social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header__content--social-icons > a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    transition: color 250ms ease;
}

.header__content--social-icons > a:hover {
    color: var(--white);
}

.header__content--social-icons svg {
    width: 20px;
    height: 23px;
}


.header__content-navigation a {
    display: block;
    width: 100%;
    margin-right: 20px;
    font-size: 15px;
    color: #abafbc;
    text-decoration: none;
    transition: color 250ms ease;
}
@media (min-width: 990px) {

    .header__content-navigation a {
        width: auto;
        font-size: 13px;
    }
}

@media (min-width: 990px) {

    .hideMainMenuContainerOnLargeScreen {
        display: none !important;
    }
}

@media (min-width: 1240px) {

    .header__content-navigation a {
        font-size: 15px;
    }
}

.header__content-navigation a:hover {
    color: #FFF;
}

.acc__div a:hover{
    color: #FFF;
}

.header__content-navigation a.active {
    color: #FFF;
}

.profile_results a {
    color: #FFF;
}

.profile_results a:hover {
    color: #FFF;
}

.profile_results a.active {
    color: #FFF;
}

.header__logo {
    width: 112px;
    display: flex;
    justify-content: center;
    position: relative;
}

.header__logo::after {
    content: "";
    position: absolute;
    background: var(--primary);
    border-radius: 100%;
    z-index: -1;
    transition: all 250ms ease;
    bottom: -28px;
    left: -2px;
    width: 115px;
    height: 115px;
}
@media (min-width: 990px) {

    .header__logo::after {
        bottom: -15px;
        left: -7px;
        width: 125px;
        height: 125px;
    }
}
@media (min-width: 990px) {

    .header--small .header__logo::after {
        bottom: -28px;
        left: -2px;
        width: 115px;
        height: 115px;
    }
}


.header__logo-top {
    font-size: 12px;
    font-weight: 300;
    color: #b9bdc7;
}

.header__logo-top a {
    font-size: 16px;
    color: #f2f3f5;
    text-decoration: none;
}

.header__logo-top a:hover, .header__logo-top a:active {
    color: #FFF;
}


.header__action {
    font-size: 14px;
    text-decoration: none;
    padding-right: 10px;
    border-right: 1px solid #4e4e63;
}


.player-form {
    width: 100%;
    position: relative;
    display: none;
}
@media (min-width: 990px) {

    .player-form {
        display: block;
    }
}

.player-form input {
    width: 100%;
    background: #2b2d3a;
    border: 0;
    padding: 9px 200px 9px 25px;
    border-radius: 1000px;
    color: var(--white);
    font-size: 14px;
}

.player-form input:focus, .player-form input:active {
    outline: none;
}

.player-form input::placeholder {
    color: #5c627e;
}

.player-form--large {
    display: block;
}

.player-form--large input {
    padding: 15px 110px 15px 20px;
    font-size: 17px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid #434355;
}
@media screen and (min-width: 650px) {

    .player-form--large input {
        padding: 20px 200px 20px 40px;
        font-size: 21px;
    }
}

.player-form--large .player-platforms {
    height: 51px;
}
@media screen and (min-width: 650px) {

    .player-form--large .player-platforms {
        height: 100%;
    }
}

.player-form--large .player-submit {
    background: var(--red);
    color: var(--white);
}

.player-form--large .player-submit--desktop {
    display: none;
}
@media screen and (min-width: 650px) {

    .player-form--large .player-submit--desktop {
        display: block;
    }
}

.player-form--large .player-submit--mobile {
    display: block;
    padding: 15px 20px !important;
    width: 100%;
    margin: 0;
    margin-top: 15px;
}
@media screen and (min-width: 650px) {

    .player-form--large .player-submit--mobile {
        display: none;
    }
}

.player-form--home input {
    padding: 15px 110px 15px 20px;
    font-size: 17px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid #434355;
}
@media (min-width: 768px) {

    .player-form--home input {
        padding: 20px 200px 20px 40px;
        font-size: 21px;
    }
}

.player-form--home .player-platforms {
    height: 51px;
}
@media (min-width: 768px) {

    .player-form--home .player-platforms {
        height: 100%;
    }
}

.player-form--home .player-submit {
    background: var(--red);
    color: var(--white);
}

.player-form--home .player-submit--desktop {
    display: none;
}
@media (min-width: 768px) {

    .player-form--home .player-submit--desktop {
        display: block;
    }
}

.player-form--home .player-submit--mobile {
    display: block;
    padding: 15px 20px !important;
    width: 100%;
    margin: 0;
    margin-top: 15px;
}
@media (min-width: 768px) {

    .player-form--home .player-submit--mobile {
        display: none;
    }
}


.player-platforms {
    position: absolute;
    top: 0;
    right: 6px;
    display: flex;
    height: 100%;
    align-items: center;
}

.player-form--large .player-platforms {
    right: 20px;
}


.platform__icon {
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.platform__icon svg {
    width: auto;
    height: 16px;
    transition: color 250ms ease;
    cursor: pointer;
}

.platform__icon svg path {
    fill: currentColor;
}

.platform__icon.active svg {
    color: var(--white);
}

.platform__icon:hover svg {
    color: var(--white);
}


.logo__image img {
    width: 47px;
    margin-bottom: -20px;
    transition-property: margin-bottom, width;
    transition-duration: 250ms;
    will-change: margin-bottom, width;
}
@media (min-width: 990px) {

    .logo__image img {
        width: 87px;
        margin-bottom: 0;
    }
}
@media (min-width: 990px) {

    .header--small .logo__image img {
        width: 47px;
        margin-bottom: -20px;
    }
}


.player-submit {
    background: var(--primary);
    border: 0px;
    border-radius: 1000px;
    padding: 5px 14px;
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    margin-left: 10px;
    transition: all 250ms ease;
}

.player-submit:focus, .player-submit:active {
    outline: none;
}

.player-submit:hover {
    background: var(--red);
    color: var(--white);
}

.player-submit--mobile {
    display: none;
}

.player-form--large .player-submit {
    padding: 10px 20px;
}


.header-mobile__right {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}
@media (min-width: 990px) {

    .header-mobile__right {
        display: none;
    }
}

.header-mobile__right svg {
    width: 20px;
    height: 20px;
    margin-left: 15px;
}


table {
    border-collapse: collapse;
    width: 100%;
}


th {
    padding: .5em .5em;
    background: #313443;
    border: 0;
    text-align: left;
}


td {
    text-align: left;
    padding: .25em .5em;
    border: 0;
}


tr:nth-child(odd) td {
    background: #282833;
}


tr:hover td {
    background: #363848;
}


h1,
h2,
h3,
h4,
h5 {
    color: var(--title-color);
    font-weight: 300;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small {
    color: var(--text-color);
    font-size: .5em;
}


h1 {
    font-size: 40px;
}
@media (min-width: 826.6666666667px) {

    h1 {
        font-size: 4.8387096774vw;
    }
}
@media (min-width: 1240px) {

    h1 {
        font-size: 60px;
    }
}


h2 {
    font-size: 24px;
}
@media (min-width: 620px) {

    h2 {
        font-size: 3.8709677419vw;
    }
}
@media (min-width: 1240px) {

    h2 {
        font-size: 48px;
    }
}


h3 {
    font-size: 21px;
}
@media (min-width: 868px) {

    h3 {
        font-size: 2.4193548387vw;
    }
}
@media (min-width: 1240px) {

    h3 {
        font-size: 30px;
    }
}


h4 {
    font-size: 21px;
}
@media (min-width: 868px) {

    h4 {
        font-size: 2.4193548387vw;
    }
}
@media (min-width: 1240px) {

    h4 {
        font-size: 30px;
    }
}


h5 {
    font-size: 18px;
    margin: 40px 0 10px;
}


.heading {
    margin: 10px 0 60px;
    text-align: center;
}
@media (min-width: 1100px) {

    .heading {
        margin: 20px 0 100px;
    }
}

.heading--small {
    margin: 0;
}

.heading--half-margin {
    margin: 80px 0 40px;
}


.heading__title {
    margin: 0;
    line-height: .75em;
    white-space: nowrap;
}

.heading__title a {
    color: var(--title-color);
    text-decoration: none;
}

.heading__title small {
    font-weight: 300;
    font-size: 1em;
    color: var(--text-color);
}


.title-small {
    font-weight: 300;
    color: var(--text-color);
    margin-top: 0;
}


h3.heading__title {
    font-size: 16px;
}
@media (min-width: 900px) {

    h3.heading__title {
        font-size: 21px;
    }
}


.icon-title {
    display: flex;
    align-items: center;
    margin: 40px 0 10px;
}

.icon-title svg {
    margin-right: .5em;
}

.icon-title svg path {
    fill: #FFF;
}

.icon-title h5 {
    margin: 0;
}


.ad-container {
    position: relative;
    display: grid;
    grid-template: "title" "ad-desktop" "ad-mobile" "background";
    align-items: center;
    justify-content: center;
    max-width: 850px;
    margin: 40px -5vw 0;
    background: var(--primary-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.ad-container:first-child {
    margin: 0 -5vw;
}
@media (min-width: 500px) {

    .ad-container {
        margin: 40px auto 0;
        box-shadow: inset 0 0 0 1px var(--border-color);
        border: 0;
    }

    .ad-container:first-child {
        margin: 0 auto;
    }
}
@media (min-width: 900px) {

    .ad-container {
        margin: 80px auto 0;
    }

    .ad-container:first-child {
        margin: 20px auto 0;
    }
}


.ad-container__title {
    grid-area: title;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
}


.adsbygoogle:not(.ad-container) {
    grid-area: ad-desktop;
}
@media (min-width: 500px) {

    .adsbygoogle:not(.ad-container) {
        margin-bottom: 10px;
    }
}


.profile-content__sidebar .ad-container {
    margin: 0 -5vw 20px;
}
@media screen and (min-width: 500px) {

    .profile-content__sidebar .ad-container {
        margin: 20px 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media screen and (min-width: 900px) {

    .profile-content__sidebar .ad-container {
        flex: 0 0 calc(100% - 17px);
        max-width: calc(100% - 17px);
    }
}
@media screen and (min-width: 1230px) {

    .profile-content__sidebar .ad-container {
        flex: 0 0 calc(100% - 40px);
        max-width: calc(100% - 40px);
        margin-bottom: 0;
    }
}


.admin-navigation {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.admin-navigation a {
    display: block;
    padding: .25em .5em;
    margin-right: .5em;
    border: 1px solid #434355;
    border-radius: 3px;
    background: #313443;
    color: #8f94a5;
    text-decoration: none;
}

.admin-navigation a.active {
    border-color: #8f94a5;
    color: #FFF;
}


.alert {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #434355;
    text-align: center;
    color: #FFF;
}

.alert--success {
    border: 0;
    text-align: left;
    background: #357b35;
    color: #FFF;
}

.alert--error {
    border: 0;
    text-align: left;
    background: #b33834;
    color: #FFF;
}


.attachments-table {
    display: flex;
    margin: 10px 0;
}


.attachments-table__item {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    padding: .25rem;
    border: 1px dashed #797c8d;
    background: rgba(33, 33, 42, 0.5) url(bg-pattern-light.jpg);
    margin-right: 2px;
    cursor: pointer;
}

.theme-light .attachments-table__item {
    border: 1px dashed rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.15);
}

.attachments-table__item--active {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
}

.attachments-table__item[class*="border-"] {
    background: rgba(255, 255, 255, 0.2);
}

.attachments-table__item img {
    width: 100%;
    height: auto;
}

.theme-light .attachments-table__item img {
    filter: brightness(20%);
}

.attachments-table__item span:first-child {
    font-weight: bold;
}


.attachments-table__dropdown {
    position: relative;
    display: none;
    width: 200px;
    background: var(--primary-dark);
    border: 1px solid var(--border-color);
    overflow: auto;
    margin-top: -100%;
    transform: translateX(calc(-50% + 1rem)) translateY(calc(-100% - 20px));
    z-index: 10;
}

.attachments-table__dropdown.active {
    display: block;
}


.attachments-table__dropdown-item {
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--primary-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 6.6666666667px 5px;
    font-size: 11px;
    cursor: pointer;
}

.attachments-table__dropdown-item--remove {
    display: none;
}

.attachments-table__item[class*="border-"] .attachments-table__dropdown-item--remove {
    display: block;
}

.attachments-table__dropdown-item:hover, .attachments-table__dropdown-item:active {
    background: var(--primary-dark);
}

.attachments-table__dropdown-item:last-of-type {
    border-bottom: 0;
}

.attachments-table__dropdown-item img {
    height: 3em;
    width: auto;
    margin-right: .5em;
}


[data-modify-target] {
    display: flex;
}


.banner {
    display: flex;
    flex-direction: column;
    position: relative;
    height: auto;
    width: 100%;
    padding: 25px;
    margin-top: 40px;
    text-decoration: none;
    background: url(layout/banner.jpg);
    background-size: cover;
    background-position: center;
}
@media (min-width: 768px) {

    .banner {
        height: 100px;
        padding: 40px;
        margin-top: 80px;
    }
}
@media (min-width: 1100px) {

    .banner {
        margin-top: 120px;
        padding: 60px 80px;
    }
}

.banner h3 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0;
}
@media (min-width: 1100px) {

    .banner h3 {
        font-size: 24px;
    }
}

.banner h2 {
    font-weight: 700;
    font-size: 36px;
    margin: 0;
}
@media (min-width: 768px) {

    .banner h2 {
        margin: 0 0 0 20px;
    }
}
@media (min-width: 1100px) {

    .banner h2 {
        font-size: 48px;
    }
}
@media (min-width: 1240px) {

    .banner h2 {
        margin: 0 0 0 80px;
    }
}

.banner img {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 200px;
    display: none;
}
@media (min-width: 768px) {

    .banner img {
        display: block;
    }
}
@media (min-width: 1100px) {

    .banner img {
        width: auto;
    }
}
@media (min-width: 1240px) {

    .banner img {
        right: 80px;
    }
}


.banner--search {
    justify-content: center;
    align-items: flex-start;
    height: 100px;
    padding: 60px 0;
    margin-bottom: 100px;
}
@media (min-width: 768px) {

    .banner--search {
        margin-bottom: 0;
    }
}
@media (min-width: 1100px) {

    .banner--search {
        padding: 60px 80px;
    }
}


.banner--search__content {
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}
@media (min-width: 768px) {

    .banner--search__content {
        max-width: 640px;
        padding: 0;
    }
}


.banner--search__title {
    margin: 80px 0 30px;
}

.banner--search__title::after {
    display: block;
    content: "";
    height: 2px;
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.25);
}

.banner--search__title h2 {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    margin-top: 40px;
    padding-right: 20px;
    font-size: 26px;
    font-weight: 300;
}
@media (min-width: 768px) {

    .banner--search__title h2 {
        margin-top: -20px;
        font-size: 36px;
    }
}
@media (min-width: 1240px) {

    .banner--search__title h2 {
        margin-left: 0;
    }
}


.banner--event {
    flex-direction: column;
    align-items: flex-start;
    height: 130px;
    padding: 37px 15px;
}
@media screen and (min-width: 640px) {

    .banner--event {
        padding: 37px 30px;
    }
}
@media screen and (min-width: 1100px) {

    .banner--event {
        flex-direction: row;
        align-items: center;
        height: 130px;
        padding: 60px 50px;
    }
}

.banner--event h2 {
    text-transform: uppercase;
    margin: 0;
}
@media screen and (min-width: 1100px) {

    .banner--event h2 {
        margin: 0 0 0 20px;
    }
}
@media screen and (min-width: 1240px) {

    .banner--event h2 {
        margin: 0 0 0 80px;
    }
}


.banner--gunslinger .banner__image {
    right: 0px;
    width: 360px;
}
@media screen and (min-width: 1100px) {

    .banner--gunslinger .banner__image {
        width: auto;
        right: -35px;
    }
}
@media screen and (min-width: 1300px) {

    .banner--gunslinger .banner__image {
        right: 10px;
    }
}


.banner--season-2,
.banner--season-3 {
    background-image: url(layout/banner_2.jpg);
    flex-direction: column;
    align-items: flex-start;
    height: 130px;
    padding: 37px 15px;
}
@media screen and (min-width: 640px) {

    .banner--season-2,
    .banner--season-3 {
        padding: 37px 30px;
    }
}
@media screen and (min-width: 1100px) {

    .banner--season-2,
    .banner--season-3 {
        flex-direction: row;
        align-items: center;
        height: 130px;
        padding: 60px 30px;
    }
}
@media screen and (min-width: 1240px) {

    .banner--season-2,
    .banner--season-3 {
        padding: 60px 50px;
    }
}

.banner--season-2 h2,
.banner--season-3 h2 {
    margin: 0;
}
@media screen and (min-width: 1100px) {

    .banner--season-2 h2,
    .banner--season-3 h2 {
        margin: 0 0 0 20px;
    }
}
@media screen and (min-width: 1240px) {

    .banner--season-2 h2,
    .banner--season-3 h2 {
        margin: 0 0 0 80px;
    }
}

.banner--season-2 .banner__image,
.banner--season-3 .banner__image {
    right: 5px;
    width: 360px;
}
@media screen and (min-width: 1100px) {

    .banner--season-2 .banner__image,
    .banner--season-3 .banner__image {
        width: auto;
        right: 10px;
    }
}
@media screen and (min-width: 1300px) {

    .banner--season-2 .banner__image,
    .banner--season-3 .banner__image {
        right: 10px;
    }
}


.banner--season-3 {
    background-image: url(layout/banner_3.jpg);
    margin-bottom: 80px;
    justify-content: center;
}
@media screen and (min-width: 1100px) {

    .banner--season-3 {
        justify-content: flex-start;
    }
}

.banner--season-3 h2 {
    color: #000;
}


.bar-graph {
    display: grid;
    grid-template: "label label" "bar value";
    grid-template-columns: 3fr 1fr;
    align-items: center;
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
}
@media (min-width: 640px) {

    .bar-graph {
        grid-template: "label bar value";
        grid-template-columns: 9fr 9fr 4fr;
        margin-bottom: 5px;
    }
}
@supports (-ms-ime-align: auto) {

    .bar-graph {
        display: flex;
        flex-wrap: wrap;
    }
}


.bar-graph__label {
    grid-area: label;
    position: relative;
    margin-bottom: 5px;
}
@media (min-width: 640px) {

    .bar-graph__label {
        margin-bottom: 0;
    }
}
@supports (-ms-ime-align: auto) {

    .bar-graph__label {
        flex: 0 0 40%;
        margin-bottom: 5px;
    }
}


.bar-graph__bar {
    grid-area: bar;
    width: 100%;
    height: 6px;
    background: var(--graph-bg);
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    overflow: hidden;
}
@supports (-ms-ime-align: auto) {

    .bar-graph__bar {
        flex: 0 0 40%;
    }
}


.bar-graph__line {
    display: flex;
    justify-content: flex-end;
    width: 0;
    height: 100%;
    background: var(--graph-color);
    clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    transition: width 200ms;
}

.bar-graph__line.modify-full-width-placeholder {
    width: 100% !important;
}


.bar-graph__value {
    grid-area: value;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: right;
    margin-bottom: -.25em;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 12px;
    color: var(--title-color);
}
@supports (-ms-ime-align: auto) {

    .bar-graph__value {
        flex: 0 0 20%;
    }
}

.bar-graph__value [class^="compare-"],
.bar-graph__value [class^="modify-"] {
    margin-right: .5em;
}


.bar-graph__compare,
.bar-graph__modify {
    height: 100%;
    width: 0;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    transition: width 200ms;
}

.bar-graph__compare--positive,
.bar-graph__modify--positive {
    background: #357b35;
}

.bar-graph__compare--negative,
.bar-graph__modify--negative {
    background: #b33834;
}


.button {
    position: relative;
    display: inline-block;
    height: 40px;
    padding: 0 20px 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 40px;
    text-decoration: none;
    background: linear-gradient(135deg, #b33834 50%, #cc524e 100%);
    border: 0;
    border-bottom: 1px solid #cc524e;
    color: #FFF;
    transition: padding 100ms;
    cursor: pointer;
    will-change: padding;
}
@supports (-ms-ime-align: auto) {

    .button {
        padding-right: 20px;
    }
}

.button:hover:not([disabled]), .button:active:not([disabled]) {
    color: var(--title-color);
    border-color: #9f322e;
    background: #9f322e;
    padding-left: 26.6666666667px;
}

.button:hover:not([disabled]) .button__tooltip, .button:active:not([disabled]) .button__tooltip {
    display: block;
}

.button--small {
    height: 32px;
    padding: 0 50px 0 10px;
    border-color: var(--border-color);
    background-color: var(--border-color);
    box-shadow: none;
    font-size: 12px;
    line-height: 32px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 32px) 100%, 0 100%);
}
@supports (-ms-ime-align: auto) {

    .button--small {
        padding-right: 10px;
    }
}

.button--small:hover:not([disabled]), .button--small:active:not([disabled]) {
    padding-left: 16px;
}

.button--smaller {
    padding: 6.6666666667px 20px;
    font-size: 10px;
    font-weight: 300;
}

.button--primary {
    background: #b33834;
    color: #FFF;
    border-color: #b33834;
}

.theme-light .button--primary {
    background: #b33834;
    color: #FFF;
}

.button--primary:hover {
    background: #9f322e;
}

.button--secondary {
    background: #313443;
    border: 0;
    color: var(--text-color);
    margin-bottom: 20px;
}

.button--secondary:hover {
    color: var(--title-color);
    background: #3c3f52;
}

.button--compare {
    background: #a12aac;
    display: inline-flex;
    align-items: center;
}

.button--compare:not([disabled]):hover, .button--compare:not([disabled]):active {
    background: #8e2598;
}

.button--compare[disabled] {
    opacity: .5;
    cursor: default;
}

.button--compare[disabled]:hover, .button--compare[disabled]:active {
    background: #a12aac;
    padding-left: 10px;
}

.button--full-width {
    width: 100%;
    text-align: center;
}

.button[disabled] {
    opacity: .25;
    cursor: not-allowed;
}

.button img,
.button svg {
    display: block;
    margin-right: 1em;
}


.button-alternative {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #3c3f52;
    border-radius: 3px;
    background: #262934;
    color: var(--text-color);
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.button-alternative:hover:not([disabled]), .button-alternative:active:not([disabled]) {
    background: #313443;
    color: #FFF;
}

.button-alternative[disabled] {
    cursor: not-allowed;
}

.button-alternative--primary {
    background: var(--red);
    color: var(--white);
    border: 1px solid #c63f3b;
}

.button-alternative--primary:hover:not([disabled]), .button-alternative--primary:active:not([disabled]) {
    background: #c63f3b;
}

.button-alternative--huge {
    font-size: 18px;
}

.button-alternative[disabled] {
    opacity: .75;
}


.button__tooltip {
    display: none;
    position: absolute;
    top: -1px;
    left: -.5em;
    transform: translateX(-100%);
    padding: .25em .5em;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    z-index: 10;
}


.btn-link {
    color: #c8cad2;
    text-decoration: none;
    font-size: 12px;
}

.btn-link:hover, .btn-link:active {
    color: #FFF;
}


.circle-graph {
    position: relative;
    width: 12vw;
    height: 12vw;
    max-width: 10.5rem;
    max-height: 10.5rem;
}


.circle-graph__label {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.circle-graph__label h4 {
    position: relative;
    display: block;
    margin: 0 0 -.25em;
    text-align: center;
    font-weight: 700;
    font-family: "Teko", sans-serif;
    color: var(--title-color);
}

.circle-graph__label h4 .modify-element {
    position: absolute;
    font-size: 18px;
    line-height: 1em;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
}

.circle-graph__label [class^="compare-"] {
    font-size: 13px;
    position: absolute;
    width: 100%;
    text-align: center;
}


.circle-graph__graph {
    position: absolute;
    width: 100%;
    height: 100%;
}


.circle-graph__bar {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--graph-bg);
    background-image: conic-gradient(var(--graph-color) calc(var(--value) * 1%), var(--graph-bg) 0%);
    transform: scale(-1, 1);
}

.circle-graph__bar::after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bg-color);
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border-radius: 50%;
}


.circle-graph__extra-modifier {
    position: absolute;
    right: 0;
    bottom: .5em;
    transform: translateX(calc(100% + .25em));
    font-size: 12px;
    color: #abafbc;
}


.compare-float {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 0 2.5em 0 .75em;
    border: 1px solid var(--border-color);
    border-bottom: 0;
    background: var(--bg-color);
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.compare-float span {
    display: block;
    padding: .5em 0;
}
@media (min-width: 640px) {

    .compare-float span {
        display: flex;
        align-items: center;
    }
}

.compare-float strong {
    color: #FFF;
}

.theme-light .compare-float strong {
    color: var(--text-color);
}
@media (min-width: 640px) {

    .compare-float strong {
        margin: 0 0 0 .5em;
    }
}


.compare-float__close {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    background: #b33834;
    color: #FFF;
    height: 100%;
    width: 2em;
    text-align: center;
    font-size: 12px;
    line-height: 14px;
    padding: .55em;
    cursor: pointer;
}

.compare-float__close:hover, .compare-float__close:active {
    background: #8b2c29;
    color: #FFF;
}


.compare-higher {
    color: #357b35;
}


.compare-lower {
    color: #b33834;
}


[data-compare-target] {
    position: relative;
}

[data-compare-target]:hover .compare__difference, [data-compare-target]:active .compare__difference {
    display: block;
}


.compare__difference {
    display: none;
    position: absolute;
    top: 50%;
    right: -.5em;
    transform: translateX(100%) translateY(-50%);
    padding: .5em .75em;
    font-size: 14px;
    color: #FFF;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    z-index: 10;
}


.cmp-state--bar {
    margin-bottom: 120px;
}


[class^="app_gdpr"] {
    --cmpBgColor: #1d1f27;
    --cmpTextColor: #a6a6a6;
    --cmpBrandColor: #646480;
    --cmpHoverColor: #7e7e99;
    text-transform: none;
}


[class^="intro_title"] {
    color: #FFF;
    text-transform: uppercase;
}


.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
    position: relative;
    z-index: 15;
}

.dropdown > a svg {
    width: 12px;
    height: 13px;
    margin-bottom: -2px;
    margin-left: 3px;
    display: none;
}
@media (min-width: 990px) {

    .dropdown > a svg {
        display: inline-block;
    }
}

.dropdown > a svg path {
    fill: currentColor;
}

.dropdown:hover > .dropdown__content, .dropdown:active > .dropdown__content {
    display: block;
}


.dropdown__content {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
}
@media (min-width: 990px) {

    .dropdown__content {
        display: none;
        position: absolute;
        left: 50%;
        top: 0;
        padding-top: calc(2em + 13.3333333333px + 5px + 6.6666666667px);
        width: 190px;
        transform: translate(calc(-50% - 15px));
    }

    .dropdown--dropup .dropdown__content {
        transform: translateY(-100%) translateX(calc(-50% - 15px));
    }
}

.dropdown__content a {
    padding: 6px 0;
    text-decoration: none;
    text-align: left;
}
@media (min-width: 990px) {

    .dropdown__content a {
        text-align: center;
    }
}


.dropdown__inner {
    background: var(--primary);
    padding: 0 20px;
    border-radius: 5px;
    display: block;
    position: relative;
    width: 100%;
    margin-top: -10px;
}
@media (min-width: 990px) {

    .dropdown__inner {
        display: flex;
        flex-direction: column;
        width: auto;
        padding: 20px;
        margin-top: 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    }
}

.dropdown__inner::before {
    position: absolute;
    left: 50%;
    top: -8px;
    content: "";
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 9px solid var(--primary);
    transform: translate(-50%);
}

.dropdown--dropup .dropdown__inner {
    background: #262934;
    padding: 10px;
}

.dropdown--dropup .dropdown__inner::before {
    display: none;
}


.event-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}


.event-background__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.09;
}

.event-background__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.event-background__gradient-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-background__gradient-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to right, #1d1f27 0%, rgba(29, 31, 39, 0) 100%);
}

.event-background__gradient-left::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to left, #1d1f27 0%, rgba(29, 31, 39, 0) 100%);
}


.event-background__gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-background__gradient-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
    background: linear-gradient(to bottom, #21212b 0%, rgba(33, 33, 43, 0) 100%);
}

.event-background__gradient-top::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
    background: linear-gradient(to top, #21212b 0%, rgba(33, 33, 43, 0) 100%);
}


.event-top--soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}
@media screen and (min-width: 600px) {

    .event-top--soon {
        margin: 40px 0 90px;
    }
}


.event__flags {
    display: none;
}
@media (min-width: 900px) {

    .event__flags {
        display: grid;
        grid-template: "second first third";
        width: 675px;
        justify-content: space-between;
        margin: 50px auto 100px;
    }
    @supports (-ms-ime-align: auto) {

        .event__flags {
            display: none;
        }
    }
}


.event-top__flag {
    width: 20px;
    height: 300px;
    background: var(--primary);
    width: 222px;
    height: 555px;
    transform: scale(0.901) translate(0, 16px);
    transform-origin: top right;
    background-size: cover;
    background-position: top center;
    box-shadow: 0 40px 40px rgba(0, 0, 0, 0.2);
    counter-increment: flag-number;
}

.event-top__flag::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #313443 25%, rgba(49, 52, 67, 0) 100%);
    z-index: -1;
}

.event-top__flag:first-of-type {
    color: #ffc000;
    grid-area: first;
    transform: scale(1) translate(0, 0);
    transform-origin: center center;
}

.event-top__flag:first-of-type svg {
    fill: #ffc000;
}

.event-top__flag:first-of-type .st0,
.event-top__flag:first-of-type .st1,
.event-top__flag:first-of-type .st2 {
    stroke: #ffc000;
}

.event-top__flag:nth-of-type(2) {
    color: #d0d0d0;
    grid-area: second;
    transform-origin: top left;
}

.event-top__flag:nth-of-type(2) svg {
    fill: #d0d0d0;
}

.event-top__flag:nth-of-type(2) .st0,
.event-top__flag:nth-of-type(2) .st1,
.event-top__flag:nth-of-type(2) .st2 {
    stroke: #d0d0d0;
}

.event-top__flag:nth-of-type(3) {
    color: #c47800;
    grid-area: third;
}

.event-top__flag:nth-of-type(3) svg {
    fill: #c47800;
}

.event-top__flag:nth-of-type(3) .st0,
.event-top__flag:nth-of-type(3) .st1,
.event-top__flag:nth-of-type(3) .st2 {
    stroke: #c47800;
}


.flag__name {
    position: absolute;
    display: inline-block;
    padding: 10px 13px;
    top: 0;
    left: 40px;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
    background: rgba(0, 0, 0, 0.24);
    transform: rotate(90deg);
    transform-origin: top left;
}


.flag__score {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}


.flag__badge {
    position: relative;
    width: 135px;
}

.flag__badge svg {
    width: 100%;
}


.flag__badge-position,
.rewards__position {
    position: absolute;
    width: 100%;
    top: 35px;
    font-size: 35px;
    font-family: "Teko", monospace;
    text-align: center;
}


.flag__badge-position::before {
    display: block;
    content: counter(flag-number);
    font-size: 35px;
    font-family: "Teko", monospace;
}


.flag__eventscore {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    color: var(--white);
}


.eventscore__name {
    margin-bottom: -5px;
    font-size: 12px;
}


.eventscore__score {
    font-family: "Teko", monospace;
    font-size: 35px;
}


.event__time-wrapper,
.event__time-information {
    display: flex;
    margin-top: 20px;
    font-size: 56px;
    line-height: 56px;
    color: var(--white);
}
@media (min-width: 900px) {

    .event__time-wrapper,
    .event__time-information {
        font-size: 66px;
        line-height: 66px;
    }
}

.event__time-wrapper--large,
.event__time-information--large {
    font-size: 56px;
    line-height: 103px;
    margin-top: 0;
}
@media screen and (min-width: 600px) {

    .event__time-wrapper--large,
    .event__time-information--large {
        font-size: 106px;
        line-height: 116px;
    }
}
@media (min-width: 900px) {

    .event__time-wrapper--large,
    .event__time-information--large {
        font-size: 166px;
        line-height: 136px;
        margin-top: 20px;
    }
}

.event__time-wrapper--large .event__double,
.event__time-information--large .event__double {
    line-height: 84px;
}


.event__time {
    font-family: "Teko", monospace;
}


.event__double {
    font-weight: 600;
    line-height: 40px;
}
@media (min-width: 900px) {

    .event__double {
        line-height: 54px;
    }
}


.event__info {
    display: block;
    font-size: 60px;
    line-height: 56px;
}


.event__small {
    color: var(--white);
    margin-bottom: 10px;
}


.event__top-title {
    margin: 0;
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
}


.event__top-subtitle {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}
@media screen and (min-width: 600px) {

    .event__top-subtitle {
        font-size: 40px;
    }
}


.event__badges-wrapper {
    margin-top: 25px;
}


.badges__title {
    margin-bottom: 20px;
    font-size: 26px;
    text-align: center;
}


.event__badges {
    display: flex;
    justify-content: center;
}


.event__badge {
    width: 50%;
    max-width: 150px;
    padding: 0 10px;
}

.event__badge img {
    width: 100%;
}


.rewards {
    margin-top: 20px;
}


.rewards__badges {
    display: flex;
}


.rewards__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.3333333333%;
    padding: 0 10px;
    border-right: 1px solid #434355;
    text-align: center;
}

.rewards__item:last-child {
    border-right: 0;
}

.rewards__item .rewards__badge {
    position: relative;
    width: 65px;
    margin: 0 auto;
}

.rewards__item .rewards__position {
    top: 20px;
    font-size: 18px;
}


.rewards__item-description {
    font-size: 11px;
}

.rewards__item-description strong {
    display: block;
    margin-top: 5px;
    font-family: "Teko", monospace;
    font-size: 23px;
    color: var(--white);
}


.rewards__description {
    display: block;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}


.item__event-content {
    padding: 20px;
}


.item__event-banner img {
    width: 100%;
    height: auto;
}


.event__manual-update {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    margin-top: 30px;
}
@media (min-width: 900px) {

    .event__manual-update {
        margin-top: 0;
        flex-direction: row-reverse;
    }
}

.event__manual-update > div {
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}
@media (min-width: 900px) {

    .event__manual-update > div {
        text-align: right;
        margin-top: 0;
        margin-right: 20px;
    }
}

@media (min-width: 400px) {

    .filter {
        max-width: 200px;
    }
}

a:not(.button) + .filter {
    margin: 40px 0 0;
}
@media (min-width: 640px) {

    a:not(.button) + .filter {
        margin: 80px 0 0;
    }
}


.filter__title {
    margin-bottom: 20px;
    color: var(--title-color);
    font-weight: 300;
    font-size: 18px;
}


.filter__item {
    margin: 20px 0;
    font-size: 16px;
}

.filter__item label {
    display: block;
    margin-bottom: 5px;
}


.filter__button {
    margin-top: 10px;
    width: 100%;
}


.chart-filter {
    display: flex;
    flex-direction: column;
    margin: -20px;
}
@media (min-width: 768px) {

    .chart-filter {
        display: grid;
        grid-template-columns: 38% 38% 20% 4%;
    }
}

.chart-filter > div {
    margin-bottom: 10px;
}
@media (min-width: 768px) {

    .chart-filter > div {
        margin-right: 20px;
        margin-bottom: 0;
    }
}

.chart-filter > div:last-child {
    margin-right: 0;
}

.chart-filter input[type="datetime-local"]::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
}

.chart-filter input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    color: var(--text-color);
}

.chart-filter input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
    background: #313443;
    color: var(--title-color);
}


.chart-filter__button {
    height: 44px;
    margin-top: auto;
    border: 0;
    background: #b33834;
    color: var(--title-color);
    cursor: pointer;
}


.item-columns {
    overflow-x: hidden;
}


.item-columns__mobile-navigation {
    display: flex;
    margin-bottom: 40px;
    padding: 0 20px;
    border-radius: 2px;
    background: var(--primary);
    border: 1px solid #42465b;
}
@media (min-width: 640px) {

    .item-columns__mobile-navigation {
        background: transparent;
        padding: 0;
        margin-bottom: 0;
        border: 0;
        clip-path: none;
    }

    [class*=item-columns--] .item-columns__mobile-navigation {
        margin-bottom: 40px;
    }
}
@media (min-width: 1100px) {

    .item-columns__mobile-navigation {
        display: none;
    }
}


.item-columns__mobile-navigation-item {
    display: none;
    align-items: center;
    font-size: 16px;
    line-height: 40px;
    color: #c8cad2;
    cursor: pointer;
}
@media (min-width: 640px) {

    .item-columns__mobile-navigation-item {
        font-size: 18px;
    }
}

.item-columns__mobile-navigation-item:hover, .item-columns__mobile-navigation-item:active {
    color: #FFF;
}

.item-columns__mobile-navigation-item:first-child {
    display: flex;
}
@media (min-width: 640px) {

    .item-columns__mobile-navigation-item:first-child {
        display: none;
    }

    .item-columns--viewing-details .item-columns__mobile-navigation-item:first-child {
        display: flex;
    }
}

.item-columns:not([class*=item-columns--]) .item-columns__mobile-navigation-item:first-child {
    color: #FFF;
}

.item-columns__mobile-navigation-item:nth-child(2) {
    display: none;
}

[class*=item-columns--] .item-columns__mobile-navigation-item:nth-child(2), .item-columns--single .item-columns__mobile-navigation-item:nth-child(2) {
    display: flex;
}
@media (min-width: 640px) {

    [class*=item-columns--] .item-columns__mobile-navigation-item:nth-child(2), .item-columns--single .item-columns__mobile-navigation-item:nth-child(2) {
        display: none;
    }
}

.item-columns--viewing-items .item-columns__mobile-navigation-item:nth-child(2) {
    color: #FFF;
}
@media (min-width: 640px) {

    .item-columns--viewing-items .item-columns__mobile-navigation-item:nth-child(2) {
        display: none;
    }
}

.item-columns__mobile-navigation-item:nth-child(3) {
    display: none;
}

.item-columns--viewing-details .item-columns__mobile-navigation-item:nth-child(3) {
    display: flex;
    color: #FFF;
}
@media (min-width: 640px) {

    .item-columns--viewing-details .item-columns__mobile-navigation-item:nth-child(3) {
        display: none;
    }
}

.item-columns__mobile-navigation-item + .item-columns__mobile-navigation-item::before {
    content: "/";
    display: block;
    font-size: 1.5em;
    line-height: 40px;
    color: var(--text-color);
    margin: 0 .25em;
}


.item-columns__main {
    display: grid;
    grid-template: "sidebar content";
    grid-template-columns: 100% 100%;
    transition: transform 200ms;
    will-change: transform;
}
@media (min-width: 640px) {

    .item-columns__main {
        grid-template-columns: 50% 50%;
    }
}
@media (min-width: 1100px) {

    .item-columns__main {
        grid-template-columns: 33.3333333333% 66.6666666667%;
    }
}
@supports (-ms-ime-align: auto) {

    .item-columns__main {
        display: flex;
    }
}
@media (max-width: 639px) {

    .item-columns--viewing-items .item-columns__main {
        transform: translateX(calc(-100%));
    }
}
@media (max-width: 1099px) {

    .item-columns--viewing-details .item-columns__main {
        transform: translateX(calc(-50%));
    }
}
@media (max-width: 639px) {

    .item-columns--viewing-details .item-columns__main {
        transform: translateX(calc(-200%));
    }
}


.item-columns__sidebar {
    grid-area: sidebar;
    width: 100%;
    max-width: 1240px;
}
@media (min-width: 640px) {

    .item-columns__sidebar {
        max-width: 413.3333333333px;
    }
}
@media (min-width: 1100px) {

    .item-columns__sidebar {
        max-width: 620px;
    }
}


.item-columns__sidebar-item {
    display: block;
    font-size: 21px;
    line-height: 1em;
    padding: 5px 0;
    text-decoration: none;
    transition-property: font-size, padding;
    transition-duration: 50ms;
    will-change: padding, font-size;
}

.item-columns__sidebar-item:hover, .item-columns__sidebar-item:active {
    color: var(--title-color);
}
@media (min-width: 640px) {

    .item-columns__sidebar-item--is-active {
        color: #b33834;
        font-size: 28px;
        padding: 10px 0;
    }

    .item-columns__sidebar-item--is-active:hover, .item-columns__sidebar-item--is-active:active {
        color: #b33834;
    }
}


.item-columns__content {
    grid-area: content;
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 1099px) {

    .item-columns__content {
        width: calc(180vw - 20px);
    }
}


.item-columns__center {
    width: calc(90vw - 15px);
    padding-right: 10px;
}
@media (min-width: 640px) {

    .item-columns__center {
        width: calc(50vw - 5vw - 10px);
    }
}
@media (min-width: 1100px) {

    .item-columns__center {
        width: 50%;
    }
}
@supports (-ms-ime-align: auto) {

    .item-columns__center {
        max-width: 400px;
    }
}


.item-columns__item {
    position: relative;
    height: 120px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 10px;
    filter: drop-shadow(0px 3px 7px rgba(0, 0, 0, 0.1)) drop-shadow(0px 3px 27px rgba(0, 0, 0, 0.1));
    cursor: pointer;
}
@media (hover: none) and (pointer: coarse) {

    .item-columns__item {
        filter: none;
    }
}
@supports (-ms-ime-align: auto) {

    .item-columns__item {
        overflow: hidden;
    }
}

.item-columns__item:hover .item-columns__item-background::after {
    opacity: .5;
}
@supports (-ms-ime-align: auto) {

    .item-columns__item:hover .item-columns__item-background::after {
        opacity: .1;
    }
}

.item-columns__item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.item-columns__item::after {
    content: "";
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: #a12aac url(icons/icon-compare.png) no-repeat;
    background-position: 6.6666666667px 8px;
    background-size: 16px;
    clip-path: polygon(0 0, 0 100%, 100% 0);
}
@supports (-ms-ime-align: auto) {

    .item-columns__item::after {
        width: 30px;
        height: 30px;
    }
}

.item-columns__item--is-active:hover .item-columns__item-background::after,
.item-columns__item--is-active .item-columns__item-background::after, .item-columns__item--is-compare:hover .item-columns__item-background::after,
.item-columns__item--is-compare .item-columns__item-background::after {
    opacity: 1;
}
@supports (-ms-ime-align: auto) {

    .item-columns__item--is-active:hover .item-columns__item-background::after,
    .item-columns__item--is-active .item-columns__item-background::after, .item-columns__item--is-compare:hover .item-columns__item-background::after,
    .item-columns__item--is-compare .item-columns__item-background::after {
        opacity: .2;
    }
}

.item-columns__item--is-compare::after {
    display: block;
}

.item-columns__item--is-compare:hover .item-columns__item-background::after,
.item-columns__item--is-compare .item-columns__item-background::after {
    background: #a12aac;
}


.item-columns__item-name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: rgba(255, 255, 255, 0.5);
    z-index: 2;
}


.item-columns__item-extra {
    display: flex;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
    padding-bottom: 2px;
    z-index: 2;
}
@supports (-ms-ime-align: auto) {

    .item-columns__item-extra {
        bottom: 10px;
        right: 10px;
    }
}

.item-columns__item-extra img {
    display: block;
    max-height: 25px;
    width: auto;
}

.item-columns__item-extra a img:hover,
.item-columns__item-extra a img:active {
    opacity: .5;
}

.item-columns__item-extra div {
    display: flex;
}

.item-columns__item-extra div img {
    max-height: 8px;
    margin-right: 5px;
}


.item-columns__item-background {
    display: flex;
    place-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 0%, 0% 100%, calc(100% - 120px) 100%, 100% 0%);
}

.item-columns__item-background::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 2;
    opacity: 0;
    clip-path: polygon(0% 0%, 0% 100%, 2px 100%, 2px 2px, calc(100% - 4px) 2px, calc(100% - 120px - 1px) calc(100% - 2px), 2px calc(100% - 2px), 2px 100%, 100% 100%, 100% 0%);
}
@media (max-width: 400px) {

    .item-columns__item-background picture {
        transform: translateX(calc((100vw - 400px) / 2));
    }
}

.item-columns__item-background img {
    display: block;
    width: auto;
    height: 100%;
}
@supports (-ms-ime-align: auto) {

    .item-columns__item-background img {
        width: 100%;
        height: auto;
    }
}


.item-columns__detail {
    display: none;
    width: calc(90vw - 20px);
}
@media (min-width: 640px) {

    .item-columns__detail {
        width: calc(50vw - 5vw - 10px);
        padding-left: 20px;
    }
}
@media (min-width: 1100px) {

    .item-columns__detail {
        width: 50%;
    }
}
@media (max-width: 1099px) {

    .item-columns__detail .circle-graph {
        width: 18vw;
        height: 18vw;
    }
}
@media (max-width: 639px) {

    .item-columns__detail .circle-graph {
        width: 40vw;
        height: 40vw;
        max-width: 12rem;
        max-height: 12rem;
    }
}

@media (min-width: 640px) {

    .item-columns__detail-content {
        padding-left: 26.6666666667px;
    }
}


.item-columns__detail-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 75px;
    margin-bottom: 10px;
}

.item-columns__detail-title h3 {
    margin: 10px 0 0;
}


.item-columns__compare-actions {
    position: relative;
    margin-bottom: 40px;
    font-size: 12px;
}

.item-columns__compare-actions .compare-element {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    margin-top: 5px;
}

.item-columns__compare-actions .compare-element strong {
    margin-left: .25em;
}

.item-columns__compare-actions .compare-element a {
    display: block;
    margin-left: .5em;
    text-decoration: underline;
    cursor: pointer;
}

.item-columns__compare-actions .compare-element a:hover, .item-columns__compare-actions .compare-element a:active {
    color: #FFF;
}


.item-columns__radial-graphs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}


.item-columns__data {
    display: flex;
    font-size: 14px;
    margin-bottom: 5px;
}

.item-columns__data:hover, .item-columns__data:active {
    background: rgba(255, 255, 255, 0.025);
}


.item-columns__data-value {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-bottom: -.25em;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 12px;
    color: var(--title-color);
}

.item-columns__data-value [class^="compare-"],
.item-columns__data-value [class^="modify-"] {
    margin-right: .5em;
}


.item-columns__data-identifier {
    font-size: 12px;
    line-height: 1.5em;
    margin-left: 5px;
}


.item-columns__detail-extra-static-content {
    display: none;
    max-width: 206.6666666667px;
}

.item-columns__detail-extra-static-content--is-active {
    display: block;
}


.items {
    display: flex;
    flex-wrap: wrap;
}

.legpickrate {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    /*width: 100%;*/
    padding: 26.6666666667px;
    margin-bottom: 20px;
    border: 1px solid #474b60;
    /*border-radius: 2px;*/
    background: var(--primary);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 100ms;
    will-change: scroll-position, contents;
    border-radius: 15px;
}

.item {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    width: 100%;
    padding: 26.6666666667px;
    margin-bottom: 0 !important;
    border: 1px solid #474b60;
      border-radius: 2px;
      background: var(--primary);
      box-shadow: 0 6px 32px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 100ms;
    will-change: scroll-position, contents;
}
@media (hover: none) and (pointer: coarse) {

    .item {
        filter: none;
    }
}
@media (min-width: 640px) and (max-width: 1239px) {

    .item {
        flex: 0 0 calc((100% - 40px / 2) / 2);
        max-width: calc((100% - 40px / 2) / 2);
        margin-right: 20px;
    }

    .item:nth-of-type(2n) {
        margin-right: 0;
    }
}
@media (min-width: 1240px) {

    .item {
        flex: 0 0 calc((100% - 40px) / 3);
        max-width: calc((100% - 40px) / 3);
        margin-right: 20px;
    }

    .item:nth-of-type(3n) {
        margin-right: 0;
    }
}
@supports (-ms-ime-align: auto) {

    .item {
        flex: 0 0 calc((100% - 40px) / 3 - 1px);
    }
}

.item--full-width {
    flex: 0 0 100%;
    max-width: 100%;
}

.item--patch-notes-banner {
    padding-left: 40vw;
}
@media (min-width: 768px) {

    .item--patch-notes-banner {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }
}
@media (min-width: 990px) {

    .item--patch-notes-banner {
        padding-left: 40px;
    }
}

.item--patch-notes-banner h3 {
    margin-top: 0;
    margin-bottom: 10px;
}
@media (min-width: 768px) {

    .item--patch-notes-banner h3 {
        margin-bottom: 0;
    }
}

.item--patch-notes-banner img {
    max-width: 40vw;
}

.item--patch-notes-banner-season-3 {
    background-image: url(layout/banner_3.jpg);
    background-size: cover;
}

.item--patch-notes-banner-season-3 h2 {
    margin: 20px 0;
}

.item--patch-notes-banner-season-3 h2,
.item--patch-notes-banner-season-3 h3 {
    color: #000;
}

.item--patch-notes-banner-left {
    border: 0;
}
@media (min-width: 768px) {

    .item--patch-notes-banner-left {
        justify-content: flex-start;
    }
}

.item--patch-notes-banner-left img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.item > img {
    max-width: 100%;
    height: auto;
}


.item__title {
    font-size: 21px;
    margin: 0 0 20px;
    text-align: center;
}


.item__large-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    font-size: 40px;
    font-weight: 700;
    color: #FFF;
    text-align: center;
}

.theme-light .item__large-info {
    color: var(--title-color);
}

.item__large-info span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-color);
}

.item__large-info small {
    position: absolute;
    bottom: .25em;
    right: 2em;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-color);
}

.item__large-info > div {
    display: flex;
    align-items: flex-end;
    font-family: "Teko", sans-serif;
    font-weight: 600;
}

.item__large-info > div > span {
    margin-bottom: 6px;
    margin-left: 6px;
}


.item__small-info {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: .25rem;
    padding-right: 1.25rem;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-color);
}

.item__small-info:hover {
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}

.item__small-info span {
    margin-left: auto;
    display: block;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1em;
    color: #FFF;
}

.theme-light .item__small-info span {
    color: var(--text-color);
}

.item__small-info span.item__small-info-modify-value {
    font-weight: 300;
    font-size: .8em;
    margin-left: .25em;
}

.item__small-info small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1rem;
    font-family: "Exo 2", sans-serif;
    font-size: 11px;
    margin-left: .25em;
    color: var(--text-color);
    font-weight: 300;
}


.item__full-width-info {
    margin-top: 20px;
    font-size: 18px;
    text-transform: none;
    text-align: center;
}

.item--full-width .item__full-width-info {
    text-align: left;
}

.item__full-width-info span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: .1em;
}

.item__full-width-info:first-of-type {
    margin-top: 0;
}

.item__full-width-info--small {
    font-size: 16px;
}

.item__full-width-info--small span {
    font-size: 18px;
    margin-bottom: .25em;
}

.item__full-width-info--image {
    display: flex;
    align-items: center;
    width: 100%;
}

.item__full-width-info--image img {
    width: 64px;
    margin-left: -19px;
}

.theme-light .item__full-width-info--image img {
    filter: brightness(20%);
}

.item__full-width-info--no-margin-top {
    margin-top: 0;
}

.item__full-width-info + .item__small-info {
    margin-top: 5px;
}

.item__full-width-info--large small {
    font-size: 12px;
}
@media (min-width: 640px) {

    .item__full-width-info--large small {
        font-size: 14px;
    }
}

.item__full-width-info--large small.extra-small {
    font-size: 12px;
}

.item__full-width-info--large span {
    font-size: 12px;
}
@media (min-width: 640px) {

    .item__full-width-info--large span {
        font-size: 17px;
    }
}


.item__icon {
    display: block;
}

.item__icon:hover, .item__icon:active {
    filter: brightness(1.5);
}

.item__icon img {
    height: 32px;
    width: auto;
}


.item__small-text {
    font-size: 12px;
    margin: 0 0 10px;
}


.item__large-icon-wrapper {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.item--extra-compact .item__large-icon-wrapper {
    display: none;
}

.item__large-icon-wrapper img {
    max-width: 100px;
}

.theme-light .item__large-icon-wrapper img {
    filter: brightness(0%);
}

.item--legend .item__large-icon-wrapper img {
    filter: brightness(100%) !important;
}


.item__tips {
    margin-top: 10px;
}


.item__note {
    display: block;
    margin-bottom: 20px;
    font-size: 11px;
    line-height: 1.5em;
    text-transform: none;
}


.item__tray {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 20px;
}


.item--table {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
    border: 2px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    line-height: 1.1em;
}

.theme-light .item--table {
    background: #FFF;
    border: 0;
}


.item--table__icon-wrapper {
    display: flex;
    border-right: 1px solid var(--border-color);
}

.theme-light .item--table__icon-wrapper {
    border-color: rgba(0, 0, 0, 0.1);
}


.item--table__icon {
    align-self: center;
}
@media (max-width: 639px) {

    .item--table__icon {
        max-width: 120px;
    }
}

.theme-light .item--table__icon {
    filter: invert(1);
}


.item--table__title {
    width: 100%;
    margin: 0;
    padding: .5em;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.theme-light .item--table__title {
    border-color: rgba(0, 0, 0, 0.1);
}


.item--table__info {
    font-size: 14px;
    padding: .5em .5em 0;
}
@media (min-width: 640px) {

    .item--table__info {
        display: flex;
        flex-wrap: wrap;
    }
}


.item--table__item {
    margin: 0 16px 0.5em 0;
    color: var(--title-color);
}

.item--table__item span {
    text-transform: none;
    color: var(--text-color);
}


.item--table__item-title {
    display: flex;
    align-items: flex-start;
    margin: .25em 0 0;
    font-size: 20px;
}

.item--table__item-title small {
    display: block;
    margin-left: .25em;
    font-size: 11px;
    font-weight: normal;
    color: var(--text-color);
}


.item--table__item-other {
    display: block;
    font-size: 12px;
    line-height: 1.25em;
}


.item__event-description small {
    margin-bottom: 10px;
    display: inline-block;
}


.leaderboard {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
    counter-reset: leaderboard-number;
}

@keyframes fade-has-changed-position {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.leaderboard__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #474b60;
    counter-increment: leaderboard-number;
}

.leaderboard__item::before {
    display: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    z-index: 0;
}

.leaderboard__item:last-of-type {
    border-bottom: 0;
}

.leaderboard__item:first-of-type {
    color: #ffc000;
}

.leaderboard__item:first-of-type svg {
    fill: #ffc000;
}

.leaderboard__item:first-of-type .st0,
.leaderboard__item:first-of-type .st1,
.leaderboard__item:first-of-type .st2 {
    stroke: #ffc000;
}

.leaderboard__item:first-of-type::before {
    display: block;
    background: linear-gradient(to right, rgba(255, 192, 0, 0.15) 0%, rgba(255, 192, 0, 0) 100%);
}

.leaderboard__item:nth-of-type(2) {
    color: #d0d0d0;
}

.leaderboard__item:nth-of-type(2) svg {
    fill: #d0d0d0;
}

.leaderboard__item:nth-of-type(2) .st0,
.leaderboard__item:nth-of-type(2) .st1,
.leaderboard__item:nth-of-type(2) .st2 {
    stroke: #d0d0d0;
}

.leaderboard__item:nth-of-type(2)::before {
    display: block;
    background: linear-gradient(to right, rgba(208, 208, 208, 0.15) 0%, rgba(208, 208, 208, 0) 100%);
}

.leaderboard__item:nth-of-type(3) {
    color: #c47800;
}

.leaderboard__item:nth-of-type(3) svg {
    fill: #c47800;
}

.leaderboard__item:nth-of-type(3) .st0,
.leaderboard__item:nth-of-type(3) .st1,
.leaderboard__item:nth-of-type(3) .st2 {
    stroke: #c47800;
}

.leaderboard__item:nth-of-type(3)::before {
    display: block;
    background: linear-gradient(to right, rgba(196, 120, 0, 0.15) 0%, rgba(196, 120, 0, 0) 100%);
}

.leaderboard__item:nth-of-type(n+4) {
    color: #FFF;
}

.leaderboard__item:nth-of-type(n+4) svg {
    fill: var(--graph-color);
}

.leaderboard__item:nth-of-type(n+4) .st0,
.leaderboard__item:nth-of-type(n+4) .st1,
.leaderboard__item:nth-of-type(n+4) .st2 {
    stroke: var(--graph-color);
}

.leaderboard__item--is-owned {
    box-shadow: inset 0 0 0 2px #b33834;
}

.leaderboard__item--has-changed-position::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    animation: fade-has-changed-position 500ms forwards;
}


.leaderboard__item-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px 10px;
    width: 100%;
}
@media (min-width: 990px) {

    .leaderboard__item-content {
        padding: 10px 20px;
    }
}


.leaderboard__left {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    position: relative;
}
@media (min-width: 990px) {

    .leaderboard__left {
        flex-direction: row;
    }
}

.leaderboard__left svg {
    width: 60px;
    height: 60px;
}


.leaderboard__badge {
    display: flex;
    position: relative;
}


.leaderboard__position {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.leaderboard__position::before {
    content: counter(leaderboard-number);
    font-size: 17px;
    font-family: "Teko", monospace;
}


.leaderboard__name {
    max-width: 300px;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.2em;
    color: var(--white);
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.leaderboard__name--desktop {
    display: none;
}
@media (min-width: 990px) {

    .leaderboard__name--desktop {
        display: block;
    }
}

.leaderboard__name--mobile {
    display: block;
    width: 100%;
    padding: 12px 15px 0px;
    max-width: 100%;
}
@media (min-width: 990px) {

    .leaderboard__name--mobile {
        display: none;
    }
}


.leaderboard__right {
    display: flex;
    position: relative;
}


.leaderboard__action {
    display: none;
}
@media (min-width: 1140px) {

    .leaderboard__action {
        display: block;
        font-size: 14px;
        text-decoration: none;
        font-weight: 300;
        color: var(--graph-color);
        border: 1px solid #474b60;
        background: var(--primary);
        padding: .75rem 2rem;
        border-radius: 5px;
    }
}

.leaderboard__action:hover {
    background: #262934;
    color: #FFF;
}


.leaderboard__score {
    display: flex;
    flex-direction: column;
    text-align: right;
}
@media screen and (min-width: 1140px) {

    .leaderboard__score {
        margin-right: 25px;
    }
}


.leaderboard__score-name {
    font-size: 11px;
    color: var(--white);
}


.leaderboard__score-total {
    position: relative;
    margin-top: 6px;
    font-size: 31px;
    font-family: "Teko", monospace;
    line-height: 19px;
    color: var(--white);
    transition: color 500ms;
}

.leaderboard__score-total--is-updated {
    color: #357b35;
    transition-duration: 0ms;
}

@keyframes fade-leaderboard-change {
    0% {
        opacity: 0;
        transform: translateX(-100%) translateY(100%);
    }
    30% {
        opacity: 1;
        transform: translateX(-100%) translateY(0);
    }
    70% {
        opacity: 1;
        transform: translateX(-100%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%) translateY(-100%);
    }
}

.leaderboard__score-total-change {
    position: absolute;
    top: 0;
    left: -.5em;
    color: #357b35;
    font-size: 14px;
    transform: translateX(-100%);
    animation: fade-leaderboard-change 2000ms;
}


.legend {
    flex-direction: column;
    height: auto;
}
@media (min-width: 900px) {

    .legend {
        flex-direction: row;
        height: 100%;
    }
}


.legend__image {
    width: 100%;
    max-width: 200px;
    display: none;
}
@media (min-width: 900px) {

    .legend__image {
        display: block;
    }
}

.legend__image img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
}


.legend__intro {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (min-width: 900px) {

    .legend__intro {
        padding-left: 40px;
    }
}

.item--compact .legend__intro {
    padding-left: 0;
}


.legend__lore {
    width: 100%;
}

.legend__lore p {
    line-height: 23px;
}


.legend__ability {
    margin-bottom: 30px;
    text-align: center;
}

.legend__ability img {
    width: 100%;
    max-width: 300px;
}

.theme-light .legend__ability img {
    filter: brightness(20%);
}


.item__content--ability h3 {
    font-size: 16px;
}

.item__content--ability .ability__full-width-info {
    min-height: 28px;
    display: flex;
}


.ability__information {
    margin-top: 25px;
}


.columns__column--spacing {
    margin-right: 20px;
}


.columns__extra {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}
@media (min-width: 900px) {

    .columns__extra {
        flex-direction: row;
    }
}

.columns__extra .item__title {
    width: 100%;
}

.columns__extra .columns__column {
    width: 100%;
}
@media (min-width: 900px) {

    .columns__extra .columns__column {
        width: 50%;
    }
}


.legend__badges {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.legend__badges .item__full-width-info--image img {
    width: 60px;
    margin-left: 0;
}

.theme-light .legend__badges .item__full-width-info--image img {
    filter: brightness(100%);
}
@media (min-width: 425px) {

    .legend__badges .item__full-width-info--image img {
        width: 84px;
    }
}

.legend__badges .item__full-width-info {
    margin-top: 20px;
}
@media (min-width: 425px) {

    .legend__badges .item__full-width-info {
        margin-top: 10px;
    }
}

.legend__badges .item__full-width-info:first-of-type {
    margin-top: 0;
}


.columns__about {
    display: flex;
    flex-direction: column;
}
@media (min-width: 640px) {

    .columns__about {
        flex-direction: row;
    }
}

.columns__about .columns__column {
    width: 100%;
}
@media (min-width: 640px) {

    .columns__about .columns__column {
        width: 50%;
    }
}

.columns__about .columns__column:last-of-type {
    margin-top: 25px;
}
@media (min-width: 640px) {

    .columns__about .columns__column:last-of-type {
        margin-top: 0;
    }
}


.mobile__legend-image {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 25px;
}
@media (min-width: 900px) {

    .mobile__legend-image {
        display: none;
    }
}

.mobile__legend-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 200px;
}


.legend__toggle-button {
    margin-top: 10px;
}


.tip__username {
    font-style: italic;
    margin-top: -5px;
    display: block;
}


.legends-banner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px 20px;
}


.legends-banner__item {
    position: relative;
    flex: 0 0 calc(100% / 3);
    width: calc(100% / 3);
    max-width: 100%;
    max-height: 200px;
    padding: 0 5px;
    margin-bottom: 10px;
    overflow: hidden;
    filter: drop-shadow(0px 3px 7px rgba(0, 0, 0, 0.1)) drop-shadow(0px 3px 27px rgba(0, 0, 0, 0.05));
    transition: transform 50ms;
}
@media (hover: none) and (pointer: coarse) {

    .legends-banner__item {
        filter: none;
    }
}
@media (min-width: 560px) {

    .legends-banner__item {
        flex: 0 0 calc(100% / 4);
        width: calc(100% / 4);
    }
}
@media (min-width: 768px) {

    .legends-banner__item {
        flex: 0 0 calc(100% / 6);
        width: calc(100% / 6);
        max-height: 250px;
    }
}
@media (min-width: 1240px) {

    .legends-banner__item {
        flex: 0 0 calc(100% / 8);
        width: calc(100% / 8);
    }
}

.legends-banner__item:hover, .legends-banner__item:active {
    transform: scale(1.05);
}

.legends-banner__item:hover .legends-banner__button, .legends-banner__item:active .legends-banner__button {
    background: #b33834;
    color: #FFF;
}


.legends-banner__image {
    width: 100%;
}


.legends-banner__content {
    position: absolute;
    bottom: 0;
    left: 5px;
    padding: 13.3333333333px 10px;
    width: calc(100% - 10px);
    color: #FFF;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.4em;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.alert-danger{
    border: 3px solid red;
}

.legends-banner__button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 10px;
    height: 32px;
    width: 32px;
    font-size: 40px;
    color: var(--secondary);
    background: #FFF;
    border-radius: 50%;
    transform: translateY(calc(-100% - 10px));
    transition-property: background, color;
    transition-duration: 100ms;
}
@media (min-width: 640px) {

    .legends-banner__button {
        transform: translateY(-50%);
    }
}


.level {
    margin-top: -15px;
    margin-bottom: -20px;
    text-align: center;
    position: relative;
}
@media (min-width: 768px) {

    .level {
        margin-right: 20px;
    }
}

.level h4, .level .level__level {
    font-family: "Teko", monospace;
    font-weight: 600;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translate(-50%);
    font-size: 28px;
    color: var(--white);
}
@media (min-width: 900px) {

    .level h4, .level .level__level {
        top: -15px;
        font-size: 48px;
    }
}

.level h4 text, .level .level__level text {
    fill: var(--white);
}

.level h4.level__max, .level .level__level.level__max {
    top: auto;
    bottom: -5px;
    padding: 0 20px;
    font-size: 22px;
    color: var(--white);
    background: #45485c;
    border-radius: 4px;
}
@media (min-width: 900px) {

    .level h4.level__max, .level .level__level.level__max {
        border-radius: 10px;
    }
}

.level svg {
    width: 120px;
}
@media (min-width: 900px) {

    .level svg {
        width: 160px;
    }
}

.level polyline,
.level path,
.level polygon,
.level rect {
    fill: var(--graph-color);
    stroke: none;
}

.level .st0 {
    stroke: var(--graph-color) !important;
    fill: transparent !important;
}

.level .level1_4 .st1,
.level .level90_94 .st1,
.level .level95_99 .st1,
.level .level100 .st1 {
    stroke: var(--graph-color) !important;
    fill: transparent !important;
}


.item--list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex: 0 0 100%;
    width: 100%;
    margin: 0 0 20px;
    max-width: 100%;
    padding: 40px;
}
@media (min-width: 900px) {

    .item--list {
        flex: 0 0 calc(100% - 20px);
        max-width: calc(100% - 20px);
        flex-direction: column;
    }
}
@media (min-width: 1240px) {

    .item--list {
        flex: 0 0 calc(100% - 40px);
        max-width: calc(100% - 40px);
    }
}


.item--event {
    flex-direction: column;
    padding: 30px 20px 20px;
}
@media (min-width: 900px) {

    .item--event {
        padding: 40px;
    }
}


.list-content {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}
@media (min-width: 900px) {

    .list-content {
        display: flex;
        flex-direction: row;
    }
}


.list-content__sidebar {
    width: 100%;
    min-width: 100%;
}
@media (min-width: 900px) {

    .list-content__sidebar {
        width: 354px;
        min-width: 354px;
    }
}
@media (min-width: 1240px) {

    .list-content__sidebar {
        flex: 0 0 33.3333333333%;
        width: 33.3333333333%;
        min-width: inherit;
    }
}


.list-content__content {
    grid-area: content;
    width: 100%;
}
@media (min-width: 1240px) {

    .list-content__content {
        flex: 0 0 66.6666666667%;
        width: 66.6666666667%;
    }
}


.loading-indicator {
    display: flex;
    flex-direction: column;
    place-items: center;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-indicator__spinner {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 5px solid #FFF;
    border-color: #FFF transparent #FFF transparent;
    animation: spinner 1000ms linear infinite;
}


.navigation {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    max-width: 300px;
    padding-bottom: 40px;
    background: var(--primary) !important;
    overflow: auto;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.42);
    flex-direction: column;
    transform: translateX(-120%);
    transition: transform 250ms ease;
    will-change: transform;
}
@media (min-width: 990px) {

    .navigation {
        position: relative;
        flex-direction: row;
        height: auto;
        width: auto;
        max-width: inherit;
        padding-bottom: 0;
        background: transparent;
        overflow: inherit;
        z-index: 1;
        box-shadow: none;
        transition: none;
        transform: translateX(0);
    }
}

.navigation.active {
    transform: translateX(0);
}

.navigation a {
    font-size: 15px;
    color: #abafbc;
    transition: color 250ms ease;
    width: 100%;
    display: block;
    z-index: 1000;
}
@media (min-width: 990px) {

    .navigation a {
        font-size: 14px;
        width: auto;
    }
}
@media (min-width: 1240px) {

    .navigation a {
        font-size: 14px;
    }
}

.navigation a:hover {
    color: #FFF;
}

.navigation a.active {
    color: #FFF;
}

.navigation .dropdown {
    display: block;
}

@media (min-width: 990px) {

    .navigation .dropdown {
        display: flex;
        flex-direction: row;
    }
}

.navigation > a,
.navigation .dropdown > a {
    margin-right: 0;
    text-decoration: none;
    padding: 20px;
    color: var(--white);
}
@media (min-width: 990px) {

    .navigation > a,
    .navigation .dropdown > a {
        margin-right: 20px;
        padding: 0;
        color: #abafbc;
    }
}
@media (min-width: 1240px) {

    .navigation > a,
    .navigation .dropdown > a {
        margin-right: 22px;
    }

    .navigation > a:last-child,
    .navigation .dropdown > a:last-child {
        margin-right: 0;
    }
}

.navigation .dropdown:hover > a {
    color: #FFF;
}


.navigation-close {
    display: block;
    padding: 20px;
    cursor: pointer;
}
@media (min-width: 990px) {

    .navigation-close {
        display: none;
    }
}

.navigation-close svg {
    width: 20px;
}


.navigation-open {
    display: block;
    cursor: pointer;
}
@media (min-width: 990px) {

    .navigation-open {
        display: none;
    }
}

.navigation-open svg {
    width: 20px;
}


.notifications {
    position: relative;
}


.notifications__content {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    max-width: 250px;
    padding: 20px 20px 10px;
    border: 1px solid #434355;
    border-radius: 4px;
    background: #363848;
    text-align: left;
    transform: translateX(-50%) translateY(calc(100% + 10px));
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.notifications__content--is-active {
    display: block;
}

.notifications__content > div:empty::before {
    display: block;
    content: "Loading...";
    padding: 10px 0;
    border-top: 2px solid #434355;
    font-size: 14px;
    line-height: 1.5em;
}


.notifications__title {
    margin: 0 0 10px;
    font-size: 16px;
}


.notifications__item {
    padding: 10px 0;
    border-top: 2px solid #434355;
    font-size: 14px;
    line-height: 1.5em;
}


.notifications__item-action {
    display: block;
    margin-top: 5px;
    color: #FFF;
    text-decoration: none;
    text-align: left;
}


.notifications__trigger {
    display: flex;
    align-items: center;
}

.notifications__trigger:hover {
    color: #FFF;
}

.notifications__trigger--is-active {
    color: #FFF;
}


.notifications__bubble {
    margin-right: .5em;
    height: .5em;
    width: .5em;
    border-radius: 50%;
    background: #b33834;
}


.popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 10000;
    transition: opacity 250ms ease, visibility 250ms ease;
}
@media (min-width: 900px) {

    .popup--claim {
        position: relative;
        display: block;
        width: auto;
        height: auto;
        opacity: 1;
        z-index: 1;
        visibility: visible;
        background: transparent;
    }
}

.popup.active {
    opacity: 1;
    visibility: visible;
}


.popup__inner {
    position: relative;
    width: calc(100% - 43px);
    max-width: 400px;
    padding: 10px 30px 30px;
    margin: 0;
    border-radius: 4px;
    background: var(--primary);
    font-size: 13px;
    line-height: 18px;
}


.popup__title {
    margin-bottom: 10px;
}


.popup__description {
    display: block;
    margin-bottom: 20px;
}


.popup__close {
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
    cursor: pointer;
}
@media (min-width: 900px) {

    .popup--claim .popup__close {
        display: none;
    }
}

.popup__close svg {
    width: 11px;
    height: 16px;
    fill: var(--white);
}


.profile__intro {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}
@media (min-width: 768px) {

    .profile__intro {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}
@media (min-width: 900px) {

    .profile__intro {
        margin: 0;
    }
}


.profile__platform {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}

.profile__platform span {
    position: relative;
}


.intro-user {
    display: flex;
    flex-direction: column;
}
@media (min-width: 900px) {

    .intro-user {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
}


.user__about {
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
}
@media (min-width: 900px) {

    .user__about {
        max-width: 373.3333333333px;
    }
}


.profile__name {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
@media (min-width: 900px) {

    .profile__name {
        margin-top: 40px;
    }
}
@media (min-width: 1100px) {

    .profile__name {
        margin-top: 80px;
    }
}


.profile__title {
    font-size: 40px;
    margin: 0;
    width: 100%;
    color: var(--white);
    font-weight: 700;
    word-break: break-word;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
@media (min-width: 826.6666666667px) {

    .profile__title {
        font-size: 4.8387096774vw;
    }
}
@media (min-width: 1240px) {

    .profile__title {
        font-size: 60px;
    }
}


.user__actions {
    width: 100%;
    margin-top: 40px;
    margin-bottom: -10px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}
@media (min-width: 768px) {

    .user__actions {
        margin-top: 20px;
        text-align: right;
    }
}
@media (min-width: 900px) {

    .user__actions {
        width: calc(100% - 373.3333333333px);
        margin-top: 0;
        margin-bottom: 0;
    }
}

.user__actions small {
    display: block;
    margin-bottom: 10px;
}

.user__actions a {
    margin-bottom: 10px;
    margin-left: 0;
}
@media (min-width: 900px) {

    .user__actions a {
        margin-left: 20px;
        margin-bottom: 0;
    }
}


.profile__status {
    display: none;
    padding: 6px 12px;
    margin-top: 10px;
    border-radius: 3px;
    background: var(--primary);
    font-weight: 700;
    color: var(--text-color);
    font-size: 10px;
    letter-spacing: .5px;
}
@media (min-width: 900px) {

    .profile__status {
        display: block;
    }
}

.profile__status--is-online {
    background: #357b35;
    color: #FFF;
    border-color: #449f44;
}

.profile__status--is-in-game {
    background: #ef9206;
    color: #FFF;
    border-color: #faa92e;
}


.profile__realtime-mobile {
    display: block;
    position: absolute;
    top: 0;
    right: -24px;
}
@media (min-width: 900px) {

    .profile__realtime-mobile {
        display: none;
    }
}

.profile__realtime-mobile .profile__status {
    display: block;
    width: 15px;
    height: 15px;
    padding: 0;
    border-radius: 100%;
}


.level-graph {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
}

.level-graph .circle-graph__bar {
    position: relative;
    width: 175px;
    height: 175px;
}


.profile__charts {
    width: 100%;
    border: 1px solid #474b60;
    border-radius: 2px;
    background: var(--primary);
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px 20px 20px;
    margin-bottom: 20px;
}

.profile__charts img {
    vertical-align: middle;
    max-width: 100%;
}
@media (min-width: 640px) {

    .profile__charts {
        padding: 40px;
    }
}
@media (min-width: 900px) {

    .profile__charts {
        flex: 0 0 calc(100% - 17px);
        max-width: calc(100% - 17px);
    }
}
@media (min-width: 1240px) {

    .profile__charts {
        flex: 0 0 calc(100% - 40px);
        max-width: calc(100% - 40px);
        margin-bottom: 0;
    }
}


.chart__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px;
}

.chart__title h5 {
    margin: 0;
    max-width: 66%;
}

.chart__title span {
    color: var(--white);
    font-weight: bold;
    font-size: 25px;
    font-family: "Teko", monospace;
}


.profile__chart {
    display: none;
}

.profile__chart:first-of-type:not(.profile__chart--is-hidden) {
    display: block;
}

.profile__chart--is-hidden {
    display: none;
}

.profile__chart--is-visible {
    display: block;
}


.profile__chart-select {
    margin-top: 40px;
}


.profile-legends {
    width: 100%;
}


.profile-legend {
    width: 100%;
    margin: 0;
    max-width: 100%;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-bottom: 20px;
}
@media (min-width: 640px) {

    .profile-legend {
        flex-direction: row;
    }
}
@media (min-width: 900px) {

    .profile-legend {
        flex-direction: column;
    }
}
@media (min-width: 1100px) {

    .profile-legend {
        flex-direction: row;
    }
}

.profile-legend--current {
    border: 3px solid var(--red);
}


.profile-legend__image {
    position: relative;
    width: 100%;
    height: 100px;
    display: none;
}
@media (min-width: 640px) {

    .profile-legend__image {
        width: 190px;
        height: auto;
        display: block;
    }
}
@media (min-width: 900px) {

    .profile-legend__image {
        width: 100%;
        height: 100px;
        display: none;
    }
}
@media (min-width: 1100px) {

    .profile-legend__image {
        width: 190px;
        height: auto;
        display: block;
    }
}

.profile-legend__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}


.profile__legend-parent {
    width: 100%;
    display: flex;
    align-items: center;
}


.profile-parent__legend-name {
    display: flex;
    flex-direction: column;
}


.profile-parent__image {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 20px;
}
@media (min-width: 640px) {

    .profile-parent__image {
        display: none;
    }
}
@media (min-width: 900px) {

    .profile-parent__image {
        display: block;
    }
}
@media (min-width: 1100px) {

    .profile-parent__image {
        display: none;
    }
}

.profile-parent__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}


.profile-legend__content {
    padding: 20px;
    width: 100%;
}
@media (min-width: 640px) {

    .profile-legend__content {
        padding: 40px 35px;
    }
}
@media (min-width: 640px) {

    .profile-legend__content {
        width: calc(100% - 190px);
    }
}
@media (min-width: 900px) {

    .profile-legend__content {
        width: 100%;
    }
}
@media (min-width: 1100px) {

    .profile-legend__content {
        width: calc(100% - 190px);
    }
}


.profile-legend__selected {
    display: none;
    font-size: 13px;
}

.profile-legend--current .profile-legend__selected {
    display: block;
}


.profile-legend__name {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.profile-legend--current .profile-legend__name {
    font-size: 23px;
}


.profile-legend__stats {
    margin-top: 25px;
}

.profile-legend--current .profile-legend__stats {
    margin-top: 35px;
}


.profile-legend__stats {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
}


.profile-stats {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 8px 0px;
}
@media screen and (min-width: 400px) {

    .profile-stats {
        width: 50%;
        padding-right: 20px;
    }
}
@media screen and (min-width: 1250px) {

    .profile-stats {
        width: 33.3333%;
    }
}

@media screen and (min-width: 1550px) {

    .profile-stats {
        width: 25%;
    }
}

.profile-stats__bar {
    margin: 2px 0 10px;
}


.profile-stats__name {
    font-size: 13px;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}


.profile-stats__amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    font-size: 21px;
}


.amount__total {
    font-weight: 700;
    font-family: "Teko", monospace;
    color: var(--white);
}


.profile-stats__updates {
    font-size: 11px;
    color: var(--text-color);
    font-weight: normal;
    cursor: default;
}


.profile-stats__update {
    cursor: pointer;
}


.profile-stats__updates-item {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}


.amount__global {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
}


.profile-legend__no-data {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 25px;
    background: rgba(49, 52, 67, 0.88);
    text-align: center;
    padding: 20px;
}


.profile__level {
    position: relative;
    width: 90px;
    margin: 0;
}
@media (min-width: 900px) {

    .profile__level {
        width: auto;
    }
}


.profile__claim-mobile {
    text-align: center;
}
@media (min-width: 900px) {

    .profile__claim-mobile {
        display: none;
    }
}


.profile__claim {
    position: relative;
    margin: 0;
    background: var(--primary);
    width: calc(100% - 43px);
    max-width: 400px;
    padding: 20px;
    border-radius: 4px;
    color: var(--text-color);
    font-size: 13px;
    line-height: 18px;
}
@media (min-width: 900px) {

    .profile__claim {
        padding: 0;
        border-radius: 0;
        max-width: inherit;
        width: 100%;
        background: none;
    }
}

.profile__claim h3 {
    margin-top: 0;
    font-size: 20px;
    color: var(--white);
    font-weight: 300;
}

.profile__claim::-webkit-scrollbar {
    display: none;
}

.profile__notification {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    margin: 20px 0;
    border-radius: 2px;
    background: var(--orange);
    color: var(--white);
    font-size: 14px;
}
@media (min-width: 900px) {

    .profile__notification {
        flex: 0 0 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
}
@media (min-width: 1240px) {

    .profile__notification {
        flex: 0 0 calc(100% - 40px);
        max-width: calc(100% - 40px);
    }
}


.profile__badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.profile__badge {
    margin-top: 10px;
    max-width: 120px;
    font-size: 12px;
    text-align: center;
}

.profile__badge img {
    height: auto;
    width: 100%;
    margin-bottom: 5px;
}


.reward {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.reward:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}


.reward__title {
    margin-top: 0;
}


.reward__reveal {
    display: flex;
    align-items: center;
}


.reward__checkbox {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    border: 0;
    opacity: 0;
}

.reward__checkbox:checked + label {
    background: #363848;
    color: #FFF;
}


.reward__label {
    width: 100%;
    padding: .25em;
    margin-left: 20px;
    background: repeating-linear-gradient(45deg, #2b2d3a, #2b2d3a 10px, #242631 10px, #242631 20px);
    border: 2px dashed #4c4f65;
    line-height: 1em;
    color: transparent;
    font-weight: bold;
    cursor: pointer;
}


.scroll-spy {
    display: none;
    flex-direction: column;
    position: absolute;
    left: calc(-40px + 10px);
    top: 0px;
    padding-right: 10px;
    max-width: 200px;
    max-height: 70vh;
    overflow-y: hidden;
    transform: translateX(-100%);
}
@media (min-width: 1240px) {

    .scroll-spy {
        display: flex;
    }
}

.scroll-spy:hover {
    overflow-y: auto;
    overflow-y: overlay;
}

.scroll-spy::-webkit-scrollbar {
    width: 3px;
}

.scroll-spy::-webkit-scrollbar-track {
    background: var(--primary);
}

.scroll-spy::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
}

.scroll-spy--is-fixed {
    position: fixed;
}


.scroll-spy__item {
    display: block;
    text-decoration: none;
    font-size: 14px;
    text-align: right;
    margin-bottom: 5px;
    transition-property: border-width, padding;
    transition-duration: 200ms;
}

.scroll-spy__item--large {
    font-size: 18px;
    color: #FFF;
}

.scroll-spy__item:hover, .scroll-spy__item:active, .scroll-spy__item--is-active {
    color: #FFF;
    border-right: 2px solid #b33834;
    padding-right: 10px;
}

.scroll-spy__item:hover, .scroll-spy__item:active {
    border-color: #434355;
}


.server-status {
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}


.server-status__item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

.server-status__item:last-child {
    border-bottom: 0;
}

.server-status__item--unstable {
    color: #ef9206;
}

.server-status__item--unavailable {
    color: #b33834;
}


.server-status__ping {
    margin-left: auto;
    font-size: 12px;
    font-style: italic;
}


.server-status__status {
    display: flex;
    align-items: center;
    font-size: 0;
}
@media (min-width: 400px) {

    .server-status__status {
        margin-left: 10px;
        font-size: 12px;
    }
}


.server-status__bubble {
    width: .75rem;
    height: .75rem;
    margin-left: 10px;
    border-radius: 50%;
    background: #357b35;
}

.server-status__item--unstable .server-status__bubble {
    background: #ef9206;
}

.server-status__item--unavailable .server-status__bubble {
    background: #b33834;
}


.social {
    margin: 80px 0 0;
}


.social__title {
    text-align: center;
    margin-top: 0;
}


.social__items {
    width: 100%;
    display: flex;
    justify-content: center;
}

.social__items a {
    margin: 0px 10px;
    display: flex;
    align-items: center;
}

.social__items a:hover svg path, .social__items a:active svg path {
    fill: #FFF;
}

.social__items svg {
    width: 20px;
}

.social__items svg path {
    fill: currentColor;
}


.spray-pattern {
    margin-top: 10px;
    background: #262934;
    border: 1px solid #3c3f52;
}

.theme-light .spray-pattern {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.spray-pattern circle {
    transition-property: transform;
    transition-duration: 500ms;
}


.switch {
    display: flex;
    align-items: center;
    justify-content: center;
}


.switch__item {
    display: block;
    font-size: 14px;
    text-decoration: none;
}

.switch__item:first-of-type {
    text-align: right;
    color: #FFF;
}

.switch--active-right .switch__item:first-of-type {
    color: var(--text-color);
}

.theme-light .switch__item:first-of-type {
    color: var(--text-color);
}

.switch__item:last-of-type {
    text-align: left;
    color: var(--text-color);
}

.switch--active-right .switch__item:last-of-type {
    color: #FFF;
}

.theme-light .switch__item:last-of-type {
    color: var(--text-color);
}


.switch__toggle {
    position: relative;
    width: 2.5em;
    height: calc(1em + 4px);
    margin: 0 .5em;
    background: #FFF;
    border-radius: 99px;
}

.switch__toggle::after {
    display: block;
    content: "";
    position: absolute;
    height: 1em;
    width: 1em;
    top: 2px;
    left: 2px;
    background: #b33834;
    border-radius: 1em;
}

.switch--active-right .switch__toggle::after {
    left: auto;
    right: 2px;
}


.theme-switch {
    display: none;
    position: absolute;
    right: 25px;
    top: 3px;
    padding: 10px 0;
}
@media (min-width: 640px) {

    .theme-switch {
        display: block;
    }
}
@media (min-width: 900px) {

    .theme-switch {
        top: 20px;
    }
}

.theme-switch .theme-switch__item:last-child {
    display: none;
}

.theme-switch--light .theme-switch__item:first-child {
    display: none;
}

.theme-switch--light .theme-switch__item:last-child {
    display: flex;
}

.theme-switch--in-mobile-navigation {
    display: block;
    position: relative;
    text-align: right;
    right: 0;
    top: 0;
    margin-bottom: 20px;
}
@media (min-width: 640px) {

    .theme-switch--in-mobile-navigation {
        display: none;
    }
}

.theme-switch--in-mobile-navigation .theme-switch__item {
    justify-content: flex-end;
}


.theme-switch__item {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
}


.theme-switch__icon {
    width: 100%;
    margin-left: 10px;
    max-width: 23px;
}

.theme-switch--light .theme-switch__icon {
    filter: brightness(20%);
}
@media (min-width: 900px) {

    .theme-switch__icon {
        max-width: 30px;
    }
}


.toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: .5em;
    margin-top: 20px;
    background: var(--primary-dark);
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
}

.toggle--active {
    color: var(--title-color);
}


.toggle__check {
    display: block;
    width: 1em;
    height: 1em;
    border: 2px solid var(--border-color);
    margin-right: .5em;
}

.toggle--active .toggle__check {
    border: 0;
    background: url(checkmark.png);
}


.user-badges__item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.user-badges__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}


.user-badges__content {
    margin-left: 20px;
}


.user-badges__title {
    margin-bottom: 10px;
    font-size: 16px;
    color: #FFF;
}


.user__claimed-profile-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.user__claimed-profile-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.user__claimed-profile-item a {
    font-size: 12px;
}


.top-offset {
    padding-top: 40px;
}
@media (min-width: 640px) {

    .top-offset {
        padding-top: 80px;
    }
}


.relative {
    position: relative !important;
}


.absolute {
    position: absolute !important;
}


.m-0 {
    margin: 0 !important;
}


.mb-0 {
    margin-bottom: 0 !important;
}


.mt-0 {
    margin-top: 0 !important;
}


.mt-120 {
    margin-top: 120px !important;
}


.mt-80 {
    margin-top: 80px !important;
}


.mb-5 {
    margin-bottom: 5px !important;
}


.mb-20 {
    margin-bottom: 10px !important;
}


.mb-40 {
    margin-bottom: 40px !important;
}


.mb-80 {
    margin-bottom: 80px !important;
}


.my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}


.p-0 {
    padding: 0 !important;
}


.p-25 {
    padding: .25em !important;
}


.pin-l {
    left: 0;
}


.pin-b {
    bottom: 0;
}


.w-100 {
    width: 100%;
}

.dot {
    height: 25px;
    width: 25px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

/* 20/07/21 - add on profile revamp */

.general-stats{
    margin-top: 0;
    color: white;
    margin-bottom: 20px;
}

.general-stats-rank{
    margin-bottom: 5px;
}

.avatar {
    object-fit: cover;
    border-radius:50%;
    margin-right: 25px;
    width: 10%;
}

.avatar_offline{
    border: 4px #b33834 solid;
    box-shadow: 0px 0px 10px #b33834;
}

.avatar_ingame{
    border: 4px #e58826 solid;
    box-shadow: 0px 0px 10px #e58826;
}

.avatar_online{
    border: 4px #4d8610 solid;
    box-shadow: 0px 0px 10px #4d8610;
}

.avatar_invisible{
    border: 4px #70776c solid;
    box-shadow: 0px 0px 10px #70776c;
}

.warn{
    border: 2px #d9a521 solid;
}

.menu-selected{
    background: #2b2d3a;
    border-bottom: 1px #b33834 solid;
}

.player-name{
    border-bottom: 1px #b33834 solid;
}

.menu-item{
    font-weight: 700;
    color: white;
    cursor: pointer;
    padding-top: 5px;
}

.row.equal {
    display: flex;
    flex-wrap: wrap;
}

.full-height{
    height: 100%;
}

.stats-main{
    /*padding: 26.66666667px;*/
    /*padding-top: 1rem;*/
}

stats-content{
    flex: 0 0 100%;
    width: 100%;
}

.image-sharp{
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}

.center-img{
    display: block;
    margin: auto;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 23px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #b33834;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #3e9909;
}

input:focus + .slider {
    box-shadow: 0 0 1px #396e08;
}

input:checked + .slider:before {
    -webkit-transform: translateX(17px);
    -ms-transform: translateX(17px);
    transform: translateX(17px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 23px;
}

.slider.round:before {
    border-radius: 50%;
}

.custom-elem{
    display: flex;
    align-items: center;
    justify-content: center;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

.snackbar-success{
    background: var(--green);
}

.snackbar-error{
    background: var(--red);
}

.refresh-div{
    position: fixed;
    bottom: 0;
    left: 0;
    background: #2b2d3a;
    color: white;
    font-size: 1.2rem;
    padding: 4px;
    z-index: 100;
    border-right: 1px #b33834 solid;
    border-top: 1px #b33834 solid;
    cursor: pointer;
}

@media screen and (min-width: 0px) and (max-width: 1424px) {
    .refresh-div-mobile {
        display: none;
    }
}
@media screen and (min-width: 1425px) {
    .refresh-div-mobile {
        display: block;
    }
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem;
}

.badge-danger {
    color: #fff;
    background-color: var(--red);
}

.tooltip{
    background: #2b2d3a !important;
    color: white;
    padding: 5px;
    font-size: 12px;
	border-radius: 5px;
}

.levelNumber {
    font-weight: 900;
    font-size: 60px;
    fill: #EFEFEF;
    text-shadow: -1px 1px 0 #000,
    1px 1px 0 #000,
    1px -1px 0 #000,
    -1px -1px 0 #000;
}

.ranking-tooltip-title{
	color: white;
	font-size: 1.35rem;
	text-align: center;
}

.ranking-tooltip-subtitle{
	color: white;
	font-size: 1.20rem;
	text-align: left;
	margin-bottom: 0;
}

.ranking-tooltip-value{
	text-align: left;
	color: white;
	margin: 0;
}

.ranking-tooltip-beta{
	color: orangered;
	font-size: 1.2rem;
	text-align: center;
}

.ranking-tooltip-top-1{
	color: #34ebde;
}

.ranking-tooltip-top-5{
	color: #e3bd27;
}

.ranking-tooltip-top-10{
	color: #cfcfcf;
}

.ranking-tooltip-top-all{
	color: #8f94a5;
}

.customGame-selected{
    background: #b33834;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.customGame-unselected{
    background: #2b2d3a;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.team-card{
    background-color: #2b2d3a;
    border-radius: 5px;
}

.customGame-icon{
    width: 1.5rem;
    height: 1.5rem;
    filter: brightness(0) saturate(100%) invert(100%);
}

.customGame-iconContent{
    text-align: center;
    color: white;
    font-size: 1.5rem;
    padding-left: 0.5rem;
}

.customGame-teamRecapContainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.customGame-hrTeam{
    margin: 0;
    border: none;
    height: 2px;
}

.customGame-legendIcon{
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}

.customGame-legendIcon-small{
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}

.customGame-light{
    background-color: #2b2d3a;
}

.customGame-dark{
    background-color: #282833;
}

.customGame-playerName{
    color: white;
    font-weight: bolder;
}

.customGame-hr{
    margin: 0;
}

.customGame-scoreConfigText{
    color: white;
}

.packcalc-header{
    border: #5c627e 1px solid;
    border-radius: 5px;
    color: white;
    background-image: url(/assets/heirloom_header.png?version=1.0.0);
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 7rem;
    padding-bottom: 15px;
}

.packcalc-config{
    border: #5c627e 1px solid;
    border-radius: 5px;
    color: white;
    background-color: rgba(17, 16, 16, 0.5);
    margin-top: 2rem;
    padding-bottom: 15px;
}

.packcalc-config_title{
    font-size: 1.7rem;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 0;
}

.packcalc-header_title{
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 0;
}

.packcalc-progress_container{
    background-color: #000;
    border: #5c627e 1px solid;
    border-radius: 5px;
    margin-left: 3rem;
    margin-right: 3rem;
}

.packcalc-progress_bar{
    background-color: #b33834;
    border-radius: 5px;
    color: white;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
}

.packcalc-header_info_title{
    color: white;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

.packcalc-header_info_number{
    color: white;
    font-size: 2.3rem;
    font-weight: bold;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.packcalc-header_info_global{
    color: white;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 10px;
}

.packcalc-header_info_plus{
    color: white;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

.packcalc-config_season_title{
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
}

.packcalc-config_card{
    background-color: #2b2d3a;
    border-radius: 5px;
    margin: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.packcalc-config_container{
    display: flex;
}

.packcalc-config_card_header{
    background-color: #b33834;
    border-radius: 5px 5px 0 0;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    margin-bottom: 0;
}

.packcalc-config_card_body{
    background-color: #282833;
    border-radius: 0 0 5px 5px;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 5px;
    margin-bottom: 0;
    flex-grow: 1;
}

.packcalc-config_card_body_input{
    background-color: #282833;
    border-radius: 0 0 5px 5px;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 5px;
    margin-bottom: 0;
    width: 100%;
}

.packcalc-config_card_body_text{
    color: white;
    font-size: 1.2rem;
    text-align: left;
    padding: 5px;
    margin-top: 2px;
    margin-bottom: 0;
}

.packcalc-left{
    float: left;
    margin-bottom: 0.5rem;
}

.packcalc-header_right{
    float: right;
}

.packcalc-right{
    float: right;
    margin-bottom: 0.5rem;
    text-decoration-style: dashed;
    text-decoration-line: underline;
    text-decoration-color: #b33834;
    cursor: pointer;
}

.packcalc-hint_bold{
    font-weight: bold;
}

.packcalc-config_card_body_checkbox{
    color: white;
    font-size: 1.2rem;
    text-align: left;
    padding: 5px;
    margin-top: 2px;
    margin-bottom: 0;
}

.packcalc-form-check{
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.packcalc-form-check-inline{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem;
}

.packcalc-checkbox{
    accent-color: #b33834;
}

.packcalc-config_subTitle{
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    margin-top: 0;
    margin-bottom: 0;
}

.packcalc-bottomSpacer{
    height: 100px;
}

.packcalc-config_formLabel{
    color: white;
    font-size: 1.2rem;
    text-align: left;
    padding: 5px;
    margin-top: 2px;
    margin-bottom: 0;
}

.packcalc-save{
    width: 100%;
}

.packcalc-table_head{
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    margin-top: 0;
    margin-bottom: 0;
}

.packcalc-table_delete{
    color: #b33834;
    font-size: 1.2rem;
    text-align: center;
    padding: 5px;
    margin-top: 0;
    margin-bottom: 0;
    cursor: pointer;
}

.packcalc-table_row{
    text-align: center;
}

.packcalc-header_packsSvg{
    filter: brightness(0) invert(1);
    height: 2rem;
}

.packcalc-autoFilled{
    color: #4cc54c;
    text-align: left;
    margin: 0 !important;
    display: none;
}

.packcalc-hintSvg{
    filter: brightness(0) invert(1);
    height: 2rem;
}

.menuContainerWidth{
    width: 100%;
}

.im_container{
    /*margin-top: 7rem;*/
    height: 100%;
}

.im_map{
    width: 100%;
    height: 100%;
}

.im_mapMenu{
    background-color: rgba(17, 16, 16, 0.5);
}

.im_mapTitle{
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    margin-top: 1rem;
    margin-bottom: 0;
}

.im_mapSubTitle{
    color: white;
    font-size: 1.8rem;
    text-align: center;
    padding: 5px;
    margin-top: 0;
    margin-bottom: 0;
}

.im_mapOptions{
    color: white;
    font-size: 1.5rem;
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 0;
    margin-bottom: 0;
}

.im_mapOptionsImg{
    height: 2.5rem;
}

.im_mapOptionsSubTitle{
    color: white;
    font-size: 1.7rem;
    text-align: center;
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: bold;
}

.im_optionsCircle{
    border-radius: 50%;
    background-color: #b33834;
    width: 1rem;
    height: 1rem;
    display: inline-block;
    padding-right: 10px;
    margin-top: 2px;
}

.im_mapOptionsLegend{
    font-size: 1.3rem;
}

.im_zipline{
    height: .5rem;
    width: 3rem;
    background-color: #e3be00;
    display: inline-block;
    margin-bottom: 2px;
}

.im_mapOptionsToggle{
    float: right;
    cursor: pointer;
}

.im_mapSelector{
    padding: 5px 5%;
}

.im_noWrap{
    display: inline-block;
}

.im_mapOptionsInput{
    margin-top: 5px;
}

.text-labels {
    font-size: 2em;
    font-weight: 700;
    color: white;
    width: 150px !important;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px;
    height: auto !important;
    text-align: center !important;
}

.teamIcons{
    max-height: 3rem;
    padding-right: 20px;
}

.center{
    text-align: center;
}

.white{
    color: white;
}

.error{
    color: #b33834;
    text-align: center;
    font-weight: bold;
}

.w100{
    width: 100%;
}

.landing_margin{
    padding-left: 1rem;
    padding-right: 1rem;
}

.button-small-text{
    font-size: 1.15rem;
}

.icon-selected{
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    cursor: pointer;
    height: 100%;
}

.icon-unselected{
    padding: 5px;
    cursor: pointer;
    height:100%;
}

.icon-upload_success{
    color: #4cc54c;
}

.icon-upload_error{
    color: #b33834;
}

.teamList{
    padding: 5px;
    margin: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    text-align: center;
    color: white;
}

.teamListDelete{
    color: #b33834;
    cursor: pointer;
    float: right;
    margin-top: 5px;
}

.poi_contest{
    background-color: rgba(179, 56, 52, 0.6);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.buttonFix{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 !important;
}

.icon-claim{
    font-size: 1.1rem;
    color: white;
}

.customsHeader{
    margin: 0;
}

.customsLabel{
    font-size: 1.2rem;
    color: white;
    margin-top: 10px;
    margin-bottom: 0;
}

.customsError{
    color: #b33834;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 0;
}

.customsPost{
    border-radius: 5px;
    margin: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-bottom: 15px;
    height: 100%;
}

.customsPostHeader{
    background-color: #b33834;
    border-radius: 5px 5px 0 0;
    color: white;
    font-size: 1.45rem;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    margin-bottom: 0;
}

.customsPostBody{
    background-color: #282833;
    border-radius: 0 0 5px 5px;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 5px;
    margin-bottom: 0;
    flex-grow: 1;
}

.customsPostDesc{
    font-size: 1.4rem;
    text-align: left;
    padding: 5px;
    margin-bottom: 0;
    color: white;
}

.customsPostSubTitles{
    color: white;
    text-align: left;
    font-size: 1.4rem;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
}

.customsPostElem{
    font-weight: bold;
    color: white;
}

.customsHr{
    margin: 5px;
}

.customsFlex{
    display: flex;
    align-items: center;
}

.customsAuthor{
    margin-top: 5px;
    margin-bottom: 0;
    float: right;
    font-size: 1.2rem;
    bottom: 1.5rem;
    right: 1.5rem;
    position: absolute;
}

.customsEdit{
    cursor: pointer;
}

.perfClose{
    color: white;
    font-size: 1.8rem;
}

.perfWRTitle{
    font-size: 1.8rem;
    margin-bottom: 0;
}

.perfWRValue{
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.perfWinLoss{
    font-size: 1.8rem;
    margin-bottom: 0;
}

.perfWinValue{
    font-size: 1.8rem;
    font-weight: bold;
    color: #4cc54c;
}

.perfLossValue{
    font-size: 1.8rem;
    font-weight: bold;
    color: #b33834;
}

.perfTitle{
    font-size: 2.4rem;
    margin-bottom: 0;
    color: white;
    font-weight: bold;
}

.article-content{
    background-color: #282833;
    border-radius: 5px;
    padding: 15px;
    margin: 0.5rem;
    margin-bottom: 1.5rem;
}

.article-title{
    font-size: 2.4rem;
    margin-bottom: 0;
    color: white;
    font-weight: bold;
}

.article-published{
    font-size: 1rem;
    color: white;
    margin-top: 10px;
    margin-bottom: 20px;
}

.article-cover-centered{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.article-cover{
    width: auto;
    height: auto;
    max-height: 500px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.article-text{
    font-size: 1.1rem;
    color: white;
}

.other-articles{
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.latest-article-cover{
    max-width: 100%;
    height: auto;
    max-height: 250px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.latest-article-title{
    font-size: 1.3rem;
    margin-bottom: 0;
    color: white;
    text-decoration: none;
    text-decoration-color: white;
    text-align: center;
}

.TitleRedAccent {
    text-underline-mode: continuous;
    text-decoration: underline;
    text-decoration-color: #b33834;
    text-underline-offset: 6px;
}

.article-text h1{
    font-size: 2.4rem;
    margin-top: 35px;
    margin-bottom: 25px;
    color: white;
    font-weight: bold;
}

.article-text h2{
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 20px;
    color: white;
    font-weight: bold;
}

.article-text h3{
    font-size: 1.8rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: white;
    font-weight: bold;
}

.article-text h4{
    font-size: 1.6rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: white;
    font-weight: bold;
}

.article-text{
    font-size: 1.1rem;
    color: white;
    line-height: 1.5;
}

.article-text strong{
    font-weight: bold;
}

.article-text img{
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.article-text > p > img + em{
    font-style: italic;
    text-align: center;
    font-size: 1rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.perks-background{
    background-color: #282833;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    height: 100%;
}

.perks-list-element{
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
    background-color: #1c1c21;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.perks-list-title{
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    font-weight: bold;
}

.perks-list-benefits{
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0;
    line-height: 1.8rem;
}

.perks-join-button{
    margin-top: 30px;
    padding: 12px 20px;
    font-size: 1.2rem;
    color: white;
    background-color: #b33834;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.perks-join-button:hover {
    background-color: #8e2f2a;
}

.perks-hover-info::after {
    content: attr(data-hover);
    display: none;
    position: absolute;
    background-color: #1c0000;
    color: white;
    border: 1px solid #b33834;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.9rem;
    z-index: 1;
    width: 100%;
}

.perks-list-benefits {
    position: relative;
}

.perks-hover-info:hover::after {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}