.jsTeamMatchesShrtc {
	--joomsport-team-shrtc-main-color: #9f305b;
}

.jsTeamMatchesShrtc-filters {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 10px;
}

.jsTeamMatchesShrtc-filters + .jsTeamMatchesShrtc-container {
	margin-top: 20px;
}

.jsTeamMatchesShrtc-filters select {
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 4px 8px;
	font-size: 1em;
}

body #joomsport-container .jsTeamMatchesShrtc-link {
	position: relative;
	display: flex;
	align-items: stretch;
	gap: 10px;
	border-left: 2px solid transparent;
	border-right: 2px solid transparent;
	border-bottom: 1px solid #efefef;
	padding: 10px;
	line-height: 1.3;
	color: #000000;
	background-color: #ffffff;
	transition: margin .15s ease, box-shadow .15s ease, border .15s ease;
}

body #joomsport-container .jsTeamMatchesShrtc-link:hover {
	border-left-color: var(--joomsport-team-shrtc-main-color);
	border-right-color: var(--joomsport-team-shrtc-main-color);
	margin-left: -5px;
	margin-right: -5px;
	box-shadow: 0 .4rem .5rem 0 rgba(0, 0, 0, .15);
	z-index: 2;
}

.jsTeamMatchesShrtc-link > div:not(.jsTeamMatchesShrtc-info) {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.jsTeamMatchesShrtc-link > div:not(:last-child) {
	position: relative;
	padding-right: 10px;
}

.jsTeamMatchesShrtc-link > div:not(:last-child):after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: #efefef;
}

.jsTeamMatchesShrtc-seasonImg {
	max-width: 60px;
}

.jsTeamMatchesShrtc-info {
	flex: 1 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	font-size: 20px;
}

.jsTeamMatchesShrtc-link:hover .jsTeamMatchesShrtc-info {
	color: var(--joomsport-team-shrtc-main-color);
}

.jsTeamMatchesShrtc-team {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
}

.jsTeamMatchesShrtc-team:first-child {
	flex-direction: row-reverse;
	text-align: right;
}

.jsTeamMatchesShrtc-team .js_div_particName {
	width: 170px;
}

.jsTeamMatchesShrtc-score {
	width: 65px;
	text-align: center;
}

.jsTeamMatchesShrtc-date {
	flex: 0 0 130px;
	width: 130px;
	font-size: 16px;
}

.jsTeamMatchesShrtc-matchday {
	font-size: 14px;
}

.jsTeamMatchesShrtc-venue {
	font-size: 13px;
	font-weight: 400;
}

.jsTeamMatchesShrtc-additional {
	flex: 0 0 140px;
	width: 140px;
	padding: 0;
}

@media (max-width: 992px) {
	body #joomsport-container .jsTeamMatchesShrtc-link {
		flex-wrap: wrap;
		justify-content: space-between;
		margin-left: 0!important;
		margin-right: 0!important;
		margin-bottom: 20px;
		background-color: #F6F6F6;
	}
	
	.jsTeamMatchesShrtc-link > div:not(:last-child) {
		flex: 1 0 calc(33.3333% - 10px);
		padding: 0;
	}
	
	.jsTeamMatchesShrtc-link > div:not(:last-child):after {
		display: none;
	}
	
	.jsTeamMatchesShrtc-date {
		order: 2;
		font-size: 14px;
		text-align: center;
	}
	
	.jsTeamMatchesShrtc-season {
		order: 3;
		align-items: flex-end;
	}
	
	.jsTeamMatchesShrtc-additional {
		order: 1;
	}
	
	.jsTeamMatchesShrtc-info {
		order: 4;
		background-color: #ffffff;
		margin: 0 -10px -10px;
		padding: 10px;
	}
}

@media (max-width: 768px) {
	.jsTeamMatchesShrtc-info {
		gap: 10px;	
	}
	
	.jsTeamMatchesShrtc-link > .jsTeamMatchesShrtc-date {
		max-width: 130px;
		text-align: left;
	}
	
	.jsTeamMatchesShrtc-info {
		flex: 1 0 100%;
		font-size: 18px;
	}
	
	.jsTeamMatchesShrtc-link > .jsTeamMatchesShrtc-additional {
		order: 5;
		flex: 1 0 100%;
		margin-top: 10px;
		text-align: left;
	}
	
	.jsTeamMatchesShrtc-info > .jsTeamMatchesShrtc-team {
		width: 50%;
		flex-direction: column;
		text-align: center;
	}
	
	.jsTeamMatchesShrtc-team .js_div_particName {
		width: auto;
	}
}