:root {
    --background-color: #2C3045;
    --main-color: #DEE5E5;
    --main-darker: #4d4a4e;
    --main-darkest: #171c20;
    --main-light: #8a8a8a;
    --tone-color: #F1B940;
    --tone-color-lighter: rgb(235, 197, 117);
    --tone-color-darker: rgb(216, 160, 39);
}


@font-face {
    font-family: 'Tw Cen MT';
    font-style: normal;
    font-weight: normal;
    src: local('Tw Cen MT'), url('https://dm7bets.com/apps/files/file/100') format('woff');
}

html, body{
    background-color: var(--background-color);
    color: white;
    font-family: Tw Cen MT, sans-serif;
    overflow-x: hidden;
}

.roboto{
    font-family: 'Roboto';
}

.tone-text{
    color: var(--tone-color);
}


.btn-dm7{
    background-color: var(--tone-color);
    border-radius: 0 !important;
    font-size: 18px;
}
.btn-dm7:hover{
    background-color: var(--tone-color-lighter);
    border-radius: 0 !important;
    font-size: 18px;
}


.pagination > li > a, .pagination > li > span{
	background-color:transparent !important;
	color:#F1B940 !important;
	border-color:#F1B940 !important;
}
.pagination > li.active > a, .pagination > li.active > span{
	background-color:#F1B940 !important;
	color:#2C3045 !important;
	border-color:#F1B940 !important;
}

/**------- HEADER ---------**/

.header{
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
    position: relative;
    width: 100%;
	height: 100vh;
}

.navbar{
    color: white;
    font-size: 22px;
}

.header-title{
    padding-top: 120px;
    margin: 0 auto;
}

.header-title .title{
    font-weight: bold;
    font-size: 50px;
}

.header-title .subtitle{
    font-weight: bold;
    font-size: 30px;
    color: var(--tone-color);
    font-style: italic
}
.teams-container{
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 33%;
}
.teams{
    display: block;
    
}
.teams div{
    display: inline-block;
    width:80px;
    margin: 5px;
}
.teams div img{
   height: 60px;
   
}
.f1{
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 50px;
    width: 850px;
}

/**------ SECTION ------**/

section{
    padding: 50px 0;
}

.section-title{
    color: var(--tone-color);
    font-size: 26px;
    font-weight: bold;
}
.section-subtitle{
    font-size: 20px;
    font-weight: bold;
}
.section-divider{
    border-top: solid 3px var(--tone-color);
    width: 10%;
    display: block;
}

.image-section{
    padding: 0 !important;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: -250px;
    position: relative;
}

.image-section .layer{
    background-color: rgba(10, 16, 31, 0.700);
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 100px 0;
}

.layer{
    background-color: rgba(10, 16, 31, 0.700);
    position: absolute;
    width: 100%;
    height: 100%;
}

.box{
    border: solid 2px #F1B940;
    padding: 30px;
    border-radius: 20px;
    background-color: rgba(241, 185, 64, 0.13);
}

.resumen-total{
    background-color: #4A4E67;
    padding: 40px;
}
.resumen-total .stat-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.resumen-total .stat{
    font-weight: bold;
}

.resumen-total .stat .name{
    font-size: 22px;
    display: block;
    margin-top: 10px;
}

.resumen-total .stat .number{
    font-size: 28px;
    display: block;
}


.form-control{
    color: white;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.116);
    border-color: transparent;
}

.form-control:focus{
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.11);
    border-color: var(--main-color);
    color: white;

}



.loader {
    position: fixed;
    top: 0;
    z-index: 999;
    min-height: 480px;
    width: 100%;
    height: 100%;
    background: #1d1d1d;
}

.ip-logo{
    margin-top: 150px;
}
.ip-loader{
    margin-top: 50px;
    color: white;
}

.languages .active{
    color: var(--tone-color);
}
.languages span:hover{
    color: var(--tone-color);
    cursor: pointer;
}

.music-btn:hover{
    color: var(--tone-color);
    cursor: pointer;
}


/*----------------RESPONSIVE ---------------*/

/** MOBILE MENU **/

.panel{
    background-color: #0A101F;
    z-index: 10;
    position: fixed;
    right: -15.625em; /*left or right and the width of your navigation panel*/
    width: 15.625em; /*should match the above value*/
}

.panel ul{
    list-style: none;
    padding: 0;
}

.panel ul li{
    text-align: left;
    padding: 15px;

}
.panel ul > li.active{
    border-right: 3px solid var(--mainGreen);
}
.panel ul > li.active i{
    color: var(--mainGreen);
}
.panel ul .menu-item:hover{
    background-color: #F1B940;
}

.panel ul li a{
    padding-left: 5px;
    color: var(--lightext);
}


/*------------- HEIGHT -----------------------*/
@media (max-height: 539px) { 

    .teams-container{
        display: none !important;
    }
    
    .f1{
        display: none !important;

    }
}

@media (max-height: 720px) { 

    .teams-container{
        display: none !important;
    }
    
    .f1{
        width: 700px;
    }
}

@media (max-height: 750px) { 

    .teams-container{
        top: 35% !important;
    }
    .f1{
        width: 600px;
    }
}


@media (max-height: 850px) { 
   
    .teams-container{
        top: 35% !important;
    }
    .f1{
        width: 600px;
    }

}

/*------------- WIDTH -----------------------*/


@media (max-width: 515px) { 
    section{
        text-align: center;
    }
    .page-info-footer{
        text-align: center;
    }
    .teams-container{
        display: none;
    }
    .header-title{
        padding: 0 !important;
        position: absolute;
        top: 25%;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: translate(-50%, -50%);

    }
    .header-title .title{
        font-weight: bold;
        font-size: 40px;
    }
    .header-title .subtitle{
        font-weight: bold;
        font-size: 20px;
        display: block;
    }
    .f1{
        width: 500px;
        left:-webkit-calc(50% - 250px);
        left:-moz-calc(50% - 250px);
        left:calc(50% - 250px);
		bottom:10% !important;
    }
}

@media  (min-width: 515px) and (max-width: 768px) { 
    section{
        text-align: center;
    }
    .page-info-footer{
        text-align: center;
    }
    .teams-container{
        display: none;
    }
    .header-title{
        padding: 0 !important;
        position: absolute;
        top: 25%;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: translate(-50%, -50%);

    }
    .header-title .title{
        font-weight: bold;
        font-size: 40px;
    }
    .header-title .subtitle{
        font-weight: bold;
        font-size: 20px;
        display: block;
    }

    .f1{
        width: 500px;
		bottom:10% !important;
    }
}


/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 992px) {
    .teams-container{
        display: none;
    }
    .header-title{
        padding: 0 !important;
        position: absolute;
        top: 30%;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: translate(-50%, -50%);

    }
 }



/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1200px) { 
    .teams-container{
        display: none;
    }
    .header-title{
        padding: 0;
        position: absolute;
        top: 30%;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: translate(-50%, -50%);

    }
	.f1{
		bottom:10% !important;
	}
}


/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { 
    .teams-container{
        display: block;
    }


}