.ipl-match-predictions {
	background-color: #f3f4f6;
    min-width: 100%;
	padding: 3rem 1rem;
}
.ipl-match-predictions__container {
	margin: 0 auto;
	max-width: 1150px;
}
.ipl-match-predictions__header {
	margin-bottom: 1rem;
}
.ipl-match-predictions__title {
	color: #1F2937;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.2222;
	margin: 0 0 1rem;
}
.ipl-match-predictions__description {
	color: #4B5563;
	font-size: 1rem;
	line-height: 1.5;
}
.ipl-match-predictions__list {
	display: grid;
	gap: 1rem;
}

/* Card */
.ipl-match-predictions__item {
	background-color: #fff;
	border: 1px solid #D1D5DB;
	border-radius: .5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	overflow: hidden;
	padding: 1rem;
}
.ipl-match-predictions__item--1 {
	border-color: #FBBF24;
}

/* Card header */
.ipl-match-predictions__item-header {
	display: grid;
	gap: .5rem;
}
.ipl-match-predictions__item-title {
	color: #1F2937;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4444;
	margin: 0;
}
.ipl-match-predictions__item-time {
	color: #6B7280;
	font-size: .75rem;
	line-height: 1.3333;
}

/* Card description */
.ipl-match-predictions__item-description {
	color: #6B7280;
	font-size: 1rem;
	line-height: 1.5;
}
.ipl-match-predictions__item-description--empty {
	padding-bottom: 0.5rem;
}

/* Predictions */
.ipl-match-predictions__predictions {
	display: grid;
}
.ipl-match-predictions__prediction {
	align-items: center;
	column-gap: 0.75rem;
	display: flex;
	justify-content: space-between;
	padding: .5rem 0;
}
.ipl-match-predictions__prediction+.ipl-match-predictions__prediction {
	border-top: 1px solid #D1D5DB;
}
.ipl-match-predictions__prediction a {
	text-decoration: none;
}

/* Casino logo */
.ipl-match-predictions__prediction-casino {
	align-items: center;
	display: flex;
	justify-content: flex-start;
}
.ipl-match-predictions__prediction-casino a {
	font-size: 1rem;
	line-height: 1;
	height: 2.25rem;
}
.ipl-match-predictions__prediction-casino-logo {
	display: block;
	height: 22px;
	max-width: 64px;
	object-fit: contain;
	width: auto;
}
.ipl-match-predictions__prediction-casino img {
    border-bottom-left-radius: .5rem;
	border-top-left-radius: .5rem;
	height: 2.25rem;
	width: 3rem;
}

/* Prediction text */
.ipl-match-predictions__prediction-text {
	color: #1F2937;
	font-size: 1rem;
	line-height: 1.5;
}

/* Odd pill */
.ipl-match-predictions__prediction-odd {
	align-items: center;
	background-color: #FBBF24;
	border-radius: .5rem;
	color: #1F2937;
	display: flex;
	font-size: .875rem;
	gap: .5rem;
	justify-content: space-between;
	line-height: 1.5714;
	max-height: 2.25rem;
	max-width: 100%;
	padding: 0 .75rem 0 0;
	white-space: nowrap;
	width: 7rem;
}
.ipl-match-predictions__prediction-casino-text-inner::after {
	content: "\203A";
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	margin-left: 0.15rem;
	transform: translateY(-1px);
}

/* Footer button */
.ipl-match-predictions__button {
	align-items: center;
	background-color: #f3f4f6;
	border-radius: .5rem;
	color: #1F2937;
	cursor: pointer;
	display: flex;
	font-size: 1rem;
	font-weight: 600;
	justify-content: center;
	line-height: 1.5;
	min-height: 3rem;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
	width: 100%;
}
.ipl-match-predictions__button:hover {
	background-color: #eef2f7;
	border-color: #d1d5db;
	transform: translateY(-1px);
}
.ipl-match-predictions__button:active {
	transform: translateY(0);
}
.ipl-match-predictions__button:visited {
	color: #1F2937;
}

@media (max-width: 768px) {
	.ipl-match-predictions__prediction {
		grid-template-columns: 56px 1fr;
		grid-template-rows: auto auto;
		row-gap: 0.5rem;
	}
	.ipl-match-predictions__prediction-odd {
		grid-column: 2 / 3;
		justify-self: end;
	}
}
@media (min-width: 768px) {
	.ipl-match-predictions {
		padding: 3rem 1.5rem;
	}
}

@media (min-width: 1280px) {
	.ipl-match-predictions {
		padding: 3rem 0;
	}
}