table h4.ui.image.header img.ui.mini.rounded.image {
    width: 35px !important;
    height: 35px;
    object-fit: cover;
}

.skillgroup {
	background: #00000073;
	border-radius: 20px;
	display: flex;
}

.sg-logo > img {
	width: 64px !important;
	height: 64px !important;
	min-width: 64px !important;
	min-height: 64px !important;
}

.sg-name > a {
    font-size: 36px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.sg-name > a:hover {
	text-decoration: underline;
}

.left-col {
	margin: 20px;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.left-top {
	margin-top: 20px;
	margin-left: 20px;
	display: flex;
	gap: 20px;
	height: 60px;
	align-items: center;
}

.left-bottom {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.info-field:last-child {
	color: var(--box-shadow);
	font-style: italic;
	font-size: 12px;
}

.entry-rating {
    color: var(--white-text);
    font-size: 18px;
    padding-left: 4px;
}

.right-col {
	margin-right: 90px;
	width: 200px;
	position: relative;
}

.skillgroup:not(:last-child) {
	margin-bottom: 20px;
}

.sg-best-player-image {
	position: relative;
	display: flex;
	transform: skew(-10deg);
	overflow: hidden;
	width: 200px;
	border-left: 2px solid;
	border-right: 2px solid;
}

.sg-best-player-image > img {
	transform: translateX(-36px) skew(10deg);
}

.sg-best-player-caption {
    position: absolute;
    font-size: 22px;
    font-weight: bold;
    top: 61px;
    left: -30px;
    right: 0px;
    text-shadow: 2px 2px 2px black;
    text-transform: uppercase;
    font-style: italic;
    background: radial-gradient(#000000cc 20%, transparent 70%);
    padding: 12px;
    z-index: 9;
}

.sg-best-player-ribbon {
    position: absolute;
    transform: skew(-10deg);
    border-left: 4px solid #cbcbcb;
    padding: 4px;
    font-size: 22px;
    font-weight: bold;
    color: black;
    bottom: 40px;
    right: 0px;
    z-index: 9;
}

.sg-best-player-rating {
    position: absolute;
    transform: skew(-10deg);
    border-right: 4px solid #cbcbcb;
    background: #000000ad;
    padding: 0 4px;
    font-size: 16px;
    color: #999999;
    bottom: 25px;
    right: -10px;
    z-index: 9;
}

.sg-best-player-ribbon > .flag {
    transform: translateY(-2px);
    margin: 0 4px;
}

.sg-vignette {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, black 0%, transparent 20%, transparent 80%, black);
    transform: skew(-10deg);
}

.center-col {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	flex-grow: 1;
}

.info-box {
    position: relative;
    width: 200px;
    height: 60px;
}

.info-box:nth-child(1) { margin-left: 52px; }
.info-box:nth-child(2) { margin-left: 34px; }
.info-box:nth-child(3) { margin-left: 16px; }

.info-box-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: skew(-10deg);
    box-shadow: 4px 4px 0 0 #34254c;
}

.sg-best-player-ribbon:hover {
	background: white !important;
	color: black;
}

.info-box-data {
    position: absolute;
    top: 8px;
    text-align: center;
    width: 100%;
    height: 100%;
}

.info-box-data > * {
	flex-basis: 50%;
}

.info-box-caption {
    color: #c0c0c0;
    font-style: italic;
    text-shadow: 1px 1px 0px #222222;
}

.info-box-value {
	color: var(--white-text);
	font-weight: bold;
    font-style: italic;
	font-size: 22px;
	text-shadow: 1px 2px 2px black;
}

.skillgroup:last-child {
	margin-bottom: 40px;
}

@media (max-width: 800px) {
	.skillgroup {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}
	.center-col {
		gap: 20px;
	}
	.right-col {
		margin-right: 0;
	}

}