#players-container {
    width: 100%;
    height: auto;
    background: #ffffff;
    margin: auto;
    max-width: 1080px;
    margin-top: 3rem;
}

#players-container .players-list {
    margin: auto;
    width: 100%;
    text-align: center;
}

#players-container .players-pages {
    width: 100%;
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
}

#players-container .players-pages ul {
    text-align: center;
	display: inline;
	border-top: 2px solid #80808080;
	margin: 1rem 0;
	padding: 0.5rem 0 0 0;
}

#players-container .players-pages ul > li {
    display: inline;
    margin-right: 1rem;
    padding-top: 0.5rem;
    cursor: pointer;
}

#players-container .players-pages ul > li::after {
    content: "⚫";
    font-size: 6px;
    color: #000000;
    padding: 6px 7px;
    position: absolute;
}

#players-container .players-pages ul > li:last-child {
    margin-right: 0px;
}

#players-container .players-pages ul > li:last-child::after { /* hide separator after last child */
    content: "";
}

#players-container .players-pages ul > li:hover {
    color: #b99f6e;
    border-top: 2px solid #000;
    transition: all 0.25s ease;
}

#players-container .player {
    margin: 3rem 1rem 1rem 1rem;
    height: 300px;
    display: inline-block;
    width: 228px;
    
}

#players-container .player .player-number {
    height: 50px;
    position: relative;
    top: -294px;
    text-align: left;
}

#players-container .player .player-number .number-container {
    background: #000000;
    font-size: 40px;
    width: 50%;
    height: 100%;
    color: #ffffff;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 100% 90%, 0% 100%);
    -webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 100% 90%, 0% 100%);
    float: left;
    position: relative;
}

#players-container .player .player-number .number-container span {
    transform: rotate(-3deg);
    margin: -2px 0px 0px 10px;
    position: absolute;
}

#players-container .player .player-number .bg-dark-gray-with-corner-right  {
    clip-path: polygon(0% 0%, 100% 70%, 100% 100%, 0% 90%, 0% 0%);
    -webkit-clip-path: polygon(0% 0%, 100% 70%, 100% 100%, 0% 90%, 0% 0%);
    background: #545454;
    width: 50%;
    height: 100%;
    float: left;
}

#players-container .player .player-photo {
    background: linear-gradient(to bottom right, #cdcdcd 0%, #cdcdcd 50%, #000 50%, #000 100%);
    height: 250px;
    position: relative;
    text-align: center;
    width: 100%;
    clear: both;
}

#players-container .player .player-photo img {
    height: 100%;
    width: auto;
}

#players-container .player .player-information {
    height: 50px;
    width: 100%;
    clip-path: polygon(0% 20%, 50% 0%, 100% 20%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 20%, 50% 0%, 100% 20%, 100% 100%, 0% 100%);
    background: #545454cc;
    top: -100px;
    position: relative;
    padding: 0 !important;
}

#players-container .player .player-information .player-name {
    color: #ffffff;
    float: left;
    display: inline-block;
    border-right: 2px solid #fff;
    width: 49%;
    height: 100%;
    padding-top: 15px;
    text-align: left;
}

#players-container .player .player-information .player-name .player-first-name {
    font-size: 0.7rem;
    padding-left: 5px;
}

#players-container .player .player-information .player-name .player-last-name {
    font-size: 0.8rem;
    text-decoration: uppercase;
    padding-left: 5px;
}

#players-container .player .player-information .player-position {
    width: 49%;
    float: left;
    display: inline-block;
    color: #ffffff;
    padding-right: 5px;
    font-size: 0.6rem;
    padding-top: 15px;
    text-align: right;
}

#players-container .player > a {
	height: 250px;
	display: block;
}

