/* ############################################### */
/* Checkout Styles */
/* ############################################### */

@import 'mesh.css';

/* Variables */
/* ############################################### */
:root {
	--color-pale-grey: #F9F9F9;
	--color-l-grey: #DBDEE2;
	--color-grey: #918778;
	--color-blue: #0A203E;
	--color-grey-blue: #475467;
	--color-d-blue: #101828;
	--color-orange: #B93815;
	--color-pale-orange: #FFF4ED;
	--color-green: #CEFF01;
	--color-blurple: #574AE2;
	--color-purple: #574AE3;
	--color-pale-purple: #F7F5FF;

	--color-error: #B42318;
	--color-pale-error: #FFFBFA;
	--color-success: #027A48;

	--border-radius: 10px;
	--font-family-base: 'Arial', sans-serif;
}
/* /Variables */

/* Global Overwrites */
/* ############################################### */
.site-content {
	background-color: var(--color-pale-grey);
}
/* /Global Overwrites */

/* Typography */
/* ############################################### */
h1,h2,h3,h4,h5,h6 {
	margin: 0;
	padding: 0;
	font-family: var(--font-family-base);
	font-style: normal;
}

h1, .heading-h1 {
	font-weight: 700;
}

h2, .heading-h2 {
	color: var(--color-blue);
	font-size: 22px;
	line-height: normal;
	font-weight: 700;
}

h2 + p, .heading-h2 + p {
	margin-top: 10px;
}

h3, .heading-h3 {
	color: var(--color-blue);
	font-size: 20px;
	line-height: normal;
	font-weight: 700;
}

h3.small, .heading-h3.small {
	font-size: 18px;
}

h3 + p, .heading-h3 + p {
	margin-top: 10px;
}

h4, .heading-h4 {
	color: var(--color-blue);
	font-size: 16px;
	line-height: normal;
	font-weight: 700;
}

h5, .heading-h5 {
	color: #344054;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
}

h5 span, .heading-h5 span {
	color: var(--color-grey-blue);
	font-weight: 400;
}

h6, .heading-h6 {}

p {
	color: var(--color-grey-blue);
	font-size: 16px;
	line-height: 22px;
}

.checkout-wrapper p a {
	color: var(--color-blurple);
	text-decoration: underline;
}

.checkout-wrapper p a:hover {
	text-decoration: none;
}

.c-blue {
	color: var(--color-blue);
}
/* /Typography */


/* Checkout */
/* ############################################### */
.checkout-wrapper {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

	.checkout-wrapper .checkout-left {
		width: calc(66.67% - 31px);
		padding: 0;
	}

	.checkout-wrapper .checkout-right {
		width: calc(33.33% - 31px);
		padding: 0;
	}

/* /Checkout */


/* Order Summary */
/* ############################################### */
.checkout-order-summary {
	border-radius: var(--border-radius);
	border: 1px solid var(--color-l-grey);
	position: relative;
	margin-top: 55px;
}

	#summary_toggle {
		position: absolute;
		width: 0;
		height: 0;
		opacity: 0;
		visibility: hidden;
	}

	.checkout-order-summary--items , .checkout-order-summary--total {
		display: block;
	}

	.checkout-order-summary--body {
		padding: 30px;
	}

	.checkout-order-summary--total {
		border-top: 1px solid var(--color-l-grey);
		padding: 24px 30px 30px;
		font-size: 18px;
	}

	.checkout-order-summary p {
		margin: 0;
		font-size: 16px;
		line-height: 22px;
		color: var(--color-blue);
	}

/* /Order Summary */

/* Cart Item */
/* ############################################### */
.cart-product-container {
	padding-bottom: 45px;
}

.cart-product-container + .cart-product-container {
	padding-top: 45px;
	border-top: 1px solid var(--color-l-grey);
}

.cart-head-container {
	background-color: #FFF;
	border: 1px solid var(--color-l-grey);
	border-radius: var(--border-radius);
	position: relative;
	overflow: hidden;
}

.cart-head-container .cart-product-details, .accommodation-options .accommodation-options--details {
	width: 100%;
	height: 100%;
	padding: 30px;
	background-color: #FFF;
}

.cart-head-container .cart-product-remove {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 10px;
	height: 10px;
	z-index: 3;
}

.cart-head-container .cart-product-remove a {
	display: block;
	padding: 0;
	height: 100%;
	width: 100%;
	line-height: 1;
	transition: all 0.3s ease 0s;
}

	.cart-head-container .cart-product-remove a:hover {
		opacity: 0.6;
	}
.cart-head-container .cart-product-remove a svg {
	width: 100%;
	height: 100%;
}

.cart-head-container .cart-product-thumbnail, .accommodation-options .accommodation-options--thumbnail {
	width: 100%;
	height: 100%;
}

.cart-head-container .cart-product-thumbnail img, .accommodation-options .accommodation-options--thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-product-description {
	color: var(--color-grey-blue);
	font-family: var(--font-family-base);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.cart-product-description ul {
	padding-left: 25px;
	margin: 15px 0 0;
}

	.cart-product-description ul li {
		list-style-type: disc;
		font-size: 16px;
		margin: 0 0 8px 0;
		line-height: normal;
		color: var(--color-grey-blue);
	}

	.cart-product-description ul li:nth-last-of-type(1) {
		margin-bottom: 0;
	}

	.cart-product-buttons {
		display: flex;
		flex-flow: column;
		gap: 16px;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		margin: 0 0 0 auto;
		max-width: 185px;
	}

		.cart-product-buttons .cta {
			width: 100%;
		}

/* /Cart Item */

.accommodation-details, .course-pre-reqs, .course-t-cs  {
	padding-bottom: 45px;
	border-bottom: 1px solid var(--color-l-grey);
	margin-bottom: 45px;
}

.cart-product-crosssells {
	padding-top: 45px;
	border-top: 1px solid var(--color-l-grey);
	margin-top: 45px;
}

.cart-product-crosssells .cart-product-container {
	padding-bottom: 16px
}

.cart-product-crosssells .cart-product-container:nth-last-of-type(1) {
	padding-bottom: 0;
}

.cart-product-crosssells .cart-product-container + .cart-product-container {
	padding-top: 0;
	border-top: 0;
}


/* ############################################### */
/* Components */
/* ############################################### */

/* Buttons */
/* ############################################### */
.site-content .cta {
	display: inline-block;
	font-family: var(--font-family-base);
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	color: var(--color-blue);
	background-color: var(--color-green);
	border: 1px solid var(--color-green);
	text-decoration: none;
	padding: 11px 32px;
	border-radius: 5px;
	transition: all 0.2s ease-in-out 0s;
	cursor: pointer;
	box-shadow: none;
	position: relative;
}

.site-content .cta:has(svg) {
	display: inline-flex;
	gap: 8px;
	font-size: 14px;
	justify-content: center;
}

/* Button: Secondary */
.site-content .cta-secondary {
	background-color: var(--color-blurple);
	color: #FFF;
	border-color: var(--color-blurple);
}

/* Button: Outline */
.site-content .cta-outline {
	background-color: transparent;
	color: var(--color-blurple);
	border-color: var(--color-blurple);
}

/* Button: Outline Grey */
.site-content .cta-outline--grey {
	background-color: var(--color-pale-purple);
	color: #344054;
	border-color: var(--color-l-grey);
}

/* Button: Pale */
.site-content .cta-pale {
	background-color: var(--color-pale-purple);
	color: var(--color-purple);
	border-color: var(--color-pale-purple);
}

/* Button: Toggle */
.site-content .cta-toggle {
	background-color: #FFF;
	color: #344054;
	border-color: var(--color-l-grey);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.site-content .cta-toggle .cta-toggle-icon {
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	border: 2px solid #344054;
}

.site-content .cta-toggle .cta-toggle-icon::before,
.site-content .cta-toggle .cta-toggle-icon::after {
	display: block;
	position: absolute;
	content: '';
	width: 8px;
	height: 2px;
	border-radius: 1.5px;
	background-color: #344054;
	margin: auto;
	top: 1px;
	left: 0;
	right: 0;
	bottom: 0;
}

.site-content .cta-toggle .cta-toggle-icon::after {
	transform: rotate(90deg);
}

.site-content .cta-toggle.expanded .cta-toggle-icon::after {
	display: none;
}

	/* Hover: Toggle */
	.site-content .cta-toggle:hover .cta-toggle-icon,
	.site-content .cta-toggle.expanded .cta-toggle-icon {
		border-color: var(--color-blurple);
	}
    /* Focus: Toggle */
	.site-content .cta-toggle:hover .cta-toggle-icon,
	.site-content .cta-toggle.expanded .cta-toggle-icon {
		color: var(--color-l-grey);
	}

	.site-content .cta-toggle:hover .cta-toggle-icon::before,
	.site-content .cta-toggle:hover .cta-toggle-icon::after {
		background-color: var(--color-blurple);
	}

	/* Hover: Default */
	.site-content .cta:hover {
		background-color: var(--color-d-blue);
		color: var(--color-green);
		border-color: var(--color-d-blue);
	}

	/* Hover: Secondary */
	.site-content .cta-secondary:hover {
		color: #FFF;
	}

	/* Hover: Outline */
	.site-content .cta-outline:hover,
	.site-content .cta-outline.expanded {
		background-color: var(--color-pale-purple);
		color: var(--color-blurple);
		border-color: var(--color-blurple);
	}

	/* Hover: Pale */
	.site-content .cta-pale:hover {
		background-color: var(--color-blurple);
		color: #FFF;
		border-color: var(--color-blurple);
	}

	.site-content .cta-pale:hover svg {
		fill: #FFF;
	}

.site-content .cta:disabled {
	pointer-events: none;
	cursor: auto;
	border: 1px solid #F7F5FF;
	background: #DDD;
	color: #949494;
}

.site-content .cta-noclick {
	pointer-events: none;
}
/* Button Sizes */
.site-content .cta-small {
	padding: 8px 16px;
	font-size: 14px;
	line-height: 18px;
}

/* Button Loading Spinner */
@keyframes spin {
	to { transform: rotate(360deg); }
}

@keyframes colorfade {
  0%, 100% { border-top-color: #574AE2; opacity: 1; }
  50% { border-top-color: #574AE2; opacity: 0.3; }
}

.site-content .cta.loading:before {
	content: '';
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: conic-gradient(var(--color-blurple), #EEE, var(--color-blurple));
	mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 100%);
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 50%);
	animation: spin 1s linear infinite;
	position: absolute;
	left: -38px;
	top: 8px;
}

/* /Buttons */

/* Accordion */
/* ############################################### */

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0;
}

	.accordion-content.open {
		margin-top: 35px;
	}

.accordion-header {
	cursor: pointer;
}

.accordion-content a {
	color: var(--color-blurple);
	font-weight: 700;
	font-size: 14px;
}

.accordion-content a:hover {
	text-decoration: none;
	opacity: 0.7;
}

.single-attendee-child {
	padding-top: 35px;
	margin-top: 35px;
	border-top: 1px solid var(--color-l-grey);
}

/* /Accordion */

/* WooCommerce UI */
/* ############################################### */
.wc-block-components-order-summary-item__description {
	padding: 0!important;
}

.wc-block-components-order-summary {
	padding: 0px 30px!important;
}

.wc-block-components-order-summary-item__description {
	position: relative;
}

.wc-block-components-order-summary-item__description:after {
	position: absolute;
	right: -16px;
	top: 0;
}

.wc-block-components-checkout-order-summary__title {
	margin: 0!important;
	padding: 30px 30px 0px 30px!important;
}

.wc-block-components-checkout-order-summary__title p {
	color: var(--color-blue)!important;
	font-size: 20px!important;
	line-height: normal!important;
	font-weight: 700!important;
	margin: 0!important
}

.wc-block-components-form input[type="text"], .wc-block-components-form input[type="tel"], .wc-block-components-address-form input[type="email"], #wc-block-components-totals-coupon__input-coupon {
	border-radius: 8px !important;
	border: 1px solid var(--color-l-grey) !important;
	background: #FFF !important;
	box-shadow: none;
	padding: 28px 14px 20px 14px !important;
	width: 100%;
	font-size: 16px !important;
	color: #101828 !important;
}

.wc-block-components-form input + label {
}

.wc-block-components-form select {
	border-radius: 8px !important;
	border: 1px solid var(--color-l-grey) !important;	
}

.wc-block-components-address-form__address_2-hidden-input {
	display: none!important
}

.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label {
	transform: translate(4px, -50%)!important;
}

.wc-block-components-text-input.is-active label {
	transform: translateY(4px) scale(.75)!important;
}

.wc-block-components-product-price__value.is-discounted {
	margin-left: 0!important;
}

.wc-block-components-totals-wrapper:not(.wp-block-woocommerce-checkout-order-summary-cart-items-block) .wc-block-components-totals-item {
	padding-left: 30px!important;
	padding-right: 30px!important;
}

.wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary-item__quantity,
.wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary-item__regular-individual-price,
.wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-product-metadata,
/*.wp-block-woocommerce-checkout-order-summary-coupon-form-block,*/
/*.wp-block-woocommerce-checkout-order-summary-totals-block,*/
.wc-block-components-order-summary-item__image,
.wc-block-components-order-summary-item__individual-prices .wc-block-components-product-price,
.wc-block-components-order-summary-item__individual-prices {
	display: none!important;
}

.wp-block-woocommerce-checkout-order-summary-coupon-form-block,
.wp-block-woocommerce-checkout-order-summary-totals-block,
.wp-block-woocommerce-checkout-order-summary-subtotal-block,
.wp-block-woocommerce-checkout-order-summary-fee-block {
	margin-bottom: 0px;
}

.wc-block-components-totals-coupon {
	padding-left: 32px!important;
	padding-right: 32px!important;
}

.wp-block-woocommerce-checkout-order-summary-cart-items-block {
	margin-bottom: 0!important;
}

.woocommerce h2 {
	text-align: center;
	margin-bottom: 32px;
}

.woocommerce-form-login, .woocommerce-ResetPassword {
	width: 256px;
	max-width: 100%;
	margin: auto;
}

.woocommerce-form-row input {
	width: 256px;
	max-width: 100%;
}

.woocommerce-form .woocommerce-button:hover {
	color: var(--color-green);
}

.woocommerce-form-row .show-password-input {
	display: none;
}

.woocommerce-message {
	padding: 16px;
	border: 1px solid var(--color-blurple);
	border-radius: var(--border-radius);
	background: var(--color-pale-purple);
	color: var(--color-blue);
	font-size: 14px;
}

.woocommerce-message a {
	color: var(--color-blurple);
	font-size: 14px;
	padding: 2px;
}

.woocommerce-MyAccount-navigation a {
	background-color: #0a203e;
	color: #ceff01;
	border-radius: 5px!important;
	font-weight: 600!important;
}

.woocommerce-MyAccount-navigation a:hover {
	background-color: #ceff01;
	color: #0a203e;
}

.woocommerce-MyAccount-navigation a:before {
	content: none!important;
}

/* /WooCommerce UI */

/* Custom Selects */
/* ############################################### */
.custom-select .options .call-to-book {
	cursor: not-allowed;
}

.custom-select .options div .call-to-book {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
}

	.custom-select .options div .call-to-book:after {
		content: 'Call to book';
		color: var(--color-orange);
		font-size: 12px;
		border-radius: 16px;
		padding: 2px 8px;
		background-color: var(--color-pale-orange);
		position: relative;
		white-space: nowrap;
	}

.custom-select .options .spaces-full {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
}

	.custom-select .options .spaces-full:after {
		content: 'Fully Booked';
		color: var(--color-orange);
		font-size: 12px;
		border-radius: 16px;
		padding: 2px 8px;
		background-color: var(--color-pale-orange);
		position: relative;
		white-space: nowrap;
	}

.custom-select .options .spaces-limited {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
}

	.custom-select .options .spaces-limited:after {
		content: 'Limited availability';
		color: var(--color-orange);
		font-size: 12px;
		border-radius: 16px;
		padding: 2px 8px;
		background-color: var(--color-pale-orange);
		position: relative;
		white-space: nowrap;
	}

.custom-select-wrapper .custom-select {
	cursor: pointer;
	position: relative;
	width: 100%;
}

.custom-select-wrapper .options {
	background: #fff;
	border: 1px solid var(--color-l-grey);
	left: 0;
	max-height: 200px;
	overflow: scroll;
	position: absolute;
	right: 0;
	top: calc(100% - 6px);
	z-index: 2;
	padding-top: 6px;
	border-radius: 0 0 8px 8px;
	border-top: none;
}

.custom-select-wrapper .options.hidden {
	display: none;
}

.custom-select-wrapper .options div {
	cursor: pointer;
	padding: 10px 14px;
}

.custom-select-wrapper .options div:hover {
	background: #F9FAFB;
}

.custom-select-wrapper .selected {
	background: #FFF;
	border: 1px solid var(--color-l-grey);
	border-radius: 8px;
	display: block;
	padding: 10px 14px;
	color: var(--color-d-blue);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	position: relative;
}

.custom-select-wrapper .selected::after {
	display: block;
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23667085' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 20px;
	height: 20px;
	right: 10px;
	z-index: 3;
}
/* /Custom Selects */

/* Checkout Progression */
/* ############################################### */
.checkout-timeline-container {
	display: flex;
	justify-content: space-around;
	margin: 45px 0 60px;
	position: relative;
	z-index: 2;
}

.checkout-timeline-container div {
	flex: 1 1 100%;
	text-align: center;
}

.checkout-timeline-container div:not(:first-child):after {
	content:'';
	display: block;
	height: 2px;
	left: -50%;
	position: relative;
	top: -41px;
	width: 100%;
	z-index: -1;
}

.checkout-timeline-container div:before {
	background-size: contain;
	content: '';
	display: block;
	height: 24px;
	left: 50%;
	position: relative;
	transform: translateX(-50%);
	width: 24px;
	background-color: #FFF;
	border-radius: 100%;
}

.checkout-timeline-container div:not(.timeline-selected, .timeline-completed):after {
	background-color: #EAECF0;
}

.checkout-timeline-container div:not(.timeline-selected, .timeline-completed):before {
	border: 8px solid #F2F4F7;
}

.checkout-timeline-container .timeline-completed:after,
.checkout-timeline-container .timeline-selected:after {
	background-color: var(--color-blurple);
}

.checkout-timeline-container .timeline-completed:before,
.checkout-timeline-container .timeline-selected:before {
	border: 8px solid var(--color-blurple);
	box-shadow: 0 0 0px 4px #F4EBFF;
}

.checkout-timeline-container .timeline-completed h4,
.checkout-timeline-container .timeline-selected h4 {
	color: var(--color-blurple);
}

.checkout-timeline-container .timeline-completed:before {
	content: '\2713';
	color: #FFF;
	background-color: var(--color-blurple);
	border: 0;
}

/* /Checkout Progression */

/* Form Wrap */
.form-wrap {
	background-color: #FFF;
	border: 1px solid var(--color-l-grey);
	padding: 30px;
	border-radius: var(--border-radius);
	margin-bottom: 35px;
	overflow: hidden;
}

.form-wrap + .form-wrap {
	margin-top: 35px;
}

/* /Form Wrap */

/* Accommodation Options */
/* ############################################### */
.accommodation-options {
	background-color: #FFF;
	border: 1px solid var(--color-l-grey);
	border-radius: var(--border-radius);
	position: relative;
	overflow: hidden;
}

.upsell-cont {
	margin: 35px 0;
}

/* Accommodation Options */


/* ############################################### */
/* Form Elements */
/* ############################################### */

/* Inputs */
/* ############################################### */
.checkout-wrapper .form-group {
	position: relative;
	width: 100%;
	display: block;
	margin-bottom: 32px;
}

	.checkout-wrapper .form-group label {
		color: var(--color-blue);
		font-size: 16px;
		font-style: normal;
		font-weight: 700;
		line-height: 20px;
	}
	.checkout-wrapper .form-group .form-group--hint {
		color: var(--color-grey-blue);
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 20px;
		margin: 5px 0 0;
	}

	.checkout-wrapper .form-group .course-start-date {
		margin-top: 10px;
	}

	.checkout-wrapper .form-group input {
		border-radius: 8px !important;
		border: 1px solid var(--color-l-grey) !important;
		background: #FFF !important;
		box-shadow: none;
		padding: 13px 14px !important;
		width: 100%;
		font-size: 16px !important;
		color: #101828 !important;
		margin-top: 10px !important;
	}

.checkout-wrapper .form-group input.mt-0 {
	margin-top: 0 !important;
}

		.checkout-wrapper .form-group input:-webkit-autofill, .checkout-wrapper .form-group input:-webkit-autofill:hover, .checkout-wrapper .form-group input:-webkit-autofill:focus, .checkout-wrapper .form-group input:-webkit-autofill:active {
			-webkit-text-fill-color: #101828 !important;
		}

		.checkout-wrapper .form-group input::placeholder , .checkout-wrapper .form-group input::placeholder , .checkout-wrapper .form-group input::placeholder , .checkout-wrapper .form-group input::placeholder  {
			color: #667085 !important;
		}

/* Checkbox */
/* ############################################### */
.checkbox-option .form-control {
	background-color: #FFF;
	border: 1px solid var(--color-l-grey);
	padding: 16px;
	display: block;
	border-radius: var(--border-radius);
	cursor: pointer;
}

.checkbox-option--empty .form-control {
	background: transparent;
	border: none;
	padding: 0;
	min-height: 20px;
	width: 20px;
}

.checkbox-option + .checkbox-option {
	margin-top: 12px;
}

	.checkbox-option .form-control input {
		position: absolute;
		opacity: 0;
		width: 0;
		height: 0;
		visibility: hidden;
	}

	.checkbox-option .form-control div {
		display: block;
		width: 100%;
		position: relative;
		padding-left: 32px;
	}


	.checkbox-option .form-control div::before {
		content: '';
		display: inline-block;
		border-radius: 6px;
		border: 1px solid var(--color-l-grey);
		background: #FFF;
		width: 20px;
		height: 20px;
		position: absolute;
		top: 0;
		left: 0;
		text-align: center;
		font-size: 13px;
		color: #FFF;
	}

.checkbox-option .form-control input:checked  + div::before {
	content: '\2713';
	background-color: var(--color-blurple);
	border-color: var(--color-blurple);
}

.checkbox-option .form-control:has(input:checked) {
	background: var(--color-pale-purple);
	border-color: var(--color-blurple);
}


.checkbox-option .form-control:has(input:checked) h5,
.checkbox-option.form-control:has(input:checked) .heading-h5,
.checkbox-option .form-control:has(input:checked) h5 span,
.checkbox-option.form-control:has(input:checked) .heading-h5 span,
.checkbox-option .form-control:has(input:checked) p {
	color: var(--color-purple);
}

/* /Checkbox */

/* Radio */
/* ############################################### */
.radio-option {
	margin-top: 24px;
}
	.radio-option h5 {
		margin-bottom: 8px;
	}
		.radio-option label {
			display: block;
			cursor: pointer;
		}
			.radio-option label input {
				position: absolute;
				opacity: 0;
				width: 0;
				height: 0;
				visibility: hidden;
			}
				.radio-option label span {
					display: block;
					position: relative;
					font-size: 14px;
					margin-bottom: 8px;
					padding-left: 24px;
				}

				.radio-option label span::after {
					content: '';
					display: block;
					position: absolute;
					top: 7px;
					left: 5px;
					background: var(--color-blurple);
					width: 6px;
					height: 6px;
					border-radius: 100%;
					opacity: 0;
					transition: opacity 0.2s ease-in-out;
				}

				.radio-option label span::before {
					content: '';
					display: block;
					position: absolute;
					top: 2px;
					left: 0;
					border: 1px solid var(--color-l-grey);
					background: #FFF;
					width: 16px;
					height: 16px;
					border-radius: 100%;
				}

				.radio-option label input:checked + span::before {
					border-color: var(--color-blurple);
				}

				.radio-option label input:checked + span::after {
					opacity: 1;
				}

/* /Radio */

/* Textarea */
/* ############################################### */

.textarea-cont {
	display: block;
	width: 100%;
}

	.textarea-cont textarea {
		border-radius: 8px;
		border: 1px solid  #D0D5DD;
		background: #FFF;
		box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
		height: 122px;
		width: 100%;
		display: block;
		padding: 10px 14px;
		font-size: 16px;
		color: var(--color-grey-blue);
	}

/* /Textarea */


/* Pill */
/* ############################################### */

.pill {
	padding: 2px 8px;
	display: inline-block;
	font-size: 12px;
	border-radius: 16px;
	background-color: #ECFDF3;
	color: var(--color-success);
	white-space: nowrap;
}

.pill[data-value="residential-only"], .pill--grey {
	background-color: #F2F4F7;
	color: var(--color-grey-blue);
}

strong + .pill {
	margin-top: 8px;
}

/* /Pill */


/* Checkout navigation */
/* ############################################### */

.checkout-navigation .heading-h3 {
	color: #FFF;
	display: block;
}

/* /Checkout navigation */

/* Checkout navigation */
/* ############################################### */

.welfare-notice {
	color: var(--color-error);
	font-size: 14px;
	line-height: 20px;
	border: 1px solid var(--color-error);
	background: var(--color-pale-error);
	padding: 16px;
	border-radius: 8px;
	margin: 24px 0 16px;
	display: flex;
	flex-flow: row nowrap;
	gap: 12px;
}
	.welfare-notice svg {
		transform: translateY(2px);
		min-width: 20px;
		height: 20px;
	}

	.welfare-notice div {}

		.welfare-notice p {
			color: var(--color-error);
			font-size: 14px;
			line-height: 20px;
		}
			.welfare-notice p a {
				color: var(--color-error);
				font-weight: 700;
			}
		.welfare-notice p strong {}

/* /Checkout navigation */

/* Tables */
/* ############################################### */

.form-table {
	width: 100%;
	border-collapse: collapse;
	border: none;
}

	.form-table th, .form-table td {
		text-align: left;
		padding: 12px 24px;
		border-bottom: 1px solid #EAECF0;
	}

	.form-table td {
		padding: 16px 24px;
	}

	.form-table th {
		color: var(--color-grey-blue);
		font-size: 12px;
		font-style: normal;
		font-weight: 400;
		line-height: 18px;
	}

	.form-table tr {
		background: #FFF;
	}

	.form-table tr:nth-of-type(even) {
		background: #F9FAFB;
	}

	.form-table--white tr:nth-of-type(even) {
		background: #FFF;
	}

	.form-table td {
		color: var(--color-grey-blue);
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 20px;
	}

		.form-table td strong {
			color: var(--color-d-blue);
		}

	.form-table--large td {
		padding: 24px 0;
	}

.form-table--large tr:nth-last-of-type(1) td {
	border-bottom: none;
}

/* /Tables */


/* ############################################### */
/* Media Queries */
/* ############################################### */


/* Tablet */
/* ############################################### */
@media screen and (max-width: 1023px) {
	.checkout-wrapper .checkout-left {
		width: calc(66.67% - 15px);
	}

	.checkout-wrapper .checkout-right {
		width: calc(33.33% - 15px);
	}


	.cart-product-buttons {
		max-width: 100%;
		margin-top: 16px;
		height: auto;
		flex-direction: column-reverse;
	}

	.cart-product-buttons .cta {
		width: 100%;
	}
}
/* /Tablet */


/* Mobile */
/* ############################################### */
@media screen and (max-width: 767px) {

	/* Typography */
	h2, .heading-h2 {
		font-size: 18px;
	}

	h3, .heading-h3 {
		font-size: 18px;
	}

	h5, .heading-h5 {
		font-size: 14px;
		line-height: 18px;
	}

	p {
		font-size: 14px;
		line-height: 19px;
	}

	.cart-product-price h3, .cart-product-price .heading-h3 {
		font-size: 16px;
		margin-top: 15px;
	}

	.checkout-wrapper .checkout-left {
		width: 100%;
		order: 2;
	}

	.checkout-wrapper .checkout-right {
		width: 100%;
		order: 1;
		margin-bottom: 35px;
	}

	.cart-head-container .cart-product-thumbnail, .accommodation-options .accommodation-options--thumbnail {
		height: 150px;
	}

	.cart-head-container .cart-product-details, .accommodation-options .accommodation-options--details {
		padding: 30px 20px 20px;
	}

	.cart-product-container {
		padding-bottom: 35px;
	}

		.cart-product-container + .cart-product-container {
			padding-top: 35px;
		}

	.checkout-order-summary {
		margin-top: 0;
	}
		.checkout-order-summary--body {
			padding: 0;
		}

		.checkout-order-summary--total {
			padding: 24px;
		}

		.checkout-order-summary--items , .checkout-order-summary--total {
			display: none;
		}
			.checkout-order-summary p {
				font-size: 14px;
				line-height: 19px;
			}

			.checkout-order-summary--body label {
				position: relative;
				padding: 24px;
				display: block;
			}

				.checkout-order-summary--body label h3 {
					color: var(--color-blurple);
				}

				.checkout-order-summary--body label::after {
					display: block;
					content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23574AE3' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
					position: absolute;
					top: 0;
					bottom: 0;
					margin: auto;
					width: 20px;
					height: 20px;
					right: 24px;
					z-index: 3;
				}

			#summary_toggle:checked + .checkout-order-summary--body .checkout-order-summary--items, #summary_toggle:checked + .checkout-order-summary--body + .checkout-order-summary--total {
				display: block;
			}

				#summary_toggle:checked + .checkout-order-summary--body .checkout-order-summary--items {
					padding: 0 24px 24px;
				}

				#summary_toggle:checked + .checkout-order-summary--body label::after {
					transform: rotate(180deg);
				}

	.checkout-timeline-container {
		margin: 35px 0;
	}

	.form-wrap {
		padding: 20px;
	}

	.checkout-navigation {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		padding: 20px;
		background: var(--color-blue);
		z-index: 5;
	}

	.checkout-navigation.is-fixed {
		position: fixed;
	}

	.checkout-navigation.is-relative {
		position: relative;
		margin-top: 45px;
		left: calc((-100vw + 100%) / 2);
		width: 100vw;
	}

		.checkout-navigation .cta {
			width: 100%;
			padding: 11px 11px;
		}

		.checkout-navigation .col-4 {
			padding-right: 0;
		}

		.checkout-navigation .cta-outline {
			color: #FFF;
			border-color: #FFF;
		}

	.site-content {
		position: relative;
		z-index: 2;
	}

	.cart-product-crosssells {
		margin-top: 0;
	}

	.single-attendee-header .cta-toggle {
		width: 100%;
		padding: 11px 20px;
		justify-content: space-between;
	}

	.pill {
		font-size: 10px;
	}

	.form-table th, .form-table td {
		padding: 16px 12px;
	}


}
/* /Mobile */

/* Small Mobile */
/* ############################################### */
@media screen and (max-width: 530px) {

	.checkout-timeline-container h4 {
		font-size: 10px;
	}

	.checkout-timeline-container div:not(:first-child):after {
		top: -35px;
	}

}
/* /Small Mobile */


















.woocommerce-cart .woocommerce::before {
	display: none;
}

/* BELOW IS TEMPORARY ONLY - SHOULD BE REPLACED */