.thcb__banner {
	display: none;
}

.thcb__banner.visible {
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100vw;
	background: #000;
	z-index: 1000; /* Above notches */
	padding: 1em;
	border-top: 1px solid #EC525B;
	color: #fff;
}

@media screen and (min-width: 1000px) {
	.thcb__banner.visible {
		display: grid;
		display: -ms-grid;
		grid-auto-flow: column;
		grid-template-columns: 1fr 15em minmax(0,60em) 10em 1fr;
		-ms-grid-columns: 1fr 15em 1em minmax(0, 60em) 1em 10em 1fr;
		grid-gap: 2em;
		align-items: center;
	}

	.thcb__banner:before,
	.thcb__banner:after {
		content: "";
		display: block;
	}
}

.thcb__heading {
	color: inherit;
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	-ms-grid-row: 1;
}

.thcb__heading span {
	color: #EC525B;
}
@media screen and (min-width: 1000px) {
	.thcb__heading span {
		display: block;
	}
}

.thcb__content {
	-ms-grid-column: 4;
	-ms-grid-column-span: 1;
	-ms-grid-row: 1;
}
.thcb__content a {
	color: #EC525B;
}

.thcb__button {
	background-color: #EC525B;
	color: inherit;
	border: 0;
	cursor: pointer;
	font-size: 12px;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	line-height: 1;
	height: 3em;
	padding: 1em 2em;
	border-radius: 25px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.3em;
	-ms-grid-column: 6;
	-ms-grid-column-span: 1;
	-ms-grid-row: 1;
	margin-top: 2em;
}
@supports( display: grid ) {
	.thcb__button {
		margin-top: initial;
	}
}
