/* The emerging W3C standard
   that is currently Firefox-only */
* {
	scrollbar-width: thin;
}

/* Works on Chrome/Edge/Safari */
*::-webkit-scrollbar {
	width: 6px;
}
*::-webkit-scrollbar-thumb {
	border: none;
	background: #aaa;
	border-radius: 20px;
}

html, body/*, **/ {
	margin: 0;
	padding: 0;
	font-size: 14px;
}

/*Header*/
header {
	height: 120px;
	width: 100%;
	position: fixed;
	z-index:10000;
	background-color: #fff;
}
header #logo {
	height: 80px;
}
header #logo img{
	margin: 10px 20px;
	height: calc(100% - 20px);
	width: auto;
}
header #languages {
	position: absolute;
	right: 20px;
	top: 10px;
}
header #selectSeasons {
	position: absolute;
	right: 20px;
	top: 40px;
}
/*Fin header*/

/*Menu*/
nav {
	height: 40px;
	text-align: center;
	background-color: #eee;
	color: #666;
	position: relative;
	border-bottom: 1px solid #666;
}
nav ul {
	margin: 0;
	padding: 0;
}
nav ul.menu {
	display: flex;
	list-style: none;
	width: calc(100% - 270px);
	height: 40px;
}
nav ul.menu-right {
	display: flex;
	list-style: none;
	position: absolute;
	right: 20px;
	top: 0;
	height: 40px;
}
nav ul li:hover {
	background-color: #fff;
	color: #444;
}
.menuItem {
	padding: 10px 20px;
	position: relative;
	box-sizing: border-box;
	cursor: pointer;
}
.submenu {
	display: none;
	position: absolute;
	list-style: none;
	text-align: left;
	left: 0;
	top: 40px;
	background-color: #eee;
	width: max-content;
	border: 1px solid #666;
	border-top: none;
}
.submenu.submenu2 {
	border-top: 1px solid #666;
}
.menuItem:hover > .submenu {
	display: block;
}
ul.submenu.submenu2 {
	left: 100%;
	top: 0px;
}
ul.submenu.submenu3 {
	top: 0;
	border-top: 1px solid #666;
	left: 100%;
}
.submenu li {
	box-sizing: border-box;
}
.submenu a {
	display: block;
	padding: 10px 20px;
	color: #666;
	text-decoration: none;
}
.submenu li.menuItemSep {
	height: 0;
	padding: 0;
	border-top: 1px solid #666;
	width: 100%;
}
/*Fin menu*/

/*Main*/
main {
	padding-top: 120px;
	box-sizing: border-box;
	display: flex;
	min-height: calc(100vh - 50px);
	margin: auto;
	background-color: rgba(255,255,255,0.8);
}
main section.data {
	padding: 20px 20px 80px;
	box-sizing: border-box;
	width: 100%;
	overflow-x: auto;
}
/*Fin main*/

/*Filtros*/
fieldset {
	max-width: 950px;
	margin: 20px auto;
}
main aside.filtros {
	width: 300px;
	min-width: 300px;
	background-color: #fafafa;
	border-right: 1px solid #e6e6e6;
	padding: 20px 20px 80px;
	box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
}
aside.filtros input {
	background-color: #fff;
	border-radius: 4px;
	border: 1px solid #ccc;
	color: #333;
	cursor: default;
	display: table;
	height: 36px;
	outline: none;
	overflow: hidden;
	position: relative;
	width: 100%;
	border-collapse: separate;
	padding: 10px;
	box-sizing: border-box;
}
.filter-selector {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.7);
	z-index: 10002;
	display: none;
}
.filter-selector-body {
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 40px;
	overflow-y: auto;
	max-height: 85vh;
	width: 80%;
	display: flex;
	flex-wrap: wrap;
	flex-direction:column;
	gap: 10px;
	padding-bottom: 60px;
}

.filter-selector-body ul {
	margin: 10px 0;
	padding: 0;
}
.filter-selector-body li {
	list-style: none;
	padding: 0 10px 0 25px;
	position: relative;
	cursor: pointer;
	box-sizing: border-box;
	width: 330px;
}
.filter-selector-body li:hover {
	background-color: #e6e6e6;
}
.filter-selector-body li:before {
	content: '\f096';
	font-family: "FontAwesome";
	position: absolute;
	top:50%;
	left: 5px;
	transform:translateY(-50%);
}
.filter-selector-body li.active:before {
	content: '\f046';
	font-family: "FontAwesome";
}
.filter-selector-btn {
	text-transform: uppercase;
	color: #5380c3;
	cursor: pointer;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
	border: 1px solid #5380c3;
	padding: 5px 10px;
	transition: all .5s ease;
}
.filter-selector-btn:hover {
	transition: all .5s ease;
	background-color: #5380c3;
	color: #fff;
}
.filter-selector-close {
	position: absolute;
	top: 20px;
	left: 20px;
	color: #000;
	display: inline;
	padding: 5px;
	cursor: pointer;
}
.search-title {
	font-size: 1.15rem;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 20px;
}
div.search-field {
	margin: 10px 15px;
	display: inline-block;
}
#buscador {
	/*position: relative;*/
	width: 100%;
	/*min-height: 50px;*/
}
#buscador-btns {
	display: flex;
	justify-content: center;
	/*position: absolute;
	bottom: 0;
	left: 0;
	right: 0;*/
}
#btn_apply_filter {
	background-color: #53c380;
	border-color: #53c380;
}
#btn_clean_filter {
	background-color: #c35380;
	border-color: #c35380;
}
.chosen-container {
	max-width: 100%;
}
#buscador_filtro > .search-field {
	width: 29%;
}
#buscador_filtro > .search-field label {
	text-align: center;
	display: block;
}
#buscador_filtro > .search-field input {
	width: 100%;
	text-align: center;
	margin: 5px 0;
	background-color: transparent;
}
/*Fin filtros*/

/*Valoraciones*/
.valoracion-no_fichar {
	background-color: #d37474;
	color: #fff;
	text-align: center;
}
.valoracion-fichar {
	background-color: #84d384;
	color: #fff;
	text-align: center;
}
.valoracion-seguimiento {
	background-color: #e09d66;
	color: #fff;
	text-align: center;
}
/*Fin valoraciones*/

/*Listados*/
.drag {
	overflow-x: auto;
	-webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
	user-select: none;
	/*width: 910px;*/
}
.list-total-results {
	text-align: right;
	margin: 20px auto 0;
	padding: 0;
}
.list-total-results div {
	background-color: #F5F5F5;
	padding: 5px 10px;
	display: inline-block;
}
.list-total-results span:first-of-type {
	margin-right: 10px;
}
table.result-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
table.result-table tr {
	border: 1px solid #666;
	border-left: none;
	border-right: none;
	background-color: #fff;
}
/*table.result-table tr:nth-child(even) {
	background-color: #fbefef;
}*/
table.result-table tr:hover {
	background-color: #e6e6e6;
}
table.result-table th {
	text-align: left;
	padding: 10px;
}
table.result-table td {
	padding: 5px;
}
table.result-table .nombre a {
	color: #222;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px 5px;
}
table.result-table  .nombre a:hover {
	color: #c35380;
}
table.result-table .num,
table.result-table .date,
table.result-table .photo {
	text-align: center;
	height: 40px;
	width: 40px;
	/*overflow: hidden;*/
}
table.result-table .photo img {
	height: 35px;
}
table.result-table .date {
	width: 80px!important;
}
.numpage {
	text-align: center;
	margin-left: 10px;
	width: 54px;
	display: inline-block;
}
.loading {
	width: 100%;
	text-align: center;
	background-color: #fff;
}
.order {
	cursor: pointer;
}
#fieldset_guardar {
	display: none;
}
.stat_group_title_sep, .stat_group_title {
	background-color: transparent!important;
}
.separador-columna {
	background-color: #fff!important;
}
#datosFijos table tr,
#buscador_filtro table tr {
	background-color: transparent!important;
}
/*Fin listados*/

/*General*/
button.btn {
	border: 1px solid #5380c3;
	background-color: #5380c3;
	color: #fff;
	font-weight: 500;
	padding: 10px 20px;
	width: 200px;
	margin: 10px;
	transition: all .5s ease;
	cursor: pointer;
}
button.btn:hover {
	transition: all .5s ease;
	background-color: #fff!important;
	color: #666!important;
}
textarea {
	max-width: 100%;
}
.downloadPDF {
	float: right;
}
td, th {
	padding: 2px;
}
table {
	border-collapse: collapse;
}
/*Fin general*/

/*Footer*/
footer {
	width: 100%;
	padding: 10px 0;
	box-sizing: border-box;
	background-color: /*#5380c3;*/ #c35353;
	color: #fff;
	height: 50px;
}
footer ul {
	display: flex;
	list-style: none;
	align-items: center;
}
footer ul .footer-col {
	width: 100%;
	text-align: center;
}
/*Fin footer*/




/*Alex*/
.cellright {
	text-align: right;
}
.filter-table {
	margin: 0 0 0 20px;
}
.filter-table td {
	padding: 5px;
}
#buscador .botones,
#buscador_filtro .botones {
	text-align:center;
	margin: 20px 0;
}
#fLugares table {
	border-spacing: 10px;
	border-collapse: separate;
}
#fLugares table tr {
	background-color: transparent!important;
}
.tituloFancy{
	color: #0089A0;
 	font: bold 16px Tahoma;
	border-bottom: 1px solid #0089A0;
	padding: 0 0 2px 0;
	margin: 0 0 10px 0;
}
span.myteam {
	margin: 0 10px;
}
.datos-jugador span.myteam {
	margin:0;
	margin-right: 4px;
}
span.myteam img {
	width:21px;
	height:21px;
	cursor:help;
}
.datos-jugador span.myteam img {
	width:10px;
	height:10px;
}
/*Fin Alex*/