.figura {
    width: 225px;
    height: 300px;    
    box-sizing: border-box;
    border-radius: 7px;
    background-color: transparent;    
    perspective: 1000px;
}
.figura-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.figura-conteudo {    
    background: white;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding: 10px;
    box-sizing: border-box;
}
.figura-conteudo .figura-conteudo-inner {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    position: relative;
}
.figura .figura-conteudo.verso {    
    transform: rotateY(180deg);
    position: absolute;    
    z-index: 2;
    text-align: left;
}
.figura .figura-conteudo.verso .figura-conteudo-inner {
    background: linear-gradient(0deg, #F5F5F5 0%, #F5F5F5 100%), #FFF;
}
.figura .verso .imagem {
    width: 50px;
    height: 67px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
}
.figura-wrapper {
    width: calc(50% - 8px);
    opacity: 0;
    position: relative;
    display: inline-block;
}
.figura-wrapper:nth-child(odd) {
    margin-right: 8px;
}
.figura-wrapper:nth-child(even) {
    margin-left: 8px;
}
.resultado-sorteio .figura-wrapper {
    width: 100%;
}
.resultado-sorteio .figura-wrapper:nth-child(odd) {
    margin-right: 0;
}
.resultado-sorteio .figura-wrapper:nth-child(even) {
    margin-left: 0;
}

.figura-wrapper.flipped .figura-inner {
    transform: rotateY(180deg);
}

.figura .overlay-figura {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    background: #f1f1f1;
    z-index: 1;
}
.figura.revelada .overlay-figura {
    display: none;
}
.figura .dados-figura {
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
}
.figura .dados-figura .logo-time {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 100%;
    top: 10px;
    left: 10px;
    position: absolute;
    background-size: cover;
    background-position: center;
}
.figura .numero {
    position: absolute;
    top: 0;
    right: -1px;    
    background-color: white;
    padding: 5px;
    border-radius: 0px 0px 0px 10px;
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    max-width: 25px;
}
.figura .dados-figura .dados-jogador {
    position: absolute;
    bottom: -1px;
    background: white;
    width: 80%;
    left: 10%;
    font-size: 14px;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 7px 7px 0 0;
}

.jogador-form .figura-wrapper {
    width: 75%;
    margin: auto;
}
.jogador-form .figura-wrapper:nth-child(odd) {
    margin-right: auto;
}
.jogador-form .figura-wrapper:nth-child(even) {
    margin-left: auto;
}

.figura .icon {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    margin: auto 0;
    margin-right: 5px;
}
.figura .icon.idade {
    background-image: url('/static/main/assets/Idade.svg');
}
.figura .icon.altura {
    background-image: url('/static/main/assets/Altura.svg');
}
.figura .icon.gols {
    background-image: url('/static/main/assets/Gols.svg');
}
.figura .icon.c-amarelos {
    background-image: url('/static/main/assets/Cartao_amarelo.svg');
}
.figura .icon.posicao {
    background-image: url('/static/main/assets/Posicao.svg');
}
.figura .icon.peso {
    background-image: url('/static/main/assets/Balanca.svg');
}
.figura .icon.frequencia {
    background-image: url('/static/main/assets/Frequencia.svg');
}
.figura .icon.c-vermelho {
    background-image: url('/static/main/assets/Cartao_vermelho.svg');
}

.dados-verso {
    margin: auto 0;
    font-size: 10px;
    padding: 10px;
}
.dados-verso .coluna {
    width: 50%;
    box-sizing: border-box;
}
.dados-verso .dado-jogador {
    display: flex;
    margin-bottom: 5px;
    border-bottom: 1px solid;
}
.dados-verso .dado-jogador .dado {
    width: calc(100% - 20px);
}
.dados-verso .campo-verso {
    border-top: 1px solid #333333;
    width: 100%;
}
.dados-verso .campo-verso:last-child {
    border-bottom: 1px solid #333333;
}
.dados-verso .campo-verso .valor-campo {
    font-weight: 700;
    margin: 4px 0 6px 0;
}
.dados-verso .rotulo-campo {
    background: #537FD4;
    border-radius: 0px 0px 6px 6px;
    width: 50%;
    color: white;
    padding: 2px 4px;
    box-sizing: border-box;
}