:root{
    --color-orange: #FF5E00;
    --color-black: #000000;
    --color-gray: #0000009C;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Montserrat', sans-serif;

    margin:0px;
    
    min-height: 100vh;
    
    background: url("/public/img/mfl_bg.png");
    background-repeat: repeat;
    background-size: 150px;
}

h1.center,
h2.center,
h3.center{
    text-align: center;
}
h1.uppercase,
h2.uppercase,
h3.uppercase{
    text-transform: uppercase;
}

.text-interactive{
    cursor: pointer;
    transition: all 0.15s linear;
}
.text-interactive:hover{
    color: var(--color-orange);
}
.text-interactive img{
    height:1.5em;
    width: auto;
    transform: translateY(0.25em);
}
td{
    min-width: 30px;
}

.orange-border-only{
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FF5E00;
}

.button-submit{
    display: block;
    background-color: transparent;
    color:black;
    border-radius: 54px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.025em;

    cursor: pointer;
    height:fit-content;
    padding: 0.5em 1em;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(234,132,87,1);
}

a.button{
    color:white;
    text-decoration: none;
    padding: 0.5em 1em;
    border: 1px solid white;
    border-radius: 54px;
    position: relative;
    height:fit-content;

    overflow: hidden;
    z-index: 2;

    transition: all 0.15s ease-in-out;

    text-transform: uppercase;


    cursor: pointer;
}
a.button::before{
    content: "";
    position: absolute;
    top:-1px;
    left:-1px;
    width:calc(100% + 2px);
    height:calc(100% + 2px);
    background: linear-gradient(90deg, rgba(234,132,87,1) 0%, rgba(213,104,79,1) 100%);
    opacity: 1;

    transition: all 0.15s ease-in-out;
    z-index: -1;
    border-radius: 54px;
}
a.button:hover::before{
    opacity: 1;
}
a.button:hover{
    border-color: transparent!important;
}

a.button.bold{
    font-weight: bold;
    border-width: 2px;
}

a.button.orange{
    color: white;
    border-color: transparent;
}
a.button.orange:hover{
    color: white;
}
a.button.gray{
    color:var(--color-gray);
    border-color: var(--color-gray);
    background-color: white;
}
a.button.gray:hover{
    color: white;
    background-color: var(--color-orange);
}
/* a.button.filled{
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    color:white;
} */

a.button.tab-change{
    font-weight: bold;
}
a.button.tab-change:not(.active){
    border-color: black;
    color: #000000B8;
}
a.button.tab-change:not(.active)::before{
    opacity: 0;
}

a.button.center{
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

a.button.black{
    color:white;
    font-weight: 500;
}
a.button.black::before{
    background: black;
}

a.b2{
    border-color: rgba(234,132,87,1)!important;
    color: rgba(234,132,87,1)!important;
    border-width: 2px;
    font-weight: 600;
}
a.b2::before{
    opacity: 0!important;
}
a.b3{
    border-color: rgba(234,132,87,1)!important;
    color: black!important;
    border-width: 2px;
    font-weight: 600;
}
a.b3:hover{
    border-color: rgba(234,132,87,1)!important;
}
a.b3::before{
    opacity: 0!important;
}

.slide a.button::before{
    opacity: 0;
}
.slide a.button:hover::before{
    opacity: 1;
}
.login a.button.orange{
    border-color: transparent;
    color:white;
}
.login a.button.gray::before{
    opacity: 0;
}
.login a.button.gray:hover{
    background-color: transparent;
    color: var(--color-gray);
    border-color: var(--color-gray)!important;
}

.popup{
    background-color: #9c9c9c81;
    position: fixed;
    top:0px;
    left:0px;
    height:100%;
    width: 100%;
    z-index: 9999;
    display: none;
}
.popup.active{
    display: block;
}
.popup.login > div{
    background-color: white;
    border-radius: 19px;
    max-width: 90vw;
    width: 700px;
    padding:5em 3em;
    box-sizing: border-box;

    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}
.popup .label{
    background-color: #fff;
    font-size: 22px;
    left: 1em;
    padding: 0 1em;
    position: relative;
    top: 0.5em;
}
.popup.login > div > input{
    display: block;
    box-sizing: border-box;
    width: 100%;
    font-size: 40px;
    line-height: 1.5em;
    margin-bottom: 1em;
    border: 1px solid #8A3300;
    border-radius: 3px;
}
.popup.login h2{
    font-size: 64px;
    margin: 0px;
    margin-bottom: 20px;
    text-align: center;

}
/* .popup.login > div > div > a{
    font-size: 1.5em;
} */




.flex-between{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.d90{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}



footer{
    background-color: black;
    padding: 15px 2vw;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color:white;

    position: relative;
    z-index: 5;
}
footer .logo{
    text-align: center;
}
footer .logo img{
    max-height:200px;
    width:auto;
}
footer > div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
footer a {
    text-decoration: none;
}
footer .footer-side-left{
    display: flex;
    flex-direction: row;
}
footer .footer-side-left div:first-of-type{
    margin-right: 2em;
}
footer .footer-side-left div:nth-child(3){
    margin-left: 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
footer .footer-side-left div a{
    text-decoration: none;
    color:white;
}

.docs ul{
    list-style: none;
}
/* .docs ul {
    list-style: none;
    counter-reset: li;
}
.docs li:before {
    counter-increment: li;
    content: counters(li,".") ". ";
} */
.docs {
    padding: 0 50px 50px 50px;
    display: block;
}

header{
    background: white;
    padding-top:15px;
    /* overflow: hidden; */
}

header .orange-line{
    height:100px;
    margin-bottom: 15px;
    background-color: var(--color-orange);
    position: relative;
}
header .orange-line img{
    position: absolute;
    left:50%;
    top:0px;
    height:calc(100% + 75px);
    transform: translateX(-50%);
    z-index: 99;
}

header .slider{
    overflow: hidden;
    position: relative;
    padding: 0px 42px;
    white-space: nowrap;

}
header .slider .slides{
    overflow: auto;
    scroll-behavior: smooth;
}
/* Hide scrollbar for Chrome, Safari and Opera */
header .slider .slides::-webkit-scrollbar {
    display: none;
}
  
/* Hide scrollbar for IE, Edge and Firefox */
header .slider .slides {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
header .slider .slide{
    display: inline-block;
    border-left: 1px solid var(--color-orange);
    padding-left: 0.5em;
    padding-right: 0.5em;
    color: var(--color-black);
    text-decoration: none;
    width: 200px;
    display: inline-block;
    box-sizing: border-box;
    white-space: initial;
}
header .slider .slide div{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    justify-items: center;
}
header .slider .slide div:not(:nth-child(3)){
    font-size: 20px;
    font-weight: bold;
    padding-left: 70px;
    position: relative;
}
header .slider .slide div img{
    height: 50px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
header .mfl-title{

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    height:60px;
    width:100%;
    box-sizing: border-box;

    font-family: 'Jost';
    font-size: 25px;
    line-height: 60px;
    text-transform: uppercase;
    letter-spacing: 0.58em;
    color:white;
    text-align: center;


    background-color: var(--color-black);
}

header .mfl-title span{
    width: 50%;
    box-sizing: border-box;
    display: block;
}
header .mfl-title span:nth-child(1){
    padding-right:4%;
}
header .mfl-title span:nth-child(2){
    padding-left:4%;
}
header .slider .arrow{
    position: absolute;
    background: url("/public/img/arrow.svg"), #E4E4E4;
    background-repeat: no-repeat;
    background-position: center;
    width:42px;
    height:100%;
    top:0px;
    z-index: 2;
}
header .slider .arrow.left{
    left:0px;
}
header .slider .arrow.right{
    right:0px;
    transform: rotate(180deg);
}

.m-slider{
    margin-top:1em;
}
.m-slider .slides{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    min-height: 500px;
    max-height: 100vh;
}
.m-slider .slides .slide{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    text-align: center;
    margin-right:16px;
    width:calc(100% - 14px);

    overflow: hidden;
    /* background: url("/public/img/slider_bg.png"), url("/public/img/mfl_bg.png"), #FF5E00; */
    /* background-position: center;
    background-repeat: no-repeat, repeat; */
    /* background-size: calc(300% - 3em) calc(100% - 3em), 60% auto; */

    background-image: url("/public/img/slide_bg_3.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    transition: all 0.15s linear;
}
.m-slider .slides .slide a {
    text-decoration: none;
    color: inherit;
}
.m-slider .slides .slide > img{
    width: 100%;
    height: 6em;
    object-fit: cover;
    object-position: center center;
}
.m-slider .slides .slide.active{
    width:calc(100% - 14px);
    justify-content: space-around;
    /* background-size: calc(100% - 3em) calc(100% - 3em), 20% auto; */
}
.m-slider .slides .slide.final{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.m-slider .slides .slide.final > img{
    height:100%;
    width:40%;
    object-fit: contain;
}
.m-slider .slides .slide.final > div{
    width:40%;
}

.m-slider .slides .slide.final h2{
    font-size: 5em;
    margin: 0px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.75);
    text-shadow: 0px 0px 20px #ffffff;
}
.m-slider .slides .slide.final p{
    font-size: 3em;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0px 0px 20px #ffffff;
}
.m-slider .slides .slide.final p span:not(:last-child){
    border-right: 1px solid black;
    padding-right: 0.4em;
}

@media screen and (max-width:1400px) {
    .m-slider .slides .slide.final > img{
        display: none;
    }
    .m-slider .slides .slide.final > div{
        width:100%;
    }
    .m-slider .slides .slide.final > div > img{
        width: 100%;
    }
    .m-slider .slides .slide.final h2{
        font-size: 4em;
        margin: 0px;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 0.75);
    }
    .m-slider .slides .slide.final p{
        font-size: 2.5em;
        text-transform: uppercase;
        font-weight: 700;
    }
}
.m-slider .slides .slide:last-child{
    margin-right: 0px;
    overflow: hidden;
}
.m-slider .slides .slide > div{
    transition: all 0.15s linear;
}
.m-slider .slides .slide .text{
    max-width: 100%;
    transition: all 0.15s linear;
    color:black;
    width: 100%;
    
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.m-slider .slides .slide .text div{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
}
.m-slider .slides .slide .text .button{
    color:black;
    border-color: black;
}
.m-slider .slides .slide .text hr{
    width: 20%;
}
.m-slider .slides .slide .vs{
    width: 90%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    height:calc(50% - 4em);
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    left:0px;
}
/*.m-slider .slides .slide:not(.active) .vs{
    width: 200%;
    left:-50%;
    justify-content: center;
}*/
.m-slider .slides .slide .vs img{
    height:100%;
    width: auto;
    max-width: 33%;
    object-fit: contain;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
                                  -webkit-user-drag: none;
                                  -khtml-user-drag: none;
                                  -moz-user-drag: none;
                                  -o-user-drag: none;
                                  user-drag: none;
}
.m-slider .slides .slide .vs img:nth-child(2){
    height:70%;
}

.m-slider .slides .slide .vs img:nth-child(1){
    padding-top:0.5em;
}

.m-slider .slides .slide .vs img:nth-child(3){
    padding-bottom:0.5em;
}

.m-slider .slides .slide .names{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.m-slider .slides .slide .names span{
    width: 33%;
    text-transform: uppercase;
    display: block;
    font-size: 1.5em;
}

.m-slider .slides .slide .text span{
    font-size: 2em;
}
.m-slider .slides .slide .text a{
    font-size: 1em;
}

/* .m-slider .slides .slide:not(.active) .vs{
    width: 300%;
} */


.m-slider .controls{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.m-slider .controls .dot{
    width: 1.5em;
    height:1.5em;
    margin: 0px 15px;

    background-color: #FF5E00;

    transition: all 0.15s ease-in-out;

    border-radius: 100%;
}
.m-slider .controls .dot.active{
    background-color: #7D3104;
}
.m-slider .controls .arrow{
    width: 2em;
    height:2em;
    margin-right:30px;
    background: url("/public/img/m-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.m-slider .controls .arrow.right{
    transform: rotate(180deg);
    margin-right:0px;
    margin-left:30px;
}

.teams{
    position: relative;
    
    display: flex;
    flex-direction: row;
    justify-content: left;
    flex-wrap: nowrap;
    background-color: white;
    margin:100px 0px;
    height: 150px;
    overflow: hidden;
    /* background: url("/public/img/icons/slider.png"), white;
    background-size: auto 100%;

    animation-duration: 1200s;
    animation-name: slidein;
    animation-iteration-count: infinite;
    animation-timing-function: linear; */
    /* animation-direction: alternate; */
}
@keyframes slidein {
    from {
        background-position: 0px center;
    }
  
    to {
        background-position: -100000px center;
    }
  }

.teams::before,
.teams::after{
    content:"";
    position: absolute;
    top:0px;
    width: 100%;
    background-image: url(/public/img/team_h_line.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left:0px;
    height: 25px;
}
.teams img{
    /* position: absolute; */
    display: block;
    /* width:5%; */
    /* transition: ; */
    margin:0px 20px;
    /* height:100%;
    width:auto; */
    flex-basis: auto;
    height:100%;
    object-fit: contain;
    object-position: center;
    /* transition: left; */
}
.teams::before{
    top: calc(-25px - 1em);
}
.teams::after{
    top: calc(100% + 1em);
}


.m-teams-table{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    padding:0px 2vw;
    padding-bottom: 2em;
    color:#000000B8;
    align-items: center;
}
.m-teams-table .tables{
    width:100%;
}
.m-teams-table .tables > div{
    display: flex;
    flex-direction: row;
    justify-content: left;
    flex-wrap: nowrap;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.m-teams-table .tg-ads{
    width:15%;
}
.m-teams-table .table th{
    background: #FFD15DC7;
    line-height: 1.5em;
    font-size: 1.15em;
    color: #000000B8;
    font-weight:600;
}
.m-teams-table .tables .table{
    padding:2em;
    box-sizing: border-box;
    width: 48%;
    background-color: white;
    box-shadow: 0px 4px 36px rgba(0, 0, 0, 0.3);
    height:fit-content;
    margin-right:2%;
}
.m-teams-table .tables .table table{
    width: 100%;
}


.m-teams-table .table td{
    text-align: center;
    /* line-height: 0.5em; */
    font-size: 1.5em;
}
.m-teams-table .table td{
    border: 1px solid #999;
}
.m-teams-table .table td:nth-child(2){
    text-align: left;
    line-height: 3em;
    font-size: 1em;
    padding-left: 1em;
}
/* .m-teams-table .table td:nth-child(1),
.m-teams-table .table td:nth-child(4){
    font-weight: bold;
} */
.m-teams-table .table td.bold {
    font-weight: bold;
}
.m-teams-table .table tr img{
    height:3em;
    margin-bottom:-1em;
}

.tg-ads{
    display: flex;
    flex-direction: column;
    background: url(/public/img/tg_banner_bg_full.png), white;
    background-repeat: none;
    background-size: cover;
    
    background-position: right;

    text-align: center;
    /* overflow: hidden; */
    box-sizing: content-box;
    padding-top:2em;
    position: relative;
}
.tg-ads a.button::before{
    background: #FF5E00;
}
.tg-ads div{
    position: relative;
}
.tg-ads.mobile-hide div{
    position: relative;
    height:30%;
}
.tg-ads.mobile-hide div:last-child{
    position: relative;
    height:40%;
    overflow: hidden;
}
.tg-ads img{
    width: 100%;
    height:auto;
}
.tg-ads a{
    color:white;
    text-decoration: none;
    font-weight: bold;
}
.tg-ads h2{
    font-weight: 900;
    font-size: 2em;
    font-style: italic;
    letter-spacing: -1%;
    margin: 0px;
}
.tg-ads img.logo{
    width: 80%;
    height:auto;
    margin:15px 0px;
}
.tg-ads img.tg{
    position: absolute;
    left:0px;
    /* top:4em; */
    bottom:calc(-8px);
    height:calc(100%);
    object-fit: contain;
}
/* .tg-ads .pc-hide,
.tg-ads .mobile-hide{
    position: absolute;
    top:0px;
    left:0px;
    width: 100%;
    height:100%
}
.tg-ads .pc-hide */

.tour-title{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}
.tour-title h1{
    display: inline-block;
}
.tour-table{
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding:1em;
    background-color: white;
    box-shadow: 0px 4px 36px 0px #0000004D;

}
.tour-table:not(.active){
    display: none;
}
.tour-table table{
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.tour-table th{
    font-weight: bold;
    font-size: 1.25em;
    padding: 0.75em 1em;
    background: #FFD15DC7;
}
.tour-table td:not(:nth-child(2)){
    text-align: center;
}
.tour-table td:nth-child(1),
.tour-table td:nth-child(2){
    font-weight: bold;
}
.tour-table td{
    line-height: 3em;
    border: 1px solid #999;
}
.tour-table td img{
    padding: 0.4em 0px;
    height: 3em;
    margin-bottom: -1em;
}
.tour-table td:last-child > div{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    height:100%;
}


table .dot{
    width:1.5em;
    height:1.5em;
    border-radius: 100%;
    margin:8px 0px;
}
table .dot.green{
    background: #00BF2A;
}
table .dot.red{
    background: #EF0000;
}
table .dot.gray{
    background: #9C9898;
}



.tour-twins{
    width:95%;
    margin-left: auto;
    margin-right: auto;

    display: flex;
    flex-direction: row;
    justify-content: center;
}
.tour-twins > div{
    width: fit-content;
    min-width: 45%;

    background-color: white;
    box-shadow: 0px 4px 36px 0px #0000004D;
}
.tour-twins > div:first-child{
    margin-right: 2em;
}
.tour-twins > div table{
    width: 100%;
}
.tour-twins th{
    line-height: 2.5em;
    font-size: 1.5em;
    margin:0px;
    background: #FFD15D;
    color:white;
    text-align: center;
    text-transform: uppercase;
}
.tour-twins h2.th{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.tour-twins td{
    padding:1em 0.5em;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid #999;
}



.teams-vs{
    margin-top:70px;
    margin-bottom:50px;
    background: #FFFCF994;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.teams-vs span,
.teams-vs strong,
.teams-vs p{
    color:#000000D9;
}
.teams-vs > div{
    width:35%;
}
.teams-vs  > .center{
    text-align:center;
    width:30%;
}
.teams-vs  > .center > h1{
    margin:0px;
    font-size: 100px;
    letter-spacing: 0px;
}
.teams-vs  > .center > h2{
    margin:0px;
}
.teams-vs  > .center > h3{
    margin:0px;
    font-size: 30px;
}
.teams-vs > .center p {
    margin: 0.25em 0px;
}
.teams-vs  > .center > div{
    color: #000000BA;
}

.teams-vs > *:not(.center){
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.teams-vs > *:not(.center) > div{
    width: 50%;
}
.teams-vs > *:not(.center) > div:first-child{
    text-align: center;
}
.teams-vs > *:not(.center) > div > *{
    display: block;
    margin:0.25em 0px;
}
.teams-vs > div.left > div >  strong::after{
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-left: 0.5em;
    background-image: url("/public/img/ball.png");
    background-size: 100% 100%;
    transform: translateY(25%);
}
.teams-vs > div.right > div >  strong::before{
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.5em;
    background-image: url("/public/img/ball.png");
    background-size: 100% 100%;
    transform: translateY(25%);
}
.teams-vs .right{
    flex-direction: row-reverse;
}
.teams-vs .right > div:last-child{
    text-align: right;
}
.teams-vs hr{
    width:3em;
}
.teams-vs .right hr{
    margin-right: 0px;
    margin-left: auto;
}
.teams-vs .left hr{
    margin-right: auto;
    margin-left: 0px;
}
.f-card{
    display: inline-block;
    width:0.75em;
    height:1em;
    border:1px solid black;
    border-radius: 4px;
    margin:0px 1em;
}
.f-card.red{
    background-color: red;
}
.f-card.yellow{
    background-color: yellow;
}

.teams-vs img{
    width: 80%;
    margin-left: auto!important;
    margin-right: auto!important;
    height:auto;
}

.lineup-twins{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.lineup-twins > div{
    /* :50%; */
    background-color: white;
    padding:1em;
    padding-left:2em;
    box-shadow: 0px 0px 15px 0px #00000040;
    margin:1em;
}
.lineup-twins table{
    width: 100%;
    border-spacing: 5px;
    border-collapse: separate;
}
.lineup-twins h2{
    background: #FFBA0AA6;
    font-size: 24px;
    line-height: 1em;
    margin: 2px;
    padding: 0.5em;
    text-transform: uppercase;
}
.lineup-twins table th{
    padding: 0.5em 1em;
    background-color: var(--color-orange);
    border-radius: 8px;
    color:white;
    font-size: 1.25em;
    /* border:0.1em solid transparent; */
    box-shadow: 0px 0px 15px 0px #00000040;
}
.lineup-twins table label{
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                        supported by Chrome, Edge, Opera and Firefox */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}
.lineup-twins table th{
    background: #CC5248;
}
.lineup-twins table th:nth-child(1){
    background: linear-gradient(90deg, #FEA962 0%, #ED925C 100%);
}
.lineup-twins table th:nth-child(2){
    background: linear-gradient(90deg, #ED925C 0%, #E88357 100%);
}
.lineup-twins table th:nth-child(3){
    background: linear-gradient(90deg, #E88357 0%, #DB7555 100%);
}
.lineup-twins table th:nth-child(4){
    background: linear-gradient(90deg, #DB7555 0%, #D1604B 100%);
}
.lineup-twins table th:nth-child(5){
    background: linear-gradient(90deg, #D1604B 0%, #CC5248 100%);
}
.lineup-twins table td{
    padding: 0.5em 1em;
    background: #00000014;
    font-weight: 500;
    /* border:0.1em solid white; */
}
.lineup-twins table td img{
    height:2em;
}
.lineup-twins table td img.true{
    height:2em;
    transform: scale(1.5);
}
.lineup-twins table td:nth-child(1),
.lineup-twins table td:nth-child(5),
.lineup-twins table td:nth-child(6){
    text-align: center;
}
.lineup-twins table td:nth-child(1){
    font-weight: bold;
    position: relative;
}
.lineup-twins table td:nth-child(1) span{
    position: absolute;
    left:-1em;
    top:50%;
    transform: translate(-50%, -50%);
    font-weight: normal;
}

.cards{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 200px;
    margin-top: 100px;
    flex-wrap: wrap;
}
.cards card{
    /* width: 22%; */
    border:4px solid var(--color-orange);
    background-color: #e5e5e598;
    border-radius: 25px;
    text-align: center;
}
.cards card h3{
    font-size: 36px;
    text-transform: uppercase;
    color: #000000B8;
    
}
.cards card a{
    margin-bottom: 3em;
}
.cards card img{
    width:300px;
    max-width: 70vw;
    margin: 0px 2em;
    margin-bottom: 3em;
    max-height: 300px;
    object-fit: contain;
}


.tg-banner-full{
    position: relative;
    height: min-content;
    /* width: min-content; */
}
.tg-banner-full > img{
    max-height: 100vh;
    max-width: 100%;
    display: block;
}
.tg-banner-full.mobile-hide a{
    width: 100%;
    height:50%;
    position: absolute;
    left:0px;
}
.tg-banner-full.mobile-hide a img{
    width: 100%;
    height:100%;
    object-fit: contain;
}
.tg-banner-full.mobile-hide a:first-of-type{
    top:0px;
}
.tg-banner-full.mobile-hide a:first-of-type img{
    object-position: top;
}
.tg-banner-full.mobile-hide a:last-of-type{
    bottom: 0px;
}
.tg-banner-full.mobile-hide a:last-of-type img{
    object-position: bottom;
}


.tg-banner-full.pc-hide a{
    height: 100%;
    width:50%;
    position: absolute;
    top:0px;
}
.tg-banner-full.pc-hide a img{
    width: 100%;
    height:100%;
    object-fit: contain;
}
.tg-banner-full.pc-hide a:first-of-type{
    left:0px;
}
.tg-banner-full.pc-hide a:first-of-type img{
    object-position: left;
}
.tg-banner-full.pc-hide a:last-of-type{
    right: 0px;
}
.tg-banner-full.pc-hide a:last-of-type img{
    object-position: right;
}



@media screen and (min-width:1400px) {
    .pc-hide{
        display: none!important;
    }
}
@media screen and (max-width:1400px) {
    .mobile-hide{
        display: none!important;
    }
    
    .lineup-twins > div:not(.active){
        display: none;
    }
    
    .m-teams-table .table{
        display: none;
    }
    
    .m-teams-table .table.active{
        display: block;
    }
    .m-teams-table .tables .table{
        width:90%;
        
    }
}

@media screen and (max-width:1500px) {
    header .slider .half .slides .slide > div{
        font-size: 14px;
    }
    header .slider .half .slides .slide > div:nth-child(1),
    header .slider .half .slides .slide > div:nth-child(2){
        font-size: 14px;
        font-weight: bold;
        /* line-height: 40px; */
        padding-left: 40px;

        position: relative;
    }
    header .slider .half .slides .slide > div img{
        height:30px;
    }
}

@media screen and (max-width:1500px){
    
    header .slider .half::before{
        font-size: 1.5vw;
    }
    header .mfl-title{
        letter-spacing: 0px;
        font-size: 2.5vw;
    }
    
    .tg-ads{
        background: url(/public/img/tg_banner_bg_mobile.png), white;
    }
}

@media screen and (max-width:1000px) {
    header .slider .half::before{
        font-size: 1.2vw;
    }


    header .orange-line{
        height: 80px;
    }

    /* header .slider .half .slides .slide:nth-child(even){
        display: none;
    } */
    header .slider .half .slides .slide{
        width: calc(25% - 3px);
    }
    /* header .slider .half .slides .slide > div img{
        display: none;
    } */
    header .slider .half .slides .slide > div:nth-child(3){
        flex-direction: column;
        justify-content: space-around;
    }
    header .slider .half .slides .slide > div:nth-child(1),
     header .slider .half .slides .slide > div:nth-child(2){
        min-height:40px;
        padding-left: 50px;
        /* line-height: 40px; */
    }
    header .slider .half .slides .slide > div:nth-child(1) > span:first-of-type,
    header .slider .half .slides .slide > div:nth-child(2) > span:first-of-type{
        display: none;
        /* line-height: 40px; */
    }
    header .slider .half .slides .slide > div img{
        left:10px;
    }
    header .slider .half{
        /* width: calc(42% - 1em); */
    }
    /* header .slider .icon{
        width: 16%;
    } */


    .m-teams-table{
        flex-wrap: wrap;
    }
    .m-teams-table .tables > div{
        flex-wrap: wrap;
        justify-content: center;
    }
    .m-teams-table > .tables > h1{
        text-align: center;
    }

    .m-teams-table .tg-ads{
        width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        padding:0px;

        overflow: hidden;
    }
    .tg-ads{
        background-position: right;
        background-size: 200%;
    }
    .tg-ads > div{
        width: 33%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .tg-ads img.logo{
        width:40%;
    }

    .teams{
        flex-wrap: wrap;
    }
    .teams img{
        width: 10%;
        /* margin: 1em 5%; */
    }

    /*.m-slider .slides .slide{
        width: 0px;
        overflow: hidden;
        margin: 0px;
    }
    .m-slider .slides .slide.active{
        width: 100%;
    }*/

    .teams-vs > *:not(.center){
        flex-direction: column-reverse;
    }
    .teams-vs > *:not(.center) > div{
        width: 100%;
        padding:1em;
        box-sizing: border-box;
    }
    .teams-vs img{
        width: 60%;
    }

    .teams-vs > div,
    .teams-vs > .center{
        width: 33%;
    }

    .lineup-twins > div{
        width: 100%;
    }
    
    .tour-table{
        width: 100%;
        box-sizing: border-box;
    }
    .tour-table table{
        width: 100%;
    }
    .tour-table th{
        padding: 0px;
    }
    .tour-twins{
        width: 100%;
    }
    .tour-twins > div{
        width: calc(50% - 0.5em);
    }
    .tour-twins > div:first-child{
        margin-right: 1em;
    }
    
    .tour-twins > div table{
        width: 100%;
    }
    .tour-twins td{
        padding:1em 0.5em;
    }
    
    .tour-twins.wrap{
        flex-wrap: wrap;
    }
    .tour-twins.wrap > div{
        width: 100%;
    }
    .tour-twins.wrap > div:first-child{
        margin-right: 0px;
        margin-bottom: 2em;
    }

    .cards card{
        border:none;
        background-color: transparent;
    }
    .cards card a{
        font-size: 1.5em;
    }

    .lineup-twins table label{
        font-size: 0px;
        text-align: center;
        width: 20px;
        height:100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    /* .lineup-twins table input{
        margin-left: auto;
        margin-right: auto;
    } */
}

.tour-twins.btns > div{
    position: relative;
    margin-bottom: 3em!important;
}
.tour-twins.btns > div:first-child{
    position: relative;
    margin-bottom: 3em!important;
}
.tour-twins.btns > div > .button{
    position: absolute;
    bottom: -1em;
    left:50%;
    transform: translate(-50%, 100%);
}
@media screen and (max-width: 1000px){
    .tour-twins.wrap > div:first-child {
        margin-right: 0px;
        margin-bottom: 5em!important;
    }
}
.fantasy-banner{
    width: 100%;
    margin-right: 1em;
}
.fantasy-tab-control{
    /* width: fit-content; */
    width: 100%;
    max-width: 1200px;
    min-width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
}
.fantasy-tab-control a{
    margin:0px 0.25em;
    display: inline-block;
    padding: 0.5em;
    border-radius: 54px;
    font-size: 28px;
    line-height: 1em;
    min-width: calc(1em + 2px);
    /* min-height: 1em; */
    height: 1em;
    text-align: center;
    position: relative;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;

    background-color: transparent;
    border: 2px solid var(--color-orange);
    /* color: var(--color-orange); */
    
    background: -webkit-linear-gradient(0deg, #A14B2E, #CF6020);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fantasy-tab-control a.active{
    background: linear-gradient(0deg ,#DE643B, #FF5F02);
    -webkit-text-fill-color: white;
    border: 2px solid var(--color-orange);
    color: white;
}
.fantasy-banner-tabs{
    background-image: url("/public/img/fl_banner_bg.png");
    background-size: 100% 100%;
    color:white;
    font-weight: bold;
}
.fantasy-banner-tabs .tab:not(.active){
    display: none;
}
.fantasy-banner-tabs .tab{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 8em;
    padding-top: 2em;
}
.fantasy-banner-tabs .tab .row{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 50vw;
    width: fit-content;
    text-align: center;
    text-transform: uppercase;
}
.fantasy-banner-tabs .tab > a{
    color:inherit;
    text-decoration: none;
    display: block;
}
.fantasy-banner-tabs .tab.third > a:first-child{
    margin-bottom: 4em;
}
.fantasy-banner-tabs .tab .row .info{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding:1em 5em;
    background-image: url("/public/img/fl_banner_row_bg_2.svg");
    background-size: 100% 100%;
    position: relative;
    font-size: 1.5em;
    z-index: 2;
    /* padding-top:0px; */
}
.fantasy-banner-tabs .tab .row .info > div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    margin: 0px 3em;
    /* background-color: #F67B32; */
    height:calc(100% - 4em);
}
.fantasy-banner-tabs .tab .row .info > span{
    width: 25%;
}
.fantasy-banner-tabs .tab .row .info > div img.star{
    height:2em;
}
.fantasy-banner-tabs .tab .row .info > div span{
    margin: 0px 1em;
}
.fantasy-banner-tabs .tab .row .info > div img:nth-of-type(1){
    transform: translateX(-50%);
    margin-right: -2.5em;
}
.fantasy-banner-tabs .tab .row .info > div img:nth-of-type(3){
    transform: translateX(50%);
    margin-left: -2.5em;
}

.fantasy-banner-tabs .tab .row .date{
    align-items: center;
    padding:3em 5em;
    padding-top:2em;
    background-image: url("/public/img/fl_banner_star.svg");
    background-size: 100% 100%;
    background-position: top center;
    position: relative;
    font-size: 1.5em;
    top:calc(-3em - 8px);
    margin-bottom: -5em;
}

.fantasy-banner-tabs .tab.third{
    padding-top:15em;
}
.fantasy-banner-tabs .tab.fourth{
    padding-bottom:10em;
}

.fantasy-banner-tabs.tournament .tab{
    overflow-x: hidden;
}
.fantasy-banner-tabs.tournament.first{
    background-image: none;
    color:inherit;
}
.fantasy-banner-tabs.tournament:not(.first){
    color:white;
    background-image: url("/public/img/fl_tournament_bg.png");
}

.fantasy-banner-tabs.tournament > .tab > img{
    max-width: 90%;
}

.fantasy-banner-tabs.tournament .tab .row .info{
    background-image: url(/public/img/fl_banner_row_bg_3.svg);
}
.fantasy-banner-tabs.tournament .tab .row .info > div span{
    font-size: 2em;
    margin: 0px 0.25em;
    text-shadow: 0px 0px 20px #000000;
}
.fantasy-banner-tabs.tournament .tab .row .info > div img.star{
    height:4em;
}
.fantasy-banner-tabs.tournament .tab .row .date{
    background-image: none;
    color:black;
    font-weight: normal;
    font-size: 1.15em;
}
.fantasy-banner-tabs.tournament .tab .row .date > strong{
    display: block;
}

.fantasy-banner-tabs.tournament .tab.third .row .info > span{
    font-size: 1.5em;
}
.fantasy-banner-tabs.tournament .tab.third .row .info > div img{
    height:6em;
}
.fantasy-banner-tabs.tournament .tab.third .row .info > div span{
    margin:0px;
}
.fantasy-banner-tabs.tournament .tab.third .row .info > div{
    width: 40%;
}
.fantasy-banner-tabs.tournament .tab.third .row .info > span{
    width: 30%;
}

.fantasy-banner-tabs.tournament .tab.third a:nth-child(2) .row{
    margin-top:9em;
}
.fantasy-banner-tabs.tournament .tab.third a:nth-child(3) .row{
    margin-bottom:10em;
}
.fantasy-banner-tabs.tournament .tab.fourth .row{
    margin-top:13em;
}
.fantasy-banner-tabs.tournament .tab.fourth .row{
    margin-bottom:7em;
}
.fantasy-banner-tabs.tournament .tab.third .row .info{
    padding: 0.7em 2em;
    background-image: url(/public/img/fl_banner_row_bg_3.png);
}

.fantasy-banner-tabs.tournament .tab.fourth .row .info > div span{
    font-size: 5em;
}
.fantasy-banner-tabs.tournament .tab.fourth .row .info > div img{
    height:10em;
    max-width:25vw;
    object-fit: contain;
    transform: none;
}
/* .fantasy-banner-tabs.tournament .tab.fourth .row .info > div img:nth-of-type(1){
    margin-right: 1em;
}
.fantasy-banner-tabs.tournament .tab.fourth .row .info > div img:nth-of-type(3){
    margin-left: 1em;
} */
.fantasy-banner-tabs.tournament .tab.fourth .row .info > div img:nth-child(3){
    height:10em;
    opacity: 0.75;
    margin:0px 1em;
}
.fantasy-banner-tabs.tournament .tab.fourth .row .info > div span{
    margin:0px;
}
.fantasy-banner-tabs.tournament .tab.fourth .row .info > div{
    width: 100%;
    margin:0px;
}
.fantasy-banner-tabs.tournament .tab.fourth .row .info > span{
    width: 30%;
}
.fantasy-banner-tabs.tournament .tab.fourth .row .date{
    top:0px;
    margin-bottom: 0px;
    font-size: 2em;
    padding-bottom: 0px;
    padding-top: 0px;
}
.fantasy-banner-tabs.tournament .tab.fourth .row .names{
    width: calc(100% - 0px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.fantasy-banner-tabs.tournament .tab.fourth .row .names span{
    font-size: 3em;
    font-weight:normal;
    color:black;
    display: block;
    width: 35%;
}

.fantasy-banner-tabs .tab.second  .row .info > div img:nth-of-type(1),
.fantasy-banner-tabs .tab.second  .row .info > div img:nth-of-type(3){
    height:5em;
    width:5em;
    object-fit: contain;
}
.fantasy-banner-tabs .tab.third  .row .info > div img:nth-of-type(1),
.fantasy-banner-tabs .tab.third  .row .info > div img:nth-of-type(3){
    height:6em;
    width:6em;
    object-fit: contain;
}
.fantasy-banner-tabs.index .tab.fourth .row .info > div > div{
    position: relative;
}
.fantasy-banner-tabs.index .tab.fourth .row .info > div > div > span{
    position: absolute;
    top:100%;
    left:0%;
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    font-weight: normal;
    color: black;
    display: block;
}
.fantasy-banner-tabs.index .tab.fourth .row .info > div > div > img{
    height:10em;
    width: 10em;
    max-width: 25vw;
    object-fit: contain;
}
.fantasy-banner-tabs.index .tab.fourth .row .info > div > div:first-child img{
    margin-right: 0px;
}
.fantasy-banner-tabs.index .tab.fourth .row .info > div > div:last-child img{
    margin-left: 0px;
    margin-right: 0px;
}
.fantasy-banner-tabs.index .tab.fourth .row .info > div > div:first-child{
    margin-right: 1em;
}
.fantasy-banner-tabs.index .tab.fourth .row .info > div > div:last-child{
    margin-left: 1em;
    margin-right: 0px;
}

.fl-banner-ad{
    width: 100%;
    margin-bottom: 1em;
    display: block;
}
.fl-banner-ad img{
    width: 100%;
    height:auto;
    display: block;
}

.fantasy-banner-tabs .tab.fourth .row .info{
    padding: 0.7em 0px;
    background-image: none;

}

.fantasy-banner-tabs.index .tab{
    overflow-x: hidden;
}
.fantasy-banner-tabs.index.first{
    background-image: none;
    color:inherit;
}
.fantasy-banner-tabs.index:not(.first){
    color:white;
    /* background-image: url("/public/img/fl_tournament_bg.png"); */
}

.fantasy-banner-tabs.index > .tab > img{
    max-width: 90%;
}

.fantasy-banner-tabs.index .tab .row .info{
    background-image: url(/public/img/fl_banner_row_bg_2.svg);
}
.fantasy-banner-tabs.index .tab .row .info > div span{
    font-size: 2em;
    margin: 0px 0.25em;
    text-shadow: 0px 0px 20px #000000;
}
.fantasy-banner-tabs.index .tab .row .info > div img.star{
    height:4em;
}
.fantasy-banner-tabs.index .tab .row .date{
    /* background-image: none; */
    color:black;
    font-weight: normal;
    /* font-size: 1.15em; */
    top: calc(-3em - 8px);
}
.fantasy-banner-tabs.index .tab .row .date > strong{
    display: block;
}

.fantasy-banner-tabs.index .tab.third .row .info > span{
    font-size: 1.5em;
}
.fantasy-banner-tabs.index .tab.third .row .info > div img{
    height:6em;
}
.fantasy-banner-tabs.index .tab.third .row .info > div span{
    margin:0px;
}
.fantasy-banner-tabs.index .tab.third .row .info > div{
    width: 40%;
}
.fantasy-banner-tabs.index .tab.third .row .info > span{
    width: 30%;
}

.fantasy-banner-tabs.index .tab.third .row:nth-child(2){
    margin-top:9em;
}
.fantasy-banner-tabs.index .tab.third .row:nth-child(3){
    margin-bottom:10em;
}
.fantasy-banner-tabs.index .tab.fourth .row:nth-child(2){
    margin-top:13em;
}
.fantasy-banner-tabs.index .tab.fourth .row:nth-child(2){
    margin-bottom:7em;
}
.fantasy-banner-tabs.index .tab.third .row .info{
    padding: 0.7em 2em;
    background-image: url("/public/img/fl_banner_row_bg_2.svg#svgView(preserveAspectRatio(none))");
    background-size: 100% 100%;
}
.fantasy-banner-tabs.index .tab.fourth .row .info{
    /* background-image: url("/public/img/fl_banner_row_bg_2.svg#svgView(preserveAspectRatio(none))"); */
    background-image: none;
    background-size: 100% 100%;
}

.fantasy-banner-tabs.index .tab.fourth .row .info > div span{
    font-size: 5em;
}
.fantasy-banner-tabs.index .tab.fourth .row .info > div img{
    height:10em;
    max-width:25vw;
    object-fit: contain;
    transform: none;
}
/* .fantasy-banner-tabs.index .tab.fourth .row .info > div img:nth-of-type(1){
    margin-right: 1em;
}
.fantasy-banner-tabs.index .tab.fourth .row .info > div img:nth-of-type(3){
    margin-left: 1em;
} */
.fantasy-banner-tabs.index .tab.fourth .row .info > div img:nth-child(3){
    height:10em;
    opacity: 0.75;
    margin:0px 1em;
}
.fantasy-banner-tabs.index .tab.fourth .row .info > div span{
    margin:0px;
}
.fantasy-banner-tabs.index .tab.fourth .row .info > div{
    width: 100%;
    margin:0px;
}
.fantasy-banner-tabs.index .tab.fourth .row .info > span{
    width: 30%;
}
.fantasy-banner-tabs.index .tab.fourth .row .date{
    top:0px;
    margin-bottom: 0px;
    font-size: 2em;
    padding-bottom: 0px;
    padding-top: 0px;
    background-image: none;
}
.fantasy-banner-tabs.index .tab.fourth .row .names{
    width: calc(100% - 0px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.fantasy-banner-tabs.index .tab.fourth .row .names span{
    font-size: 3em;
    font-weight:normal;
    color:black;
    display: block;
    width: 35%;
}

.fantasy-banner-tabs.index .tab.second{
    padding-top: 3em;
}
.fantasy-banner-tabs.index .tab.third{
    padding-top: 14em;
    padding-bottom: 12em;
}
.fantasy-banner-tabs.index .tab.fourth{
    padding-top: 15em;
    padding-bottom: 22em;
}

.banner_01{
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    height:fit-content;
    position: relative;
}
.banner_01 img{
    width: 100%;
    max-height: 100vh;
    height: auto;
}
.banner_01 a.button{
    position: absolute;
    bottom:1em;
    left:2em;
    font-size: 2em;
}
.banner_01 img:nth-of-type(2){
    display: none;
}
.banner_01 a.button{
    border-radius: 10px;
}
.banner_01 a.button::before{
    border-radius: 10px;
}
@media screen and (min-width: 1400px){
    .banner_01 img{
        width: 100vw;
        max-width: 100%;
        object-position: top;
        object-fit: cover;
    }
}
@media screen and (max-width: 1400px){
    .banner_01 img:nth-of-type(1){
        display: none;
    }
    .banner_01 img:nth-of-type(2){
        display: block;
    }
    .banner_01 a.button{
        font-size: 2em;
        left:1em;
    }
}