.match-schedule {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.match-schedule_fixture {
	width: 150px;
	height: 150px;
	background: #a4a0a0;
	border-radius: 5px;
	border: 1px solid var(--accent);
	color: #fff;
	padding: 10px;
	font-weight: 700;
	position: relative;
	-webkit-box-shadow: 0px 0px 15px 5px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 0px 0px 15px 5px rgba(34, 60, 80, 0.2);
	box-shadow: 0px 0px 15px 5px rgba(34, 60, 80, 0.2);
}
.match-schedule_fixture_away {
	text-align: right;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.match-schedule_fixture_home {
	margin-top: 7px;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.match-schedule_fixture_rz {
	text-align: center;
	padding: 3px 0;
}
.match-schedule_fixture_life {
	position: absolute;
	right: 10px;
	top: 10px;
	padding: 3px;
	border-radius: 3px;
	background: #06b606;
	box-shadow: 0 0 10px rgba(0, 255, 112, 0.5);
	transition: box-shadow 0.3s ease;
	color: #00ff70;
	border: 1px solid #20db20;
}
.match-schedule_fixture.onward {
	background: #71849a;
}
.match-schedule_fixture.life {
	background: #2390cd;
}
.match-schedule_fixture.off {
	background: #f7941e;
}
@keyframes glow-pulse {
	0% {
		box-shadow: 0 0 5px rgba(0, 255, 112, 0.5);
	}
	50% {
		box-shadow: 0 0 10px rgba(0, 255, 112, 1), 0 0 20px rgba(0, 255, 112, 0.7);
	}
	100% {
		box-shadow: 0 0 5px rgba(0, 255, 112, 0.5);
	}
}
.match-schedule_fixture_life {
	animation: glow-pulse 2s infinite;
}
.match-schedule_fixture_lg {
	margin-top: 5px;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.match-schedule_fixture_lg img {
	width: 20px;
	margin-right: 5px;
}
@media screen and (max-width: 1220px) {
	.match-schedule {
		justify-content: center;
		margin-top: 30px;
	}
}
@media screen and (max-width: 760px) {
	.match-schedule_fixture {
		width: 100%;
		height: 105px;
	}
	.match-schedule_fixture_bx {
		display: flex;
		justify-content: space-between;
	}

}
.container {  background:#fff; padding:20px;
	/*box-shadow:0 2px 8px rgba(0,0,0,0.1);*/
}

.event-list { list-style:none; padding:0; margin:0 0 20px; }
.event-list li { margin-bottom:5px; }
.lineup { display:flex; justify-content:space-between; margin-bottom:20px;flex-direction: column;}
.lineup .team { width:100%; }
.lineup .team img { width:50px; vertical-align:middle; margin-right:5px; }
.match-events__row {
	display: flex;
	padding: 7px 0 7px 5px;
	padding-left: 5px;
	border-bottom: 1px solid #eee;
}
.info-box-ev {
	display: flex;
}
.info-box-ev_time {
	width: 34px;
	height: 24px;
	flex: 0 0 34px;
	text-align: center;
	font-weight: 700;
	line-height: 25px;
	font-size: 11px;
	background: #e0f5c2;
	border-radius: 3px;
}

.yellow-card {
	display: inline-block;
	width: 14px;
	height: 24px;
	background: #feca30;
	border-radius: 2px;
	margin: 0 0 -6px;
}
.red-card {
	display: inline-block;
	width: 14px;
	height: 24px;
	background: #e70b0b;
	border-radius: 2px;
	margin: 0 0 -6px;
}
.info-box-ev_pl {
	font-size: 13px;
	padding-left: 5px;
}
.Home .info-box-ev_pl {
	text-align: right;
	padding-right: 5px;
	line-height: 25px;
}
.info-box-ev_pl_sub {
	opacity: 0.5;
	line-height: 18px;
}
.info-box-ev_sh {
	width: 14px;
	flex: 0 0 14px;
	text-align: center;
	color: #94999f;
	font-size: 13px;
}
.Home .info-box-ev_sh {
	margin-right: 5px;
}
.Away .info-box-ev_sh {
	margin-left: 5px;
}
.match-events__row.Away .info-box-ev {
	padding-right: 30px;
	flex-direction: row-reverse;
}
.res-box {
	display: flex;
}
.res-box_t1 {
	width: 30%;
	margin: 0 0 0 5%;
	color: #000;
	text-align: center;
}
.res-box_sc {
	width: 30%;
	text-align: center;
}
.res-box_t2 {
	width: 30%;
	margin: 0 5% 0 0;
	color: #000;
	text-align: center;
}
.res-box_t1 img, .res-box_t2 img {
	width: 60px;
	height: 60px;
	margin: 30px 0 12px 0;
}
.res-box_sc div:first-child {
	font-size: 60px;
	line-height: 90px;
	font-weight: 700;
	padding: 15px 0 0;
}
.res-box_sc div:last-child {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	padding: 8px;
	color: #fff;
	margin: 15px 0 30px;
	background: #ff5860;
	border-radius: 3px;
}
.res-box2 p {
	padding: 5px 0;
	font-size: 14px;
}
.Home {
	padding-right: calc(50% - 17px);
	justify-content: flex-end;
}
.Away {
	padding-left: calc(50% - 17px);
}
.match-events {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	font-family: Arial, sans-serif;
}

.event-table {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.team-column {
	width: 48%;
}
.team-column-w {
	width: 100%;
}
.team-logo {
	width: 50px;
	height: 50px;
	object-fit: contain;
	display: block;
	margin-bottom: 10px;
}

ul {
	list-style: none;
	padding-left: 0;
}

li {
	margin-bottom: 5px;
	font-size: 14px;
}
.team {
	display: flex;
	justify-content: space-between;
}
.team > div {
	width: 48%;
}
.team_pl {
	margin-bottom: 5px;
	font-size: 14px;
	display: flex;
	padding: 7px 0 7px 5px;
	border-bottom: 1px solid #eee;
}
.lineup h3 {
	margin: 20px 0;
	font-size: 18px;
	text-align: center;
	background: linear-gradient(90deg,#ffffff 15%,#efefef 50%,#ffffff 85%);
	padding: 5px 0;
	width: 100%;
	font-weight: bold;
	display: block;
	color: #000;
}
.team h2 {
	margin: 20px 0;
	text-align: center;
}
.match-events h2 {
	margin: 20px 0;
	font-size: 18px;
	text-align: center;
	background: linear-gradient(90deg,#ffffff 15%,#efefef 50%,#ffffff 85%);
	padding: 5px 0;
	width: 100%;
	font-weight: bold;
	display: block;
	color: #000;
}
