.catfish-banner {
	bottom: 0;
	left: 0;
	padding: 0;
	pointer-events: none;
	position: fixed;
	right: 0;
	z-index: 9999;
}
.catfish-banner.is-pending,
.catfish-banner.is-hidden {
	display: none;
}
.catfish-banner__inner {
	background: #1f2937;
	border-bottom: 0;
	border-radius: .5rem .5rem 0 0;
	color: #fff;
	margin: 0 auto;
	padding: 1.25rem;
	pointer-events: auto;
	position: relative;
	width: min(100%, 1150px);
}
.catfish-banner__top,
.catfish-banner__bottom {
	width: 100%;
}
.catfish-banner__header {
	align-items: center;
	display: flex;
	gap: .75rem;
}
.catfish-banner__logo {
	display: none;
}
.catfish-banner__logo-image {
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: .25rem;
	display: block;
	height: 3rem;
	object-fit: contain;
	width: 4rem;
}
.catfish-banner__casino-name {
	flex: 1;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	min-width: 0;
}
.catfish-banner__close {
	align-items: center;
	background: #6b7280;
	border: 0;
	border-radius: .5rem;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 2rem;
	height: 2rem;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 2rem;
}
.catfish-banner__close:hover,
.catfish-banner__close:focus {
	background: #9ca3af;
}
.catfish-banner__body {
	align-items: center;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.5rem;
	padding-top: 1rem;
}
.catfish-banner__bonus {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4444;
	min-width: 0;
}
.catfish-banner__button {
	align-items: center;
	background: linear-gradient(to left, #fbbf24 50%, #1f2937 50%);
	background-position: right bottom;
	background-size: 200% 100%;
	border: 1px solid #fbbf24;
	border-radius: .5rem;
	color: #1f2937;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 700;
	justify-content: center;
	line-height: 1.5;
	min-height: 3rem;
	min-width: 7.5rem;
	padding: 0.75rem 1.5rem;
	text-align: center;
	text-decoration: none;
	transition:
		background-position 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease;
	white-space: nowrap;
}
.catfish-banner__button:hover,
.catfish-banner__button:focus {
	background-position: left bottom;
	border-color: #fbbf24;
	color: #fbbf24;
}
.catfish-banner__bottom {
	margin-top: 1rem;
}
.catfish-banner__disclaimer {
	color: #9ca3af;
	font-size: .75rem;
	line-height: 1;
}

/* Tablet and desktop */
@media (min-width: 768px) {
	.catfish-banner {
		padding: 0 1.5rem;
	}
	.catfish-banner__inner {
		padding: 1rem 2rem;
	}
	.catfish-banner__top {
		align-items: center;
		column-gap: 1.25rem;
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		grid-template-rows: auto auto;
		row-gap: 0.125rem;
	}
	.catfish-banner__header,
	.catfish-banner__body {
		display: contents;
	}
	.catfish-banner__logo {
		align-items: center;
		background: #fff;
		border-radius: .25rem;
		display: flex;
		grid-column: 1 / 2;
		grid-row: 1 / 3;
		justify-content: center;
		min-height: 3rem;
		min-width: 4rem;
		overflow: hidden;
		width: 4rem;
	}
	.catfish-banner__casino-name {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
		font-size: 1rem;
		line-height: 1.5;
	}
	.catfish-banner__bonus {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		font-size: 1.25rem;
		line-height: 1.4;
	}
	.catfish-banner__button {
		grid-column: 3 / 4;
		grid-row: 1 / 3;
		min-height: 3rem;
		min-width: 9.75rem;
		padding: .75rem 2rem;
	}
	.catfish-banner__bottom {
		margin-top: .75rem;
	}
	.catfish-banner__disclaimer {
		font-size: .75rem;
		line-height: 1;
	}
	.catfish-banner__close {
		font-size: 1.25rem;
		background: #d1d5db;
		border-radius: 0.5rem;
		color: #1f2937;
		height: 2rem;
		position: absolute;
		right: -0.625rem;
		top: -0.625rem;
		width: 2rem;
	}
}

/* Larger desktop */
@media (min-width: 1024px) {
	.catfish-banner__top {
		column-gap: 1.5rem;
	}
	.catfish-banner__casino-name {
		font-size: 1rem;
	}
	.catfish-banner__button {
		min-width: 10rem;
		padding: .75rem 2.5rem;
	}
}

@media (min-width: 1280px) {
	.catfish-banner {
		padding: 0;
	}
}