@charset "UTF-8";
/* CSS Document */

section.overview {
	padding: var(--std-padding);
}

section.tour-overview  {
	padding-top: var(--header-padding);
}

section.overview .widget {
	grid-template-columns: 0.5fr 1fr;
	align-items: center;
	gap: 50px;
}

section.overview .content {
	color: rgba(var(--white), 1);
}

section.overview-tiles .blocks {
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
	gap: 20px;
}

section.overview-tiles .blocks .block {
	display: grid;
	align-content: end;
	justify-content: center;
	aspect-ratio: 1 / 1;
	background-color: rgba(var(--white), 1);
	border-radius: var(--sml-radius);
	color: rgba(var(--white), 1);
	padding: 20px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-blend-mode: luminosity;
}

section.location-overview .blocks .block {
	background-size: 90%;
}

section.overview-tiles .blocks .block h4 {
	z-index: 1;
}

section.overview-tiles .blocks .block::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, rgba(var(--black), 0) 0%, rgba(var(--black), 0.8) 100%);
	border-radius: var(--sml-radius);
}

section.clinic-overview .blocks {
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	gap: 20px;
}

section.clinic-overview .blocks .block {
	display: grid;
	grid-template-rows: auto 1fr auto;
	background-color: rgba(var(--white), 1);
	border-radius: var(--sml-radius);
	color: rgba(var(--text), 1);
	padding: 20px;
}

section.clinic-overview .blocks .block svg {
	justify-self: end;
	font-size: 20px;
}

section.tour-overview input:focus-visible {
	outline: none;
}

section.tour-overview .tour-widgets {
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

section.tour-overview .tour-widgets .grid-column {
	gap: 20px;
	align-content: start;
}

section.tour-overview .tour-widgets .column {
	background-color: rgba(var(--white), 1);
	border-radius: var(--big-radius);
	padding: 20px;
}

section.tour-overview .tour-widgets .column a.button {
	justify-self: end;
}

section.tour-overview .tour-widgets .column .line {
	justify-content: space-between;
}

section.tour-overview .tour-widgets .column .calendar {
	margin-top: 10px;
	gap: 5px;
}

section.tour-overview .tour-widgets .column .calendar form {
	display: grid;
	grid-template-columns: auto auto 1fr 1fr auto;
	gap: 5px;
}

section.tour-overview .calendar form input.item {
	min-width: 0;
	padding: 5px 8px;
	background-color: rgba(243, 236, 244, 1);
	color: rgba(var(--junior-purple), 1);
	border-radius: var(--sml-radius);
	text-align: center;
	align-content: center;
}

section.tour-overview .tour-widgets .top-ranking {
	margin-bottom: 5px;
}




@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {
	
}

@media screen and (max-width: 768px) {
	section.overview .widget {
		grid-template-columns: 1fr;
	}
	
	section.overview-tiles .blocks {
		grid-template-columns: repeat(2, 1fr);
	}
	
	section.tour-overview .tour-widgets {
		grid-template-columns: 1fr;
	}
	
	section.tour-overview .tour-widgets .column .calendar form {
		grid-template-columns: 1fr 1fr;
	}
	
	form.enrol-tour button {
		justify-self: start;
	}
	
	section.clinic-overview .blocks {
		grid-template-columns: repeat(1, 1fr);
	}
	
	section.ranks .content {
		margin-top: 100px;
	}
}