@charset "UTF-8"; 

/*------------------------------------------------------------------------------------------------------
1. General
--------------------------------------------------------------------------------------------------------*/ 
/* 1.1 Root Code Variables */
body {
    /* background Color */  
    --body-bg: #000212;
    /* Fonts */  
    --title-font-family: 'Plus Jakarta Sans', sans-serif;   
    --body-font-family: 'Plus Jakarta Sans', sans-serif;  
    
    --color-1: #046ab5;
    --color-2: #eb164a;
    --color-3: #d10e43;
    --color-4: #012a5e;
    --color-5: #bf152f;
    --color-6: #f05230;
    --color-7: #fab728; 
    --color-8: #979b9d;
    --color-9: #01461a;
    --color-10: #ec164c;
    --color-11: #017a33;
    --color-12: #fcbb2e ;
    --color-13: #006ab6;
    --color-14: #b5a5a5;
    --color-15: #d01043; 
    --color-16: #0076c3; 
} 
/* 1.2 Theme Reset */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}
/* 1.3 Global Elements */
body {
    font-family: var(--body-font-family);
    font-size: 14px; 
    letter-spacing: 0.5px;
    color: var(--white-color);
    background: var(--body-bg);
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}
 
a {
    color: var(--primary);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

p {
    color: var(--text-color);
    margin: 0;
    font-size: 14px;
}

button {
    outline: none !important;
    cursor: pointer;
}

button:focus,
button:active {
    outline: none;
}

button,
a:hover,
a:focus,
a:visited,
a:active,
button:active {
    text-decoration: none;
    outline: none !important; 
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-family: var(--title-font-family);
    font-weight: 400;
    margin-top: 0; 
    margin-bottom: 15px;
    line-height: initial;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit !important;
}

.playoff-image img {
    display: inline-block;
    max-width: 100%;
    height: 29px ;
}
.divmain-center-header ,.divmain-center-footer, img {
    display: inline-block;
    max-width: 100%;
    height: 50px ;
}
  
ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
} 
input,
select,
button {
    font-family: var(--body-font-family);
}
textarea {
    overflow: hidden;
    resize: none;
}

iframe {
    border: none !important;
    display: block;
    width: 100%;
}  

section {
    position: relative;
}

main {
    position: relative;
    width: 100%;
    display: block;
} 
 
.modal-backdrop.show {
    opacity: .8;
}

/* :: Font h1 */
h1 {
    font-size: 62px;
}

/* :: Font h2 */
h2 {
    font-size: 52px;
} 
/* :: Font h3 */
h3 {
    font-size: 32px;
}
/* :: Font h4 */
h4 {
    font-size: 28px;
}
/* :: Font h5 */
h5 {
    font-size: 22px;
}
/* :: Font h6 */
h6 {
    font-size: 18px;
} 

/* :: button style */
.button-style-one {
    display: inline-block;
    padding: 12px 12px 12px 32px;
    position: relative;
    text-decoration: none;
    border-radius: 40px;
    background: var(--white-color);
    color: var(--black-color);
    font-size: 18px;
    font-family: var(--body-font-family);
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: 0.5s;
} 

.button-style-one:hover {
    color: var(--black-color);
    padding: 12px 32px 12px 32px;
}
.button-style-one svg {
    margin-left: 7px;
    transform: translate(-30px, 0);
    opacity: 0;
    transition: 0.5s;
}
.button-style-one:hover svg {
    transform: translate(0, 0);
    opacity: 1;
    transition: 0.5s;
}
.button-style-one svg path {
    fill: var(--black-color);
} 

/* button-style-two */
.button-style-two{
    display: inline-block;
    padding: 15px 30px;
    position: relative;
    text-decoration: none;
    border-radius: 40px;
    background: var(--gradient-one);
    color: var(--black-color);
    font-size: 16px;
    font-family: var(--title-font-family);
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: 0.5s;
    box-shadow: 0px 4px 1px 0px rgb(0 0 0 / 20%) inset;
}
.button-style-two:hover{ 
    color: var(--black-color);
    transform: scale(1.1);
}

 
 
/* >> Helper Class */
/* # color */
.primary-color {
    color: var(--primary) !important;
} 
.white-color {
    color: var(--white-color) !important;
} 
.black-color {
    color: var(--black-color) !important;
}  

.text-color{
    color: var(--text-color) !important;
}
.color-one{
    color: var(--color-one) !important;
}
.color-two{
    color: var(--color-two) !important;
}
.color-three{
    color: var(--color-three) !important;
}
.color-four{
    color: var(--color-four) !important;
}
.color-five{
    color: var(--color-five) !important;
}
.color-six{
    color: var(--color-six) !important;
}
.color-seven{
    color: var(--color-seven) !important;
} 

/* grid */
.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1.5rem;
} 

.body-bg{
    background: radial-gradient(29.7% 43.9% at 32.6% 48.3%, rgb(247 247 247) 0%, rgb(0 0 0 / 0%) 100%);
    width: 100%;
    height: 100vh;
    left: 20%;
    opacity: 0.2;
    pointer-events: none;
    position: fixed;
    top: 0; 
    z-index: 0;
} 

.divmain {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;  
}
.div-leval-box {
    position: relative;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
}
.leval { 
    position: relative;
    
}
.divmain-left .leval{
    margin-right: 40px;
}
.divmain-right .leval{
    margin-left: 40px;
}

.div-leval-item {
    position: relative;
    margin-bottom: 30px;
    transition: box-shadow 0.2s ease 0s;
    border-radius: 6px;
    font-size: 14px;
    height: 75px;
    display: flex;
    flex-direction: column; 
    width: 120px;
}
.leval-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
}

.div-leval-item-box {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 5px;
    border-radius: 10px;
    padding: 5px;
    height: 42px;
    gap: 4px;
}

.divmain-left .leval.leval-1 {
    margin-right: 10px;
}
.divmain-right .leval.leval-1 {
    margin-left: 10px;
}

.divmain-center-nox {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-1{
    background-color: var(--color-1);
}
.card-2{
    background-color: var(--color-2);
}
.card-3{
    background-color: var(--color-3);
}
.card-4{
    background-color: var(--color-4);
}
.card-5{
    background-color: var(--color-5);
}
.card-6{
    background-color: var(--color-6);
}
.card-7{
    background-color: var(--color-7);
}
.card-8{
    background-color: var(--color-8);
}
.card-9{
    background-color: var(--color-9);
} 
.card-10{
    background-color: var(--color-10);
}
.card-11{
    background-color: var(--color-11);
}
.card-12{
    background-color: var(--color-12);
}
.card-13{
    background-color: var(--color-13);
}
.card-14{
    background-color: var(--color-14);
}
.card-15{
    background-color: var(--color-15);
}
.card-16{
    background-color: var(--color-16);
} 


.div-leval-item-box:nth-last-child(1){
    border-bottom: none;
}
.div-leval-item-box .number {
    position: relative;
    left: 0;
    top: 0;
    color: #fff;
    opacity: 1;
}
.playoff-image img {
    width: 29px;
}
.divmain-left .leval .connector{
    width: calc(40px / 2);
    border-top: 1px solid rgb(255, 255, 255);
    border-right: 1px solid rgb(255, 255, 255);
    border-bottom: 1px solid rgb(255, 255, 255);
    border-image: initial;
    border-left: none;
    position: absolute;
    right: -20px; 
    margin: auto; 
    top: 50%;
    opacity: 0.2;  
} 

.divmain-right .leval .connector{
    width: calc(40px / 2);
    border-top: 1px solid rgb(255, 255, 255);
    border-left: 1px solid rgb(255, 255, 255);
    border-bottom: 1px solid rgb(255, 255, 255);
    border-image: initial;
    border-right: none;
    position: absolute;
    left: -25px; 
    margin: auto; 
    top: 50%;
    opacity: 0.2;
} 


.line {
    position: absolute;
    background: rgb(255, 255, 255);
    height: 1px;
    width: 20px;
    left: -20px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0.2;
}

.divmain-right .line {
    left: inherit;
    right: -20px;
} 

.divmain-center-middle {
    background: #e2a847;
    padding: 5px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
    width: 160px;
}
.games-cross {
    background: #000212;
    padding: 10px;
    border-radius: 10px;
}

.games-count {
    font-size: 24px;
}

.games-cross > div {
    margin: 10px 0;
    border-bottom: 2px solid rgb(255 255 255 / 5%);
    padding-bottom: 10px;
    z-index: 9999;
    position: relative;
    color: #fff;
}
.games-cross > div:nth-last-child(1){
    border-bottom: 0;
}



/* leval 3 */
.div-leval-box.lev-3 .leval.leval-3 .div-leval-item:nth-child(1) {
    margin-top: 0;
}
.div-leval-box.lev-3 .leval.leval-3 .div-leval-item {
    margin-top: 35px;
}
.div-leval-box.lev-3 .leval.leval-2 .div-leval-item:nth-child(1){
    margin-top: 74px;
}
.div-leval-box.lev-3 .leval.leval-1 .div-leval-item:nth-child(1){
    margin-top: 215px;
}
.div-leval-box.lev-3 .leval.leval-3 .connector {
    top: 100%;
    height: 140px;
} 

.div-leval-box.lev-3 .leval.leval-2 .connector {
    top: 100%;
    height: 280px;
}

.div-leval-box.lev-3 .leval.leval-3 .line {
    display: none;
} 

.div-leval-box.lev-3 .leval.leval-2 .div-leval-item {
    margin-top: 175px;
}


.leval.leval-3 .div-leval-item:nth-child(1){
    margin-top: 54px;
}
.leval.leval-3 .div-leval-item {
    margin-top: 105px;
}


/* leval 2 */
.div-leval-box.lev-2 .leval.leval-2 .div-leval-item:nth-child(1) {
    margin-top: 0;
}
.div-leval-box.lev-2 .leval.leval-2 .div-leval-item {
    margin-top: 35px;
}
.div-leval-box.lev-2 .leval.leval-1 .div-leval-item:nth-child(1){
    margin-top: 74px;
}
.div-leval-box.lev-2 .leval.leval-2 .connector {
    top: 100%;
    height: 140px;
} 
.div-leval-box.lev-2 .leval.leval-2 .line {
    display: none;
} 

.leval.leval-2 .div-leval-item:nth-child(1){
    margin-top: 160px;
}
.leval.leval-2 .div-leval-item {
    margin-top: 315px;
} 

/* leval 1 */ 

.leval.leval-1 .div-leval-item:nth-child(1){
    margin-top: 370px;
} 

.div-leval-box.lev-1 .leval.leval-1 .div-leval-item:nth-child(1) {
    margin-top: 74px;
}
.div-leval-box.lev-1 .leval.leval-1 .line {
    display: none;
}



.div-leval-box .leval.leval-4 .connector { 
    top: 100%; 
    height: 105px;
}
.div-leval-box .leval.leval-3 .connector { 
    top: 100%; 
    height: 210px;
}
.div-leval-box .leval.leval-2 .connector { 
    top: 100%; 
    height: 420px;
} 





.playoff-outer-box{
    margin-top: 20px;
}

.playoff-tabs-item{
    display: none;
}
.playoff-tabs-item.playoff-tabs-list{
    display: block;
}
.playoff-tabs {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.playoff-tabs a {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.6;
    color: #ABECD6;
}
.playoff-text {
    color: #fff;
}

.playoff-tabs a.playoff-tabs-active, .playoffs-box a:hover {
    opacity: 1;
}
.playoff-tabs a::after{
    content: "";
    position: absolute;
    bottom: -10px;
    height: 2px;
    width: 0;
    background: #ABECD6;
    left: 0; 
    transition: 0.5s;
}
.playoff-tabs  a.playoff-tabs-active::after, .playoff-tabs a:hover::after {
    width: 100%;
}

.playoff-text.winner:after {
    content: "\1F3C6";
    position: absolute;
    right: 1px;
}


.playoff-round-four .div-leval-box.lev-4 .leval.leval-3 .div-leval-item-box,
.playoff-round-four .div-leval-box.lev-4 .leval.leval-2 .div-leval-item-box,
.playoff-round-four .div-leval-box.lev-4 .leval.leval-1 .div-leval-item-box,
.playoff-round-three .div-leval-box.lev-4 .leval.leval-2 .div-leval-item-box,
.playoff-round-three .div-leval-box.lev-4 .leval.leval-1 .div-leval-item-box,
.playoff-round-two .div-leval-box.lev-4 .leval.leval-1 .div-leval-item-box {
    font-size: 0;
    opacity: 0.5;
}

.playoff-round-four .div-leval-box.lev-4 .leval.leval-3 .div-leval-item-box .playoff-image,
.playoff-round-four .div-leval-box.lev-4 .leval.leval-2 .div-leval-item-box .playoff-image,
.playoff-round-four .div-leval-box.lev-4 .leval.leval-1 .div-leval-item-box .playoff-image ,
.playoff-round-three .div-leval-box.lev-4 .leval.leval-2 .div-leval-item-box .playoff-image,
.playoff-round-three .div-leval-box.lev-4 .leval.leval-1 .div-leval-item-box .playoff-image,
.playoff-round-two .div-leval-box.lev-4 .leval.leval-1 .div-leval-item-box .playoff-image {
    visibility: hidden;
} 

.playoff-outer-box ::-webkit-scrollbar {
    display: none;
}