.contenedorJugadores {
    float: left;
    width: 100%;
	
	.rotateImage {
		float: left;
		width: calc(( 100% / 6) - 2%);
		margin: 5px 1%;
		float: left;
		position: relative;
		
		@media(max-width: 1000px){
			width: calc(( 100% / 5) - 2%);
		}
		@media(max-width: 900px){
			width: calc(( 100% / 4) - 2%);
		}
		@media(max-width: 800px){
			width: calc(( 100% / 3) - 2%);
		}
		@media(max-width: 600px){
			width: calc(( 100% / 2) - 2%);
		}
		@media(max-width: 350px){
			width: calc(( 100% / 1) - 2%);
		}
		
		
		.front {
			-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
			transition: 0.5s ease all;
			
			span.name {
				position: absolute;
				left: 0;
				top: 0;
				text-align: center;
				width: 100%;
				background: rgba(188, 33, 39,0.7);
				color: #fff;
				font-size: 0.9em;
				padding: 5px 0;
				font-weight: bold;
				letter-spacing: 0.6px;
			}
			img{
				float:left;
			}
			span.apodo {
				position: absolute;
				left: 0;
				bottom: 0;
				text-align: center;
				width: 100%;
				background: rgba(39, 41, 98, 0.7);
				color: #fff;
				padding: 5px 0;
				font-weight: bold;
				letter-spacing: 2px;
				text-transform:uppercase;
			}

		}
		.back {
			position: absolute;
			width: 94%;
			height: 94%;
			padding: 3%;	
			-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
			background: linear-gradient(45deg,#bc2127,#272962);
			color: white;
			transform: rotateY(180deg);
			transition: 0.5s ease all;
			text-align: justify;
			display: flex;
			align-items: center;
			
			ul{
				list-style-type: none !important;
				padding: 0;
				
			
				li{
					width: 100% !important;
					float: left;
					margin: 7px 0 7px 0 !important;
					padding: 0 0 0 0 !important;
					background: none !important;
					
					strong{
						color: #fff;
					}
				}
			}
		}
		
		&:hover{
			.front {
				transform: rotateY(180deg);
				
				span.name,span.apodo{
					display:none;
					opacity:0;
					transition: 0.5s ease all;
				}
			}
			.back {
				transform: rotateY(0);
			}
		}
	}
	
}


.d-none{display: none !important;}