html {
    font-size: 14px;
    overflow-x: hidden;
}

body {
    /* font-family: "Roboto", sans-serif; */
    background: var(--color-theme);
    color: var(--color-default-text);
    overflow-x: hidden;
}
/* This changes all the animations globally */
:root {
    --animate-delay: 0s;

    --color-theme: #09121c;

    --color-red-theme: #e62429;
    --color-red-theme-50: #e6242988;
    --color-maroon: #5a262d;

    --color-default-text: white;
    --color-anti-text: #373737;

    --color-light-grey: #2d353d;
    --color-dark-grey: #1e2730;
    --color-dark-grey-80: #1e2730dd;

    --color-mute-grey: #2d3032;
    --color-navy: #2a3d55;
    --color-black: #373737;
    --color-default-text-70: #ffffffb2;
    --color-default-text-50: #ffffff88;

    --color-upcoming: #ffd154;
    --color-completed: #a0a3a6;
    --color-ongoing: #66ed9d;

    --color-lose: #e62429;
    --color-win: #4af08e;

    --color-input: black;

    --hole-length: 0.8rem;
}

.light {
    --color-theme: #f2f4f5;
    --color-default-text: #373737;
    --color-anti-text: white;

    --color-default-text-70: #373737b2;
    --color-default-text-50: #37373788;

    --color-light-grey: #d9d9d9;
    --color-dark-grey: #ffffff;

    --color-input: #eaeaea;

    --color-lose: #dba100;
    --color-win: #00c04e;

    --color-upcoming: #dba100;
    --color-ongoing: #00c04e;
}

.color-default-text-50 {
    color: var(--color-default-text-50);
}

.result-none {
    /* display: none !important; */
    opacity: 0;
}

.lds-ellipsis {
    /* change color here */
    color: #1c4c5b;
}
.lds-ellipsis,
.lds-ellipsis div {
    box-sizing: border-box;
}
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ellipsis div {
    position: absolute;
    top: 33.33333px;
    width: 13.33333px;
    height: 13.33333px;
    border-radius: 50%;
    background: var(--color-red-theme);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-default-text);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    box-shadow: none;
}

#wrapper,
.section {
    position: relative;
    background-color: transparent;
    background: transparent;
    overflow: visible;
}

.content-wrapper {
    position: relative;
    padding-bottom: 1rem;
    padding-top: 60px;
    min-height: 100vh;
}

.bg-fade-top,
.bg-fade-bot {
    position: absolute;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    z-index: -1;
    pointer-events: none;
}

.bg-fade-bot {
    bottom: 220px;
    left: -2px;
    width: calc(100% + 2px);
    background: url("../images/bgs/BG Footer.webp");
    background-repeat: no-repeat;
    background-size: auto 100%;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 35%,
        black 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 35%,
        black 100%
    );
    aspect-ratio: 2 / 5;
}

.bg-fade-bot::after {
    /* content: ""; */
    position: absolute;
    bottom: 200px;
    left: 0;
    background: linear-gradient(
        180deg,
        rgba(34, 40, 55, 0) 68.25%,
        #0095ff 100%
    );
    aspect-ratio: 2 / 5;
    width: 100%;
    height: auto;
}

.light .bg-fade-bot {
    background: linear-gradient(to bottom, #de1a1e3d, #de1a1e3d),
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(255, 255, 255, 0.5) 70%,
            rgba(255, 255, 255, 0.5) 100%
        ),
        url(../images/bgs/auth-bg-v2.webp);
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgb(0, 0, 0, 0.5) 100%
    );
}

.bg-fade-top {
    top: 0;
    left: 0;
    background: url("../images/bgs/auth-bg-v2.webp") top / 100% 100% no-repeat;

    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.light .bg-fade-top {
    background: linear-gradient(
            to bottom,

            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.5) 30%,
            transparent 100%
        ),
        url("../images/bgs/auth-bg-v2.webp") top / 100% 100% no-repeat;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 30%,
        black 60%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 30%,
        black 60%,
        transparent 100%
    );
    filter: saturate(0);
    opacity: 0.25;
}

a {
    color: var(--color-default-text);
}

.btn-link:hover {
    color: var(--color-default-text);
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--color-red-theme);
    border-radius: 10px;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.section-my {
    background-color: #e5e6e7 !important;
    /* background: url('../images/bg/bg-section-transparent.webp') center; */
    background: url("../images/bg/bg-v2.webp") center;
    background-size: 110% auto;
    background-repeat: repeat-y;
    background-position: right center;
    min-height: calc(100vh - 40px);
    z-index: 2;
}
/* .section-my::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: calc(100% + 10px);
    height: 100%;
    background: url('../images/bg/bg-section-brush.webp') bottom center;
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
} */

.no-match-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    padding: 2rem;
    width: 100%;
    height: 100%;
    background: #ffffff0f;
    border-radius: 12px;
}

.no-match-view .err-logo {
    max-width: 180px;
    margin-bottom: 1rem;
}

.no-match-view .err-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.no-match-view .err-desc {
    max-width: 300px;
    text-align: center;
    font-weight: 300;
    font-size: 0.9rem;
}

.section-title-bg-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.section-title-bg {
    background: linear-gradient(
        90deg,
        rgba(255, 199, 0, 0) 0%,
        #856509 52%,
        rgba(232, 255, 89, 0) 100%,
        rgba(255, 199, 0, 0) 100%
    );
    padding: 5px 40px;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: white;
    font-style: italic;
    font-weight: 800;
    min-width: 280px;
    text-align: center;
}
.section-title-bg div {
    filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.4));
}

.text-coming-soon {
    font-family: "Black Range Free", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.btn-custom {
    background: url("../images/orns/tab-active.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "Black Range Free", sans-serif;
    font-weight: 500;
}
.btn-custom:hover {
    background: url("../images/orns/tab-hover.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.btn-custom.btn-sm {
    padding: 8px 30px 6px;
}

.news-card {
    position: relative;
    transition: all 0.2s ease-in-out;
    z-index: 5;
}
/* .news-card::before {
    content: '';
    position: absolute;
    top: calc(50% - 80px);
    left: -100px;
    transform: translateY(-50%);
    width: 200px;
    height: 100%;
    background: url('{{ asset("images/orns/news-hover-left.png") }}');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}
.news-card::after {
    content: '';
    position: absolute;
    top: calc(50% - 40px);
    right: -120px;
    transform: translateY(-50%);
    width: 300px;
    height: 500px;
    background: url('{{ asset("images/orns/news-hover-right.png") }}');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}
.news-card-link:hover .news-card::before,
.news-card-link:hover .news-card::after {
    opacity: 1;
} */
.news-card-img {
    position: relative;
    z-index: 10;
}
.news-card-img img {
    height: 200px;
    object-fit: cover;
}
.news-card-content-outer {
    background: transparent;
    padding: 2px;
    margin-top: -45px;
}
.news-card-content {
    position: relative;
    background: transparent;
    padding: 55px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    transition: all 0.2s ease-in-out;
}
.news-card .news-card-content .news-card-date {
    color: #333333;
    font-size: 0.8rem;
    margin-bottom: 3px;
    border-bottom: 1px solid #f59d00;
    padding-bottom: 4px;
}
.news-card .news-card-content .news-card-title {
    color: #333333;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
    padding-top: 4px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-card-link:hover .news-card {
    filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.2));
}
/* .news-card-link:hover .news-card-content-outer {
    background: linear-gradient(180deg, #F59D00 0%, #FFD800 100%);
} */
.news-card-link:hover .news-card-content {
    background: white;
}

/* ===== SEASON 14 ===== */
.section-my.section-14,
.section-14 {
    background-color: #fefefe !important;
}
.canvas-alt-tabs.tabs-bb {
    border-bottom: none;
    align-items: center;
}
.canvas-alt-tabs.tabs-bb:not(#week-tabs) .nav-link {
    /* color: #ffffff;
    text-transform: uppercase;
    background: radial-gradient(62.12% 108.24% at 0% 0%, #535353 0%, #050505 100%);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .2s ease-in-out;
    opacity: 0.4;
    font-size: 1rem;
    border: 2px solid #171717 !important;
    letter-spacing: 1px; */

    font-size: 1rem;
    border-radius: 0 !important;
    border: none !important;
    clip-path: polygon(
        calc(0% + 10px) 0%,
        100% 0%,
        calc(100% - 10px) 100%,
        0% 100%
    );
    margin: 0;
    padding: 8px 20px !important;
    background: #cfcfcf3d !important;
    color: #373737 !important;
    text-align: center;
    white-space: nowrap;
    margin: 0 -5px;
    transition: all 0.2s ease-in-out;
    border: none !important;
    opacity: 0.7;
    min-width: 90px;
}
.canvas-alt-tabs.tabs-bb:not(#week-tabs) .nav-link:hover,
.canvas-alt-tabs.tabs-bb:not(#week-tabs) .nav-link.active {
    /* opacity: 1; */
    background: linear-gradient(180deg, #323232 0%, #cfb30e 100%) !important;
    color: white !important;
    position: relative;
}
.canvas-alt-tabs.tabs-bb:not(#week-tabs) .nav-link.active {
    /* filter: drop-shadow(0 0.2rem 0.15rem rgba(0, 0, 0, 0.5)); */
    /* border: 2px solid #D7B602 !important; */
    opacity: 1;
}
.canvas-alt-tabs.tabs-bb:not(#week-tabs) .nav-link.active div {
    color: white !important;
}
.canvas-alt-tabs.tabs-bb:not(#week-tabs) .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0px;
    background: linear-gradient(90deg, rgba(152, 129, 0, 0) 0%, #fed700 100%);
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}
.canvas-alt-tabs.tabs-bb:not(#week-tabs) .nav-link.active::before {
    width: 100%;
}
.canvas-alt-tabs.tabs-bb:not(#week-tabs) .nav-link.active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url("../images/s14/bg/bg-tabs.png") no-repeat;
    background-size: calc(100% + 20px) 100%;
    background-position: center;
    filter: brightness(30%);
    z-index: -1;
}
.tabs li .nav-link {
    margin-bottom: 0 !important;
    font-size: 0.9rem;
}

.news-card-img img {
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 8px solid transparent;
    transition: all 0.2s ease-in-out;
}
.news-card-img.full-height img {
    object-fit: contain;
    object-position: 15px;
}
.news-card-content-outer {
    border-radius: 0 0 15px 15px;
    margin-top: -15px;
}
.news-card-content {
    /* padding: 35px 20px 25px; */
    padding: 22px 20px 15px;
    border-radius: 0 0 15px 15px;
    z-index: 0;
}
.news-card-content::before {
    content: "";
    position: absolute;
    top: -35px;
    right: -2px;
    background: url("../images/s14/orns/orn-news.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: auto;
    height: 100px;
    aspect-ratio: 16/9;
    z-index: 10;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    z-index: -1;
}
.news-card-link:hover .news-card-content {
    background: white;
}
.news-card-link:hover .news-card .news-card-img img {
    border-color: #fccc01;
    background-color: white;
}
.news-card-link:hover .news-card-content::before {
    opacity: 1;
}
.news-card .news-card-content .news-card-date,
.news-card .news-card-content .news-card-title {
    position: relative;
    z-index: 1;
}

/* -- dd select -- */
.dd-select,
.dd-option {
    /* background: linear-gradient(90deg, #D8C63C 0%, #CDA550 45.31%, #D8C63C 100%) !important; */
    border: none !important;
}
.dd-select {
    /* background: url('{{ asset("images/orns/dropdown-bg.png") }}') center !important;
    background-size: 100% 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important; */
    padding: 0;
    background: radial-gradient(
        62.12% 108.24% at 0% 0%,
        #535353 0%,
        #050505 100%
    ) !important;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
}
.dd-select .dd-selected {
    text-align: center;
    padding-right: 25px;
    /* background: rgba(255, 255, 255, 0.35); */
    border-radius: 4px;
    transition: all 0.15s ease-in-out;
}
/* .dd-select:hover .dd-selected {
    background: rgba(255, 255, 255, 0.7);
} */
.dd-options {
    background: radial-gradient(
        62.12% 108.24% at 0% 0%,
        #535353 0%,
        #050505 100%
    ) !important;
}
.dd-select,
.dd-options {
    border-radius: 6px !important;
}
.dd-select .dd-selected,
.dd-options .dd-option {
    /* padding: 7.5px; */
    padding: 2px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dd-options .dd-option.dd-option-selected,
.dd-options .dd-option:hover {
    background: rgba(255, 255, 255, 0.25);
}
.dd-select .dd-selected label,
.dd-options .dd-option label {
    margin-bottom: 0;
    /* color: #333333; */
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    font-size: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.5 !important;
}
.dd-select .dd-pointer-down {
    border-top-color: #333333;
}
.dd-select .dd-pointer-up {
    border-bottom-color: #333333 !important;
}
.dd-option-image,
.dd-selected-image {
    max-width: 30px !important;
}

.btn-custom {
    background: radial-gradient(
        62.12% 108.24% at 0% 0%,
        #535353 0%,
        #050505 100%
    ) !important;
    color: white;
    font-weight: 500;
    font-size: 1.25rem;
    padding: 4px 25px !important;
    letter-spacing: 0.5px;
    transition: all 0.2s ease-in-out;
}
.btn-custom:hover {
    background: radial-gradient(
        62.12% 108.24% at 0% 0%,
        #535353 0%,
        #050505 100%
    ) !important;
    color: white;
    opacity: 0.75;
}
.btn-custom.btn-sm {
    padding: 8px 30px 6px;
}

.fn-rank {
    font-size: 1.25rem;
    font-weight: 300 !important;
}

.btn-cdkeys {
    position: sticky;
    bottom: 30px;
    left: calc(100% - 100px);
    z-index: 1000;
    display: flex;
    width: 70px;
    height: auto;
    aspect-ratio: 1;
    transition: all 1s ease-in-out;
}
.btn-cdkeys .btn-close-cdkey {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: auto;
    aspect-ratio: 1;
    padding: 5px;
    background: white;
    border-radius: 50%;
    font-size: 0.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-cdkeys.closed {
    position: absolute;
    left: calc(100% + 100px);
    pointer-events: none;
}

.section {
    margin: 0;
    padding: 0;
}

.section-banner .banner-content {
    position: absolute;
    top: calc(50%);
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 4rem;
}

.section-banner .banner-content .banner-socials {
    display: flex;
    justify-content: space-between;
    column-gap: 0.5rem;
    max-width: fit-content;
    margin-top: 6rem;
}

.section-banner .banner-content .banner-socials .social-link {
    color: white;
    background: #ffffff1f;
    border-radius: 100%;
    height: auto;
    width: 40px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content .banner-info .banner-desc {
    color: white;
}

.banner-video-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 320px;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.banner-video-wrapper .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-video-wrapper .video-thumbnail .video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    color: white;
    background: linear-gradient(to top, black 0%, transparent 60%, transparent);
}
.banner-video-wrapper
    .video-thumbnail
    .video-thumbnail-overlay
    .video-thumbnail-play {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% -50%); */
    align-self: center;
    flex-grow: 1;
    width: 48px;
    height: auto;
    aspect-ratio: 1;

    cursor: pointer;
}

.banner-video-wrapper
    .video-thumbnail
    .video-thumbnail-overlay
    .thumbnail-title {
    line-height: 1;
    font-size: 1.2rem;
    font-weight: 700;
}

.banner-video-wrapper
    .video-thumbnail
    .video-thumbnail-overlay
    .thumbnail-date {
    font-weight: 400;
    font-size: 0.9rem;
}

.banner-video-wrapper video {
    width: 100%;
    height: 100%;
}

.title-themed {
    font-size: 2rem;
    --shift-length: 3px;
    position: relative;
    color: var(--color-default-text);
    font-weight: 700;
    text-transform: uppercase;
}

.title-themed::before {
    /* content: attr(data-text-shadow); */
    position: absolute;
    top: var(--shift-length);
    left: var(--shift-length);
    color: var(--color-red-theme);
    z-index: -1;
    font-weight: 700;
    width: 110%;
}

.card-themed {
    display: flex;
    flex-direction: column;
}

.card-themed .card-themed-header {
    background: linear-gradient(to right, #de1a1e 0%, #780e1000 100%);

    clip-path: polygon(
        1rem 0,
        100% 0,
        100% calc(100% - 1rem),
        calc(100% - 1rem) 100%,
        100% 100%,
        0 100%,
        0 1rem
    );
    padding: 0.5rem 1.5rem;
    font-size: 1.25rem;
}

.card-themed .card-themed-content {
    background: linear-gradient(
        90deg,
        rgba(230, 36, 41, 0.05) 0%,
        rgba(230, 36, 41, 0.25) 50%,
        rgba(230, 36, 41, 0.05) 100%
    );
    padding: 0.5rem 1.5rem;
}

.tabs .nav {
    position: relative;
    flex-wrap: nowrap;
    background: transparent;
    column-gap: 2px;
}

.switch-option .switch-item,
.tabs .nav .nav-item {
    width: 100%;
    /* background: #2d353d; */
    background: var(--color-light-grey);
    padding: 0 1rem;
}

.tabs .nav .nav-item .nav-link {
    background: transparent;
}

.switch-option {
    position: relative;
    display: flex;
    flex-direction: row;
    column-gap: 2px;
}

.switch-option .switch-item:hover,
.switch-option .switch-item:has(.switch-link.active),
.tabs .nav .nav-item:hover,
.tabs .nav .nav-item:has(.nav-link.active) {
    background: var(--color-red-theme);
}

.switch-option .switch-link,
.tabs .nav .nav-item .nav-link {
    text-align: center;
    font-weight: 500;
    text-transform: capitalize !important;
    color: var(--color-default-text);
    /* padding: 0.5rem 2rem; */
    padding: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    cursor: pointer;
}

.switch-option .switch-link.active,
.tabs .nav .nav-item .nav-link.active {
    color: white;
}

.id-global .select2 {
    color: var(--color-default-text);
}

.id-global .select2-dropdown {
    background-color: var(--color-light-grey);
    border: none;
}

.id-global
    .select2-container--default.select2-container--disabled
    .select2-selection--single {
    height: 35px;
    background-color: unset;
    opacity: 0.5;
}

.id-global .select2-wrapper,
.switch-option-wrapper,
.tabs .nav .nav-item-wrapper {
    position: relative;
    width: 100%;
}

.switch-option-wrapper.disabled {
    pointer-events: none;
}

.switch-option-wrapper:first-of-type .switch-item,
.tabs .nav .nav-item-wrapper:first-of-type .nav-item {
    clip-path: polygon(
        0 var(--hole-length),
        var(--hole-length) var(--hole-length),
        var(--hole-length) 0,
        100% 0,
        100% 100%,
        0 100%
    );
}
.switch-option-wrapper:last-of-type .switch-item,
.tabs .nav .nav-item-wrapper:last-of-type .nav-item {
    clip-path: polygon(
        0% 0%,
        0 100%,
        calc(100% - var(--hole-length)) 100%,
        calc(100% - var(--hole-length)) calc(100% - var(--hole-length)),
        100% calc(100% - var(--hole-length)),
        100% 0
    );
}

.btn-themed-2 {
    background: var(--color-red-theme);
    padding: 0.5rem 2rem;
    color: white;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    opacity: 1;
    transition: all 300ms ease-in-out;
}

.btn-themed-2:hover {
    opacity: 0.8;
}

.gold-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(
        90deg,
        #746239 0%,
        #edd397 45.8%,
        #edd397 56.1%,
        #746239 100%
    );
}

.id-global .select2-outer,
.select-themed-wrapper .select-themed,
.btn-themed-wrapper .btn-themed {
    position: relative;
    display: inline-block;
    background: var(--color-red-theme);
    clip-path: polygon(
        var(--hole-length) 0%,
        var(--hole-length) var(--hole-length),
        0 var(--hole-length),
        0 100%,
        calc(100% - var(--hole-length)) 100%,
        calc(100% - var(--hole-length)) calc(100% - var(--hole-length)),
        100% calc(100% - var(--hole-length)),
        100% 0
    );
    min-height: calc(var(--hole-length) * 2);
    padding: 0.5rem 2rem;
    color: var(--color-default-text);
    font-weight: 500;
    border: none;
}

.btn-themed-wrapper .btn-themed {
    color: white;
}

.btn-themed-wrapper:has(.btn-themed:disabled) {
    pointer-events: none;
    filter: grayscale(100%);
}

.select-themed-wrapper,
.btn-themed-wrapper {
    position: relative;
    display: inline-block;
    opacity: 1;
    transition: all 300ms ease-in-out;
}

.id-global .select2-wrapper::before,
.switch-option .switch-option-wrapper:first-of-type::before,
.tabs .nav .nav-item-wrapper:first-of-type::before,
.select-themed-wrapper::before,
.btn-themed-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(var(--hole-length) - 2px);
    height: auto;
    aspect-ratio: 1;
    background: var(--color-red-theme);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.id-global .select2-wrapper::before,
.switch-option .switch-option-wrapper:first-of-type::before,
.tabs .nav .nav-item-wrapper:first-of-type::before {
    background: var(--color-light-grey);
}

/* .select2-wrapper::before, */
.switch-option .switch-option-wrapper:first-of-type:hover::before,
.switch-option
    .switch-option-wrapper:first-of-type:has(.switch-link.active)::before,
.tabs .nav .nav-item-wrapper:first-of-type:hover::before,
.tabs .nav .nav-item-wrapper:first-of-type:has(.nav-link.active)::before {
    background: var(--color-red-theme);
}

.id-global .select2-wrapper::after,
.switch-option .switch-option-wrapper:last-of-type::after,
.tabs .nav .nav-item-wrapper:last-of-type::after,
.select-themed-wrapper::after,
.btn-themed-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(var(--hole-length) - 2px);
    height: auto;
    aspect-ratio: 1;
    background: var(--color-red-theme);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.btn-themed-wrapper:hover {
    opacity: 0.8;
}

.id-global .select2-wrapper::after,
.switch-option .switch-option-wrapper:last-of-type::after,
.tabs .nav .nav-item-wrapper:last-of-type::after {
    background: var(--color-light-grey);
}

/* .select2-wrapper::after, */
.switch-option .switch-option-wrapper:last-of-type:hover::after,
.switch-option
    .switch-option-wrapper:last-of-type:has(.switch-link.active)::after,
.tabs .nav .nav-item-wrapper:last-of-type:hover::after,
.tabs .nav .nav-item-wrapper:last-of-type:has(.nav-link.active)::after {
    background: var(--color-red-theme);
}

.id-global .select2-outer,
.select-themed-wrapper .select-themed,
.select-themed-wrapper::before,
.select-themed-wrapper::after {
    background: var(--color-light-grey);
}

.id-global .select2-outer {
    width: 100%;
}

.id-global .select2-outer,
.select-themed-wrapper .select-themed {
    padding: 0.7rem;
}

.id-global .select2-container--default .select2-selection--single {
    background-color: transparent !important;
    border: none !important;
    height: 35px;
}

.id-global .color-input .select2-container--default .select2-selection--single {
    background-color: var(--color-input) !important;
}

.id-global
    .select2-container
    .select2-selection--single
    .select2-selection__rendered {
    padding-left: 1rem;
}

.id-global
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered,
.id-global .select2 {
    line-height: 35px;
    color: var(--color-default-text) !important;
}

.id-global
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
}

.id-global .select2-container {
    width: 100% !important;
}

.accordion .accordion-header,
.toggle .toggle-header {
    background: linear-gradient(90deg, #de1a1e 0%, rgba(120, 14, 16, 0) 100%);
    color: var(--color-default-text);
    margin: 0;
    padding: 0.2rem;
    border: none;
}

.accordion .accordion-title,
.toggle .toggle-title {
    padding: 0.2rem 0.8rem;
}

table.table-statistics .team-logo {
    width: 32px;
    height: 32px;
}

table.table-statistics .team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.table-statistics-wrapper {
    width: 100%;
    height: fit-content;
    overflow-x: auto;
}

.region-flag {
    max-width: 18px;
    max-height: 12px;
    min-width: 18px;
    min-height: 12px;
    width: 18px;
    height: 18px;
}

.region-flag img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    object-fit: fill !important;
    object-position: center;
}

table.table-themed {
    font-size: 0.8rem;
    width: 100%;
}

table.table-themed thead tr {
    background-color: transparent;
    background: transparent;
}

table.dataTable.table-themed thead th {
    text-align: center;
    color: white;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--color-red-theme) !important;
}

table.dataTable thead tr > .dtfc-fixed-left,
table.dataTable thead tr > .dtfc-fixed-right,
table.dataTable tfoot tr > .dtfc-fixed-left,
table.dataTable tfoot tr > .dtfc-fixed-right,
table.table-themed thead tr th {
    background-color: var(--color-mute-grey) !important;
    background: var(--color-mute-grey);
    padding: 0.2rem 0.5rem;
}

.table-statistics-wrapper
    table.table-statistics
    thead
    tr
    th:not(:first-of-type) {
    border-left: 2px solid black;
}

table.table-themed thead tr th:last-of-type {
    border-top-right-radius: 6px;
}

table.table-themed thead tr th:first-of-type {
    border-top-left-radius: 6px;
}

table.table-themed tbody tr td {
    border-bottom: 1px solid #ffffff88;
}

table.table-themed tbody tr td {
    padding: 0.2rem 0.5rem;
    min-height: 1.5rem;
}

table.dataTable tbody tr > .dtfc-fixed-left,
table.dataTable tbody tr > .dtfc-fixed-right {
    background: var(--color-dark-grey);
    background-color: var(--color-dark-grey) !important;
}

.stick-orn {
    position: absolute;
    background: linear-gradient(
        90deg,
        #c9a654 0%,
        #edd397 45.8%,
        #edd397 56.1%,
        #c9a654 100%
    );

    width: 100%;
    height: 2px;
}

.stick-orn::before,
.stick-orn::after {
    content: "";
    background: linear-gradient(
        90deg,
        #c9a654 -20.7%,
        #edd397 44.06%,
        #edd397 58.63%,
        #c9a654 120.7%
    );
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.stick-orn::before {
    left: -2px;
}
.stick-orn::after {
    right: -2px;
}

.vert-stick-orn {
    position: absolute;
    background: linear-gradient(
        to bottom,
        #c9a654 0%,
        #edd397 45.8%,
        #edd397 56.1%,
        #c9a654 100%
    );

    width: 2px;
    height: 100%;
}

.vert-stick-orn::before,
.vert-stick-orn::after {
    content: "";
    background: linear-gradient(
        90deg,
        #c9a654 -20.7%,
        #edd397 44.06%,
        #edd397 58.63%,
        #c9a654 120.7%
    );
    width: 5px;
    height: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.vert-stick-orn::before {
    top: -2px;
}
.vert-stick-orn::after {
    bottom: -2px;
}

.id-global .select2-container--default .select2-results__option--selected {
    background-color: var(--color-dark-grey);
}
.id-global
    .select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--color-red-theme);
}

.id-global .select2-search__field,
.form-group .form-control,
input.form-themed {
    border-radius: 0;
    border: none;
    background: var(--color-input);
    color: var(--color-default-text);
    height: 35px;
    /* min-width: 320px; */
    padding: 0.3rem 1rem;
}

.form-group textarea.form-control {
    height: 150px;
}

.form-group .form-control {
    border-radius: 6px;
}

.form-group .form-control::placeholder,
input.form-themed::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.light .form-group .form-control::placeholder,
.light input.form-themed::placeholder {
    color: #37373799;
}

.form-error {
    color: var(--color-red-theme);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

input.error {
    border-color: var(--color-red-theme);
}

.back-component,
.more-component {
    display: flex;
    align-items: center;
    line-height: 2.5;
    font-weight: 500;
    column-gap: 0.3rem;
}
.back-component img {
    width: 24px;
    transform: rotate(180deg);
}

.more-component img {
    width: 24px;
}

.form-control-wrapper {
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.clear-text-input {
    width: fit-content;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.frame-orns-top::before,
.frame-orns-top::after,
.frame-orns-bottom::before,
.frame-orns-bottom::after {
    content: "";
    position: absolute;
    width: 50px;
    height: auto;
    aspect-ratio: 1;
    background: url(../images/orns/frame-orn.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.frame-orns-top::before {
    top: 0;
    left: 0;
}
.frame-orns-top::after {
    top: 0;
    right: 0;
    transform: rotate(90deg);
}
.frame-orns-bottom::before {
    bottom: 0;
    left: 0;
    transform: rotate(270deg);
}

.frame-orns-bottom::after {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

.diamond-frame-wrapper {
    position: relative;
}

.diamond-frame {
    position: relative;
    clip-path: polygon(20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%, 0 50%);
    background: var(--color-theme);
    padding: 0.1rem 1rem;
}

.diamond-frame-wrapper::before {
    content: "";
    position: absolute;
    left: -6px;
    top: -1px;
    clip-path: polygon(
        calc(20% + 4px) 0,
        calc(80% - 4px) 0,
        100% 50%,
        calc(80% - 4px) 100%,
        calc(20% + 4px) 100%,
        0 50%
    );
    width: calc(100% + 12px);
    height: calc(100% + 2px);
}

.win .diamond-frame-wrapper::before {
    background: var(--color-win);
}
.win .diamond-frame-wrapper {
    color: var(--color-win);
}

.lose .diamond-frame-wrapper::before {
    background: var(--color-lose);
}
.lose .diamond-frame-wrapper {
    color: var(--color-lose);
}

.title-themed-orn-wrapper {
    position: relative;
}

.title-themed-orn-wrapper::before {
    display: none;
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(120px, -50%);
    width: 90px;
    height: 24px;
    background: url(../images/orns/title-orn.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.double {
    position: relative;
}

.double::before {
    display: none;
    content: "";
    position: absolute;
    top: 50%;
    left: -70%;
    transform: translate(150px, -50%);
    width: 90px;
    height: 24px;
    background: url(../images/orns/title-orn.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.mobile-divider {
    width: 100%;
    height: 2rem;
    background: url("../images/orns/title-orn.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 6rem auto;
}

.title-orn-only {
    width: 100%;
    height: auto;
    aspect-ratio: 146 / 20;
    background: url("../images/orns/title-orn.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.padding-themed-1 {
    padding: 0.5rem 2.8rem;
}

.btn-filter {
    background: var(--color-red-theme);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: none;
    padding: 0.5rem;
    height: auto;
    aspect-ratio: 1;
    width: 35px;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-red-theme);
    --bs-btn-border-color: var(--color-red-theme);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-red-theme);
    --bs-btn-hover-border-color: var(--color-red-theme);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-red-theme);
    --bs-btn-active-border-color: var(--color-red-theme);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--color-red-theme);
    --bs-btn-disabled-border-color: var(--color-red-theme);
    opacity: 1;
    transition: all 300ms ease-in-out;
}

.btn-primary:hover {
    opacity: 0.8;
}

.btn {
    font-size: inherit;
    font-weight: 700;
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.link-hover-fade {
    opacity: 1;
    transition: all 200ms ease;
}

.link-hover-fade:hover {
    opacity: 0.8;
}

.ads-logo-container,
.ads-hor,
.ads-vert {
    /* display: none !important; */
}

.ads-hor img {
    object-position: top center;
}

.mpl-inline-logo {
    width: 12px;
    height: 12px;
    height: auto;
    aspect-ratio: 1;
    background: var(--color-navy);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    padding: 2px;
}

.match-status {
    text-transform: capitalize;
    font-size: 0.8rem;
    text-align: center;
    font-weight: bold;
}

.match-status.completed {
    color: var(--color-completed);
    padding: 0.2rem 0rem;
}

.match-status.upcoming {
    color: var(--color-upcoming);
    padding: 0.2rem 0rem;
}

.match-status.ongoing {
    color: var(--color-ongoing);
    padding: 0.2rem 0rem;
}

.match-status.live {
    position: relative;
    text-transform: uppercase;
    background: white;
    border-radius: 4px;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    color: var(--color-red-theme) !important;
}

.match-status.live::before {
    content: "● ";
    position: relative;
}

.tournament-category {
    font-weight: 300;
}

.schedule-date {
    font-weight: 700;
}

.schedule-label {
    color: var(--color-default-text-50);
    font-size: 0.95em;
}

.more-component img {
    transition: all 0.2s ease-in-out;
    transform: translateX(0);
}

.back-component:hover img {
    animation: slideLeft 0.5s ease-in-out infinite alternate;
}

.more-component:hover img {
    animation: slideRight 0.5s ease-in-out infinite alternate;
}

.form-group label.required,
.form-group:has(textarea[required]) label::after,
.form-group:has(input[required]) label {
    font-weight: 400;
}

.form-group label.required,
.form-group:has(textarea[required]) label::after,
.form-group:has(input[required]) label {
    position: relative;
}

.form-group label.required::after,
.form-group:has(textarea[required]) label::after,
.form-group:has(input[required]) label::after {
    content: "*";
    color: var(--color-red-theme);
    margin-left: 0.3rem;
}

.page-link,
.page-link:focus {
    background: none;
    border: none;
    background-color: transparent !important;
    color: var(--color-default-text);
}

.page-link:hover {
    opacity: 0.8;
}

.page-link.disabled,
.disabled > .page-link {
    background: none;
    opacity: 0.5;
}

.ui-icon-circle-triangle-w,
.ui-icon-circle-triangle-e,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev span {
    background: url("../images/orns/arrow-red.png");
    background-size: 100% auto !important;
    background-position: center center !important;
    background-repeat: no-repeat;
    background-image: url(../images/orns/arrow-red.png) !important;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
.ui-prev.ui-icon-circle-triangle-e {
    transform: rotate(180deg);
}

.tns-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    gap: 4px;
}

.tns-nav button {
    background: var(--color-light-grey);
    border-radius: 100%;
    aspect-ratio: 1;
    flex: 0 0 8px;
    width: 8px;
    aspect-ratio: 1;
    height: auto;
    min-height: 0;
    min-width: 0;
    border: none;
}

.tns-nav button.tns-nav-active {
    background: white;
}

.light .tns-nav button.tns-nav-active {
    background: var(--color-red-theme);
}

.img-disabled {
    opacity: 0.5;
}

.btn-filter-amount {
    font-size: 0.7rem;
    background: #781315;
    border: 1px solid white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: auto;
    aspect-ratio: 1;
    position: absolute;
    top: -10px;
    right: -10px;
}

.pointers-event-none {
    pointer-events: none;
}

.force-100vw {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.tb-bracket-container {
    position: relative;
    overflow-x: auto;
    padding-bottom: 2rem;
}

.tb-match-list {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.tb-bracket-col {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.tb-bracket-row:not(:first-of-type):last-of-type {
    margin-top: auto;
}

.tb-bracket-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.tbi-card-wrapper {
    width: 100%;
}

.tbi-datetime {
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    line-height: 1;
}

.tbi-type {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

.tbi-card-wrapper-shadow {
    width: 100%;
    height: 1rem;
}

.tbi-card {
    display: flex;
    flex-direction: column;
    column-gap: 1rem;
    align-items: center;
    width: 220px;
    align-items: stretch;
}

.tbi-team-1 {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.tbi-team-2 {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.tbi-team-1,
.tbi-team-2 {
    display: flex;
    row-gap: 0.5rem;
    border-left: 3px solid var(--color-red-theme);
    background: var(--color-dark-grey);
    padding: 0.5rem 1rem;
    align-items: center;
    column-gap: 0.5rem;
}

.tbi-team-1:hover,
.tbi-team-2:hover {
    background: linear-gradient(270deg, #de1a1e 0%, rgba(120, 14, 16, 0) 44.06%),
        linear-gradient(
            90deg,
            rgba(230, 36, 41, 0.05) 0%,
            rgba(230, 36, 41, 0.25) 50%,
            rgba(230, 36, 41, 0.05) 100%
        ),
        linear-gradient(0deg, #1a232c, #1a232c);
}

.light .tbi-team-1:hover,
.light .tbi-team-2:hover {
    background: linear-gradient(
        180deg,
        rgba(255, 254, 254, 0) -104.18%,
        rgba(255, 175, 177, 0.5) 100%
    );
}

.tbi-team.winner-vote,
.tbi-team-1:has(.tbi-voted-btn),
.tbi-team-2:has(.tbi-voted-btn) {
    background: linear-gradient(
            270deg,
            #de1a1e -1.63%,
            rgba(120, 14, 16, 0) 41.37%,
            rgba(222, 26, 30, 0.5) 100%
        ),
        linear-gradient(0deg, #1a232c, #1a232c);
}

.light .tbi-team.winner-vote,
.light .tbi-team-1:has(.tbi-voted-btn),
.light .tbi-team-2:has(.tbi-voted-btn) {
    background: linear-gradient(
        to right,
        rgba(255, 175, 177, 0.5) 0%,
        rgba(255, 254, 254, 0) 50%,
        rgba(255, 175, 177, 0.5) 100%
    );
}

.tbi-card .btn-themed-wrapper {
    --hole-length: 7px;
    cursor: pointer;
}

.tbi-card .btn-themed-wrapper .btn-themed {
    padding: 0 1.2rem;
    font-size: 0.65rem;
    height: 25px;
}

.tbi-team-logo {
    width: 25px;
    height: auto;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.tbi-team-status img {
    width: 0.8rem;
    height: auto;
    aspect-ratio: 1;
}

.tbi-team-status {
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    column-gap: 0.35rem;
}

.tbi-team.win .tbi-team-status {
    color: var(--color-win);
}

.tbi-team.lose {
    opacity: 0.5;
}

.tbi-team-status.lose {
    /* color: var(--color-lose); */
}

.tbi-team.win .tbi-team-score {
    color: var(--color-win);
}

.tbi-team.lose .tbi-team-score {
    color: var(--color-lose);
}

.tbi-team-name {
    flex-grow: 1;
    font-size: 0.85rem;
}

.tbi-voted-btn {
    background: linear-gradient(
        90deg,
        #eac97c 0%,
        #ffeaba 45.8%,
        #edd397 56.1%,
        #eac97c 100%
    );
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 0.65rem;
    font-weight: 700;
}

.light .tbi-voted-btn {
    color: var(--color-default-text);
}

.modal-themed .modal-content {
    background: var(--color-theme);
    border: 1px solid var(--color-red-theme);
    color: var(--color-default-text);
}

.modal-themed .modal-header {
    border-bottom: none;
    position: relative;
}

.modal-themed .modal-header {
}

.modal-themed .modal-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1rem;
    height: 1px;
    width: calc(100% - 2rem);
    background: linear-gradient(
        90deg,
        #746239 0%,
        #edd397 45.8%,
        #edd397 56.1%,
        #746239 100%
    );
}

.modal-themed .modal-header.no-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1rem;
    height: 1px;
    width: calc(100% - 2rem);
    background: none;
}

.modal-themed .modal-body {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-themed .modal-footer {
    border: none;
    justify-content: center;
}

.pvm-tournament {
    font-size: 0.9rem;
}

.pvm-match {
    font-size: 1.1rem;
}

.pvm-team {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pvm-team-name {
    font-size: 1.2rem;
}

.pvm-team-logo {
    width: 75px;
    height: auto;
    aspect-ratio: 1;
}

.c-btn-close {
    position: absolute;
    right: 1rem;
    background: none;
    border: unset;
    color: inherit;
}

.c-btn-cancel {
    color: var(--color-default-text);
    border: none;
    background: none;
}

.light .connector-el * {
    border-color: var(--color-light-grey) !important;
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(0.7rem);
    }
}

@keyframes slideLeft {
    0% {
        transform: rotate(180deg) translateX(0);
    }
    100% {
        transform: rotate(180deg) translateX(0.7rem);
    }
}

/* sm: phone - landscape */
@media (min-width: 576px) {
}

/* md: tablet */
@media (min-width: 768px) {
}

@media (max-width: 991px) {
    .form-check-input {
        width: 1.3em;
        height: 1.3em;
    }

    .side-filter-wrapper {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999;
        height: 100vh;
        background: var(--color-dark-grey);
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
        padding: 2rem 1rem;
        font-size: 0.9rem;
        transform: translateX(100%);
        transition: 300ms all ease;
        width: 220px;
    }

    .side-filter-wrapper.show {
        transform: translateX(0);
    }

    .tf-overlay,
    .mf-overlay {
        position: fixed;
        z-index: 998;
        background: #000000b2;
        top: 0;
        left: 0%;
        height: 100vh;
        width: 100vw;
    }
}

/* lg: desktop */
@media (min-width: 992px) {
    .tb-bracket-col {
        width: 100%;
    }

    .tbi-card {
        width: 100%;
    }
    .content-wrapper {
        padding-bottom: 6rem;
    }

    .lg-force-100vw {
        width: 99vw;
        position: relative;
        left: 50%;
        margin-left: -50vw;
    }
    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-list-item {
        display: list-item !important;
    }
    .col-lg-half-2 {
        width: calc(100% * (1 / 12) * 3 / 2);
    }

    .col-lg-2-5 {
        width: calc(100% * (1 / 7));
    }

    .col-lg-1-per-8 {
        width: calc(100% * (1 / 8));
    }

    .force-lg-100vw {
        width: 100vw;
        position: relative;
        left: 50%;
        margin-left: -50vw;
    }

    .card-themed .card-themed-header {
        background: linear-gradient(
            to right,
            #de1a1e 0%,
            #780e1000 50%,
            #de1a1e 100%
        );
    }
    .bg-fade-bot {
        bottom: 0;
        /* -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 25%,
            black 100%
        );
        mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 25%,
            rgb(0, 0, 0, 0.4) 100%
        ); */
        height: 600px;
        background-size: cover;
    }

    .bg-fade-bot::after {
        bottom: 0;
        aspect-ratio: 16 / 9;
    }

    .bg-fade-top {
        -webkit-mask-image: linear-gradient(
            to bottom,
            black 0%,
            transparent 50%,
            transparent 100%
        );
        mask-image: linear-gradient(
            to bottom,
            black 0%,
            transparent 50%,
            transparent 100%
        );
    }
    .content-wrapper {
        padding-top: 1rem;
        min-height: calc(100vh - 61px);
    }

    .matches-list .matches-item {
        column-gap: 1.5rem;
    }

    .tabs .nav .nav-item {
        padding: 0;
    }

    .tabs .nav .nav-item .nav-link {
        min-width: 110px;
    }
    .tabs .nav.nav-lg-fit {
        width: fit-content;
    }

    .tabs .nav.nav-lg-fit .nav-item .nav-link {
        min-width: 50px;
    }

    .title-themed {
        font-size: 2.5rem;
    }

    .title-themed-orn-wrapper::before {
        display: block;
    }

    .double::before {
        display: block;
    }

    .mobile-divider {
        display: none;
    }
    .w-lg-auto {
        width: auto !important;
    }

    .section-my {
        /* padding-top: 140px; */
        padding-top: 120px;
    }
    .section-title-bg-outer {
        margin-bottom: 30px;
    }
    .section-title-bg {
        font-size: 2rem;
    }

    .text-coming-soon {
        font-size: 5rem;
    }

    .canvas-alt-tabs.tabs-bb .nav-link,
    .canvas-alt-tabs.tabs-bb:not(#week-tabs) .nav-link {
        font-size: 1.25rem;
        /* border: 2px solid #171717 !important; */
        padding: 2px 30px;
    }
    .canvas-alt-tabs.tabs-bb:not(#week-tabs) .nav-link {
        padding: 8px 30px !important;
    }
    .canvas-alt-tabs.tabs-bb .nav-link.active {
        /* border: 2px solid #D7B602 !important; */
    }
    .canvas-alt-tabs.tabs-bb .nav-item:first-child .nav-link {
        border-radius: 0.5rem 0 0 0.5rem;
    }
    .canvas-alt-tabs.tabs-bb .nav-item:last-child .nav-link {
        border-radius: 0 0.5rem 0.5rem 0;
    }
}

/* xl: wide */
@media (min-width: 1200px) {
}

/* super wide */
@media (min-width: 1440px) {
}
