.catfish-banner {
	position: fixed;
	bottom: 0;
	left: 50%;
	z-index: 999998;
	width: 100%;
	padding: 0;
	transform: translateX(-50%);
	box-sizing: border-box;
	pointer-events: none;
}

.catfish-banner__inner {
	position: relative;
	pointer-events: auto;
}

.catfish-banner__close {
	position: absolute;
	top: -12px;
	right: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	min-height: unset;
	min-width: unset;
	margin: 0;
}

.catfish-banner__close svg {
	display: block;
	width: 24px;
	height: 24px;
}

.catfish-banner__close svg circle {
	transition: fill 0.2s ease;
}

.catfish-banner__close:hover svg circle {
	fill: #cc0000;
}

.catfish-banner__desktop,
.catfish-banner__mobile {
	display: flex;
	width: 100%;
	gap: 10px;
}

.catfish-banner__mobile {
	display: none;
	flex-direction: column;
}

.catfish-banner__item {
	flex: 1 1 0;
	min-width: 0;
	overflow: hidden;
}

.catfish-banner__item img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

.catfish-banner__item a {
	display: block;
	line-height: 0;
}

.catfish-banner.is-hidden {
	display: none !important;
}

@media (max-width: 767px) {
	.catfish-banner {
		padding: 0  10px;
	}

	.catfish-banner__close {
		top: -18px;
        right: -5px;
	}

	.catfish-banner__desktop {
		display: none !important;
	}

	.catfish-banner__mobile {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}

	.catfish-banner__mobile .catfish-banner__item {
		flex: 0 0 auto;
		width: 100%;
	}
}
