#__predictions > section {
    margin-bottom: 10px;
}
#predictions-filter {
    margin-left: auto;
    position: relative;
    z-index: 8;
}

#predictions-filter > .cover {
    position: fixed;
    height: 100%;
    width: 100%;
    background: transparent;
    top: 0;
    left: 0;
    display: none;
}

#predictions-filter > div:first-of-type {
    padding-block: 8px;
    border: none;
    display: flex;
    min-width: 150px;
    cursor: pointer;
}
#predictions-filter > div:first-of-type > span:first-of-type {
    font-size: 24px;
    margin-block: auto;
}
#predictions-filter > div:first-of-type > p {
    font-size: 14px;
    font-weight: 500;
    margin-block: auto;
    margin-inline: 10px;
}
#predictions-filter > div:first-of-type > span:last-of-type {
    margin-block: auto;
    border-radius: 8px;
    padding: 0;
    margin-left: auto;
}

#predictions-filter > div:last-of-type {
    position: absolute;
    border-width: 1px;
    min-width: 250px;
    margin-top: 10px;
    display: none;
    right: 0;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    border-radius: 10px;
    overflow: hidden;
}

#predictions-filter > div:last-of-type > div#prediction-filter-header {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 5px;
}
#predictions-filter > div:last-of-type > div#prediction-filter-header > p {
    margin-block: auto;
    margin-inline: 5px;
    margin-top: 5px;
}


#predictions-filter > div:last-of-type > div:not(#prediction-filter-header) {
    max-height: 300px;
    min-height: 300px;
    overflow-y: auto;
    margin-right: 5px;
    padding: 5px;
}

#predictions-filter > div:last-of-type > div:not(#prediction-filter-header)::-webkit-scrollbar {
    background: transparent;
    width: 10px;
    top: 15px;
}


#predictions-filter > div:last-of-type > div:not(#prediction-filter-header)::-webkit-scrollbar-thumb {
    background: rgba(104,104,104,0.5);
    border-radius: 3px;
}
#predictions-filter > div:last-of-type > div:not(#prediction-filter-header)::-webkit-scrollbar-thumb:hover {
    background: rgba(154,154,154,0.5);
    cursor: grabbing;
}

#predictions-filter > div:last-of-type > div:not(#prediction-filter-header) > div {
    border-radius: 8px;
    display: flex;
    padding: 10px;
    position: relative;
}
#predictions-filter > div:last-of-type > div:not(#prediction-filter-header) > div.active > span {
    margin-left: 5px;
}
#predictions-filter > div:last-of-type > div:not(#prediction-filter-header) > div.active::before{
    content: '';
    position: absolute;
    height: calc(100% - 20px);
    width: 3px;
    background: var(--theme-color);
    top: 0;
    left: 0;
    margin-block: 10px;
    margin-left: 5px;
    border-radius: 2px;
}
#predictions-filter > div:last-of-type > div:not(#prediction-filter-header) > div > span {
    font-size: 24px;
    margin-block: auto;
    
}
#predictions-filter > div:last-of-type > div:not(#prediction-filter-header) > div > p {
    font-size: 14px;
    margin-block: auto;
    margin-inline: 10px;
    font-weight: 400;
}



#top-games {
    position: relative;

}

#top-games > div#top-games-class {
    display: flex;
    margin-inline: 15px;
}
#top-games > div#top-games-class > .placeholder {
    
}
#top-games > div#top-games-class > .placeholder > .img > span {
    height: 32px;
    aspect-ratio: 1;
    font-size: 24px;
    padding: 4px;
    border-radius: 50%;
    background: #6c6c6c;
    color: var(--icon-color-dark);
    font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 48;
}


#top-games > div#top-games-class > div {
    display: flex;
    border-radius: 15px;
    padding: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
    transition: background-color 0s;
}
#top-games > div#top-games-class > div:first-of-type {
    margin-left: 0 !important;   
}
#top-games > div#top-games-class > div.active {
    background: radial-gradient(rgba(25,25,25,1) 40%, rgba(15,15,15,1) 70%) !important;
    margin-inline: 5px;
}

#top-games > div#top-games-class > div.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: auto;
    background-color: rgba(15, 15, 15, 1);
    height: 15px;
    width: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 50%);

}
#top-games > div#top-games-class > div > .img {
    width: 32px;
}
#top-games > div#top-games-class > div > p {
    font-size: 14px;
    font-weight: 500;
    text-wrap: nowrap;
    margin-block: auto;
    overflow: hidden;
    transition: all 0.5s;
    max-width: 0;
    margin: 0;
    display: none;
}


#top-games-button-left {
    position: absolute;
    display: flex;
    align-items: center;
    align-content: center;
    top: 200px;
    left: 5px;
    padding: 0;
    height: 60px;
    width: 34px;
    z-index: 5;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    border: solid 2px;
    translate: -40px 0;
    opacity: 0;
    transition: all 0.5s;
}
#top-games-button-left > span {
    margin: auto;
}
#top-games-button-right {
    position: absolute;
    display: flex;
    align-items: center;
    align-content: center;
    top: 200px;
    right: 5px;
    height: 60px;
    width: 34px;
    padding: 0;
    z-index: 5;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    border: solid 2px;
    translate: 40px 0;
    opacity: 0;
    transition: all 0.5s;
}
#top-games-button-right > span {
    margin: auto;
}


@media only screen and (max-width: 600px) {
    #top-games-button-left {
        display: none;
    }
    #top-games-button-right {
        display: none;
    }
}

.hello {
    color: rgb(58, 58, 58);
}


#top-games > div#top-games-body {
    display: flex;
    overflow-x: auto;
    padding: 5px;
    scroll-snap-type: inline mandatory;
    width: 100%;
}
#top-games > div#top-games-body:has(.placeholder) {
    overflow-x: hidden !important;
}

#top-games > div#top-games-body::-webkit-scrollbar {
    display: none;
}

#top-games > #top-games-tracker {
    display: flex;
    justify-content: center;
    justify-items: center;
}
#top-games > #top-games-tracker > span.placeholder {
    visibility: hidden;
}
#top-games > #top-games-tracker > span {
    height: 3px;
    min-width: 10px;
    background: rgba(38,38,38);
    border-radius: 3px;
    margin-inline: 2px;
    cursor: pointer;
    transition: all 0.5s;
    
}
#top-games > #top-games-tracker > span.active {
    background: var(--theme-color);
    min-width: 30px;
}
#top-games > #top-games-tracker > span:hover {
    scale: 1.2 1.5;
}
#top-games > #top-games-tracker > span.active:hover {
    margin-inline: 5px;

}

@keyframes placeholder-anim {
    0% {
        margin-left: -100%;
    }
    100% {
        margin-left: 100%;

    }
}


.match-top {
    margin-inline: 10px;
    margin-block: 5px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s;
}
.match-top.active {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 5/2;
}
.match-top.inactive {
    min-width: 200px;
}

.match-top:last-of-type {
    transition: margin-right 0.2s;
}

@media only screen and (max-width: 709px) {
    .match-top.active {
        min-width: calc(100% - 20px);
    }
    
}
@media only screen and (min-width: 709px) {
    .match-top.active {
        min-width: 600px !important;
    }
    
}
@media only screen and (max-width: 450px) {
    .match-top.active {
        aspect-ratio: 5/2.5 !important;
    }
}

.match-top > section {
    position: relative;
    height: 100%;
    width: 100%;
}

.match-top-gradient {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    border-radius: 10px;
    
}
.match-top-gradient > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.placeholder .match-top-gradient > img {
    visibility: hidden;
}
.match-top-gradient > div {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.8), rgba(5,5,5,0.8), rgba(5,5,5,0.8), rgba(5,5,5,1));
    top: 0;
    left: 0;
    border-radius: 10px;

}

.match-top-main {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    border-radius: 10px;
    display: grid;
    grid-template-rows: 30px auto 60px;
}

.mt-grid-area-1 {
    grid-row: 1/2;
}
.mt-grid-area-1 > div {
    display: flex;
    padding: 5px;
}
.placeholder .mt-grid-area-1 > div {
    display: block;
    width: 50%;
    height: 19px !important;
    translate: 5px 5px;
    padding: 0 !important;
    border-radius: 5px;
    overflow: hidden;
    background: rgb(28, 28, 28);
}
.placeholder .mt-grid-area-1 > div > div {
    display: flex;
    width: 50%;
    height: 100%;
    animation-name: placeholder-anim;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
.placeholder .mt-grid-area-1 > div > div > span:first-of-type {
    background: linear-gradient(to right, rgb(28, 28, 28), rgb(38, 38, 38));
    width: 50%;
    height: 100%;
    display: block;
}
.placeholder .mt-grid-area-1 > div > div > span:last-of-type {
    background: linear-gradient(to left, rgb(28, 28, 28), rgb(38, 38, 38));
    width: 50%;
    height: 100%;
    display: block;
}

.mt-grid-area-1 > div > span {
    font-size: 12px;
    margin-block: auto;
    text-wrap: nowrap;
}
.mt-grid-area-1 > div > span.material-symbols-outlined {
    margin-inline: 5px;
    font-size: 18px;
}
.mt-grid-area-1 > div > span.seperator {
    margin-inline: 5px;
    font-size: 5px;
    margin-block: auto;
    position: relative;
    background: transparent;
    z-index: 5;
    
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}
.mt-grid-area-1 > div > span.seperator::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #a5a9b4;
    border-radius: 50%;
    opacity: 0.3;
    scale: 1.5;
    z-index: 1;
}

.match-top.inactive .mt-grid-area-1 > div {
    max-width: 200px;
    overflow: hidden;
}

.mt-grid-area-2 {
    display: flex;
}
.mt-grid-area-2 > div {
    display: flex;
    margin: auto;
}
.mt-grid-area-2 > div > div {
    margin-block: auto;
    transition: all 1s;
}
.mt-grid-area-2 > div > div:not(:nth-of-type(2)) > .img {
    display: block;
    height: 64px;
    transition: all 0.5s;
}
.placeholder .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > .img > span {
    height: 64px;
    aspect-ratio: 1/1;
    font-size: 48px;
    padding: 8px;
    border-radius: 50%;
    background: #6c6c6c;
    color: var(--icon-color-dark);
    font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 48;
}
@media only screen and (max-width: 520px) {
    .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > .img {
        height: 48px !important;
    }
    .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > .img > span {
        font-size: 36px !important;
        padding: 6px !important;
    }
    .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > p {
        font-size: 12px !important;
    }
    .active .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > p {
        max-width: 48px;
    }

}

.placeholder .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > div:nth-of-type(2) {
    height: 19px;
    background: rgb(28, 28, 28);
    width: 200%;
    margin-block: 8px;
    border-radius: 5px;
    overflow: hidden;
}
.placeholder .mt-grid-area-2 > div > div:nth-of-type(1) > div:nth-of-type(2) {
    float: right;
}
.placeholder .mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) {
    float: left;
}
.placeholder .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > div:nth-of-type(2) > div {
    display: flex;
    width: 50%;
    height: 100%;
    animation-name: placeholder-anim;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
.placeholder .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > div:nth-of-type(2) > div > span:first-of-type {
    background: linear-gradient(to right, rgb(28, 28, 28), rgb(38, 38, 38));
    width: 50%;
    height: 100%;
    display: block;
}
.placeholder .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > div:nth-of-type(2) > div > span:last-of-type {
    background: linear-gradient(to left, rgb(28, 28, 28), rgb(38, 38, 38));
    width: 50%;
    height: 100%;
    display: block;
}
.mt-grid-area-2 > div > div:not(:nth-of-type(2)) > p {
    font-size: 14px;
    font-weight: 500;
    margin-block: 5px;
    text-wrap: nowrap;
    transition: all 0.5s;   
}
.active .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > p {
    max-width: 64px;
    overflow-y: visible;
}
.mt-grid-area-2 > div > div:nth-of-type(1) > .img {
    margin-left: auto;
}
.mt-grid-area-2 > div > div:nth-of-type(1) > p {
    text-align: center;
}
.active .mt-grid-area-2 > div > div:nth-of-type(1) > p {
    direction: rtl;
}
.mt-grid-area-2 > div > div:nth-of-type(3) > .img {
    margin-right: auto;
}
.mt-grid-area-2 > div > div:nth-of-type(3) > p {
    text-align: center;
}
.active .mt-grid-area-2 > div > div:nth-of-type(3) > p {
    direction: ltr;
}


.placeholder .mt-grid-area-2 > div > div:nth-of-type(2) {
    visibility: hidden;
}
.mt-grid-area-2 > div > div:nth-of-type(2) {
    margin-inline: 40px;
    transition: all 0.5s;
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(1) {
    width: 55px;
    display: flex;
    transition: all;
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(1) > span {
    font-size: 24px;
    font-weight: 700;
    /* margin-inline: 2px; */
    text-align: center;
    transition: all 0.5s;
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(1) > span:nth-of-type(2) {
    margin-inline: auto;
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    position: relative;
    transition: all 0.5s;
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.live {
    translate: -40px -60px;
    top: 0;
    left: 0;
    right: 0;
    width: 135px;
    position: absolute;
    display: flex;
    align-content: center;
    
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.live > span {
    background: rgba(255, 50, 50, 0.5);
    padding-inline: 10px;
    padding-block: 2px;
    border-radius: 10px;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    width: fit-content;
    display: flex;
    text-wrap: nowrap;
    margin-inline: auto;
    
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.live > span > span {
    font-size: 14px;
    vertical-align: middle;
    margin-block: auto;
    color: #fff;
    margin-right: 5px;
    font-weight: 500;
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.live > span > p {
    font-size: 10px;
    color: #fff;
    margin-block: auto;
    font-weight: 500;
    margin-right:2px;
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.date-finished {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    position: absolute;
    width: fit-content;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
    background: rgba(0,0,0,0.5);
    translate: -22px -60px;
    padding-inline: 10px;
    padding-block: 2px;
    border-radius: 10px;
    margin-inline: auto;
    text-wrap: nowrap;
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.date-finished > span.seperator {
    margin-inline: 5px;
    font-size: 5px;
    margin-block: auto;
    vertical-align: middle;
    margin-bottom: 2px;
    position: relative;
    background: transparent;
    z-index: 5;
    
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.date-finished > span.seperator::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #a5a9b4;
    border-radius: 50%;
    opacity: 0.3;
    scale: 1.5;
    z-index: 1;
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.date {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    position: absolute;
    width: 95px;
    translate: -18px;
    top: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    text-wrap: nowrap;
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.date > span.seperator {
    margin-inline: 5px;
    font-size: 5px;
    margin-block: auto;
    vertical-align: middle;
    position: relative;
    background: transparent;
    z-index: 5;
    
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.date > span.seperator::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #a5a9b4;
    border-radius: 50%;
    opacity: 0.3;
    scale: 1.5;
    z-index: 1;
}

.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.bordered {
    border-radius: 5px;
    border: solid 2px;
    background: rgba(38,38,38,0.5);
    width: 24px;
    color: var(--color-red);
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    border-color: rgb(48,48,48) !important;    
}
.mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.colon {
    font-weight: 900;
    margin-inline: 2px;
}

@media only screen and (max-width: 520px) {
    .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > .img {
        height: 48px !important;
    }
    .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > .img > span {
        font-size: 36px;
        padding: 6px;
    }
    .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > p {
        font-size: 12px !important;
    }
    .active .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > p {
        max-width: 48px;
    }
    .mt-grid-area-2 > div > div:nth-of-type(2) {
        scale: 0.9 !important;
    }
}
@media only screen and (min-width: 520px) {
    .match-top.active .mt-grid-area-3 > div > span:nth-of-type(2) {
        padding-right: 70px;
    }
}




.match-top.inactive .mt-grid-area-2 {
    max-width: 200px;
    overflow: hidden;
}
.match-top.inactive .mt-grid-area-2 > div > div:not(:nth-of-type(2)) {
    max-width: 150px;
    min-width: 150px;
}
.match-top.inactive .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > .img {
    height: 32px !important;
    margin-inline: 10px;
}
.match-top.inactive .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > .img > span {
    font-size: 24px !important;
    padding: 4px !important;
}

.match-top.inactive .mt-grid-area-2 > div > div:not(:nth-of-type(2)) > p {
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.match-top.inactive .mt-grid-area-2 > div > div:nth-of-type(1) {
    display: flex;
    translate: 0 -30px;
}
.match-top.inactive .mt-grid-area-2 > div > div:nth-of-type(3) {
    display: flex;
    translate: -240px 10px;
}

.match-top.inactive .mt-grid-area-2 > div > div:nth-of-type(2) {
    margin-inline: 20px;
}
.match-top.inactive .mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(1) {
    display: block;
    max-width: 50px;
    min-width: 50px;
    translate: -20px 2px;
}
.match-top.inactive .mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(1) > span {
    display: block;
}
.match-top.inactive .mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(1) > span:nth-of-type(2) {
    opacity: 0;
    display: none;
}
.match-top.inactive .mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(1) > span:nth-of-type(2).vs {
    opacity: 1;
    display: block;
    font-size: 16px;
    translate: 0 -12px;

}

.match-top.inactive .mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) {
    width: 50px;
    translate: -100px 10px;
    text-align: center;
}
.match-top.inactive .mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.date-finished {
    translate: -22px -105px;
}
.match-top.inactive .mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.date {
    translate: -18px 15px;
}
.match-top.inactive .mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.live {
    translate: -35px -105px;
}
.match-top.inactive .mt-grid-area-2 > div > div:nth-of-type(2) > div:nth-of-type(2) > span.colon {
    margin-inline: 2px;
}

/*  */
.mt-grid-area-3 {
    grid-row: 3/4;
    display: flex;
}
.placeholder .mt-grid-area-3 > div {
    display: flex;
    height: 40px;
    width: 100%;
    background: rgb(28,28,28) !important;
    padding: 0 !important;
    overflow: hidden;
}
.placeholder .mt-grid-area-3 > div > div {
    display: flex;
    width: 50%;
    height: 100%;
    animation-name: placeholder-anim;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
.placeholder .mt-grid-area-3 > div > div > span:first-of-type {
    background: linear-gradient(to right, rgb(28, 28, 28), rgb(38, 38, 38));
    width: 50%;
    height: 100%;
    display: block;
}
.placeholder .mt-grid-area-3 > div > div > span:last-of-type {
    background: linear-gradient(to left, rgb(28, 28, 28), rgb(38, 38, 38));
    width: 50%;
    height: 100%;
    display: block;
}
.mt-grid-area-3 > div {
    background: rgba(38,38,38,0.8);
    font-size: 14px;
    padding: 3px;
    margin: auto;
    width: 100%;
    margin: 10px;
    border-radius: 10px;
    display: flex;
}
.match-top.active .mt-grid-area-3 > div > span:nth-of-type(1) {
    margin-block: auto;
    margin-inline: 10px;
    font-size: 12px;
    max-width: 85px;
    /* overflow-x: hidden; */
    transition: all 0.5s;
    
}
.match-top.inactive .mt-grid-area-3 > div > span:nth-of-type(1) {
    margin-block: auto;
    margin-inline: 10px;
    font-size: 12px;
    max-width: 0;
    overflow-x: hidden;
    margin-inline: 0;
    transition: all 0.5s;
}



.mt-grid-area-3 > div > span:nth-of-type(2) {
    background: rgba(28,28,28,0.8);
    border-radius: 10px;
    padding: 4px;
    padding-inline: 10px;
    width: 100%;
    font-weight: 500;
    text-align: center;
}


.prediction-header {
    display: flex;
    padding: 10px;
    padding-inline: 15px;
    font-weight: 600;
}
.prediction-header > span {
    font-size: 24px;
    margin-block: auto;
    margin-right: 10px;

    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 0,
    'opsz' 48;
}
.prediction-header > p {
    font-size: 18px;
    margin-block: auto;
}

.prediction-header > button:nth-of-type(1) {
    margin-left: auto !important;
    margin-right: 5px;
}
.prediction-header > button {
    border: none;
    border-radius: 5px;
    width: min-content;
    height: min-content;
    margin-block: auto;
    display: flex;
    padding: 5px;
    margin-left: 5px;
    cursor: pointer;
}

.prediction-header > button > p {
    font-size: 12px;
    font-weight: 700;
    margin-block: auto;
    height: min-content;
    max-height: 18px;
    translate: 0 -1px;
    margin-inline: 5px;
    
}
.prediction-header > button > span {
    margin-block: auto;
    font-size: 18px;
    width: min-content;

    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 0,
    'opsz' 48;
    
}




#live-games-body,
#upcoming-games-body {
    display: grid;
    min-height: 246px;
    grid-template-rows: repeat(2, 50%);
    grid-auto-columns: 100%;
    grid-auto-flow: column;
    padding-inline: 10px;
    position: relative;

    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 15px;
    
}
#live-games-body::-webkit-scrollbar,
#upcoming-games-body::-webkit-scrollbar {
    display: none;
}
#live-games-body:has(.placeholder),
#upcoming-games-body:has(.placeholder) {
    overflow-x: hidden !important;
}

@media only screen and (min-width: 1025px) {
    #live-games-body,
    #upcoming-games-body {
        display: grid;
        grid-template-rows: repeat(2, 50%);
        grid-auto-columns: 50%;
        grid-auto-flow: column;
    }
}





.match-live,
.match-upcoming {
    display: grid;
    border-radius: 10px;
    grid-template-columns: 60% 40%;
    margin-inline: 5px;
    margin-bottom: 10px;
    scroll-snap-align: start;
    transition: all 0.2s;
}

.ml-grid-area-1 {
    grid-column: 1 / 3;
    font-size: 12px;
    display: flex;
    padding-block: 5px;
    padding-inline: 10px;
}
.ml-grid-area-1 > div:nth-of-type(1) {
    display: flex;
    overflow-x: hidden;
    margin-right: 10px;
}
.placeholder .ml-grid-area-1 > div:nth-of-type(1) {
    height: 24px;
    width: 40%;
    background: rgb(38,38,38) !important;
    overflow: hidden;
    border-radius: 5px;
}
.placeholder .ml-grid-area-1 > div:nth-of-type(1) > div {
    display: flex;
    width: 50%;
    height: 100%;
    animation-name: placeholder-anim;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
.placeholder .ml-grid-area-1 > div:nth-of-type(1) > div > span:first-of-type {
    background: linear-gradient(to right, rgb(38, 38, 38), rgb(48, 48, 48));
    width: 50%;
    height: 100%;
    display: block;
}
.placeholder .ml-grid-area-1 > div:nth-of-type(1) > div > span:last-of-type {
    background: linear-gradient(to left, rgb(38, 38, 38), rgb(48, 48, 48));
    width: 50%;
    height: 100%;
    display: block;
}

.placeholder .ml-grid-area-1 > div:nth-of-type(2) {
    height: 24px;
    width: 30%;
    padding: 0 !important;
    background: rgb(38,38,38) !important;
    overflow: hidden;
    border-radius: 5px;
    translate: 5px;
    
}
.placeholder .ml-grid-area-1 > div:nth-of-type(2) > div {
    display: flex;
    width: 50%;
    height: 100%;
    animation-name: placeholder-anim;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
.placeholder .ml-grid-area-1 > div:nth-of-type(2) > div > span:first-of-type {
    background: linear-gradient(to right, rgb(38, 38, 38), rgb(48, 48, 48));
    width: 50%;
    height: 100%;
    display: block;
}
.placeholder .ml-grid-area-1 > div:nth-of-type(2) > div > span:last-of-type {
    background: linear-gradient(to left, rgb(38, 38, 38), rgb(48, 48, 48));
    width: 50%;
    height: 100%;
    display: block;
}

.ml-grid-area-1 > div:nth-of-type(1) > span {
    font-size: 18px;
    margin-block: auto;
    margin-right: 5px;
}
.ml-grid-area-1 span.seperator {
    font-size: 5px !important;
    margin-inline: 5px !important;
    margin-block: auto;
    position: relative;
    background: transparent;
    z-index: 5;
    
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}
.ml-grid-area-1 span.seperator::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #a5a9b4;
    border-radius: 50%;
    opacity: 0.3;
    scale: 1.5;
    z-index: 1;
}

.ml-grid-area-1 > div:nth-of-type(1) > p {
    margin-block: auto;
    font-size: 12px;
    text-wrap: nowrap;
}
.ml-grid-area-1 > div:nth-of-type(2) {
    margin-left: auto;
    margin-block: auto;
    font-weight: 500;
    /* margin-right: 5px; */
    text-wrap: nowrap;
    text-align: center;
    display: flex;
    padding-block: 3px;
    padding-inline: 8px;
    border-radius: 8px;
    /* color: var(--theme-color); */
    background: rgb(5,5,5);
}
.ml-grid-area-1 > div:nth-of-type(2) > span {
    font-weight: 500;
}
.ml-grid-area-1 > div:nth-of-type(2):has(strong) {
    background: transparent;
    padding: 0 !important;

}
.ml-grid-area-1 > div:nth-of-type(2) > strong {
    min-width: 36px;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding-block: 3px;
    padding-inline: 8px;
    border-radius: 8px;
    background: rgb(5,5,5);
}
.ml-grid-area-1 > span {
    font-size: 18px;
    background: rgb(5,5,5);
    color: var(--theme-color);
    border-radius: 50%;
    margin-left: 5px;
    padding: 3px;
    display: block;
    aspect-ratio: 1;
    cursor: pointer;
    display: block;
    
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;

}


.ml-grid-area-2 {
    grid-column: 1 / 2;
}
.ml-grid-area-2 > div {
    display: flex;
    padding-inline: 10px;
    
}
.ml-grid-area-2 > div:last-of-type {
    padding-block: 5px;
    padding-bottom: 8px;

}
.ml-grid-area-2 > div > .img {
    margin-block: auto;
    margin-right: 10px;
}
.placeholder .ml-grid-area-2 > div > .img > span {
    aspect-ratio: 1;
    font-size: 18px;
    padding: 3px;
    border-radius: 50%;
    background: #6c6c6c;
    color: var(--icon-color-dark);
    font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 48;
}
.placeholder .ml-grid-area-2 > div > div:nth-of-type(2) {
    height: 24px;
    border-radius: 5px;
    width: 70%;
    background: rgb(38,38,38) !important;
    overflow: hidden;
    margin-block: 4px;
}
.placeholder .ml-grid-area-2 > div > div:nth-of-type(2) > div {
    display: flex;
    width: 50%;
    height: 100%;
    animation-name: placeholder-anim;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
.placeholder .ml-grid-area-2 > div > div:nth-of-type(2) > div > span:first-of-type {
    background: linear-gradient(to right, rgb(38, 38, 38), rgb(48, 48, 48));
    width: 50%;
    height: 100%;
    display: block;
}
.placeholder .ml-grid-area-2 > div > div:nth-of-type(2) > div > span:last-of-type {
    background: linear-gradient(to left, rgb(38, 38, 38), rgb(48, 48, 48));
    width: 50%;
    height: 100%;
    display: block;
}
.ml-grid-area-2 > div > p {
    font-size: 14px;
    font-weight: 500;
    margin-block: auto;
    max-width: 100%;
    overflow-x: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    margin-right: 5px;
    padding-block: 1px;
    margin-block: 4px;
}
.ml-grid-area-2 > div > span {
    font-size: 14px;
    min-width: 32px;
    text-align: center;
    margin-block: auto;
    border-radius: 10px;
    padding: 3px;
    border-width: 2px;
    font-weight: 600;
    margin-left: auto;
    display: block;
    
}

.ml-grid-area-3 {
    grid-column: 2 / 3;
}

.placeholder .ml-grid-area-3 > div {
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    padding: 0 !important;
    border-radius: 10px;
    background: rgb(38,38,38) !important;
    overflow: hidden;
}
.placeholder .ml-grid-area-3 > div > div {
    display: flex;
    width: 50%;
    height: 100%;
    animation-name: placeholder-anim;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
.placeholder .ml-grid-area-3 > div > div > span:first-of-type {
    background: linear-gradient(to right, rgb(38, 38, 38), rgb(48, 48, 48));
    width: 50%;
    height: 100%;
    display: block;
}
.placeholder .ml-grid-area-3 > div > div > span:last-of-type {
    background: linear-gradient(to left, rgb(38, 38, 38), rgb(48, 48, 48));
    width: 50%;
    height: 100%;
    display: block;
}
.ml-grid-area-3 > div {
    border-radius: 10px;
    height: calc(100% - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
    border-width: 2px;
    padding: 5px;
}
.ml-grid-area-3 > div > p:first-of-type {
    font-size: 12px;
    margin-block: auto;
    margin-bottom: 2px;
    overflow-x: hidden;
    
}
.ml-grid-area-3 > div > p:last-of-type {
    font-size: 14px;
    margin-block: auto;
    border-radius: 8px;
    padding: 5px;
    padding-inline: 10px;
    font-weight: 500;
    text-wrap: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}