@font-face {
    font-family: SoccerJersey;
    src: url('fonts/SoccerJersey.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Organetto;
    src: url('fonts/organetto-ultrabold-semiext.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: Organetto;
    src: url('fonts/Organetto-Variable.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Poppins;
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Inter;
    src: url('fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --transition-duration: '0.15s';
    --zindex-appbar: 1301;
    --zindex-overlay: 1401;
    --zindex-header: 1101;
    --zindex-drawer: 1601;
    --bottom-drawer-z-index: 1701;
    -webkit-tap-highlight-color: transparent;
    --color-primary: #ffff00;
    --color-accent: #f1ff00;
    --color-white: #ffffff;
    --color-black: #000000;
    --typography-primary-family: Organetto, sans-serif;
    --bottom-drawer-max-height: 100vh;
    --bottom-drawer-background-color: var(--color-black);
    --typography-default-family: Inter, sans-serif;
    --typography-default-size: .875rem;
    --typography-default-weight: 400;
    --typography-default-lineheight: 1.43;
    --typography-default-letterspacing: .01071em;
    --typography-default-text-transform: none;
    --to-right-bottom-gradient: var(--color-black);
    --to-left-bottom-gradient: var(--color-black);
    --to-right-top-gradient: var(--color-black);
    --to-left-top-gradient: var(--color-black);
    --to-bottom-gradient: var(--color-black);
    --slide-overlay-background-color: var(--color-black);
    
    /* Colors */
    --yellow100: #F1FF00;
    --yellow: #FFFF00;
    
    --neutral100: #000000;
    --neutral90: #191919;
    --neutral80: #333333;
    --neutral70: #4D4D4D;
    --neutral60: #666666;
    --neutral50: #808080;
    --neutral40: #999999;
    --neutral30: #B3B3B3;
    --neutral20: #CCCCCC;
    --neutral10: #E5E5E5;
    --neutral5: #F2F2F2;
    --neutral0: #FFFFFF;

    --red180: #2E0907;
    --red160: #5D120E;
    --red140: #8B1B14;
    --red120: #BA241B;
    --red100: #E82D22;
    --red80: #ED574E;
    --red60: #F1817A;
    --red40: #F6ABA7;
    --red20: #FAD5D3;

    --orange180: #2E1C07;
    --orange160: #5D380D;
    --orange140: #8B5314;
    --orange120: #BA6F1A;
    --orange100: #E88B21;
    --orange80: #EDA24D;
    --orange60: #F1B97A;
    --orange40: #F6D1A6;
    --orange20: #FAE8D3;

    --green180: #004125;
    --green160: #0F6541;
    --green140: #0A8C55;
    --green120: #05B269;
    --green100: #00D87D;
    --green80: #33E097;
    --green60: #66E8B1;
    --green40: #99EFCB;
    --green20: #CCF7E5;

    --opacity1: #FFFFFF0D; /* 5% */
    --opacity2: #FFFFFF1A; /* 10% */
    --opacity3: #FFFFFF26; /* 15% */
    --opacity4: #FFFFFF33; /* 20% */

    /* Border */
    --border-sm: 1px;
    --border-md: 2px;
    --border-lg: 3px;
    
    /* Corner-Radius */
    --corner-radius-xs: 4px;
    --corner-radius-sm: 8px;
    --corner-radius-md: 12px;
    --corner-radius-lg: 16px;
    --corner-radius-full: 256px;
    
    /* Blur */
    --blur-bg-xs: blur(4px);
    --blur-bg-sm: blur(8px);
    --blur-bg-md: blur(16px);
    --blur-bg-lg: blur(24px);
    --blur-bg-xl: blur(32px);
    --layer-blur-full: blur(80px);
    
    /* Shadow */
    --shadow-yellow-sm: 0px 0px 4px 0px #FFFF0080;
    --shadow-yellow-md: 0px 0px 4px 0px var(--yellow);
    --shadow-yellow-lg: 0px 0px 12px 0px var(--yellow);
    --shadow-positive: 0px 0px 20px 0px var(--green100);
    --shadow-negative: 0px 0px 20px 0px var(--red100);
    --shadow-headerfade: 0px 8px 24px 0px #000000BF;
    
    /* Spacing */
    --space-none: 0px;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px;
    --space-9: 48px;
    --space-10: 64px;
    --space-11: 80px;
    
    /* Background */
    --background-primary: var(--yellow100);
    --background-secondary: var(--neutral100);
    --background-tertiary: var(--neutral0);
    --background-disabled: var(--neutral80);
    --background-neutral-60: var(--neutral60);
    --background-neutral-90: var(--neutral90);
    --background-success: var(--green80);
    --background-warning: var(--orange100);
    --background-negative: var(--red80);
    --background-opacity-1: var(--opacity1);
    --background-opacity-2: var(--opacity2);
    --background-opacity-3: var(--opacity3);
    --background-opacity-4: var(--opacity4);
    
    /* Text */
    --text-primary: var(--neutral0);
    --text-secondary: var(--neutral20);
    --text-tertiary: var(--neutral100);
    --text-neutral-60: var(--neutral60);
    --text-neutral-40: var(--neutral40);
    --text-negative-red-bg: var(--red180);
    --text-negative-black-bg: var(--red100);
    --text-success-green-bg: var(--green180);
    --text-success-black-bg: var(--green100);
    --text-warning: var(--orange180);
    --text-accent: var(--yellow100);
    
    /* Icon */
    --icon-primary: var(--neutral0);
    --icon-secondary: var(--yellow100);
    --icon-tertiary: var(--neutral100);
    --icon-negative-dark: var(--red180);
    --icon-negative-light: var(--red100);
    --icon-warning: var(--orange180);
    --icon-positive: var(--green180);
    
    /* Border */
    --border-primary: var(--opacity3);
    --border-secondary: var(--yellow100);
    --border-tertiary: var(--neutral80);
    --border-gray-40: var(--neutral40);
    --border-positive: var(--green100);
    --border-negative: var(--red100);
    
    /* White Opacity */
    --white-opacity-sm: var(--opacity1);
    --white-opacity-md: var(--opacity2);
    --white-opacity-lg: var(--opacity3);
    --white-opacity-xl: var(--opacity4);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-style: solid;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    color: var(--color-white);
    background-color: var(--color-black);
    font-family: var(--typography-default-family);
    font-size: var(--typography-default-size);
    font-weight: var(--typography-default-weight);
    line-height: var(--typography-default-lineheight);
    letter-spacing: var(--typography-default-letterspacing);
    text-transform: var(--typography-default-text-transform);
    user-select: none;
    -webkit-user-select: none;
}

input {
    user-select: auto;
    -webkit-user-select: auto;
}

strong, b {
    font-weight: 700;
}

.content {
    position: absolute;
    inset: 0;
    margin-bottom: 96px;
}

.feed-wrapper {
    background-color: var(--color-black);
}

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

#app {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: relative;
    background: var(--color-black) no-repeat center;
}

h1,
h2,
h3,
h4 {
    color: var(--color-white);
    font-family: Poppins, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: 120%;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 14px;
}

p {
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #CCCCCC;
    font-weight: 400;
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

p.small {
    font-size: 11px;
}

h1:focus {
    outline: none;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

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

.main > div:not(.bottom-nav, .bottom-nav-gradient-overlay) {
    width: 100%;
}

.sub-screen {
    width: 100%;
}

.drawer-container {
    max-height: 88%;
    overflow: scroll;
    padding-bottom: 30px;
}

.drawer-content {
    padding-left: 16px;
    padding-right: 16px;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.stroke {
    width: 100%;
    height: 1px;
    opacity: 0.5;
    background-color: #FFFFFF;
}

.dialog-background-blur {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
}

.close-icon {
    color: #FFFFFF;
    width: 28px;
    height: 28px;
}

.in-article.quiz-container .chip,
.in-article.poll-container .chip {
    position: absolute;
    top: 22px;
    right: 16px;
    margin-top: 0px;
}

.in-article.quiz-container .progress-circle-wrapper,
.in-article.poll-container .progress-circle-wrapper {
    top: 22px;
    right: auto;
}

.in-article.quiz-container .feed-slide,
.in-article.poll-container .feed-slide {
    padding-bottom: 8px;
}

.article-mini-image {
    height: 241px;
    width: 100%;
    background: #333333;
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.predict-explain-container {
    height: 100vh;
    overflow: scroll;
}

.bottom-drawer-content,
.hide-scrollbar,
.drawer-container.login,
.predict-explain-container {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.bottom-drawer-content::-webkit-scrollbar,
.hide-scrollbar::-webkit-scrollbar,
.drawer-container.login::-webkit-scrollbar,
.predict-explain-container::-webkit-scrollbar {
    display: none;
}

.predict-explain .article-mini-image img {
    width: auto;
    height: auto;
}

.predict-explain-button.button {
    box-sizing: border-box;
    gap: 10px;
    border-radius: 16px;
    padding-top: 26px;
    padding-bottom: 26px;
    font-family: Poppins, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-width: 1px;
    border-style: solid;
    --tw-border-opacity: 1;
    border-color: rgb(51 51 51/var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(25 25 25/var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.predict-explain-button > div {
    color: #FFFF00;
    display: flex;
}

.predict-explain-title,
.arena-board-header-top-title {
    color: #FFFFFF;
}

.predict-explain-button.is-active > div {
    color: var(--color-black);
}

.predict-explain-button.is-active {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 0/var(--tw-bg-opacity));
    color: var(--color-black);
}

.predict-leaderboard-top3-item .is-icon-80 .avatar-container .avatar {
    width: 70px;
    height: 70px;
}

.predict-leaderboard-top3-item .is-icon-80 .avatar-container {
    width: 80px;
    height: 80px;
}

.predict-leaderboard-top3-item .is-icon-104 .avatar-container .avatar {
    width: 91px;
    height: 91px;
}

.predict-leaderboard-top3-item .is-icon-104 .avatar-container {
    width: 104px;
    height: 104px;
    background-color: rgba(255, 255, 255, 0.05);
}

.loading-feed-items {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.predict-table-row-text {
    text-transform: uppercase;
}

.prediction-league-overview {
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.prediction-card-none,
.prediction-card-locked {
    z-index: 0;
}

.fill-available-height {
    height: 100%;
}

.background-favorites-image {
    background-size: contain;
}

/* TODO overwrite, remove this from the stylesheet */
body .league-card-wrapper.is-xl .league-card {
    background: var(--bg-image);
    height: 100%;
    background-size: cover;
}

body .league-card-blur {
    background: none;
}

.leaderboard-league-select .icon-slider.has-border {
    border-width: 0px;
}

.leaderboard-league-select .pt-15px {
    padding-top: 0;
}

#notification {
    width: calc(100% - 32px);
}

.bottom-drawer-wrapper {
    width: auto;
}

.header-fixed,
.drawer {
    width: 100%;
}


@media only screen and (min-width: 600px) {
    .main > div:not(.bottom-nav, .bottom-nav-gradient-overlay) {
        width: 500px;
    }

    .bottom-drawer-wrapper,
    .predict-explain-container,
    .header,
    .header-fixed,
    .drawer,
    .sub-screen,
    .drawer-container {
        width: 500px;
    }

    #notification {
        width: 468px;
    }
}

.text-capitalize {
    text-transform: capitalize;
}

.swiper-pagination {
    display: flex;
    position: absolute;
    align-items: center;
    padding-left: 16px;
    bottom: 0;
    gap: 7px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    transition: 0.3s;
    margin: 0;
    width: 3px;
    height: 3px;
}

.swiper-pagination-bullet-active {
    background: #FFFF00;
}

.swiper-pagination-bullet-active + .swiper-pagination-bullet,
.swiper-pagination-bullet.swiper-pagination-prev,
.swiper-pagination-bullet-active {
    width: 7px;
    height: 7px;
}

.swiper-pagination-prev-prev,
.swiper-pagination-bullet-active + .swiper-pagination-bullet + .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
}

.center-block {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.friends-container {
    height: 100%;
    background-attachment: fixed;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.friends-container::-webkit-scrollbar {
    display: none;
}

.icon-slide-icon-icon.league-icon {
    width: 32px;
    height: 32px;
}

body .predict-team-grid-item.is-active .predict-team-grid-item-circle .predict-team-grid-item-icon {
    background: var(--circle-bg);
}

.predict-team-grid-item-icon.team-icon img {
    width: 54px;
    height: 54px;
}

.predict-team-grid-item-icon.league-icon img {
    width: 56px;
    height: 56px;
}

.league-selector {
    margin-bottom: 100px;
}

.league-selector ul {
    padding: 15px;
}

.league-selector ul li {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    margin-bottom: 16px;
    cursor: pointer;
}

.league-selector span {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 14px;
    color: #FFFFFF;
}

.league-selector .flag {
    width: 24px;
    height: 24px;
    overflow: hidden;
    display: flex;
    margin-right: 15px;
    justify-content: center;
    vertical-align: top;
    border-radius: 100%;
}

.league-selector .flag img {
    height: inherit;
}

.league-selector .selected-country svg {
    font-size: 24px;
    width: 24px;
}

.league-selector .selected-country .country-name {
    font-size: 16px;
    padding-left: 15px;
}

.prediction-rewards.mud-drawer {
    background: rgba(0, 0, 0, 0.70);
    color: white;
}

.feed-item {
    width: 100%;
    position: relative;
}

.pointer-events-auto {
    pointer-events: auto;
}

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

.mt-24px {
    margin-top: 24px !important;
}

.league-details-favorite-dismiss {
    border-radius: 48px;
    background: #333;
    padding: 4px 12px;
    color: #CCC;
    font-family: Inter, system-ui, sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 16px;
    cursor: pointer;
}

.is-icon-12 {
    height: 12px;
    width: 12px;
    flex-shrink: 0;
    border-radius: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.is-icon-48 {
    height: 48px;
    width: 48px;
    border-radius: 16rem;
    background-color: var(--icon-bg);
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #00000033;
    border-radius: 50%;
    border-top-color: #000;
    border-left-color: #000;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.profile-page .header-left, .profile-page .header-right {
    flex: 0 50px;
}

.button-main.is-primary-outline {
    color: #ffff00;
    border: 2px solid #ffff00;
    padding: 9px 15px;
    background-color: transparent;
}

.button-main:first-child span {
    display: flex;
    align-content: center;
    justify-content: center;
}

.button-main .button-text {
    padding-left: 0.5em;
}

.button-main.is-primary:disabled {
    opacity: 0.5;
}

body .mt-2 {
    margin-top: .5em;
}

body .mt-4 {
    margin-top: 1em;
}

body .mt-6 {
    margin-top: 1.5em;
}

body .mt-8 {
    margin-top: 2em;
}

body .mb-2 {
    margin-bottom: .5em;
}

body .mb-4 {
    margin-bottom: 1em;
}

body .mb-6 {
    margin-bottom: 1.5em;
}

body .mb-8 {
    margin-bottom: 2em;
}

button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    text-transform: none;
    border-radius: 0;
    vertical-align: middle;
    -moz-appearance: none;
    text-decoration: none;
    background-color: transparent;
    -webkit-appearance: button;
}

.button-position {
    position: relative;
    overflow: hidden;
}

.icon-button {
    border: none;
    color: white;
    border-radius: 64px;
}

.button-border {
    border: 1px solid #fff;
}

span.ripple {
    position: absolute;
    width: inherit;
    height: inherit;
    left: 0;
    top: 0;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background-color: var(--color-white);
    opacity: 0.2;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.d-show {
    display: block;
}

.d-none {
    display: none;
}

.team-logo-predictions {
    width: 120px;
    height: 120px;
}

.match .match-header-score-left img.team-logo, .match .match-header-score-right img.team-logo {
    height: 67px;
    width: 67px;
}

.predict-bottom-big-icons .is-circle-88 img.team-logo {
    height: inherit;
    padding: 15px;
}

.screen-slide-overlay-left font-organetto img.team-logo {
    height: 120px;
    width: 120px;
}

.icon-slide-icon-circle .icon-slide-icon-icon.team-icon img.team-logo, .icon-slide-icon .icon-slide-icon-circle img.team-logo, .predict-team-grid-item-circle.has-inner-glow img.team-logo {
    height: inherit;
}

.show-on-mobile {
    display: none;
}

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

.cta-icon-container {
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    top: -65%;
    left: 0;
}

.cta-icon-container img{
    border-radius: 5px;
}

.youtube-video-container iframe {
    border-radius: 8px;
    border: 1px solid #FFFFFF26;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.edit-predictions-button {
    display: flex;
    gap: 6px;
    padding: 4px 8px 4px 8px;
    border: 1px solid #FFFFFF26;
    border-radius: 4px;
    background: #FFFFFF1A;
    align-items: center;
}

.edit-predictions-button-text {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 900;
    line-height: 12px;
    text-align: center;
}

.edit-predictions-button-ad {
    font-family: Inter, sans-serif;
    font-size: 8px;
    font-weight: 900;
    line-height: 8px;
    text-align: center;
    color: #F1FF00;
    background: #FFFFFF1A;
    padding: 2px;
    border-radius: 2px;
}

.blurred-bg {
    backdrop-filter: blur(22.5px);
    background: rgba(25, 25, 25, 0.75);
}

.detail-grid {
    display: grid;
    grid-template-columns: [full-width-start] 1rem [content-start] 1fr [content-end] 1rem [full-width-end];
    row-gap: 1rem;
}

.detail-grid > * {
    grid-column: content;
}

.detail-grid > .full-width {
    grid-column: full-width;
}

.detail-grid > .full-width .component-header {
    padding-inline-start: 1rem;
}

.text--heading-xxxs-extra-bold {
    font-family: Inter;
    font-weight: 900;
    font-size: 12px;
    line-height: 18px;
    vertical-align: middle;
}

.feed-item-container * {
    transition: opacity 0.3s ease;
}

.bg-contain {
    background-size: contain;
}

.bg-cover {
    background-size: cover;
}