#mainContainer {
  position: absolute;
  width: 640px;
  height: 360px;
  top: 20%;
  left: 20%;
  display: none;
}

#content, #adContainer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 640x;
  height: 360px;
}

#contentElement {
  width: 640px;
  height: 360px;
  overflow: hidden;
}

#fb-root { position: absolute; top: 0px; right: 10px; }

/* DIV CAMBIAR USUARIO */
#DivCambiarUsuario {
    position: fixed;
    left: 0px; top: 0px; bottom:0px; right: 0px;
    background: rgba(0,0,0,.5);
    display:none;
}

#DivCambiarUsuario .container {
     position: absolute;
	top: 30%;
	left: 50%;
    font-size: 18px; /* Increase font-size */
	width: 50%;
	margin-left: -30%;
    padding: 20px; 
    box-sizing: border-box;
	background:#fceb40;
    border-radius: 5px;	
	text-align:center;
	z-index: 10;
	border:1px solid;
	-moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;-o-user-select:none;
} 

@media (min-width: 900px) { 
    #DivCambiarUsuario .container {
        width: 400px;
        margin-left: -200px;
    }
}
/* FIN CAMBIAR USUARIO */

.oculto { transform: translate(-250px); }

#lateral { padding: 10px; user-select:none; background: #fceb40; border-right: #961918 solid 2px; position: fixed; overflow-y: auto; top:0px; bottom:0px; left:0px; width: 250px; z-index: 10001; }
    
#lateral select { padding:10px; border: #000 solid 1px; border-radius: 5px; width:100%; box-sizing: border-box; }
    
#lateral label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Customize website's scrollbar like Mac OS
Not supports in Firefox and IE */

/* total width */
.scrollbar::-webkit-scrollbar {
    background-color:#f00;
    width:16px
}

.scrollbar2::-webkit-scrollbar {
    background-color:#f00;
    width:16px
}

/* background of the scrollbar except button or resizer */
.scrollbar::-webkit-scrollbar-track {
    background-color:#fceb40
}
.scrollbar::-webkit-scrollbar-track:hover {
    background-color:#fceb40
}

/* background of the scrollbar except button or resizer */
.scrollbar2::-webkit-scrollbar-track {
    background-color:#fff
}
.scrollbar2::-webkit-scrollbar-track:hover {
    background-color:#fff
}

/* scrollbar itself */
.scrollbar::-webkit-scrollbar-thumb {
    background-color:#ffae00;
    border-radius:16px;
    border:5px solid #fceb40
}
.scrollbar2::-webkit-scrollbar-thumb {
    background-color:#b3b3b3;
    border-radius:16px;
    border:5px solid #fff
}
.scrollbar::-webkit-scrollbar-thumb:hover {
    background-color:#a0a0a5;
    border:4px solid #fceb40
}
.scrollbar2::-webkit-scrollbar-thumb:hover {
    background-color:#a0a0a5;
    border:4px solid #fff
}

/* set button(top and bottom of the scrollbar) */
.scrollbar::-webkit-scrollbar-button {display:none}
.scrollbar2::-webkit-scrollbar-button {display:none}

/* div box */

.scrollbar {
    width: 25vw;
    min-width: 150px;
    background: #fceb40;
    overflow-y: scroll}
.scrollbar2 {
        width: 25vw;
        min-width: 150px;
        background: #fff;
        overflow-y: scroll}    
.overflow{min-height: 100vh}


.cerrarlateral { font-size: 20px; width: 30px; height: 30px; color: #fff; font-weight: bold; position: absolute; right: 0px; top: 10px; background: #961918; text-align:center; box-sizing: border-box;  border-radius: 50%; }

.cerrarsesion { background: #961918; color: #ffffff !important; border-radius: 2em; padding: 5px; letter-spacing: 1px; text-decoration: none; font-size: 14px !important }
#lateral a { text-decoration: none; color:#961918; font-size: 12px; display: block; padding: 4px; }
/* Hide the browser's default checkbox */
#lateral label  {
    font-size: 14px; 
}

#lateral label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
#lateral label:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
#lateral label input:checked ~ .checkmark {
  background-color: #961918;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
#lateral label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
#lateral label .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

    .zoom{
        /* Aumentamos la anchura y altura durante 2 segundos */
        transition: width 2s, height 2s, transform 1s;
        -moz-transition: width 2s, height 2s, -moz-transform 1s;
        -webkit-transition: width 2s, height 2s, -webkit-transform 1s;
        -o-transition: width 2s, height 2s,-o-transform 1s;
    }
    .zoom:hover{
        /* tranformamos el elemento al pasar el mouse por encima al doble de
           su tamaño con scale(2). */
        transform : scale(3);
        -moz-transform : scale(3);      /* Firefox */
        -webkit-transform : scale(3);   /* Chrome - Safari */
        -o-transform : scale(3);        /* Opera */
    }
	
	
#Login { 
	background: #7e2520; 
	position: absolute; 
	width: 290px; left: 50% !important; margin-left: -125px; /*2.0.8212 250px*/
	top: 35% !important; margin-top:-75px;
	padding: 15px;
	padding-top: 30px;
	text-align:center;
	box-sizing: border-box;
    font-size: 18px; 
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

.abcRioButton { border-radius: 10px !important; font-weight: bold;}

button { width: 100px; padding: 5px; box-sizing: border-box; border-radius: 5px; background: #333; color:#fff; margin: 2px; } 

.redondeado1em { -webkit-border-radius: 1em; -moz-border-radius: 1em; -ms-border-radius: 1em; -o-border-radius: 1em; border-radius: 1em; }



.table {
    border-radius: 5px;
    width: 50%;
    margin: 0px auto;
    float: none;
	position: absolute; 
	background: #fff; 
	width: 400px; left: 40% !important; margin-left: -125px; 
	height: 150px; top: 50% !important; margin-top:-100px;
	padding: 20px;
	box-sizing: border-box;
}

.tableresultado {
    border-radius: 10px;
    width: 300px;
    float: none;
	position: absolute; 
	background: #7e2520; color: white;
	left: 50% !important; margin-left: -150px; 
	 top: 50% !important; margin-top: -75px;
	box-sizing: border-box;
    border-collapse: collapse;
    overflow:hidden;
}


.tableresultado .buenas { border-radius: 1em 1em 1em 1em; }

.tableresultado .buenas td {
    padding-bottom: 10px; padding-top: 0px; background: #7e2520; font-size: 16px; letter-spacing: 1px; color: #fceb40; text-align: center;
}

.tableresultado tr.partidas td {  font-weight: bold; font-size: 16; background: #fff; color: #7e2520 }

#DivUsuarioGolden {
    border-radius: 5px;
    width: 50%;
    margin: 0px auto;
    float: none;
	position: absolute; 
	background: #fff; 
	width: 450px; left: 40% !important; margin-left: -125px; 
	height: 260px; top: 40% !important; margin-top:-100px;
	padding: 20px;
	box-sizing: border-box;
}


#FormCrearSalad {
    border-radius: 1em;
    width: 50%;
    margin: 0px auto;
    float: none;
	position: absolute; 
	background: #961918;
    color: #fff;
    font-family: 'Poppins', sans-serif; 
	width: 450px; left: 40% !important; margin-left: -125px; 
	height: 260px; top: 40% !important; margin-top:-100px;
	padding: 20px;
	box-sizing: border-box;
}


#FormPasswordSala{
    border-radius: 1em;
    width: 50%;
    margin: 0px auto;
    float: none;
	position: absolute; 
	background: #961918;
    color: #fff;
    box-shadow: 0px 0px 10px #000000;
	width: 400px; left: 40% !important; margin-left: -125px; 
	height: 220px; top: 50% !important; margin-top:-100px;
	padding: 20px;
	box-sizing: border-box;
}




#InputSalas {

	font-size: 16px; /* Increase font-size */

	width: 200; 
    margin-bottom: 12px; /* Add some space below the input */
}

#BtnCrearSalas {

	font-size: 16px; /* Increase font-size */
	
    margin-bottom: 12px; /* Add some space below the input */
}


#BtnCerrarSalas {

	font-size: 16px; /* Increase font-size */
    margin-bottom: 12px; /* Add some space below the input */
}

#TablaSalas {
    border-collapse: collapse; /* Collapse borders */	
    border: 1px solid #ddd; /* Add a grey border */
    font-size: 18px; /* Increase font-size */
	width: 100%;
	background: #fff;
	
}

#TablaSalas th, #TablaSalas td {
    text-align: left; /* Left-align text */
    padding: 7px; /* Add padding */
	font-size: 13px;
}

#TablaSalas tr {
    /* Add a bottom border to all table rows */
    border-bottom: 1px solid #ddd; 
}

#TablaSalas tr.header, #TablaSalas tr:hover {
    /* Add a grey background color to the table header and on hover */
    background-color: #f1f1f1;
}

<!-- #TablaClasificacion {
    border-collapse: collapse; /* Collapse borders */	
    border: 1px solid #ddd; /* Add a grey border */
    font-size: 11px; /* Increase font-size */
	width: 100%;
	background: #fff;
	border-spacing: 565em;
} -->

input:focus { outline:none; }

#DivClasificacionContenedor {
    position: fixed;
    top: 0px; 
    bottom: 0px; 
    right: 0px; 
    left: 0px; 
    background: rgba(116,18,18,.84);
    display: flex;
    padding: 20px;
    overflow:auto;
}

#DivClasificacionContenedor .container {
    
	position: absolute;
	width: 900px;
	height: 600px;
	left: 50%;
	margin-left: -450px;
	top: 50%;
	margin-top: -300px;
	background: rgba(255, 255, 255, 0.8);
    border-radius: 2em;
	overflow:auto;
}

.comoCalcula { position: absolute; right: 20px; top: -6px;  }
.comoCalcula a{ color:#fceb40; }
.comoCalcula .btn { background: #fceb40 !important; color: #000000; }

/*
@media (max-width: 900px) {
	#DivClasificacionContenedor {
		margin:0px;
		left: 30px;
		top: 30px;
		right: 30px;
		bottom: 30px;
		width: auto !important;
		height: auto !important;
	}
}
*/
@media (min-width: 1000px) {
	#DivClasificacionContenedor .clasificaciones{
        width: 80% !important;
		margin: 0 auto;
	}
}

#TablaClasificacion {
    border-collapse: collapse;
	border: 1px solid #ddd;
    width: 100%;
} 

#tr.TablaClasificacion {
padding-bottom: 50em;
border-spacing: 50em;
    	float: none;
	position: absolute; 
} 

#TablaClasificacion th, #TablaClasificacion td {
    text-align: left;
    padding: 5px;
	font-size: 12px;
}

#TablaClasificacion tr:nth-child(even){background-color: #f2f2f2} 

#TablaClasificacion th {
    background: #750808; color: #ffffff !important;
    padding: 5px;
}

#TablaClasificacion td {
    padding: 5px;
}


#TablaClasificacionSemanal {
    border-collapse: collapse;
	border: 1px solid #ddd;
	width: 100%;
} 

#tr.TablaClasificacionSemanal {
padding-bottom: 50em;
border-spacing: 50em;
    	float: none;
	position: absolute; 
} 

#TablaClasificacionSemanal th, #TablaClasificacionSemanal td {
    text-align: left;
    padding: 5px;
	font-size: 12px;
}

#TablaClasificacionSemanal tr:nth-child(even){background-color: #f2f2f2} 

#TablaClasificacionSemanal th {
    background: #750808; color: #ffffff !important;
}













#TablaClasificacionEvento {
    border-collapse: collapse;
	border: 1px solid #ddd;
	width: 100%;
} 

#tr.TablaClasificacionEvento {
padding-bottom: 50em;
border-spacing: 50em;
    	float: none;
	position: absolute; 
} 

#TablaClasificacionEvento th, #TablaClasificacionEvento td {
    text-align: left;
    padding: 5px;
	font-size: 12px;
}

#TablaClasificacionEvento tr:nth-child(even){background-color: #f2f2f2} 

#TablaClasificacionEvento th {
    background: #750808; color: #ffffff !important;
}




#TablaClasificacionEvento2 {
    border-collapse: collapse;
	border: 1px solid #ddd;
	width: 100%;
} 

#tr.TablaClasificacionEvento2 {
padding-bottom: 50em;
border-spacing: 50em;
    	float: none;
	position: absolute; 
} 

#TablaClasificacionEvento2 th, #TablaClasificacionEvento2 td {
    text-align: left;
    padding: 5px;
	font-size: 12px;
}

#TablaClasificacionEvento2 tr:nth-child(even){background-color: #f2f2f2} 

#TablaClasificacionEvento2 th {
    background: #750808; color: #ffffff !important;
}



#TablaClasificacionMaraton {
    border-collapse: collapse;
	border: 1px solid #ddd;
	width: 100%;
} 

#tr.TablaClasificacionMaraton {
padding-bottom: 50em;
border-spacing: 50em;
    	float: none;
	position: absolute; 
} 

#TablaClasificacionMaraton th, #TablaClasificacionMaraton td {
    text-align: left;
    padding: 5px;
	font-size: 12px;
}

#TablaClasificacionMaraton tr:nth-child(even){background-color: #f2f2f2} 

#TablaClasificacionMaraton th {
    background: #750808; color: #ffffff !important;
}














#TablaClasificacionAnterior {
    border-collapse: collapse;
	border: 1px solid #ddd;
	 width: 100%;
} 

#tr.TablaClasificacionAnterior {
padding-bottom: 50em;
border-spacing: 50em;
    	float: none;
	position: absolute; 
} 

#TablaClasificacionAnterior th, #TablaClasificacionAnterior td {
    text-align: left;
    padding: 5px;
	font-size: 12px;
}

#TablaClasificacionAnterior tr:nth-child(even){background-color: #f2f2f2} 

#TablaClasificacionAnterior th {
    background: #750808; color: #ffffff !important;
}



#TablaClasificacion30dias {
    border-collapse: collapse;
	border: 1px solid #ddd;
	 width: 100%;
} 

#tr.TablaClasificacion30dias {
padding-bottom: 50em;
border-spacing: 50em;
    	float: none;
	position: absolute; 
} 

#TablaClasificacion30dias th, #TablaClasificacion30dias td {
    text-align: left;
    padding: 5px;
	font-size: 12px;
}

#TablaClasificacion30dias tr:nth-child(even){background-color: #f2f2f2} 

#TablaClasificacion30dias th {
    background: #750808; color: #ffffff !important;
}

@media (min-width: 1000px) { 
    #TablaClasificacion30dias th, #TablaClasificacion30dias td,
    #TablaClasificacionAnterior th, #TablaClasificacionAnterior td,
    #TablaClasificacionSemanal th, #TablaClasificacionSemanal td,
    #TablaClasificacion th, #TablaClasificacion td { padding: 10px !important; }
}



#Clasificacion tr {
    text-align: center;

}


#Clasificacion td {
    text-align: center;

}

#Clasificacion th {
    text-align: center;

}

#DivFace {
  width: 250;
  height: 35;
  position: absolute;
  top: 0;
  right: 0;
}

#DivInstagram {
  width: 250;
  height: 30;
  position: absolute;
  top: 0;
  left: 125;
}

.textoClasificacion { font-size: 12px; color: #750808; letter-spacing: 0.5px; font-weight: bold; padding-top:10px; }
.divClasificacionRadius {background: #fff; overflow:auto; border-radius: 1em;}

#tabs { padding: 1px; padding-bottom: 0px; position:relative; left: 15px; }
#tabs a:not(.comoCalcula a) { 
	text-decoration: none;
    margin-left: 1px;
	background: #fceb40; color: #000; display: inline-block; padding: 5px 7px;
	-webkit-border-radius: 10px 10px 0px 0px; 
	-moz-border-radius: 10px 10px 0px 0px; 
	-ms-border-radius: 10px 10px 0px 0px; 
	-o-border-radius: 10px 10px 0px 0px; 
	border-radius: 10px 10px 0px 0px; 
    position:relative; top: 2px;
}
#tabs a.activo { background: #fff !important; font-size: 18px; color: #000; font-weight: bold; padding-top:10px; border-bottom: #fff solid 1px !important; }





       ul, li {
            list-style: none;
        }

        #wrapper {
            width: 900px;
            margin: 20px auto;
        }

        .data-container {
            margin-top: 5px;
        }

        .data-container ul {
            padding: 0;
            margin: 0;
        }

        .data-container li {
            margin-bottom: 5px;
            padding: 5px 10px;
            background: #eee;
            color: #666;
        }
		
    #tablaEmoticonoJugadores label { position:relative; top: 5px; centerPadding: '60px'  }	
	.colorSeleccion{
                background-color: #ff00ff;
            }
			
			
#myProgress {
  width: 100%;
  background-color: #ddd;
}

#myBar {
  width: 1%;
  height: 30px;
  background-color: #4CAF50;
}			



/* Popup box BEGIN */
.hover_bkgr_fricc{
    background:rgba(0,0,0,.4);
    cursor:pointer;
    display:none;
    height:100%;
    position:fixed;
    text-align:center;
    top:0;
    width:100%;
    z-index:10000;
}
.hover_bkgr_fricc .helper{
    display:inline-block;
    height:100%;
    vertical-align:middle;
}
.hover_bkgr_fricc > div {
    background-color: #fff;
    box-shadow: 10px 10px 60px #555;
    display: inline-block;
    height: auto;
    max-width: 551px;
    min-height: 100px;
    vertical-align: middle;
    width: 60%;
    position: relative;
    border-radius: 8px;
    padding: 15px 5%;
}
.popupCloseButton {
    background-color: #fff;
    border: 3px solid #999;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    font-family: arial;
    font-weight: bold;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 25px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
}
.popupCloseButton:hover {
    background-color: #ccc;
}
.trigger_popup_fricc {
    cursor: pointer;
    font-size: 20px;
    margin: 20px;
    display: inline-block;
    font-weight: bold;
}
/* Popup box BEGIN */


/**
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
 */
.StripeElement {
  box-sizing: border-box;

  height: 40px;

  padding: 10px 12px;

  border: 1px solid transparent;
  border-radius: 4px;
  background-color: white;

  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

.transition {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

