.catfish-banner-container {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: -webkit-transform 0.3s ease-out;
	transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.catfish-banner-container.cfb-visible {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.catfish-banner-wrapper {
	position: relative;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.catfish-banner-link {
	display: block;
	text-decoration: none;
}

.catfish-banner-image {
	display: block;
	width: 100%;
}

.catfish-banner-image img {
	display: block;
	width: 100%;
	height: auto;
}

.catfish-banner-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	z-index: 10;
	padding: 0;
	-webkit-transition: background 0.2s ease;
	transition: background 0.2s ease;
}

.catfish-banner-close:hover {
	background: rgba(0, 0, 0, 0.9);
}

.catfish-banner-close:focus {
	outline: 2px solid #fff;
	outline-offset: -2px;
}

@media (max-width: 1024px) {
	.catfish-banner-wrapper {
		max-width: 728px;
	}
}

@media (max-width: 768px) {
	.catfish-banner-wrapper {
		max-width: 360px;
	}
	
	.catfish-banner-close {
		width: 26px;
		height: 26px;
		font-size: 18px;
	}
}

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

