body {
	gap: 0px;
}

.menuSection {
	background: transparent;
}

.menuSection h2 {
	color: var(--brandGreen);
}

.checkPostcodeSupport {
	background: var(--brandGreen);
	align-self: stretch;
	display: flex;
	padding: 50px var(--deviceWidthPaddingSize);
	justify-content: space-around;
	align-items: center;
	gap: var(--deviceWidthPaddingSize);
	align-self: stretch;
	border-bottom: 1px solid var(--white25);
	color: var(--white);
}

.checkPostcodeSupport .checkPostcodeSupportTexts {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.checkPostcodeSupport .checkPostcodeSupportTexts h2 {
	font-family: "Literata";
	font-size: var(--xXLargeSize);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-align: left;
}

.checkPostcodeSupport .checkPostcodeSupportTexts p {
	padding-left: 5px;
	align-self: stretch;
	color: var(--white);
	text-align: center;
	font-family: "Lato";
	font-size: var(--mediumSize);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: left;
}

.checkPostcodeSupport form.checkPostcodeSupportForm {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.checkPostcodeSupport form.checkPostcodeSupportForm #postcodeInput {
	width: 300px;
	padding: 15px;
	border-radius: 8px;
	border: 2px solid var(--white);
	background: transparent;
	color: var(--white);
	font-family: "Lato";
	font-size: var(--mediumSize);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.checkPostcodeSupport
	form.checkPostcodeSupportForm
	#postcodeInput::-moz-placeholder {
	color: var(--white);
}

.checkPostcodeSupport
	form.checkPostcodeSupportForm
	#postcodeInput::placeholder {
	color: var(--white);
}

.checkPostcodeSupport form.checkPostcodeSupportForm #submitPostcodeInputBtn {
	padding: 15px 30px;
	border-radius: 8px;
	background: var(--white);
	color: var(--brandGreen);
	font-family: "Lato";
	font-size: var(--mediumSize);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	cursor: pointer;
}

.christmasPopup {
	display: flex;
	width: 70%;
	max-width: 320px;
	gap: 5px;
	background: #f2f2f2;
	padding: 15px;
	border-radius: 10px 0px 0px 10px;
	position: fixed;
	left: 100%;
	bottom: 45px;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease-out, opacity 0.5s ease-out;
	opacity: 0.5;
}

.christmasPopup.showChristmasPopup {
	transform: translateX(-100%);
	opacity: 1;
	transition: transform 0.6s ease-in, opacity 0.5s ease-in;
}

.christmasPopup p {
	font-family: "Lato";
	font-size: var(--mediumSize);
	font-style: normal;
	font-weight: 400;
	color: var(--brandGreen);
}

.christmasPopup p span {
	font-weight: bold;
	cursor: pointer;
}

.christmasPopup svg {
	width: 50px;
	height: 50px;
	cursor: pointer;
}

@media (max-width: 1024px) {
	.checkPostcodeSupport {
		flex-direction: column;
		gap: 20px;
	}

	.checkPostcodeSupport .checkPostcodeSupportTexts h2,
	.checkPostcodeSupport .checkPostcodeSupportTexts p {
		text-align: center;
	}

	.checkPostcodeSupport form.checkPostcodeSupportForm {
		flex-wrap: wrap;
	}

	@media (max-width: 600px) {
		.checkPostcodeSupport form.checkPostcodeSupportForm #postcodeInput,
		.checkPostcodeSupport
			form.checkPostcodeSupportForm
			#submitPostcodeInputBtn {
			width: -webkit-fill-available;
		}
	}
}
