.icon-social-facebook {
	background-color: var(--color-button-facebook);
}

.icon-social-facebook::before {
	background-image: url(https://starlight.seventy9.co.uk/static/images/icons/social_icon_fb.svg?v=);
}

.icon-social-instagram {
	background-color: var(--color-button-instagram);
}

.icon-social-instagram::before {
	background-image: url(https://starlight.seventy9.co.uk/static/images/icons/social_icon_insta.svg?v=);
}

.icon-tel {
	background-color: var(--color-button-telephone);
}

.icon-tel::before {
	margin-top: 1px;
	background-image: url(https://starlight.seventy9.co.uk/static/images/icons/social_phone.svg?v=);
}

.icon-message {
	background-color: var(--color-button-message);
}

.icon-message::before {
	background-image: url(https://starlight.seventy9.co.uk/static/images/icons/social_message.svg?v=);
}

.school-map-section {
	display: flex;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	color: var(--color-font-primary);
	min-height: 120px;
}

.school-map-section > div {
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 20px;
	padding: 20px;
}

.stream-tiles {
	justify-content: flex-start !important;
}

@media screen and (max-width: 1110px) {
	.school-map-section {
		flex-direction: column;
	}

	.school-map-section > div {
		position: unset;
		transform: unset;
		border-radius: unset;
	}

	.stream-tiles {
		justify-content: center !important;
	}
}