.header {
	position: relative;
	background: url('/media/mpclo/images/mpc/contests/btt26/btt26_d_bg.jpg') no-repeat center/cover;
	min-height: 380px;
}
.header.li {
	min-height: 460px;
}
.header:before {
	content: '';
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	background: linear-gradient(90deg, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 75%);
}
.header:after {
	content: '';
	z-index: 1;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	max-width: 675px;
	height: 100%;
	background: url('/media/mpclo/images/mpc/contests/btt26/btt26_d_lower_ticket_logo.png') no-repeat bottom right/100%;
}
.header .content {
	color: var(--mt-color-white);
}

.header .logo {
	display: none;
}

.header .entries-container.desktop {
	display: block;
}
.header .entries-container.mobile {
	display: none !important;
}


.header .entries {
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 0.25rem;
	margin-bottom: 1.5rem;
	color: var(--mt-color-white);
	border-radius: 2rem;
	border: 6px solid var(--mt-color-white);
	background: var(--mt-color-red);
	box-shadow: var(--mt-box-shadow);
	padding: 0.5rem 2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1875rem;
}

.header .entries .amt {
	padding-right: 0.5rem;
}
.header .entries strong {
	font-family: Futura;
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
}

.contest #contest-details .contest-details-list {
	box-shadow: none;
}
.contest #contest-details .details-header {
	background: var(--mt-color-teal);
}
.contest #contest-details .contest-details-list {
	background: var(--mt-color-light-grey);
}
.contest #contest-details .entry-periods li {
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--mt-color-med-grey);
}
.contest #contest-details .entry-periods li:last-of-type {
	border-bottom: none;
}
.contest .box.grand-prize {
	background: var(--mt-color-purple);
}

@media (max-width: 768px) {
	.header {
		background: #000;
		min-height: unset;
	}
	.header:before,
	.header:after {
		content: '';
		display: none;
	}
	
	.header .entries-container.desktop {
		display: none !important;
	}
	.header .entries-container.mobile {
		display: block !important;
	}
	
	.header .logo {
		display: block;
		width: 100%;
	}
	
	.contest #contest-details .contest-details-list {
		border-radius: unset;
	}
}


