/* Live carousel container */
.com-xscores-live{
	width: 100%;
	padding-left: 44px;
	padding-right: 44px;
}
.com-xscores-live .xscores-live-match{
	overflow: hidden;
}

/* Live match card */
.com-xscores-live .xscores-live-match-card .card{
	overflow: hidden;
	border: none;
	border-radius: 10px;
	transition: box-shadow 0.2s ease;
}
.com-xscores-live .xscores-live-match-card .card:hover{
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Team name */
.com-xscores-live .xscores-live-match-card .team{
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.4rem;
	max-height: 1.4rem;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow-wrap: break-word;
	white-space: break-spaces;
}

/* Score */
.com-xscores-live .xscores-live-match-card .score{
	font-size: 1.3rem;
	line-height: 1.6rem;
	font-weight: 800;
	color: #1a1a1a;
}

/* Team logo */
.com-xscores-live .xscores-live-match-card .xs-logo{
	width: 24px;
	height: 24px;
	object-fit: contain;
	border-radius: 3px;
}

/* Top title & partial */
.com-xscores-live .xscores-live-match-card .toptitle{
	font-size: 0.78rem;
	line-height: 1.4rem;
	max-height: 1.4rem;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow-wrap: break-word;
	white-space: break-spaces;
	color: #6c757d;
	font-weight: 500;
}
.com-xscores-live .xscores-live-match-card .partial{
	font-size: 0.82rem;
	line-height: 1.4rem;
	max-height: 1.4rem;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow-wrap: break-word;
	white-space: break-spaces;
	color: #666;
}

/* Carousel controls */
.com-xscores-live .carousel-control-prev,
.com-xscores-live .carousel-control-next{
	width: 44px;
	color: #aaa;
	transition: color 0.15s ease;
}
.com-xscores-live .carousel-control-prev:hover,
.com-xscores-live .carousel-control-next:hover{
	color: #5c9801;
}

/* Modal */
.com-xscores-live .xscores-live-match-modal .modal-title{
	max-width: calc(100% - 40px);
	overflow: hidden;
}
.com-xscores-live .xscores-live-match-modal .team{
	font-size: 0.9rem;
	line-height: 1.4rem;
	white-space: break-spaces;
}
.com-xscores-live .xscores-live-match-modal .xs-logo{
	width: 30px;
	height: 30px;
	object-fit: contain;
}

/* Single/double match sizing */
.xscores-live-match-single{
	width: 33% !important;
	margin-left: calc(100% / 2 - 16.5%) !important;
}
.xscores-live-match-double{
	width: 50% !important;
}

@media(max-width: 1200px){
	.xscores-live-match-single{
		width: 100% !important;
		margin-left: 0px !important;
	}
	.xscores-live-match-double{
		width: 100% !important;
	}
}
@media(max-width: 768px){
	.com-xscores-live{
		padding-left: 32px;
		padding-right: 32px;
	}
	.com-xscores-live .carousel-control-prev,
	.com-xscores-live .carousel-control-next{
		width: 32px;
	}
}
@media(max-width: 576px){
	.com-xscores-live{
		padding-left: 24px;
		padding-right: 24px;
	}
	.com-xscores-live .carousel-control-prev,
	.com-xscores-live .carousel-control-next{
		width: 24px;
	}
	.com-xscores-live .xscores-live-match-card .score{
		font-size: 1.1rem;
	}
}