/*
	Theme Name: Starting Point Project
	Template: hello-elementor
	Theme URI: https://www.thestartingpointproject.com/
	Description: This is a custom child theme of Hello Elementor, built for The Starting Point Project
	Author: Rocket Clicks
	Author URI: https://rocketclicks.com
*/
:root {
	--blue-primary: #2C6C84;
	--green-primary: #5D9841;
}
#acf_map {
	min-height: 250px;
}
.tspp_fullheight {
	min-height: 100vh;
}
.tspp_events {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: .5em;
}
.tspp_events .tspp_event {
	display: grid;
	grid-template-columns: 70px 1fr 1fr;
	grid-template-rows: 1.2em 1fr 1fr;
	background-color: white;
	border-radius: 5px;
}
.tspp_event .date {
	grid-column: 1 / 2;
	grid-row: 1 / 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--green-primary);
	color: white;
	border-radius: 5px;
}
.tspp_event .date .month {
	font-size: .7em;
}
.tspp_event .date .day {
	font-size: 1em;
	font-weight: bold;
}
.tspp_event .date .year {
	font-size: .7em;
}
.tspp_event > *:not(.date) {
	padding: .3em;
	display: flex;
	align-items: center;
	gap: 4px;
}
.tspp_event h3 {
	grid-column: 2 / 4;
	margin: 0;
	font-size: 1.2em;
}
.tspp_event .meta-state,
.tspp_event .meta-time {
	color: #666;
}
.tspp_event .meta-state {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}
.tspp_event .meta-time {
	grid-column: 2 / 3;
	grid-row: 3 / 4;
}
.tspp_event a {
	grid-column: 3 / 4;
	grid-row: 3 / 4;
	justify-content: flex-end;
	font-style: italic;
}
.tspp_event a:hover {
	cursor: pointer;
	text-decoration: underline;
}

.imp-canvas .imp-object {
	fill: #aaa;
}
.imp-canvas .imp-object.has-events {
	fill: #06546B;
}
.imp-canvas .imp-object.has-events:hover {
	fill: #5D9841;
}

.tspp_wrapped {
	float: right;
}

.tspp-date-lines {
	display: flex;
	flex-direction: column;
	gap: 1em;
}
.tspp-date-lines .date-line {
	display: grid;
	grid-template-columns: 1fr 50px 1fr;
	grid-template-rows: 1.8em auto;
	gap: .5em;
}
.tspp-event-detail {
	background: var(--blue-primary);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1em;
	gap: 1em;
}
.tspp-event-detail h4 {
	color: #fff;
	margin: 0;
}
.tspp-event-detail .date-wrapper {
	display: flex;
	justify-content: space-between;
}
.tspp-date-lines .date-line .title,
.tspp-event-detail .title {
	font-size: 1.3em;
	font-weight: 600;
	text-align: center;
	grid-column: 1 / 4;
}
.tspp-date-lines .date-line .date,
.tspp-event-detail .date {
	border: 1px solid white;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding-bottom: .5em;
}
.tspp-date-lines .date-line .date:last-of-type {
	grid-column: 3 / 4;
}
.tspp-date-lines .date-line:after {
	content: "\2192";
	font-size: 50px;
	display: flex;
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	align-items: center;
	justify-content: center;
}
.tspp-date-lines .date-line .date > *,
.tspp-event-detail .date > * {
	text-align: center;
	padding: 0 .5em;
}
.tspp-date-lines .date-line .date .label,
.tspp-event-detail .date .label {
	padding: .5em;
	background-color: white;
	color: var(--blue-primary);
	margin-bottom: .5em;
}
.tspp-event-detail .date * {
	color: #fff;
}
.tspp-date-lines .date-line .date .day,
.tspp-event-detail .date .day {
	font-size: 1.5em;
	font-weight: bold;
}

.tspp-pricing {
	display: flex;
	flex-direction: column;
	gap: 1em;
	align-items: stretch;
}
.tspp-pricing .tspp-pricing-detail {
	background-color: var(--blue-primary);
	border-radius: 4px;
	box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.5);
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.tspp-pricing .tspp-pricing-detail * {
	color: #fff;
}
.tspp-pricing .tspp-pricing-detail .title {
	font-size: 1.5em;
	font-weight: bold;
}
.tspp-pricing .tspp-pricing-detail .details p {
	margin: 0;
}

.tspp-collapsable {
	border: 1px solid #d5d8dc;
	background-color: white;
}
.tspp-collapsable details {
	border-bottom: 1px solid #d5d8dc;
}
.tspp-collapsable details summary {
	padding: 15px 20px;
	font-weight; 700;
	color: var(--blue-primary);
	font-family: Karla, sans-serif;
	display: flex;
	align-items: center;
}
.tspp-collapsable details summary:before {
	display: block;
	margin-right: 25px;
	transform: rotate(0deg);
	transition: transform .3s ease;
	font-size: 1.5em;
	content: "\203A";
}
.tspp-collapsable details[open] summary:before {
	transition: transform .3s ease;
	transform: rotate(90deg);
}
.tspp-collapsable details summary:hover,
.tspp-collapsable details[open] summary {
	cursor: pointer;
	color: var(--green-primary);
}
.tspp-collapsable details .content {
	padding: 0 20px 15px 20px;
}

.tspp-form {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1em;
}
.tspp-form .input-group {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: .5em;
}
.tspp-form .input-field {
	flex-grow: 1;
	flex-basis: 50%;
}
.tspp-form button[type='submit'] {
	border-color: var(--blue-primary);
}
@media (max-width: 768px) {
	.tspp-form {
		padding: 1em;
	}
	.tspp-form .input-group {
		flex-direction: column;
		align-items: stretch;
	}
	.tspp-form .input-field {
		flex-basis: 100%;
	}
}
.tspp-tour-dates .date-line {
	margin-bottom: .5em;
	border-bottom: 2px solid;
}
.tspp-tour-dates .date-line h4 {
	margin: 0;
}

.question-template-default blockquote {
	border-left: 15px solid #d9e0e3 !important;
	margin-left: 0px;
	padding-left: 20px;
}