html {
	overflow: hidden;
}

body {
    font-family: "Lato",sans-serif;
	padding: 0px;
	margin: 0px;
	letter-spacing: 1px;
	position: absolute;
	width:100%;
	height:100%;
	overflow: auto;
}

#preload {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	transition: opacity 500ms;
	visibility: visible;
	opacity: 1;
	z-index: 99999999;
	text-align: center;
	padding: 100px;
	color: #13AB22;
}

.lds-ring {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}

.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 51px;
	height: 51px;
	margin: 6px;
	border: 6px solid #fff;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}

@keyframes lds-ring {
	0% {
	transform: rotate(0deg);
	}
	100% {
	transform: rotate(360deg);
	}
}


@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
  .sidechat {font-size: 18px;}
  .sidechat a {font-size: 18px;}
}

/* ERROR PAGE POPUP */

.overlay_message {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	transition: opacity 500ms;
	visibility: visible;
	opacity: 1;
	z-index: 9999999;
	width: 100%;
	overflow-x: hidden;
}

.overlay_message.open{
	visibility: visible;
	opacity: 1;
}

.overlay_message.close{
	visibility: hidden;
	opacity: 0;
}

.overlay_message.open:target {
	visibility: hidden;
	opacity: 0;
	display:none;
}

.overlay_message.close:target {
	visibility: visible;
	opacity: 1;
}
         
.message {
	padding: 40px 20px 20px 20px;
	background: #fff;
	border-radius: 5px;
	width: calc(100% - 100px);
	position: relative;
	
}

.message.zero{
	margin: 100px auto;
}

.message.one{
	margin: 100px auto;
}

.message.two{
	margin: 180px auto;
}

.message img.human {
    left: 50%;
    position: absolute;
}
	
.message img.human.one {
    margin-left: -105px;
    width: 210px;
	top: -68px;
}

.message img.human.two {
    margin-left: -81px;
    width: 162px;
	top: -156px;
}

.message img.human.star {
    margin-left: -50px;
    width: 100px;
	top: -80px;
}
          
.message .close {
    border: 2px solid #fff;
    color: red;
    font-size: 40px;
    font-weight: bold;
    height: 40px;
    letter-spacing: 0;
    line-height: 17px;
    position: absolute;
    right: -10px;
    text-decoration: none;
    top: -20px;
    transition: all 200ms ease 0s;
    width: 40px;
	background: #fff;
	border-radius: 40px;
}

.message .close:hover {
	color: red;
}

.message .content_message {
	max-height: 30%;
	overflow: auto;
}

/* SCELTA POPUP */
.choose_message {
	margin-top: 40px;
}

.choose_message a{
	margin-top: 20px;
	display: block;
	border-radius: 20px;
	padding: 10px;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	text-align: center;
	font-weight: bold;
	background: #13AB22;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	font-size: 16px;
}

/* MENU GAME */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 50px;
}

.sidenav a {
    text-decoration: none;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
}



/* TITLE MENU */
span.title_menu{
	display: block;
    position: absolute;
    text-align: center;
    top: 0px;
    width: calc(100% - 80px);
	color: #13AB22;
	font-weight: bold;
	text-transform:uppercase;
	left: 35px;
}

/* MENU CHAT */

.sidechat {
    height: 100%;
    position: fixed;
    z-index: 1;
	width: 0px;
    top: 0;
    right: 0;
    background-color: #525252;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidechat a {
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidechat a:hover {
    color: #f1f1f1;
}

.sidechat .closechat {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
}


.chat_display{
	width: calc(100% - 20px); 
	margin: 0px;  
	padding: 10px;
}

.chat_display_line_one{
	padding: 5px;
	font-size: 14px; 
	background: #efefef;
	font-weight: bold; 
	margin-bottom: 5px;
}

.chat_display_line_two{
	width: 50px; 
	height: 50px; 
	float: left;
}

.chat_display_line_three{
	width: calc(100% - 100px); 
	float: left; 
	margin-left: 10px;
}

.sidechat .chat{
	border-top: 3px solid #13AB22;
	border-radius: 0px 0px 5px 5px;
	width: calc(100% - 20px); 
	height: 85%; 
	background: #fff; 
	margin: 0 auto;
}

.sidechat .view_chat{
	padding: 5px;
	overflow-x: hidden; 
	overflow-y: visible; 
	height: calc(100% - 50px);
	background-image: url('../images/bg.png');
}

.sidechat input{
	border-radius: 5px;
	border: 1px solid #ccc; 
	background: #efefef; 
	padding: 10px;
	font-size: inherit; 
	width: calc(100% - 22px);
}

/* MENU LEFT */

.top_menu{
	background-image: url('../images/bg.png');
    border-bottom: 3px solid #13AB22;
    border-radius: 0 0 20% 20%;
    box-shadow: -1px 1px 10px #000;
    height: 60px;
    width: 100%;
	position: fixed;
	z-index: 1000;
}

.top_menu #mySidenav ul{
	list-style-type: none;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 60px 0px;
	font-size: 20px;
}

.top_menu #mySidenav ul li{
	border-bottom: 1px solid #1a1a1a;
    border-top: 1px solid #4d4d4d;
	padding: 15px 0px 15px 20px;
}

.top_menu #mySidenav ul li span{
	display: block;
	float: left;
	width: 30px;
	text-align: center;
	padding-top: 3px;
	margin-right: 10px;
}

.top_menu #mySidenav .menu_data{
	background-image: url('../images/bg.png');
	border-top: 3px solid #13AB22;
	padding: 10px 0px 10px 0px;
	width: 100%; 
	text-align: center; 
}

.top_menu #mySidenav .menu_point{
	width: 100%; 
	border-bottom: 1px solid #fff;
	color: #fff;
	width: 100%; 
	text-align: center;
}

.top_menu #mySidenav .menu_point .point{
	width: 50%;
	padding: 5px 0px 5px 0px;
	background: #13AB22; 
	float: left;
}

.top_menu #mySidenav .menu_point .money{
	width: 50%;
	padding: 5px 0px 5px 0px;
	background:  #4f5b69;  
	float: right;
}

/* MAIN GAME */

.main {
	width: 100%;
	text-align: center;
	position: fixed;
	width: calc(100% - 40px);
	height: 100%;
	margin-left: 20px;
}

.main .title{
	position: absolute;
	left: 50%;
	margin-left: -150px;
	width: 300px;
	top: 20px;
}

.main .title span{
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	margin-top: 10px;
	padding-top: 10px;
	display: block;
	border-top: 2px solid #fff;
	text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}

.main .log{
	position: absolute;
	bottom: 0px;
	width: 100%;
}

.main_game {
	width: calc (100% - 40px );
	text-align: center;
	padding: 0px 20px 0px 20px;
}

.main_game .title{
	margin: 20px 0px 20px 0px;
}


.main_game a.button,
.main a.button{
	border: 4px solid #13AB22;
	display: block;
	margin: 0 auto;
	border-radius: 20px;
	margin-bottom: 20px;
	padding: 10px;
	text-transform: uppercase;
	text-decoration: none;
	color: #333;
	font-weight: bold;
	background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	font-size: 16px;
}

.main_game a.button:hover,
.main a.button:hover{
	background: rgba(255, 255, 255, 1) none repeat scroll 0 0;
}

.main_game .footer,
.main .footer{
	margin-top: 40px;
	font-size: 15px;
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}

.main form{
	margin-bottom: 40px;
}

.main form label{
	display: block;
}

.main form span{
	display: block;
	margin-top: 40px;
}

.main form span a{
	text-decoration: none;
	color: #fff;
}

.main form .captcha{
	width: 304px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.main form span a:hover{
	color: #fff;
}

.main form input{
	border: 4px solid rgba(255, 255, 255, 0.8);
	display: block;
	margin: 0 auto;
	border-radius: 10px;
	margin-bottom: 10px;
	padding: 10px;
	text-decoration: none;
	color: #333;
	background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	font-size: 20px;
	width: calc(100% - 40px);
}

.main form label.login_rmb{
	margin: 0 auto;
	margin-bottom: 20px;
	width: calc(100% - 40px);
	padding: 10px;
	border-radius: 10px;
	border: 4px solid rgba(250, 250, 250, 0.8);
	background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.main form label.login_rmb input{
	float:left;
	width: 20px;
	padding: 0px; 
	margin: 4px 0px 0px 0px;
	color: #13AB22;
}

.main form .login_rmb span{
	float:left;
	margin: 0px 0px 0px 10px;
}

.main form input.button_invia{
	border: 0px solid rgba(255, 255, 255, 0.8);
	display: block;
	margin: 0 auto;
	border-radius: 10px;
	margin-bottom: 10px;
	padding: 10px;
	text-decoration: none;
	color: #fff;
	background: #13AB22;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	font-size: 20px;
	width: calc(100% - 10px);
	-webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;  
}

.main form input.button_invia:hover{
	background:  #137B13;
}

/* BOARD */
.board_vs{
	font-size: 12px;
	color: #333;
	font-weight: bold;
}

.board_vs table{
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}

.board_vs table tr td{
	font-size: 10px;
}

.board_vs table tr td.vs{
	color:  #fff;
	padding: 14px 0px 14px 0px;
}

.board_vs table tr td.vs div{
	color: #137B13;
	font-size: 16px;
	font-weight: bold;
}

.board_vs .line_time{
	padding: 3px;
	position: absolute; 
	width: 100%; 
	background: -moz-linear-gradient(left, #CCCCCC 0%, #EEEEEE 50%, #EEEEEE 50%, #CCCCCC 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#CCCCCC),color-stop(50%,#EEEEEE), color-stop(50%,#EEEEEE), color-stop(100%,#CCCCCC));
	border: 2px solid #fff; 
	color: #444;
	border-radius: 10px;
	font-size: 10px;
	box-shadow: 0px 6px 10px -5px #000;
}

.board_vs table img{
	width: 15px;
}

/* ALLENAMENTO */

.elenco_giocatori_allenamento{
	width: calc(100% - 20px);
	margin: 0 auto;
}

.elenco_giocatori_allenamento table{
	padding: 110px 0px 50px 0px;
	margin: 0px 0px 0px 0px;
	width: 100%;
}

.elenco_giocatori_allenamento table tr td{	
	text-align: center;
	padding: 5px;
}

.elenco_giocatori_allenamento table tr td a{	
	text-decoration: none;
}

.elenco_giocatori_allenamento table tr td.value_player{
	border: 2px solid #999;
	background: #fff;
	background-repeat: no-repeat;
	background-position: center;
	font-weight: bold;
	border-radius: 10px;
}

.elenco_giocatori_allenamento table tr td.value_player span.value{
	color: #000;
}

.elenco_giocatori_allenamento table tr td.value_player.dif{
	background-image: url('../images/difesa.png');
}

.elenco_giocatori_allenamento table tr td.value_player.att{
	background-image: url('../images/attacco.png');
}

.elenco_giocatori_allenamento table tr td.value_player.ele{
	background-image: url('../images/elevazione.png');
}

.elenco_giocatori_allenamento table tr td.value_player.pre{
	background-image: url('../images/precisione.png');
}

.elenco_giocatori_allenamento table tr td.value_player.res{
	background-image: url('../images/resistenza.png');
}

.elenco_giocatori_allenamento table tr td.value_player.rif{
	background-image: url('../images/riflessi.png');
}

.elenco_giocatori_allenamento table tr td.value_player.vel{
	background-image: url('../images/velocita.png');
}

.elenco_giocatori_allenamento table tr td.value_player.dif{
	background-image: url('../images/difesa.png');
}

.elenco_giocatori_allenamento table tr td.value_player.count{
	background: #13AB22;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 0px 0px 10px 10px;
}

.elenco_giocatori_allenamento table tr td.value_player.all_attivo{
	background: #fff;
	color: #13AB22;
	font-size: 14px;
	border: 2px solid #fff;
	border-radius: 0px 0px 0px 0px;
}

.elenco_giocatori_allenamento table tr td.value_player.all_attivo a[href*=\#] {
	color: red;
}

.elenco_giocatori_allenamento table tr td.value_player a span{
	display: block;
	color: #13AB22;
	margin-bottom: 3px;
	text-transform: uppercase;
}

.elenco_giocatori_allenamento table tr td span.naz img{
	border: 0.5px solid #000;
}

.elenco_giocatori_allenamento table tr td.first_line{
	text-align: left;
	background-image: url('../images/bg.png');
	border-top: 3px solid #13AB22;
}

.elenco_giocatori_allenamento table tr td.first_line .name_rule{
	padding: 10px;
}

.elenco_giocatori_allenamento table tr td.spacetd{
	background: none;
	height: 10px;
}

/* POSTA */

.elenco_messaggi{
	width: calc(100% - 20px);
	padding: 130px 0px 50px 0px;
	margin: 0 auto;
}

.elenco_messaggi table{
	width: 100%;
}


.elenco_messaggi table tr.ovv{
	background: #efefef;
}

.elenco_messaggi table tr.ovv td{
	padding: 2px;
}

.elenco_messaggi table tr td a{
	text-decoration: none;
}

.elenco_messaggi table tr td{
	padding: 5px;
}

.elenco_messaggi ul li{
	width: calc(33.3% - 5.1px);
}

.elenco_messaggi a{
	width: calc(100% - 20px);
}

.elenco_messaggi table div.block{
	width: calc(100% - 20px);
	margin-bottom: 20px;
	background: #13AB22;
	color: #fff;
	padding: 10px;
	font-size: 12px;
	border-radius: 10px 10px 0px 0px;
}

.elenco_messaggi table div.block.bottom{
	width: calc(100% - 20px);
	margin-top: 60px;
	border-top: 2px dotted #13AB22;
	padding: 10px;
	font-size: 24px;
	background: #fff;
	border-radius: 0px;
}

.elenco_messaggi table div.date_posta{
	float: left;
	width: 40%;
	text-align: left;
}

.elenco_messaggi table div.mitt_posta{
	text-align: right;
	float: right;
	width: 60%;
}

.elenco_messaggi table .delete_all_posta{
	text-align: center; 
	padding: 10px 0px 10px 0px;
}

.elenco_messaggi table .delete_all_posta input{
	margin-top: 20px;
	display: block;
	border-radius: 20px;
	padding: 10px;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	text-align: center;
	font-weight: bold;
	background: #13AB22;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	border: 0px;
	margin: 0 auto;
	width: 100%;
}

.elenco_messaggi form.new_message input{
	width: calc(100% - 20px);
	padding: 10px;
}

.elenco_messaggi form.new_message textarea{
	width: calc(100% - 20px);
	padding: 10px;
	height: 200px;
}

.elenco_messaggi form.rubrica{
	margin-top: 40px;
}

.elenco_messaggi form.rubrica table tr th{
	background: #13AB22;
	color: #fff;
	padding: 5px 0px 5px 0px;
}


/* SQUADRA */

.elenco_giocatori{
	width: calc(100% - 20px);
	margin: 0 auto;
}

.elenco_giocatori ul{
	padding: 130px 0px 50px 0px;
	margin: 0px 0px 0px 0px;
	list-style-type: none;
}

.elenco_giocatori ul li{
	margin-bottom: 50px;
}

.elenco_giocatori ul li .main_sch{
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	position: relative;
	height: 60px;
	border-radius: 5px 5px 0px 0px;
	z-index: 0;
}

.elenco_giocatori ul li .main_sch .foto_giocatore{
	background-repeat: no-repeat;
	background-size: 60px 60px;
	text-align: center;
	width: 60px;
	height: 60px;
	position: absolute;
	bottom: 20px;
	left: 10px;
	border-radius: 5px;
	border: 1px solid #fff;
	z-index: 0;
}

.elenco_giocatori ul li .main_sch .dati_giocatore{
	margin-left: 10px;
	float:left;
	width: calc(100% - 20px);
	height: 60px;
}

.elenco_giocatori ul li .main_sch .dati_giocatore .dati{
	color: #fff;
	font-size: 13px;
	height: 35px;
	padding: 5px 0px 5px 0px;
	margin-left: 70px;
}

.elenco_giocatori ul li .main_sch .dati_giocatore span.nome{
	font-weight: bold;
}

.elenco_giocatori ul li .main_sch .dati_giocatore span.ruolo{
	color: yellow;
}

.elenco_giocatori ul li .main_sch .dati_giocatore span.eta{
	display: block;
	font-size: 12px;
	color: #efefef;
}

.elenco_giocatori ul li .main_sch .foto_giocatore span.maglia{
	font-size: 8px;
	color: #000;
	padding: 0px;
	border-radius: 10px;
	background: #fff;
	display: block;
	width: 10px;
	margin: 0 auto;
	margin-top: 34px;
	text-align: center;
}

.elenco_giocatori ul li .main_sch .dati_giocatore .valori,
.elenco_giocatori_allenamento table tr td .valori{
	width: 100%;
	height: 25px;
	padding-top: 5px;
}

.elenco_giocatori ul li .main_sch .dati_giocatore .valori .bar,
.elenco_giocatori_allenamento table tr td .valori .bar{
	float: left;
	width: 33.33%;
	font-size: 13px;
	position: relative;
	height: 20px;
}

.elenco_giocatori ul li .main_sch .dati_giocatore .valori .bar .mig,
.elenco_giocatori_allenamento table tr td .valori .bar .mig{
	position: absolute;
	width: 20px;
	height: 15px;
	background: #fff;
	border-radius: 20px;
	text-align: center;
	padding-top: 4px;
	z-index: 1;
	left: 0px;
}

.elenco_giocatori ul li .main_sch .dati_giocatore .valori .bar .line_bt,
.elenco_giocatori_allenamento table tr td .valori .bar .line_bt{
	background: #999;
	width: calc(100% - 10px);
	height: 12px;
	border: 1px solid #fff;
	top: 2px;
	position: absolute;
	border-radius: 2px;
	right: 3px;
	color: #fff;
	font-size: 10px;
	text-align: center;
	 box-shadow: 1px 1px 5px #333;
}

.elenco_giocatori ul li .main_sch .dati_giocatore .valori .bar .line_vl,
.elenco_giocatori_allenamento table tr td .valori .bar .line_vl{
	width: calc(100% - 10px);
	height: 12px;
	top: 3px;
	position: absolute;
	color: #fff;
	font-size: 10px;
	text-align: center;
	z-index: 3;
}

.elenco_giocatori ul li .main_sch .dati_giocatore .valori .bar .line,
.elenco_giocatori_allenamento table tr td .valori .bar .line{
	height: 12px;
	top: 3px;
	position: absolute;
	z-index: 0;
	border-radius: 2px;
	left: 3px;
	
}



.elenco_giocatori ul li .main_sch .media_giocatore{
	float:right;
	width: 60px;
	background: #d19b3d;
	height: 25px;
	border-radius: 0px 5px 0px 5px;
	text-align: center;
	padding-top: 5px;
	position: absolute;
	right: 0px;
}

/* SCHEDA GIOCATORE */
.upp_dati{
	width: calc (100% - 2px);
	background: rgba(254, 254, 254, 0.9);
	border-radius: 0px 0px 5px 5px;
	z-index: 0;
	box-shadow: 0px 3px 5px #444;
	padding: 20px 10px 10px;	
}

.upp_dati table{
	border-collapse: collapse;
    border-spacing: 0;
    font-size: 16px;
    width: 100%;
	margin-top: 10px;
	width: 100%;
}

.upp_dati table tr td{
	padding: 5px 5px 5px 10px;
	border-bottom: 1px solid #ddd;
}

table.table_eta tr:nth-child(even){
	background: #efefef;
}

/* STADIO */

.stadio_bk{
	position: relative;
	height: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 50px;
	border-bottom: 1px solid #fff;
	font-size: 12px;
}

.stadio_bk .valori{
	background: rgba(0, 0, 0, 0.6); 
	position: absolute; 
	bottom: 0px; 
	width: 100%; 
}

.stadio_bk table{
	color: #fff;
	width: calc(100% - 10px);
	margin-left: 10px;
}

.stadio_bk .bar{
	width: 100%;
	font-size: 13px;
	position: relative;
	height: 20px;
}


.stadio_bk .bar .line_bt{
	background: #999;
	width: calc(100% - 10px);
	height: 12px;
	border: 1px solid #fff;
	top: 2px;
	position: absolute;
	border-radius: 2px;
	right: 3px;
	color: #fff;
	font-size: 10px;
	text-align: center;
	box-shadow: 1px 1px 5px #333;
	left: 0px;
}

.stadio_bk .bar .line_vl{
	width: calc(100% - 10px);
	height: 12px;
	top: 3px;
	position: absolute;
	color: #fff;
	font-size: 10px;
	text-align: left;
	z-index: 3;
	left: 10px;
}



.stadio_bk .bar .line{
	height: 12px;
	top: 3px;
	position: absolute;
	z-index: 0;
	border-radius: 2px;
	left: 1px;
} 


.imposta_stadio{
	margin-left: 10px;
	border: 1px solid #fff;
	width: calc(100% - 20px);
	background: #fff;
	margin-top: 10px;
	margin-bottom: 10px;
}

.imposta_stadio table{
	border-collapse: collapse;
    border-spacing: 0;
    font-size: 16px;
    width: 100%;
	margin-top: 10px;
	width: 100%;
}

.imposta_stadio table tr td{
	padding: 5px 5px 5px 10px;
	border-bottom: 1px solid #ddd;
}

/* COUNTDOWN ALLENAMENTO */
.countdown_all div{
	display: inline;
	margin: 0px 3px 0px 3px;
}

.grecaptcha-badge { 
    visibility: hidden;
}

/* TRASFERIMENTI */
.elenco_giocatori_trasferimenti{
	width: calc(100% - 20px);
	margin: 0 auto;
}

.elenco_giocatori_trasferimenti table{
	width: 100%;
	padding: 0px;
	margin: 110px 0px 50px 0px;
	width: 100%;
}

.elenco_giocatori_trasferimenti table tr td{
	padding: 10px;
}

.elenco_giocatori_trasferimenti .foto_giocatore{
	background-repeat: no-repeat;
	background-size: 60px 60px;
	text-align: center;
	width: 60px;
	height: 60px;
	border-radius: 5px;
	border: 1px solid #fff;
}

/* CALENDARIO */
.main_calendario{
	width: calc(100% - 40px);
	margin: 0 auto;
	background-image: url('../images/bg.png');
	margin-top: 130px;
	margin-bottom: 50px;
	border-radius: 5px;
	padding: 5px;
}

table.calendario{
	width: 100%;
	margin: 0 auto; 
	text-align: 
	center;
	padding: 0px;
}

table.calendario th{
	color: yellow;
	text-align: center;
	font-weight: bold;
	background: green;
	padding: 10px;
	border-radius: 5px;
}

table.calendario a{
	color: #fff;
	text-decoration: none;
}

table.calendario td{
	border-radius: 5px;
	background: #99B431;
}

table.calendario td a span:hover{
	opacity: 0.5;
}

table.calendario td span{
	padding: 10px;
	display: block;
}

table.calendario td.dagiocare{
	background: #334C7A;
}

table.calendario td.giocate{
	background: #6495ED;
}

table.calendario td.dataselezionata,
table.calendario td.nonancoragiocataoggi,
table.calendario td.giocataoggi{
	background: #A52A2A;
	font-weight: bold;
}

form.scelta_periodo{
	text-align: center;
	padding: 0px 0px 5px 0px;
}

form.scelta_periodo select{
	width: calc(50% - 5px);
	padding: 10px;
	font-weight: bold;
	text-transform:uppercase;
	-webkit-appearance:none;
	color: #000;
	background: #fff;
	border: 1px solid #000;
	border-radius: 5px;
}

.title_partite{
	text-align: center;
	font-weight: bold;
}

.title_partite .no_partite{
	padding: 20px;
}

.title_partite img{
	display: block;
	margin: 0 auto;
	margin-bottom: 10px;
}

.elenco_partite{
	padding: 0px 10px 0px 10px;
}

table.table_squadre{
	width: 100%;
	border-spacing: 2px;
	font-size: 12px;
}

table.table_squadre>thead tr th{
	color: #000;
	padding: 20px 0px 20px 0px;
}



table.table_squadre>tbody tr td{
	padding: 5px;
	font-weight: bold;
}

table.table_squadre>tbody tr td:nth-child(1){
	text-align: right;
	text-transform:capitalize;
	width: 43%;
	font-size: 3vmin;
}



table.table_squadre>tbody tr td:nth-child(2){
	text-align: center;
	background: #132f54;
	color: #fff;
}

table.table_squadre>tbody tr td:nth-child(3){
	text-align: left;
	text-transform: capitalize;
	width: 43%;
	font-size: 3vmin;
}


table.table_squadre>tbody tr:nth-child(even)  {
	background-color: #3573b0;
	color: #fff;
	padding: 4px;
}

table.table_squadre>tbody  tr:nth-child(odd) {
	background-color: #296098;
	color: #fff;
	padding: 4px;
}

table.table_squadre>tbody tr.personal:nth-child(even)  {
	background-color: #A52A2A;
	color: #fff;
}

table.table_squadre>tbody tr.personal:nth-child(odd) {
	background-color: #A52A2A;
	color: #fff;
}

/* CLASSIFICA */
.main_classifica{
	width: calc(100% - 40px);
	margin: 0 auto;
	background-image: url(../images/bg.png);
	margin-top: 130px;
	margin-bottom: 50px;
	border-radius: 5px;
	padding: 5px;
}

.title_classifica{
	padding: 20px 0px 20px 0px;
	text-align: center;
	background: #fff;
}

.main_classifica .no_classifica{
	padding: 20px;
	text-align: center;
	
}

.main_classifica .no_classifica img,
.main_classifica .title_classifica img{
	margin-bottom: 10px;
}

table.classifica{
	width: 100%;
	font-size: 3vmin;
}

table.classifica img{
	width: 10%;
	border-radius: 20px;
	margin: 0px 5px 0px 10px;
}

table.classifica >thead tr{
	height: 20px;
	background: #13AB22;
	color: #fff;
}

table.classifica >thead tr th{
	height: 20px;
	background: #13AB22;
	color: #fff;
	border-left: 1px solid #fff;
	border-right: 0px;
	border-top: 0px;
	border-bottom: 0px;
}

table.classifica >thead tr th:nth-child(1),
table.classifica >thead tr th:nth-child(2){
	background: #fff;
}

table.classifica >tbody tr td:nth-child(1){
	border-left: 0px;
	border-right: 0px;
	border-top: 0px;
	border-bottom: 1px solid #efefef;
}

table.classifica >tbody tr td:nth-child(2){
	text-align: left;
	border-left: 0px;
	border-right: 0px;
	border-top: 0px;
	border-bottom: 1px solid #efefef;
}

table.classifica >tbody tr td:nth-child(3){
	color: #13AB22;
}

table.classifica tr td{
	text-align: center;
	padding: 10px 0px 10px 0px;
	border-left: 1px solid #efefef;
	border-right: 0px;
	border-top: 0px;
	border-bottom: 1px solid #efefef;
}

table.classifica>tbody tr:nth-child(even) {
	background: #f6f6f6;
}