
.carousel {
	position: relative;
	box-sizing: border-box;
}

.carousel *, .carousel *:before, .carousel *:after {
	box-sizing: inherit;
}

.carousel.is-draggable {
	cursor: move;
	cursor: grab;
}

.carousel.is-dragging {
	cursor: move;
	cursor: grabbing;
}

.carousel__viewport {
	position: relative;
	overflow: hidden;
	max-width: 100%;
	max-height: 100%;
}

.carousel__track {
	display: flex;
}

.carousel__slide {
	flex: 0 0 auto;
	width: var(--carousel-slide-width, 60%);
	max-width: 100%;
	padding: 1rem;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.has-dots {
	margin-bottom: calc(.5rem + 22px);
}

.carousel__dots {
	margin: 0 auto;
	padding: 0;
	position: absolute;
	top: calc(100% + .5rem);
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	list-style: none;
	user-select: none;
}

.carousel__dots .carousel__dot {
	margin: 0;
	padding: 0;
	display: block;
	position: relative;
	width: 22px;
	height: 22px;
	cursor: pointer;
}

.carousel__dots .carousel__dot:after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: currentColor;
	opacity: .25;
	transition: opacity .15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
	opacity: 1;
}

.carousel__button {
	width: var(--carousel-button-width, 48px);
	height: var(--carousel-button-height, 48px);
	padding: 0;
	border: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: all;
	cursor: pointer;
	color: var(--carousel-button-color, currentColor);
	background: var(--carousel-button-bg, transparent);
	border-radius: var(--carousel-button-border-radius, 50%);
	box-shadow: var(--carousel-button-shadow, none);
	transition: opacity .15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.carousel__button.is-prev {
	left: 10px;
}

.carousel__button.is-next {
	right: 10px;
}

.carousel__button[disabled] {
	cursor: default;
	opacity: .3;
}

.carousel__button svg {
	width: var(--carousel-button-svg-width, 50%);
	height: var(--carousel-button-svg-height, 50%);
	fill: none;
	stroke: currentColor;
	stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
	stroke-linejoin: bevel;
	stroke-linecap: round;
	filter: var(--carousel-button-svg-filter, none);
	pointer-events: none;
}

html.with-fancybox {
	scroll-behavior: auto;
}

body.compensate-for-scrollbar {
	overflow: hidden !important;
	touch-action: none;
}

.fancybox__container {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	direction: ltr;
	margin: 0;
	padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	color: var(--fancybox-color, #fff);
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	overflow: hidden;
	z-index: 1050;
	outline: none;
	transform-origin: top left;
	--carousel-button-width: 48px;
	--carousel-button-height: 48px;
	--carousel-button-svg-width: 24px;
	--carousel-button-svg-height: 24px;
	--carousel-button-svg-stroke-width: 2.5;
	--carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .4));
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
	box-sizing: inherit;
}

.fancybox__container :focus {
	outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
	box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, .94));
}

@media all and (min-width: 1024px) {
	.fancybox__container {
		--carousel-button-width: 48px;
		--carousel-button-height: 48px;
		--carousel-button-svg-width: 27px;
		--carousel-button-svg-height: 27px;
	}
}

.fancybox__backdrop {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: var(--fancybox-bg, rgba(24, 24, 27, .92));
}

.fancybox__carousel {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	height: 100%;
	z-index: 10;
}

.fancybox__carousel.has-dots {
	margin-bottom: calc(.5rem + 22px);
}

.fancybox__viewport {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: visible;
	cursor: default;
}

.fancybox__track {
	display: flex;
	height: 100%;
}

.fancybox__slide {
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 48px 8px 8px 8px;
	position: relative;
	overscroll-behavior: contain;
	display: flex;
	flex-direction: column;
	outline: 0;
	overflow: auto;
	--carousel-button-width: 36px;
	--carousel-button-height: 36px;
	--carousel-button-svg-width: 22px;
	--carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
	content: "";
	flex: 0 0 0;
	margin: auto;
}

@media all and (min-width: 1024px) {
	.fancybox__slide {
		padding: 64px 100px;
	}
}

.fancybox__content {
	margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
	padding: 36px;
	color: var(--fancybox-content-color, #374151);
	background: var(--fancybox-content-bg, #fff);
	position: relative;
	align-self: center;
	display: flex;
	flex-direction: column;
	z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
	outline: thin dotted;
	box-shadow: none;
}

.fancybox__caption {
	align-self: center;
	max-width: 100%;
	margin: 0;
	padding: 1rem 0 0 0;
	line-height: 1.375;
	color: var(--fancybox-color, currentColor);
	visibility: visible;
	cursor: auto;
	flex-shrink: 0;
	overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
	visibility: hidden;
}

.fancybox__container>.carousel__dots {
	top: 100%;
	color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
	z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
	right: 8px;
}

@media all and (min-width: 1024px) {
	.fancybox__nav .carousel__button.is-next {
		right: 40px;
	}
}

.fancybox__nav .carousel__button.is-prev {
	left: 8px;
}

@media all and (min-width: 1024px) {
	.fancybox__nav .carousel__button.is-prev {
		left: 40px;
	}
}

.carousel__button.is-close {
	position: absolute;
	top: 8px;
	right: 8px;
	top: calc(env(safe-area-inset-top, 0px) + 8px);
	right: calc(env(safe-area-inset-right, 0px) + 8px);
	z-index: 40;
}

@media all and (min-width: 1024px) {
	.carousel__button.is-close {
		right: 40px;
	}
}

.fancybox__content>.carousel__button.is-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
	pointer-events: none;
}

.fancybox__spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
	cursor: pointer;
	z-index: 1053;
}

.fancybox__spinner svg {
	animation: fancybox-rotate 2s linear infinite;
	transform-origin: center center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
}

.fancybox__spinner svg circle {
	fill: none;
	stroke-width: 2.75;
	stroke-miterlimit: 10;
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	animation: fancybox-dash 1.5s ease-in-out infinite;
	stroke-linecap: round;
	stroke: currentColor;
}

@keyframes fancybox-rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes fancybox-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	
	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}

.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
	opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
	animation: .15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
	animation: .15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
	animation: .15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
	animation: .1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
	animation: .2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
	animation: .15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
	animation: .15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
	animation: .15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

@keyframes fancybox-fadeOut {
	to {
		opacity: 0;
	}
}

@keyframes fancybox-zoomInUp {
	from {
		transform: scale(.97) translate3d(0, 16px, 0);
		opacity: 0;
	}
	
	to {
		transform: scale(1) translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes fancybox-zoomOutDown {
	to {
		transform: scale(.97) translate3d(0, 16px, 0);
		opacity: 0;
	}
}

@keyframes fancybox-throwOutUp {
	to {
		transform: translate3d(0, -30%, 0);
		opacity: 0;
	}
}

@keyframes fancybox-throwOutDown {
	to {
		transform: translate3d(0, 30%, 0);
		opacity: 0;
	}
}

.fancybox__carousel .carousel__slide {
	scrollbar-width: thin;
	scrollbar-color: #ccc rgba(255, 255, 255, .1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
	background-color: rgba(255, 255, 255, .1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 2px;
	box-shadow: inset 0 0 4px rgba(0, 0, 0, .2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
	cursor: move;
	cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
	cursor: move;
	cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
	cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
	cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
	cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
	cursor: move;
	cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
	cursor: move;
	cursor: grabbing;
}

.fancybox__image {
	transform-origin: 0 0;
	user-select: none;
	transition: none;
}

.has-image .fancybox__content {
	padding: 0;
	background: rgba(0, 0, 0, 0);
	min-height: 1px;
}

.is-closing .has-image .fancybox__content {
	overflow: visible;
}

.has-image[data-image-fit=contain] {
	overflow: visible;
	touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
	flex-direction: row;
	flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
	overflow-x: hidden;
	overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
	min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
	max-width: 100%;
	height: auto;
}

.has-image[data-image-fit=cover] {
	overflow: visible;
	touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
	width: 100%;
	height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
	max-width: 100%;
	flex-shrink: 1;
	min-height: 1px;
	overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
	width: 100%;
	height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
	width: 960px;
	height: 540px;
	max-width: 100%;
	max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
	padding: 0;
	background: rgba(24, 24, 27, .9);
	color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
	background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.fancybox__thumbs {
	flex: 0 0 auto;
	position: relative;
	padding: 0px 3px;
	opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
	animation: .15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
	opacity: 0;
}

.fancybox__thumbs .carousel__slide {
	flex: 0 0 auto;
	width: var(--fancybox-thumbs-width, 96px);
	margin: 0;
	padding: 8px 3px;
	box-sizing: content-box;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-width: 5px;
	border-style: solid;
	border-color: var(--fancybox-accent-color, rgba(34, 213, 233, .96));
	opacity: 0;
	transition: opacity .15s ease;
	border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
	opacity: .92;
}

.fancybox__thumbs .carousel__slide>* {
	pointer-events: none;
	user-select: none;
}

.fancybox__thumb {
	position: relative;
	width: 100%;
	padding-top: calc(100% / ( var(--fancybox-thumbs-ratio, 1.5) ));
	background-size: cover;
	background-position: center center;
	background-color: rgba(255, 255, 255, .1);
	background-repeat: no-repeat;
	border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 20;
	background: linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, .006) 8.1%, hsla(0deg, 0%, 0%, .021) 15.5%, hsla(0deg, 0%, 0%, .046) 22.5%, hsla(0deg, 0%, 0%, .077) 29%, hsla(0deg, 0%, 0%, .114) 35.3%, hsla(0deg, 0%, 0%, .155) 41.2%, hsla(0deg, 0%, 0%, .198) 47.1%, hsla(0deg, 0%, 0%, .242) 52.9%, hsla(0deg, 0%, 0%, .285) 58.8%, hsla(0deg, 0%, 0%, .326) 64.7%, hsla(0deg, 0%, 0%, .363) 71%, hsla(0deg, 0%, 0%, .394) 77.5%, hsla(0deg, 0%, 0%, .419) 84.5%, hsla(0deg, 0%, 0%, .434) 91.9%, hsla(0deg, 0%, 0%, .44) 100%);
	padding: 0;
	touch-action: none;
	display: flex;
	justify-content: space-between;
	--carousel-button-svg-width: 20px;
	--carousel-button-svg-height: 20px;
	opacity: var(--fancybox-opacity, 1);
	text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .4));
}

@media all and (min-width: 1024px) {
	.fancybox__toolbar {
		padding: 8px;
	}
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
	animation: .15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
	opacity: 0;
}

.fancybox__toolbar__items {
	display: flex;
}

.fancybox__toolbar__items--left {
	margin-right: auto;
}

.fancybox__toolbar__items--center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
	margin-left: auto;
}

@media (max-width: 640px) {
	.fancybox__toolbar__items--center:not(:last-child) {
		display: none;
	}
}

.fancybox__counter {
	min-width: 72px;
	padding: 0 10px;
	line-height: var(--carousel-button-height, 48px);
	text-align: center;
	font-size: 17px;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
	background: var(--fancybox-accent-color, rgba(34, 213, 233, .96));
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	z-index: 30;
	user-select: none;
}

.fancybox__container:fullscreen::backdrop {
	opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
	display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
	display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
	display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
	display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
	display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
	display: block;
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before, .slick-track:after {
	display: table;
	content: "";
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-loading .slick-list {
	background: #fff center center no-repeat;
}

.slick-prev, .slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
	opacity: .25;
}

.slick-prev:before, .slick-next:before {
	font-size: 30px;
	line-height: 1;
	opacity: 1;
	color: #dedede;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: 15px;
	z-index: 9;
}

[dir='rtl'] .slick-prev {
	right: -25px;
	left: auto;
}

.slick-next {
	right: 20px;
}

[dir='rtl'] .slick-next {
	right: auto;
	left: -25px;
}

.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	position: absolute;
	bottom: -28px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 12px;
	height: 12px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: #a1a1a1;
	border-radius: 100%;
}

.slick-dots li button:hover, .slick-dots li button:focus {
	outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
	opacity: 1;
}

.slick-loading .slick-list {
	background: #fff center center no-repeat;
}

.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}

.slick-dots li button:hover, .slick-dots li button:focus {
	outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
	opacity: 1;
}

.slick-dots li button:before {
	font-family: "slick";
	font-size: 12px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: "•";
	text-align: center;
	opacity: .25;
	color: #ded0bf;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
	opacity: .75;
	color: #ded0bf;
}
/* End: Error */

/* Accessibility: hide screen reader texts (and prefer "top" for RTL languages).
Reference: http://blog.rrwd.nl/2015/04/04/the-screen-reader-text-class-why-and-how/ */
.mejs__offscreen {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.mejs__container {
	background: #000;
	box-sizing: border-box;
	font-family: "Helvetica", Arial, serif;
	position: relative;
	text-align: left;
	text-indent: 0;
	vertical-align: top;
}

.mejs__container * {
	box-sizing: border-box;
}

/* Hide native play button and control bar from iOS to favor plugin button */
.mejs__container video::-webkit-media-controls, .mejs__container video::-webkit-media-controls-panel, .mejs__container video::-webkit-media-controls-panel-container, .mejs__container video::-webkit-media-controls-start-playback-button {
	-webkit-appearance: none;
	display: none !important;
}

.mejs__fill-container, .mejs__fill-container .mejs__container {
	height: 100%;
	width: 100%;
}

.mejs__fill-container {
	background: transparent;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.mejs__container:focus {
	outline-offset: .125rem;
	outline-style: solid;
	outline-width: .125rem;
}

.mejs__iframe-overlay {
	height: 100%;
	position: absolute;
	width: 100%;
}

.mejs__embed, .mejs__embed body {
	background: #000;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

.mejs__fullscreen {
	overflow: hidden !important;
}

.mejs__container-fullscreen {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
}

/* Start: LAYERS */
.mejs__background {
	left: 0;
	position: absolute;
	top: 0;
}

.mejs__mediaelement {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.mejs__poster {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	left: 0;
	position: absolute;
	top: 0;
	z-index: 1;
}

:root .mejs__poster-img {
	display: none;
}

.mejs__poster-img {
	border: 0;
	padding: 0;
}

.mejs__overlay {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 0;
}

.mejs__layer {
	z-index: 1;
}

.mejs__overlay-play {
	cursor: pointer;
}

.mejs__overlay-button {
	background: transparent;
	border: 0;
}

.mejs__overlay:hover .mejs__overlay-button svg {
	opacity: 1;
}

.mejs__overlay-button svg {
	opacity: .75;
}

.mejs__overlay-button:focus svg {
	opacity: 1;
}

.mejs__overlay-button, .mejs__overlay-button svg {
	height: 5rem;
	width: 5rem;
}

.mejs__overlay-loading, .mejs__overlay-loading svg {
	height: 5rem;
	width: 5rem;
}

.mejs__overlay-loading-bg-img {
	-webkit-animation: mejs__loading-spinner 1s linear infinite;
	animation: mejs__loading-spinner 1s linear infinite;
	display: block;
	height: 5rem;
	width: 5rem;
	z-index: 1;
}

@-webkit-keyframes mejs__loading-spinner {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes mejs__loading-spinner {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* End: LAYERS */

/* Start: CONTROL BAR */
.mejs__controls {
	bottom: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 2.5rem;
	left: 0;
	list-style-type: none;
	margin: 0;
	padding: 0 .625rem;
	position: absolute;
	width: 100%;
	z-index: 3;
}

.mejs__button, .mejs__time, .mejs__time-rail {
	font-size: .625rem;
	height: 2.5rem;
	line-height: .625rem;
	margin: 0;
	width: 2rem;
}

.mejs__button > button {
	background-color: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: block;
	font-size: 0;
	height: 1.125rem;
	line-height: 0;
	margin: .625rem .375rem;
	overflow: hidden;
	padding: 0;
	position: absolute;
	text-decoration: none;
	width: 1.125rem;
}

.mejs__button svg {
	fill: currentColor;
	height: 1.125rem;
	width: 1.125rem;
}

/* :focus for accessibility */
.mejs__button > button:focus {
	outline: dotted .125rem #fff;
}

.mejs__container-keyboard-inactive a, .mejs__container-keyboard-inactive a:focus, .mejs__container-keyboard-inactive button, .mejs__container-keyboard-inactive button:focus, .mejs__container-keyboard-inactive [role=slider], .mejs__container-keyboard-inactive [role=slider]:focus {
	outline: 0;
}

/* End: CONTROL BAR */

/* Start: Play (Play / Pause / Replay) */
.mejs__playpause-button svg {
	display: none;
}

.mejs__play svg.mejs__icon-play {
	display: block;
}

.mejs__pause svg.mejs__icon-pause {
	display: block;
}

.mejs__replay svg.mejs__icon-replay {
	display: block;
}

/* End: Play (Play / Pause / Replay) */

/* Start: Fullscreen (Fullscreen / Unfullscreen) */
.mejs__fullscreen-button svg.mejs__icon-unfullscreen {
	display: none;
}

.mejs__fullscreen svg.mejs__icon-fullscreen {
	display: block;
}

.mejs__fullscreen svg.mejs__icon-unfullscreen {
	display: none;
}

.mejs__unfullscreen svg.mejs__icon-unfullscreen {
	display: block;
}

.mejs__unfullscreen svg.mejs__icon-fullscreen {
	display: none;
}

/* End: Fullscreen (Fullscreen / Unfullscreen) */

/* Start: Time (Current / Duration) */
.mejs__time {
	box-sizing: content-box;
	color: #fff;
	font-size: .6875rem;
	font-weight: bold;
	height: 1.5rem;
	overflow: hidden;
	padding: 1rem .375rem 0;
	text-align: center;
	width: auto;
}

/* End: Time (Current / Duration) */

/* Start: Progress Bar */
.mejs__time-rail {
	direction: ltr;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	height: 2.5rem;
	margin: 0 .625rem;
	padding-top: .625rem;
	position: relative;
}

.mejs__time-total, .mejs__time-buffering, .mejs__time-loaded, .mejs__time-current, .mejs__time-float, .mejs__time-hovered, .mejs__time-float-current, .mejs__time-float-corner, .mejs__time-marker {
	border-radius: .125rem;
	cursor: pointer;
	display: block;
	height: .625rem;
	position: absolute;
}

.mejs__time-total {
	background: rgba(255, 255, 255, .3);
	margin: .3125rem 0 0;
	width: 100%;
}

.mejs__time-buffering {
	-webkit-animation: buffering-stripes 2s linear infinite;
	animation: buffering-stripes 2s linear infinite;
	background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .4) 50%, rgba(255, 255, 255, .4) 75%, transparent 75%, transparent);
	background: linear-gradient(-45deg, rgba(255, 255, 255, .4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .4) 50%, rgba(255, 255, 255, .4) 75%, transparent 75%, transparent);
	background-size: .9375rem .9375rem;
	width: 100%;
}

@-webkit-keyframes buffering-stripes {
	from {
		background-position: 0 0;
	}
	
	to {
		background-position: 1.875rem 0;
	}
}

@keyframes buffering-stripes {
	from {
		background-position: 0 0;
	}
	
	to {
		background-position: 1.875rem 0;
	}
}

.mejs__time-loaded {
	background: rgba(255, 255, 255, .3);
}

.mejs__time-current, .mejs__time-handle-content {
	background: rgba(255, 255, 255, .9);
}

.mejs__time-hovered {
	background: rgba(255, 255, 255, .5);
	z-index: 10;
}

.mejs__time-hovered.negative {
	background: rgba(0, 0, 0, .2);
}

.mejs__time-current, .mejs__time-buffering, .mejs__time-loaded, .mejs__time-hovered {
	left: 0;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transition: .15s ease-in all;
	transition: .15s ease-in all;
	width: 100%;
}

.mejs__time-buffering {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.mejs__time-hovered {
	-webkit-transition: height .1s cubic-bezier(.44, 0, 1, 1);
	transition: height .1s cubic-bezier(.44, 0, 1, 1);
}

.mejs__time-hovered.no-hover {
	-webkit-transform: scaleX(0) !important;
	-ms-transform: scaleX(0) !important;
	transform: scaleX(0) !important;
}

.mejs__time-handle, .mejs__time-handle-content {
	border: .25rem solid transparent;
	cursor: pointer;
	left: 0;
	position: absolute;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	z-index: 11;
}

.mejs__time-handle-content {
	border: .25rem solid rgba(255, 255, 255, .9);
	border-radius: 50%;
	height: .625rem;
	left: -.4375rem;
	top: -.25rem;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	width: .625rem;
}

.mejs__time-rail:hover .mejs__time-handle-content, .mejs__time-rail .mejs__time-handle-content:focus, .mejs__time-rail .mejs__time-handle-content:active {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.mejs__time-float {
	background: #eee;
	border: solid 1px #333;
	bottom: 100%;
	color: #111;
	display: none;
	height: 1.0625rem;
	margin-bottom: .5625rem;
	position: absolute;
	text-align: center;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 2.25rem;
}

.mejs__time-float-current {
	display: block;
	left: 0;
	margin: .125rem;
	text-align: center;
	width: 1.875rem;
}

.mejs__time-float-corner {
	border: solid .3125rem #eee;
	border-color: #eee transparent transparent;
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	line-height: 0;
	position: absolute;
	top: 100%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
}

.mejs__long-video .mejs__time-float {
	margin-left: -1.4375rem;
	width: 4rem;
}

.mejs__long-video .mejs__time-float-current {
	width: 3.75rem;
}

.mejs__broadcast {
	color: #fff;
	height: .625rem;
	position: absolute;
	top: .9375rem;
	width: 100%;
}

/* End: Progress Bar */

/* Start: Mute/Volume */
.mejs__volume-button {
	position: relative;
}

.mejs__volume-button > .mejs__volume-slider {
	-webkit-backface-visibility: hidden;
	background: rgba(50, 50, 50, .7);
	border-radius: 0;
	bottom: 100%;
	display: none;
	height: 7.1875rem;
	left: 50%;
	margin: 0;
	position: absolute;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 1.5625rem;
	z-index: 1;
}

.mejs__volume-button:hover {
	border-radius: 0 0 .25rem .25rem;
}

.mejs__volume-total {
	background: rgba(255, 255, 255, .5);
	border: .06rem solid #fff;
	height: 6.25rem;
	left: 50%;
	margin: 0;
	position: absolute;
	top: .5rem;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: .125rem;
}

.mejs__volume-current {
	background: rgba(255, 255, 255, .9);
	left: 0;
	margin: 0;
	position: absolute;
	width: 100%;
}

.mejs__volume-handle {
	background: rgba(255, 255, 255, .9);
	border: 1px solid #fff;
	border-radius: 1px;
	cursor: ns-resize;
	height: .375rem;
	left: 50%;
	position: absolute;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 1rem;
}

.mejs__horizontal-volume-slider {
	display: block;
	height: 2.25rem;
	position: relative;
	vertical-align: middle;
	width: 3.5rem;
}

.mejs__horizontal-volume-total {
	background: rgba(50, 50, 50, .8);
	border: .06rem solid #fff;
	border-radius: .125rem;
	font-size: 1px;
	height: .5rem;
	left: 0;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 1rem;
	width: 3.125rem;
}

.mejs__horizontal-volume-current {
	background: rgba(255, 255, 255, .8);
	border-radius: .125rem;
	border-right: .06rem solid #fff;
	font-size: 1px;
	height: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.mejs__horizontal-volume-handle {
	display: none;
}

.mejs__mute svg, .mejs__unmute svg {
	stroke: currentColor;
}

.mejs__volume-button svg {
	display: none;
}

.mejs__mute .mejs__icon-mute {
	display: block;
}

.mejs__unmute .mejs__icon-unmute {
	display: block;
}

/* End: Mute/Volume */

/* Start: Track (Captions and Chapters) */
.mejs__captions-button, .mejs__chapters-button {
	position: relative;
}

.mejs__chapters-button svg, .mejs__captions-button svg {
	padding-top: .125rem;
}

.mejs__captions-button > .mejs__captions-selector, .mejs__chapters-button > .mejs__chapters-selector {
	background: rgba(50, 50, 50, .7);
	border: solid 1px transparent;
	border-radius: 0;
	bottom: 100%;
	margin-right: -2.6875rem;
	overflow: hidden;
	padding: 0;
	position: absolute;
	right: 50%;
	visibility: visible;
	width: 5.375rem;
}

/* reduced opacity if captions button is in toggle mode and deactivated */
.mejs__captions-button-toggle {
	opacity: .7;
}

/* normal opacity if captions button is in toggle mode and activated */
.mejs__captions-button-toggle-on {
	opacity: 1;
}

.mejs__chapters-button > .mejs__chapters-selector {
	margin-right: -3.4375rem;
	width: 6.875rem;
}

.mejs__captions-selector-list, .mejs__chapters-selector-list {
	list-style-type: none !important;
	margin: 0;
	overflow: hidden;
	padding: 0;
}

.mejs__captions-selector-list-item, .mejs__chapters-selector-list-item {
	color: #fff;
	cursor: pointer;
	display: block;
	list-style-type: none !important;
	margin: 0 0 .375rem;
	overflow: hidden;
	padding: 0;
}

.mejs__captions-selector-list-item:hover, .mejs__chapters-selector-list-item:hover {
	background-color: #c8c8c8 !important;
	background-color: rgba(255, 255, 255, .4) !important;
}

.mejs__captions-selector-input, .mejs__chapters-selector-input {
	clear: both;
	float: left;
	left: -62.5rem;
	margin: .1875rem .1875rem 0 .3125rem;
	position: absolute;
}

.mejs__captions-selector-label, .mejs__chapters-selector-label {
	cursor: pointer;
	float: left;
	font-size: .625rem;
	line-height: .9375rem;
	padding: .25rem .625rem 0;
	width: 100%;
}

.mejs__captions-selector-list-item:hover .mejs__captions-selector-label, .mejs__chapters-selector-list-item:hover .mejs__chapters-selector-label {
	text-decoration: underline;
}

.mejs__captions-selected, .mejs__chapters-selected {
	color: rgba(33, 248, 248, 1);
	font-weight: bold;
}

.mejs__captions-translations {
	font-size: .625rem;
	margin: 0 0 .3125rem;
}

.mejs__captions-layer {
	bottom: 0;
	color: #fff;
	font-size: 1rem;
	left: 0;
	line-height: 1.25rem;
	position: absolute;
	text-align: center;
}

.mejs__captions-layer a {
	color: #fff;
	text-decoration: underline;
}

.mejs__captions-layer[lang=ar] {
	font-size: 1.25rem;
	font-weight: normal;
}

.mejs__captions-position {
	bottom: .9375rem;
	left: 0;
	position: absolute;
	width: 100%;
}

.mejs__captions-position-hover {
	bottom: 2.1875rem;
}

.mejs__captions-text, .mejs__captions-text * {
	background: rgba(20, 20, 20, .5);
	box-shadow: .3125rem 0 0 rgba(20, 20, 20, .5), -.3125rem 0 0 rgba(20, 20, 20, .5);
	padding: 0;
	white-space: pre-wrap;
}

.mejs__container.mejs__hide-cues video::-webkit-media-text-track-container {
	display: none;
}

/* End: Track (Captions and Chapters) */

/* Start: Error */
.mejs__overlay-error {
	position: relative;
}

.mejs__overlay-error > img {
	left: 0;
	max-width: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
}

.mejs__cannotplay, .mejs__cannotplay a {
	color: #fff;
	font-size: .8em;
}

.mejs__cannotplay {
	position: relative;
}

.mejs__cannotplay p, .mejs__cannotplay a {
	display: inline-block;
	padding: 0 .9375rem;
	width: 100%;
}
/*# sourceMappingURL=style.css.map */

/*
Theme Name: Next Generation Health Club
Author: Concise Digital
Author URI: https://www.concise.digital/
Theme URI: https://www.nextgenclubs.com.au/
Tags: full-site-editing
Text Domain: nextgenclubs
Requires at least: 6.1
Requires PHP: 7.3
Tested up to: 6.2
Version: 1.0.0

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* 
--------------------------------------------- */
:root {
	--wp--preset--color--black: #000;
	--wp--preset--color--white: #fff;
	--wp--preset--color--primary: #b6005f;
	--wp--preset--color--secondary: #243444;
	--wp--preset--color--light-theme-grey: #e7e9ea;
	--block-padding: 44px;
	--site-min-padding: 15px;
	--site-max-width: 1200px;
	--content-max-width: 1190px;
	--vh: 1vh;
	--base-letter-spacing: .025em;
	--base-letter-spacing: .08em;
	--header-colour: #fff;
	--another-block-padding: 40px;
	--custom-block-padding: 40px;
}

@media (min-width: 782px) {
	:root {
		--block-padding: 50px;
		--another-block-padding: 60px;
		--custom-block-padding: 50px;
	}
}

@media (min-width: 1200px) {
	:root {
		--block-padding: 60px;
		--another-block-padding: 80px;
		--custom-block-padding: 60px;
	}
}

@media (min-width: 1500px) {
	:root {
		--site-max-width: 1440px;
		--content-max-width: 1400px;
	}
}

html body {
	background-color: var(--wp--preset--color--light-theme-grey);
	color: var(--wp--preset--color--secondary);
	--wp--preset--font-size--small: 14px;
	--wp--preset--font-size--medium: 20px;
	--wp--preset--font-size--large: 28px;
	--wp--preset--font-size--x-large: 44px;
}

html body p {
	margin: 0;
	padding-bottom: 12px;
	font-weight: 500;
	line-height: 1.4;
}

html body p:last-child {
	padding-bottom: 0px;
}

@media (min-width: 782px) {
	html body p {
		padding-bottom: 14px;
	}
}

@media (min-width: 992px) {
	html body p {
		padding-bottom: 16px;
	}
}

@media (min-width: 1200px) {
	html body p {
		padding-bottom: 18px;
	}
}

@media (min-width: 1500px) {
	html body p {
		padding-bottom: 20px;
	}
}

@media (min-width: 992px) {
	html body {
		--wp--preset--font-size--small: 16px;
		--wp--preset--font-size--medium: 20px;
		--wp--preset--font-size--large: 30px;
		--wp--preset--font-size--x-large: 54px;
	}
}

@media (min-width: 1200px) {
	html body {
		--wp--preset--font-size--small: 16px;
		--wp--preset--font-size--medium: 20px;
		--wp--preset--font-size--large: 30px;
		--wp--preset--font-size--x-large: 64px;
	}
}

@media (min-width: 1500px) {
	html body {
		--wp--preset--font-size--small: 16px;
		--wp--preset--font-size--medium: 20px;
		--wp--preset--font-size--large: 30px;
		--wp--preset--font-size--x-large: 64px;
		--wp--style--global--content-size: 1200px;
		--wp--style--global--wide-size: 1200px;
	}
}

/*
CHANGES TO FILE
- Added font-size mixin 
*/

/**
 * Font Sizes
 * Create default font sizes across all screen sizes with one declaration
 * e.g. @include font-sizes( 34px, 42px, 46px );
 *
**/

/*
CHANGES TO FILE
- Added body background style 
*/
*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0px;
	padding: 0px;
	color: var(--wp--preset--color--mid-black);
}

a {
	outline: none;
}

a img {
	border: 0;
}

img {
	max-width: 100%;
}

ol, ul {
	margin-top: 0px;
}

.image-wrapper img {
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

iframe {
	display: block;
}

::selection {
	background: var(--wp--preset--color--black);
	color: #fff;
}

.overflow-hidden {
	overflow: hidden;
}

@media (max-width: 1199px) {
	h2 br, h3 br, h4 br, h5 br, h6 br {
		display: none;
	}
}

@media (max-width: 781px) {
	.mobile-hide {
		display: none !important;
	}
}

/* Alignfull and Alignwide
  --------------------------------------------- */
@media (min-width: 782px) {
	.alignfull {
		max-width: none;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
	}
}

@media (min-width: 1200px) {
	.alignwide {
		max-width: calc(var(--site-max-width) + 2 * var(--site-min-padding));
		margin-left: calc(var(--site-max-width) / -2 + 50%);
		margin-right: calc(var(--site-max-width) / -2 + 50%);
	}
	
	.alignfull {
		max-width: none;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
	}
}

.wp-block-column {
	padding-left: 15px;
	padding-right: 15px;
}

.has-global-padding .wp-block-column {
	padding-left: 0px;
	padding-right: 0px;
}

/* Skiplink
--------------------------------------------- */
.skip-link {
	position: absolute;
	top: -100px;
	/* Styled to match the default WordPress screen reader text */
	background-color: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
	text-transform: uppercase;
	display: block;
	font-size: 14px;
	height: auto;
	left: 6px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar */
	-webkit-transition: top .75s ease-out;
	transition: top .75s ease-out;
}

.skip-link:focus {
	color: var(--wp--preset--color--white);
	top: 7px;
	-webkit-transition: top 0s;
	transition: top 0s;
}

.has-global-padding {
	padding-right: 0px;
	padding-left: 0px;
}

@media (max-width: 1200px) {
	.has-global-padding {
		padding-right: 15px !important;
		padding-left: 15px !important;
	}
}

.common-padding {
	padding: 30px 15px;
}

@media (min-width: 782px) {
	.common-padding {
		padding: 40px 15px;
	}
}

@media (min-width: 992px) {
	.common-padding {
		padding: 60px 15px;
	}
}

@media (min-width: 1200px) {
	.common-padding {
		padding: 80px 15px;
	}
}

@media (min-width: 1500px) {
	.common-padding {
		padding: 100px 15px;
	}
}

/* Forms
-------------------------------------------------------------- */
.gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 10px !important;
}

.gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	color: var(--wp--preset--color--primary);
	padding: 12px 18px !important;
	background-color: #f6f7f7;
	border: 1px solid #f6f7f7;
	font-weight: 400;
	font-size: 16px !important;
	line-height: 1.4;
}

.gform_wrapper.gravity-theme input[type=email]::placeholder, .gform_wrapper.gravity-theme input[type=password]::placeholder, .gform_wrapper.gravity-theme input[type=tel]::placeholder, .gform_wrapper.gravity-theme input[type=text]::placeholder, .gform_wrapper.gravity-theme select::placeholder, .gform_wrapper.gravity-theme textarea::placeholder {
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	color: var(--wp--preset--color--primary);
}

.gform_heading {
	color: var(--wp--preset--color--primary);
}

.gform_required_legend {
	display: none;
}

.gform_button {
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	padding: 12px 24px !important;
	border: 1px solid var(--wp--preset--color--white);
	border-radius: 0px;
	color: var(--wp--preset--color--white);
	background-color: transparent;
	cursor: pointer;
	font-weight: 400;
	min-width: 150px;
	font-size: 16px;
	text-decoration: none !important;
	line-height: normal;
	transition: all .3s ease;
	margin-top: 20px;
}

.gform_button:hover, .gform_button:focus, .gform_button:focus-within {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--primary);
	transition: all .3s ease;
}

@media (min-width: 1200px) {
	.gform_button {
		padding: 12px 30px !important;
		min-width: 174px;
	}
}

@media (min-width: 1200px) {
	.gform_wrapper.gravity-theme .gfield textarea.medium {
		height: 130px !important;
	}
}

.gform_wrapper.gravity-theme .gform_footer {
	margin: 0;
	padding: 4px 0 0 !important;
}

@media (min-width: 1200px) {
	.contact-form-sec .gform_wrapper {
		max-width: 844px;
		margin: auto;
	}
}

.single-post .inner_content {
	font-weight: 400;
	line-height: 1.4;
}

.single-post .inner_content ul {
	padding: 0 0 0 4px;
	margin-bottom: 20px;
}

.single-post .inner_content ul li {
	list-style: none;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/list-arrow.svg");
	background-position: left 6px;
	background-repeat: no-repeat;
	background-size: 10px;
	padding-left: 18px;
	margin-bottom: 8px;
	font-weight: 400;
	line-height: 1.4;
}

.single-post .inner_content ul li.nitro-lazy {
	background-image: none !important;
}

@media (min-width: 1200px) {
	.single-post .inner_content ul {
		margin-bottom: 30px;
	}
}

.gform_confirmation_message {
	text-align: center;
}

/*
CHANGES TO FILE
- Removing a lot of the base styles - most of these should be controlled in theme.json
*/
em, .italic {
	font-style: italic;
}

strong, b {
	font-weight: 700;
}

/* Links and buttons  */
a {
	color: inherit;
	cursor: pointer;
}

main a {
	text-decoration: underline;
}

main a:hover, main a:focus, main a:focus-within {
	text-decoration: none;
}

.site-header {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 99999;
}

.site-header .is-content-justification-space-between {
	justify-content: space-between;
}

.site-header .header-middle-main {
	width: 100%;
	max-width: 100%;
	padding: 0;
}

@media (min-width: 1200px) {
	.site-header .header-middle-main {
		padding: 0 30px;
	}
}

@media (min-width: 1500px) {
	.site-header .header-middle-main {
		padding: 0 32px;
	}
}

.site-header .header-btn {
	display: none;
}

@media (min-width: 1200px) {
	.site-header .header-btn {
		display: block;
		font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
		padding: 14px 24px !important;
		border: 1px solid var(--wp--preset--color--primary);
		border-radius: 0px;
		color: var(--wp--preset--color--white);
		background-color: var(--wp--preset--color--primary);
		cursor: pointer;
		font-weight: 400;
		min-width: 150px;
		font-size: 16px;
		text-decoration: none !important;
		line-height: normal;
		transition: all .3s ease;
		text-align: center;
	}
	
	.site-header .header-btn:hover, .site-header .header-btn:focus, .site-header .header-btn:focus-within {
		background-color: transparent;
		color: var(--wp--preset--color--white);
		border: 1px solid var(--wp--preset--color--white);
		transition: all .3s ease;
	}
}

@media (min-width: 1200px) and (min-width: 1200px) {
	.site-header .header-btn {
		padding: 14px 24px !important;
		min-width: 160px;
	}
}

.site-header .header-middle {
	position: relative;
	padding: 8px 0 0;
}

.site-header .header-middle .wp-block-site-logo {
	max-width: 120px;
}

.site-header .header-middle .wp-block-site-logo a img {
	width: 100%;
}

@media (min-width: 1200px) {
	.site-header .header-middle .wp-block-site-logo a {
		max-width: 200px;
	}
}

@media (min-width: 1500px) {
	.site-header .header-middle .wp-block-site-logo a {
		max-width: 240px;
	}
}

.site-header .header-middle .navbar .navbar-nav {
	display: flex;
	grid-gap: 20px;
	padding: 0;
	margin: 0;
}

.site-header .header-middle .navbar .navbar-nav li {
	list-style: none;
}

.site-header .header-middle .navbar .navbar-nav li a {
	text-decoration: none !important;
}

.site-header .header-middle .navbar .navbar-nav > li {
	position: relative;
}

.site-header .header-middle .navbar .navbar-nav > li > a {
	padding: 12px 0;
	display: block;
	font-weight: 400;
	font-size: 18px;
	color: var(--wp--preset--color--white);
	font-family: "Inter", sans-serif;
}

.site-header .header-middle .navbar .navbar-nav > li > a:hover {
	color: var(--wp--preset--color--primary);
}

@media (min-width: 992px) {
	.site-header .header-middle .navbar .navbar-nav > li > a {
		font-size: 16px;
	}
}

@media (min-width: 1200px) {
	.site-header .header-middle .navbar .navbar-nav > li > a {
		font-size: 17px;
		padding: 18px 0;
	}
}

@media (min-width: 1500px) {
	.site-header .header-middle .navbar .navbar-nav > li > a {
		font-size: 18px;
		padding: 18px 0;
	}
}

.site-header .header-middle .navbar .navbar-nav > li.current-page-ancestor > a, .site-header .header-middle .navbar .navbar-nav > li.current-menu-item > a {
	color: var(--wp--preset--color--primary);
}

.site-header .header-middle .navbar .navbar-nav > li > ul {
	display: none;
	border: 0px;
	border-radius: 0px;
	padding: 16px 0;
	min-width: 270px !important;
	left: -24px;
	top: 34px;
	position: absolute;
}

.site-header .header-middle .navbar .navbar-nav > li > ul > li {
	padding: 0 24px;
}

.site-header .header-middle .navbar .navbar-nav > li > ul > li > a {
	padding: 2px 0;
	display: block;
	width: 100%;
	font-weight: 400;
	font-size: 16px;
	color: var(--wp--preset--color--white);
}

.site-header .header-middle .navbar .navbar-nav > li > ul > li > a:hover, .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:focus, .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:focus-within {
	font-weight: 600;
	color: var(--wp--preset--color--primary);
}

.site-header .header-middle .navbar .navbar-nav > li > ul > li.current-page-ancestor > a, .site-header .header-middle .navbar .navbar-nav > li > ul > li.current-menu-item > a {
	font-weight: 600;
	color: var(--wp--preset--color--primary);
}

@media (min-width: 1200px) {
	.site-header .header-middle .navbar .navbar-nav > li > ul {
		min-width: 270px !important;
	}
}

@media (max-width: 1199px) {
	.site-header .header-middle .navbar .navbar-nav > li > ul {
		position: relative;
		width: 100%;
		top: 0;
		left: 0;
		display: none;
		padding: 12px 20px;
		border-radius: 0;
	}
	
	.site-header .header-middle .navbar .navbar-nav > li > ul > li > a {
		padding: 8px 0;
		font-size: 16px;
	}
	
	.site-header .header-middle .navbar .navbar-nav > li > ul > li > a:hover, .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:focus, .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:focus-within {
		color: var(--wp--preset--color--primary);
	}
}

@media (min-width: 1200px) {
	.site-header .header-middle .navbar .navbar-nav > li:hover > a, .site-header .header-middle .navbar .navbar-nav > li:focus > a, .site-header .header-middle .navbar .navbar-nav > li:focus-within > a {
		color: var(--wp--preset--color--primary);
	}
	
	.site-header .header-middle .navbar .navbar-nav > li:hover > ul, .site-header .header-middle .navbar .navbar-nav > li:focus > ul, .site-header .header-middle .navbar .navbar-nav > li:focus-within > ul {
		display: block;
	}
}

@media (max-width: 1199px) {
	.site-header .header-middle .navbar .navbar-nav > li.has-sub-nav > a {
		width: 80%;
	}
}

@media (min-width: 1200px) {
	.site-header .header-middle .navbar .navbar-nav {
		grid-gap: 40px;
	}
}

@media (min-width: 1500px) {
	.site-header .header-middle .navbar .navbar-nav {
		grid-gap: 40px;
	}
}

@media (min-width: 1200px) {
	.site-header .header-middle {
		padding: 27px 0 0;
	}
}

.site-header.location-site-header .wp-block-site-logo:not(.not-location-logo) {
	max-width: 190px;
}

.site-header.location-site-header .wp-block-site-logo:not(.not-location-logo) a img {
	width: 100%;
}

@media (min-width: 1200px) {
	.site-header.location-site-header .wp-block-site-logo:not(.not-location-logo) {
		max-width: 290px;
	}
}

.site-header.location-site-header .header-bottom .navbar .navbar-nav {
	display: flex;
	grid-gap: 20px;
	padding: 0;
	margin: 0;
	justify-content: space-between;
}

.site-header.location-site-header .header-bottom .navbar .navbar-nav li {
	list-style: none;
}

.site-header.location-site-header .header-bottom .navbar .navbar-nav li a {
	text-decoration: none !important;
}

.site-header.location-site-header .header-bottom .navbar .navbar-nav > li {
	position: relative;
}

.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a {
	padding: 12px 0;
	display: block;
	font-weight: 400;
	font-size: 18px;
	color: var(--wp--preset--color--white);
	font-family: "Inter", sans-serif;
}

.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a:hover {
	color: var(--wp--preset--color--primary);
}

@media (min-width: 992px) {
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a {
		font-size: 16px;
	}
}

@media (min-width: 1200px) {
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a {
		font-size: 17px;
		padding: 18px 0;
	}
}

@media (min-width: 1500px) {
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a {
		font-size: 18px;
		padding: 18px 0;
	}
}

.site-header.location-site-header .header-bottom .navbar .navbar-nav > li.current-page-ancestor > a, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li.current-menu-item > a {
	color: var(--wp--preset--color--primary);
}

.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul {
	display: none;
	border: 0px;
	border-radius: 0px;
	padding: 16px 0;
	min-width: 270px !important;
	left: -24px;
	top: 34px;
	position: absolute;
}

.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li {
	padding: 0 24px;
}

.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a {
	padding: 2px 0;
	display: block;
	width: 100%;
	font-weight: 400;
	font-size: 18px;
	color: var(--wp--preset--color--white);
}

.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:hover, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:focus, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:focus-within {
	font-weight: 600;
	color: var(--wp--preset--color--primary);
}

.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li.current-page-ancestor > a, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li.current-menu-item > a {
	font-weight: 600;
	color: var(--wp--preset--color--primary);
}

@media (min-width: 1200px) {
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul {
		min-width: 270px !important;
	}
}

@media (max-width: 1199px) {
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul {
		position: relative;
		width: 100%;
		top: 0;
		left: 0;
		display: none;
		padding: 12px 20px;
		border-radius: 0;
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a {
		padding: 8px 0;
		font-size: 16px;
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:hover, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:focus, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:focus-within {
		color: var(--wp--preset--color--primary);
	}
}

@media (min-width: 1200px) {
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li:hover > a, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li:focus > a, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li:focus-within > a {
		color: var(--wp--preset--color--primary);
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li:hover > ul, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li:focus > ul, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li:focus-within > ul {
		display: block;
	}
}

@media (max-width: 1199px) {
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li.has-sub-nav > a {
		width: 80%;
	}
}

@media (min-width: 1200px) {
	.site-header.location-site-header .header-bottom .navbar .navbar-nav {
		grid-gap: 26px;
	}
}

@media (min-width: 1500px) {
	.site-header.location-site-header .header-bottom .navbar .navbar-nav {
		grid-gap: 26px;
	}
}

@media (min-width: 1200px) {
	.site-header.location-site-header .header-bottom {
		border-top: 1px solid var(--wp--preset--color--white);
		border-bottom: 1px solid var(--wp--preset--color--white);
		margin-top: 25px;
	}
}

.mobilemenu_icon {
	width: 36px;
	height: 24px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.navbar_line {
	background-color: var(--wp--preset--color--white);
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 0;
}

.navbar_line2 {
	top: 10px;
	width: 100%;
}

.navbar_line3 {
	top: 20px;
}

@media (max-width: 1199px) {
	.sidebar_open:before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		background-color: rgba(0, 0, 0, .6);
		width: 100%;
		height: 100%;
		z-index: 99;
	}
	
	.sidebar_open .mobilemenu_icon {
		background: transparent;
	}
	
	.sidebar_open .navbar_line {
		left: 100%;
	}
	
	.sidebar_open .navbar_line2 {
		left: 100%;
	}
	
	.sidebar_open .navbar_line3 {
		left: 100%;
	}
	
	.mobilemenu_icon_open {
		width: 25px;
		height: 25px;
		top: 15px;
		right: 15px;
		position: absolute;
		background-size: cover;
		z-index: 99;
		overflow: hidden;
	}
	
	.navbarclose_line1 {
		height: 2px;
		background-color: var(--wp--preset--color--primary);
		position: absolute;
		top: 11px;
		left: 0;
		width: 25px;
		transform: rotate(0);
		opacity: 0;
	}
	
	.navbarclose_line2 {
		height: 2px;
		background-color: var(--wp--preset--color--primary);
		position: absolute;
		top: 11px;
		left: 0;
		width: 25px;
		transform: rotate(0);
		opacity: 0;
	}
	
	.sidebar_open .navbarclose_line1 {
		transform: rotate(-136deg);
		-webkit-transition-duration: .5s;
		-moz-transition-duration: .5s;
		transition-duration: .5s;
		transition-delay: .2s;
		opacity: 100;
	}
	
	.sidebar_open .navbarclose_line2 {
		transform: rotate(136deg);
		-webkit-transition-duration: .5s;
		-moz-transition-duration: .5s;
		transition-duration: .5s;
		transition-delay: .2s;
		opacity: 100;
	}
	
	.navbar-header {
		overflow: auto;
	}
	
	.sidebar_open {
		overflow: hidden;
	}
	
	.navbar-header {
		float: none;
		position: fixed;
		background-color: var(--wp--preset--color--light-theme-grey);
		width: 100%;
		top: 0;
		right: 0;
		left: 0;
		pointer-events: none;
		height: 100%;
		max-width: 100vw;
		z-index: 99999999;
		opacity: 0;
		transition: opacity .3s ease;
	}
	
	.navbar-nav > li:hover > ul {
		display: none;
	}
	
	.sidebar_open .navbar-header {
		transition: opacity .3s ease;
		transform: translate3d(0, 0, 0);
		pointer-events: all;
		opacity: 1;
	}
	
	.site-header .header-middle .wp-block-group {
		width: 100%;
	}
	
	.site-header .header-middle .navbar .navbar-nav {
		flex-direction: column;
		grid-gap: 0px;
		margin-top: 60px;
	}
	
	.site-header .header-middle .navbar .navbar-nav > li {
		padding: 0;
	}
	
	.site-header .header-middle .navbar .navbar-nav > li > a {
		font-weight: 500;
		padding: 16px 15px;
		color: var(--wp--preset--color--secondary);
		font-size: 20px;
	}
	
	.site-header .header-middle .navbar .navbar-nav > li > a:hover, .site-header .header-middle .navbar .navbar-nav > li > a:focus, .site-header .header-middle .navbar .navbar-nav > li > a:focus-within {
		color: var(--wp--preset--color--primary);
	}
	
	.site-header .header-middle .navbar .navbar-nav > li.current-page-ancestor > a, .site-header .header-middle .navbar .navbar-nav > li.current-menu-item > a {
		color: var(--wp--preset--color--primary);
	}
	
	.site-header .header-middle .navbar .navbar-nav > li > ul {
		padding-top: 0px;
	}
	
	.site-header .header-middle .navbar .navbar-nav > li > ul > li {
		padding: 0;
	}
	
	.site-header .header-middle .navbar .navbar-nav > li > ul > li > a {
		color: var(--wp--preset--color--white);
	}
	
	.site-header .header-middle .navbar .navbar-nav > li > ul > li > a:hover, .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:focus, .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:focus-within {
		color: var(--wp--preset--color--secondary);
	}
	
	.site-header .header-middle .navbar .navbar-nav > li > ul > li.current-page-ancestor > a, .site-header .header-middle .navbar .navbar-nav > li > ul > li.current-menu-item > a {
		color: var(--wp--preset--color--secondary);
	}
	
	.site-header.location-site-header .header-bottom .wp-block-group {
		width: 100%;
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav {
		flex-direction: column;
		grid-gap: 0px;
		margin-top: 60px;
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li {
		padding: 0;
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a {
		font-weight: 500;
		padding: 16px 15px;
		color: var(--wp--preset--color--secondary);
		font-size: 20px;
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a:hover, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a:focus, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a:focus-within {
		color: var(--wp--preset--color--primary);
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li.current-page-ancestor > a, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li.current-menu-item > a {
		color: var(--wp--preset--color--primary);
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul {
		padding-top: 0px;
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li {
		padding: 0;
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a {
		color: var(--wp--preset--color--white);
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:hover, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:focus, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:focus-within {
		color: var(--wp--preset--color--secondary);
	}
	
	.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li.current-page-ancestor > a, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li.current-menu-item > a {
		color: var(--wp--preset--color--secondary);
	}
}

@media (min-width: 1500px) {
	.postid-53 .site-header .header-middle .wp-block-site-logo a {
		max-width: 240px;
	}
}

@media (min-width: 1500px) {
	.postid-51 .site-header .header-middle .wp-block-site-logo a {
		max-width: 240px;
	}
}

@media (min-width: 1500px) {
	.postid-55 .site-header .header-middle .wp-block-site-logo a {
		max-width: 240px;
	}
}

.header-search .header-search-icon {
	display: flex;
	justify-content: center;
	align-content: center;
}

.header-search .header-search-icon:hover {
	opacity: .8;
}

.header-search .header-search-mobile-icon {
	display: none;
}

.header-search-box {
	position: relative;
	background-color: var(--wp--preset--color--secondary);
	padding: 20px 12px 26px;
	z-index: 9;
	display: none;
}

.header_search_textbox {
	width: 100%;
	padding: 12px;
	border: 0px;
	line-height: normal;
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	font-size: 16px;
	outline: 0px;
}

.header_search_textbox:hover, .header_search_textbox:focus, .header_search_textbox:focus-within, .header_search_textbox:focus-visible {
	border: 0px;
	outline: 0px;
}

.header-search-box-form {
	position: relative;
}

.header_search_btn {
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/top-header-search.svg");
	background-repeat: no-repeat;
	width: 24px;
	height: 24px;
	background-color: transparent;
	border: none;
	right: 10px;
	top: 10px;
	position: absolute;
	cursor: pointer;
}

.header_search_btn.nitro-lazy {
	background-image: none !important;
}

.header_search_box_close {
	position: absolute;
	right: 0px;
	color: #fff;
	bottom: -18px;
	font-size: 10px;
	line-height: normal;
}

.header-icons-flex {
	grid-gap: 30px;
}

button.menu-button.close-menu-button span {
	display: none;
}

@media (max-width: 1199px) {
	button.menu-button.close-menu-button span {
		display: block;
		font-size: 18px;
	}
}

@media (max-width: 1199px) {
	button.menu-button.close-menu-button {
		font-size: 0px;
		width: 18px;
		height: 20px;
		background-color: transparent;
		border: 0px;
		border-radius: 0;
		padding: 0 !important;
		min-width: auto;
	}
}

.mobile-header-btn {
	display: none;
}

@media (max-width: 1199px) {
	.mobile-header-btn {
		display: block;
		font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
		padding: 14px 24px !important;
		border: 1px solid var(--wp--preset--color--white);
		border-radius: 0px;
		color: var(--wp--preset--color--white);
		background-color: transparent;
		cursor: pointer;
		font-weight: 400;
		min-width: 150px;
		font-size: 16px;
		text-decoration: none !important;
		line-height: normal;
		transition: all .3s ease;
		text-align: center;
		position: absolute;
		top: 10px;
		right: 0;
		left: 0;
		margin: auto;
		max-width: 180px;
	}
}

.sticky_header {
	top: -15px;
}

.sticky_header1 {
	top: 0;
	transition: all .3s;
}

.sticky_header1 {
	position: fixed;
	top: 0px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .62);
	z-index: 99999;
	border-bottom: 0;
	height: auto;
	background-color: var(--wp--preset--color--secondary);
	border-bottom: 1px solid var(--wp--preset--color--secondary);
}

.site-header.sticky_header1 .header-middle {
	padding: 12px 0;
}

@media (min-width: 1200px) {
	.location-site-header.site-header.sticky_header1 .header-middle {
		padding: 12px 0 0;
	}
}

@media (max-width: 1199px) {
	.navigation-overlay .extra-menu.location-extra-menu {
		display: flex;
		position: relative;
		margin: auto;
		width: 100%;
		text-align: center;
		font-size: 16px;
		grid-gap: 14px;
		left: 0;
		line-height: normal;
		top: 0;
		right: 0;
		margin-top: 8px;
	}
	
	.navigation-overlay .extra-menu.location-extra-menu a {
		font-size: 18px;
	}
	
	.full-navigation .location-nav-overlay-layout .navbar-nav li.current-menu-item a {
		color: var(--wp--preset--color--primary);
	}
	
	.location-nav-overlay-layout {
		padding-top: 90px !important;
	}
	
	.location-nav-overlay-layout .navbar-nav li {
		margin-bottom: 0px !important;
	}
	
	.location-nav-overlay-layout .navbar-nav > li > a {
		font-size: 18px !important;
	}
	
	.location-nav-overlay-layout .navbar-nav {
		grid-gap: 12px !important;
	}
	
	.location-nav-overlay-layout h5 {
		font-size: 24px;
		color: var(--wp--preset--color--primary);
		font-weight: 500;
		margin-top: 10px;
		margin-bottom: 24px;
	}
}

#search_form {
	display: flex;
	align-content: center;
	align-items: center;
	grid-gap: 12px;
	flex-direction: column;
}

#search_form .location-select {
	width: 100%;
	padding: 10px 12px;
	border: 0px;
	line-height: normal;
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	font-size: 16px;
	outline: 0px;
}

#search_form .header_search_textbox {
	width: 100%;
}

@media (min-width: 782px) {
	#search_form {
		flex-direction: row;
	}
	
	#search_form .header_search_textbox {
		width: 75%;
	}
	
	#search_form .location-select {
		width: 25%;
	}
}

@media (min-width: 992px) {
	#search_form .header_search_textbox {
		width: 80%;
	}
	
	#search_form .location-select {
		width: 20%;
	}
}

@media (min-width: 1200px) {
	#search_form .header_search_textbox {
		width: 84%;
	}
	
	#search_form .location-select {
		width: 16%;
	}
}

@media (max-width: 781px) {
	#search_form .header_search_btn {
		top: 64px;
	}
}

#search_form .location-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	background-color: #fff;
	padding: 12px;
	line-height: normal;
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	font-size: 16px;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/select-dropdown.png");
	background-repeat: no-repeat;
	background-position: 95% center;
	background-size: 14px;
	color: #000 !important;
}

#search_form .location-select.nitro-lazy {
	background-image: none !important;
}

#search_form .location-select::placeholder {
	color: #8d8d8d !important;
}

@media (min-width: 1200px) {
	.location-header-overlay #navbar {
		display: none;
	}
	
	.location-header-overlay .navigation-links #navbar {
		display: block;
	}
}

@media (max-width: 1199px) {
	.location-header-overlay .navigation-links #navbar {
		display: none;
	}
	
	#search_form .location-select {
		border-radius: 5px;
	}
}

@media (max-width: 781px) {
	#search_form .header_search_btn {
		top: 68px;
	}
}

/************ FULL SCREEN NAVIGATION **************/
button.menu-button {
	color: #fff;
	background-color: transparent;
	border: solid 1px #fff;
	border-radius: 0;
	padding: 14px 24px !important;
	min-width: 160px;
	font-weight: 400;
	font-size: 16px;
	cursor: pointer;
}

button.menu-button:focus {
	outline: 2px solid #fff;
}

button.menu-button:hover, button.menu-button:focus, button.menu-button:focus-within {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--primary);
	transition: all .3s ease;
}

button.menu-button.close-menu-button {
	position: absolute;
	top: 22px;
	right: 20px;
	cursor: pointer;
}

.navigation-overlay {
	position: fixed;
	opacity: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--wp--preset--color--secondary);
	pointer-events: none;
	z-index: 99999999999;
	color: #fff;
	transform: translateX(100vw);
	transition: .2s ease-in-out;
}

.navigation-overlay .navigation-logo, .navigation-overlay .navigation-links, .navigation-overlay .navigation-contact, .navigation-overlay .close-menu-button, .navigation-overlay .extra-menu {
	transform: translateX(300px);
	opacity: 0;
	transition: .2s ease-in-out;
}

@media (max-width: 1199px) {
	.navigation-overlay .extra-menu {
		display: none;
	}
}

.navigation-overlay.visible.active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: all;
	visibility: visible;
}

.navigation-overlay.visible.active .navigation-logo, .navigation-overlay.visible.active .navigation-links, .navigation-overlay.visible.active .navigation-contact, .navigation-overlay.visible.active .close-menu-button, .navigation-overlay.visible.active .extra-menu {
	transform: translateX(0);
	opacity: 1;
}

.nav-overlay-layout {
	max-height: 100%;
	overflow: auto;
	padding: 50px 25px 25px 25px;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 20px;
	grid-template-areas: "logo" "links" "contact";
}

@media (min-width: 1200px) {
	.nav-overlay-layout {
		padding: 50px;
		grid-template-columns: 230px 1fr;
		grid-gap: 20px 40px;
		grid-template-areas: "logo links" "contact links";
		padding: 60px 50px;
		grid-template-columns: 260px 1fr;
	}
}

@media (max-width: 1199px) {
	.nav-overlay-layout {
		padding: 98px 25px 25px 25px;
	}
}

@media (max-width: 991px) {
	.nav-overlay-layout {
		padding: 98px 20px 25px 20px;
	}
}

@media (max-width: 767px) {
	.nav-overlay-layout {
		padding: 98px 15px 25px 15px;
	}
}

.navigation-logo {
	grid-area: logo;
}

.navigation-logo img {
	display: block;
	width: 190px;
	max-width: 100%;
}

@media (max-width: 1199px) {
	.navigation-logo img {
		max-width: 144px;
	}
}

.navigation-links {
	grid-area: links;
	justify-self: start;
}

.navigation-contact {
	grid-area: contact;
	align-self: end;
}

.navigation-contact ul, .navigation-contact li {
	list-style: none;
	font-size: 15px;
}

.navigation-contact ul {
	margin-left: 0;
	padding-left: 0;
}

.menu_social_icons {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
}

.menu_social_icons li {
	margin-right: 1em;
}

.menu_social_icons img {
	display: block;
	max-width: 20px;
	max-height: 20px;
	opacity: .75;
}

.menu_social_icons a:focus img, .menu_social_icons a:hover img {
	opacity: 1;
}

header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9;
	transition: top .2s ease 0s;
}

.header_menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	z-index: 9;
}

.header_menu li a {
	color: #fff;
	display: inline-block;
}

.header_menu li.search-icon {
	margin-right: 35px;
}

.header_menu li.search-icon a span {
	margin-right: 7px;
	font-size: 16px;
	line-height: 26px;
}

.header_menu li.mobile_btn a {
	padding: 9px 25px 9px 45px;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 24px;
}

.header_top {
	padding: 30px 0;
}

.header_logo {
	text-align: center;
	padding-top: 60px;
}

/************ GENERAL STYLES  **************/
.full-navigation .navbar {
	margin-bottom: 0;
	border-radius: 0;
	background-color: transparent;
	border: none;
	text-align: left;
	padding: 0;
	justify-content: center;
}

.full-navigation .navbar-nav {
	margin: 0;
	padding: 0;
	display: block;
	text-align: left;
	list-style: none;
	display: block;
}

.full-navigation .navbar-nav li {
	display: block;
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
}

.full-navigation .navbar-nav a {
	color: #fff;
	opacity: .9;
	font-weight: 300;
	text-decoration: none;
	font-size: 17px;
}

.full-navigation .navbar-nav a:hover, .full-navigation .navbar-nav a:focus {
	opacity: 1;
	color: var(--wp--preset--color--primary);
}

.full-navigation .navbar-nav > li > a {
	font-size: 20px;
}

/************ MOBILE STYLES **************/
@media (max-width: 1199px) {
	.navigation-links {
		width: 100%;
	}
	
	.full-navigation .navbar-nav {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		grid-gap: 14px;
		margin-top: 16px;
	}
	
	.full-navigation .navbar-nav li.has-sub-nav {
		position: relative;
	}
	
	.full-navigation .navbar-nav li.has-sub-nav > a {
		width: 85%;
	}
	
	.full-navigation .navbar-nav li.has-sub-nav::after {
		content: "";
		display: block;
		position: absolute;
		right: 6px;
		top: 4px;
		bottom: auto;
		width: 20px;
		background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/right-arrow.svg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 8px;
		transform: rotate(90deg);
		transition: all .2s ease-in-out;
		height: 20px;
	}
	
	.full-navigation .navbar-nav .sub-menu {
		display: none;
	}
	
	.full-navigation .navbar-nav > li {
		width: 100%;
	}
	
	.full-navigation .navbar-nav > li > a {
		display: block;
		width: 100%;
	}
	
	.full-navigation .navbar-nav > li.focus::after {
		transform: rotate(-90deg);
	}
	
	.full-navigation .navbar-nav .sub-menu {
		padding-top: 18px;
		padding-left: 20px;
		padding-bottom: 10px;
	}
}

/************ DESKTOP STYLES **************/
@media (min-width: 1200px) {
	.full-navigation .navbar-nav {
		position: relative;
	}
	
	.full-navigation .navbar-nav a {
		font-size: 18px;
	}
	
	.full-navigation .navbar-nav li {
		min-width: 26ch;
		margin-bottom: 10px;
	}
	
	.full-navigation .navbar-nav > li {
		padding-top: 1vh;
		padding-bottom: 1vh;
	}
	
	.full-navigation .navbar-nav > li > a {
		font-size: 26px;
		padding-right: 2em;
	}
	
	.full-navigation .navbar-nav > li {
		padding-top: 1vh;
		padding-bottom: 1vh;
	}
	
	.full-navigation .navbar-nav > li:first-child {
		padding-top: 0;
	}
	
	.full-navigation .navbar-nav > li > .sub-menu > li > a {
		font-weight: 400;
		font-size: 22px;
		padding-right: 2em;
	}
	
	.full-navigation .navbar-nav > li .sub-menu .sub-menu a {
		font-size: 18px;
	}
	
	.full-navigation .navbar-nav > li > .sub-menu {
		position: absolute;
		top: 0;
		bottom: 0;
		transform: translateX(-50vw);
		opacity: 0;
		border-left: solid 1px rgba(255, 255, 255, .15);
		padding-left: 40px;
		transition: .1s 0 ease-in-out;
	}
	
	.full-navigation .navbar-nav > li:hover.menu-item-has-children > a {
		background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/right-arrow.svg");
		background-repeat: no-repeat;
		background-position: center right 10px;
		background-size: 10px;
	}
	
	.full-navigation .navbar-nav > li:hover.menu-item-has-children > a.nitro-lazy {
		background-image: none !important;
	}
	
	.full-navigation .navbar-nav > li.opened > .sub-menu {
		left: 100%;
		transform: translateX(0);
		opacity: 1;
		transition-delay: 0s;
	}
	
	.full-navigation .navbar-nav > li .sub-menu .sub-menu {
		padding-left: 15px;
		margin-top: 0px;
	}
	
	.full-navigation .navbar-nav > li ul li {
		padding-top: .2vh;
		padding-bottom: .2vh;
	}
	
	.full-navigation .navbar-nav > li ul li > .sub-menu > li > a {
		font-weight: 400;
	}
	
	.full-navigation .navbar-nav > li ul li .sub-menu .sub-menu a {
		font-size: 20px;
	}
	
	.full-navigation .navbar-nav > li ul li > .sub-menu {
		position: absolute;
		top: 0;
		bottom: 0;
		transform: translateX(-50vw);
		opacity: 0;
		border-left: solid 1px rgba(255, 255, 255, .15);
		padding-left: 40px !important;
		transition: .1s 0 ease-in-out;
	}
	
	.full-navigation .navbar-nav > li ul li > .sub-menu li a {
		background-image: none;
	}
	
	.full-navigation .navbar-nav > li ul li > .sub-menu li a.nitro-lazy {
		background-image: none !important;
	}
	
	.full-navigation .navbar-nav > li ul li:hover.menu-item-has-children > a {
		background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/right-arrow.svg");
		background-repeat: no-repeat;
		background-position: center right 10px;
		background-size: 10px;
	}
	
	.full-navigation .navbar-nav > li ul li:hover.menu-item-has-children > a.nitro-lazy {
		background-image: none !important;
	}
	
	.full-navigation .navbar-nav > li ul li.opened > .sub-menu {
		left: 100%;
		transform: translateX(0);
		opacity: 1;
		transition-delay: 0s;
	}
}

@media (max-width: 1199px) {
	.header-middle-main {
		width: auto;
		flex-direction: row;
	}
	
	.site-header .header-middle .wp-block-group {
		width: auto;
	}
}

.extra-menu {
	position: absolute;
	top: 30px;
	right: 198px;
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: 10px;
}

.extra-menu a {
	text-decoration: none;
}

.extra-menu a:hover {
	color: var(--wp--preset--color--primary);
}

@media (max-width: 767px) {
	.extra-menu {
		top: 24px;
	}
}

@media (min-width: 1200px) {
	.nav-overlay-layout {
		height: 100%;
	}
}

.special-qualtrics-button {
	display: none !important;
}

@media (max-width: 1199px) {
	.special-qualtrics-button {
		display: flex !important;
		justify-content: center;
		position: absolute;
		bottom: 6px;
		left: 0;
		right: 0;
	}
}

.site-footer {
	padding-top: 40px;
	padding-bottom: 40px;
}

.site-footer .mobile-show {
	display: none;
}

@media (max-width: 781px) {
	.site-footer .mobile-show {
		display: block;
	}
}

@media (max-width: 781px) {
	.site-footer .desktop-show {
		display: none;
	}
}

.site-footer .footer-middle {
	width: 100%;
}

.site-footer .footer-middle-main {
	width: 100%;
	max-width: 100%;
}

@media (min-width: 782px) {
	.site-footer .footer-middle-main .wp-block-column {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (min-width: 992px) {
	.site-footer .footer-middle-main .wp-block-column {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (min-width: 1200px) {
	.site-footer .footer-middle-main .wp-block-column:first-child {
		flex-basis: 28%;
	}
	
	.site-footer .footer-middle-main .wp-block-column:nth-child(3) {
		flex-basis: 16%;
	}
	
	.site-footer .footer-middle-main .wp-block-column:nth-child(4) {
		flex-basis: 22%;
	}
	
	.site-footer .footer-middle-main .wp-block-column:nth-child(5) {
		flex-basis: 28%;
	}
	
	.site-footer .footer-middle-main .wp-block-column:nth-child(6) {
		flex-basis: 16%;
	}
}

@media (min-width: 1500px) {
	.site-footer .footer-middle-main .wp-block-column:first-child {
		flex-basis: 24%;
	}
	
	.site-footer .footer-middle-main .wp-block-column:nth-child(3) {
		flex-basis: 14%;
	}
	
	.site-footer .footer-middle-main .wp-block-column:nth-child(4) {
		flex-basis: 18%;
	}
	
	.site-footer .footer-middle-main .wp-block-column:nth-child(5) {
		flex-basis: 34%;
	}
	
	.site-footer .footer-middle-main .wp-block-column:nth-child(6) {
		flex-basis: 12%;
	}
}

@media (min-width: 1800px) {
	.site-footer .footer-middle-main .wp-block-column:first-child {
		flex-basis: 18%;
	}
	
	.site-footer .footer-middle-main .wp-block-column:nth-child(3) {
		flex-basis: 10%;
	}
	
	.site-footer .footer-middle-main .wp-block-column:nth-child(4) {
		flex-basis: 12%;
	}
	
	.site-footer .footer-middle-main .wp-block-column:nth-child(5) {
		flex-basis: 45%;
	}
	
	.site-footer .footer-middle-main .wp-block-column:nth-child(6) {
		flex-basis: 10%;
	}
}

@media (max-width: 781px) {
	.site-footer .footer-middle-main .wp-block-column {
		flex-basis: 44% !important;
	}
}

@media (min-width: 782px) {
	.site-footer .footer-middle-main {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (min-width: 992px) {
	.site-footer .footer-middle-main {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (min-width: 1200px) {
	.site-footer .footer-middle-main {
		padding-left: 30px;
		padding-right: 40px;
	}
}

@media (min-width: 1500px) {
	.site-footer .footer-middle-main {
		padding-left: 50px;
		padding-right: 70px;
	}
}

.site-footer h6 {
	margin-bottom: 15px;
	font-weight: 600;
}

.site-footer .wp-block-navigation__container li {
	margin-bottom: 8px;
}

.site-footer .wp-block-navigation__container li a {
	font-size: 14px;
}

.site-footer .wp-block-navigation__container li a:hover {
	color: var(--wp--preset--color--primary);
}

@media (min-width: 992px) {
	.site-footer .wp-block-navigation__container li a {
		font-size: 16px;
	}
}

@media (min-width: 1200px) {
	.site-footer .wp-block-navigation__container li a {
		font-size: 18px;
	}
}

.site-footer .wp-block-navigation__container li:last-child {
	margin-bottom: 0px;
}

.site-footer .social-links {
	display: flex;
	align-items: center;
	grid-gap: 16px;
	margin: 0;
	padding: 0;
}

.site-footer .social-links li {
	list-style: none;
}

.site-footer .social-links li a:hover svg path {
	fill: var(--wp--preset--color--primary);
}

@media (min-width: 782px) {
	.site-footer {
		padding-top: 45px;
	}
}

@media (min-width: 992px) {
	.site-footer {
		padding-top: 55px;
	}
}

@media (min-width: 1200px) {
	.site-footer {
		padding-top: 65px;
	}
}

.footer-logo {
	max-width: 190px;
}

.pum-theme-838 .pum-container {
	max-width: 400px;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0px !important;
	top: auto !important;
}

@media (max-width: 781px) {
	.pum-theme-838 .pum-container {
		max-width: 280px;
		bottom: 12px !important;
		margin-left: auto !important;
	}
}

/* Images
-------------------------------------------------------------- */
figure.wp-block-image {
	margin: 0;
	display: block;
}

figure.wp-block-image.has-custom-border picture, figure.wp-block-image.has-custom-border img {
	display: block;
}

/* Buttons
-------------------------------------------------------------- */
.wp-block-buttons {
	grid-gap: 18px;
	margin-top: 12px;
}

.wp-block-buttons .is-style-outline .wp-element-button, .wp-block-buttons .is-style-outline .wp-block-button__link {
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	padding: 12px 24px !important;
	border: 1px solid var(--wp--preset--color--white);
	border-radius: 0px;
	color: var(--wp--preset--color--white);
	background-color: transparent;
	cursor: pointer;
	font-weight: 400;
	min-width: 150px;
	font-size: 16px;
	text-decoration: none !important;
	line-height: normal;
	transition: all .3s ease;
}

.wp-block-buttons .is-style-outline .wp-element-button:hover, .wp-block-buttons .is-style-outline .wp-element-button:focus, .wp-block-buttons .is-style-outline .wp-element-button:focus-within, .wp-block-buttons .is-style-outline .wp-block-button__link:hover, .wp-block-buttons .is-style-outline .wp-block-button__link:focus, .wp-block-buttons .is-style-outline .wp-block-button__link:focus-within {
	background-color: var(--wp--preset--color--secondary);
	color: var(--wp--preset--color--white) !important;
	border: 1px solid var(--wp--preset--color--secondary);
	transition: all .3s ease;
}

@media (min-width: 1200px) {
	.wp-block-buttons .is-style-outline .wp-element-button, .wp-block-buttons .is-style-outline .wp-block-button__link {
		padding: 12px 30px !important;
		min-width: 174px;
	}
}

.wp-block-buttons .wp-element-button, .wp-block-buttons .wp-block-button__link {
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	padding: 12px 24px !important;
	border: 1px solid var(--wp--preset--color--primary);
	border-radius: 0px;
	color: var(--wp--preset--color--white);
	background-color: var(--wp--preset--color--primary);
	cursor: pointer;
	font-weight: 400;
	min-width: 150px;
	font-size: 16px;
	text-decoration: none !important;
	line-height: normal;
	transition: all .3s ease;
}

.wp-block-buttons .wp-element-button:hover, .wp-block-buttons .wp-element-button:focus, .wp-block-buttons .wp-element-button:focus-within, .wp-block-buttons .wp-block-button__link:hover, .wp-block-buttons .wp-block-button__link:focus, .wp-block-buttons .wp-block-button__link:focus-within {
	background-color: var(--wp--preset--color--secondary);
	color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--secondary);
	transition: all .3s ease;
}

@media (min-width: 1200px) {
	.wp-block-buttons .wp-element-button, .wp-block-buttons .wp-block-button__link {
		padding: 12px 30px !important;
		min-width: 174px;
	}
}

/* Special Content
-------------------------------------------------------------- */
.is-style-special-content {
	position: relative;
	overflow: hidden;
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.is-style-special-content .wp-block-image img {
	width: 100%;
}

@media (max-width: 580px) {
	.is-style-special-content .wp-block-image img {
		width: 130%;
		max-width: 130%;
	}
}

.is-style-special-content .wp-block-columns {
	margin-bottom: 0;
}

.is-style-special-content .wp-block-columns .wp-block-buttons {
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 14%;
}

@media (min-width: 782px) {
	.is-style-special-content .wp-block-columns .wp-block-buttons {
		bottom: 20%;
	}
}

@media (min-width: 992px) {
	.is-style-special-content .wp-block-columns .wp-block-buttons {
		bottom: 22%;
	}
}

@media (min-width: 1200px) {
	.is-style-special-content .wp-block-columns .wp-block-buttons {
		bottom: 24%;
	}
}

@media (min-width: 1500px) {
	.is-style-special-content .wp-block-columns .wp-block-buttons {
		left: 14%;
		bottom: 24%;
	}
}

@media (max-width: 781px) {
	.is-style-special-content .wp-block-columns .wp-block-buttons {
		display: none;
	}
}

/* Special Heading
-------------------------------------------------------------- */
.is-style-special-heading {
	position: relative;
	padding-bottom: 14px;
	margin-bottom: 22px;
}

.is-style-special-heading:after {
	content: "";
	display: block;
	position: absolute;
	background-color: var(--wp--preset--color--secondary);
	height: 1px;
	width: 185px;
	margin: auto;
	bottom: 0;
}

@media (max-width: 781px) {
	.is-style-special-heading.mobile-center {
		text-align: center;
	}
	
	.is-style-special-heading.mobile-center::after {
		left: 0;
		right: 0;
	}
}

.is-style-special-heading.has-text-align-center::after {
	left: 0;
	right: 0;
}

@media (min-width: 782px) {
	.is-style-special-heading {
		padding-bottom: 16px;
		margin-bottom: 26px;
	}
}

@media (min-width: 992px) {
	.is-style-special-heading {
		padding-bottom: 18px;
		margin-bottom: 28px;
	}
}

@media (min-width: 1200px) {
	.is-style-special-heading {
		padding-bottom: 20px;
		margin-bottom: 30px;
	}
	
	.is-style-special-heading:after {
		width: 255px;
	}
}

@media (min-width: 1500px) {
	.is-style-special-heading {
		padding-bottom: 20px;
		margin-bottom: 30px;
	}
}

.has-white-color .is-style-special-heading:after {
	background-color: var(--wp--preset--color--white);
}

/* Small Max Width
-------------------------------------------------------------- */
.is-style-small-max-width {
	max-width: 286px !important;
	margin: auto;
}

.is-style-small-max-width.news-small-max-width {
	max-width: 375px !important;
}

.is-style-small-max-width.sub-small-max-width {
	max-width: 485px !important;
}

@media (min-width: 782px) {
	.is-style-small-max-width.sub-small-max-width {
		margin: inherit;
	}
}

/* Medium Max Width
-------------------------------------------------------------- */
.is-style-medium-max-width {
	max-width: 375px !important;
	margin: auto;
}

/* Common Grid Gap
-------------------------------------------------------------- */
@media (min-width: 1500px) {
	.is-style-common-grid-gap {
		grid-gap: 80px;
	}
}

@media (min-width: 1200px) {
	.is-style-common-grid-gap {
		grid-gap: 100px;
	}
}

/* Image Content
-------------------------------------------------------------- */
@media (max-width: 781px) {
	.is-style-image-content .wp-block-columns .wp-block-column:first-child, .is-style-text-image-section .wp-block-columns .wp-block-column:first-child {
		order: 2;
	}
	
	.is-style-image-content .wp-block-columns .wp-block-column:last-child, .is-style-text-image-section .wp-block-columns .wp-block-column:last-child {
		order: 1;
	}
}

@media (max-width: 781px) {
	.is-style-image-content .wp-block-image, .is-style-text-image-section .wp-block-image {
		margin: 0 -15px;
	}
	
	.is-style-image-content .wp-block-image img, .is-style-text-image-section .wp-block-image img {
		width: 100%;
	}
}

.sub-section .wp-block-columns {
	margin: auto;
	max-width: 1100px;
}

.sub-section .wp-block-columns .wp-block-button__link.wp-element-button {
	min-width: 188px;
}

@media (min-width: 782px) {
	.sub-section .wp-block-columns .wp-block-button__link.wp-element-button {
		min-width: 232px;
	}
}

@media (max-width: 781px) {
	.sub-section .wp-block-columns {
		text-align: center;
	}
	
	.sub-section .wp-block-columns .wp-block-buttons {
		justify-content: center;
	}
}

.inner_content {
	border-bottom: 1px solid var(--wp--preset--color--secondary);
}

.contact-form-section .gform_wrapper {
	max-width: 725px;
	margin: auto;
}

@media (min-width: 782px) {
	.contact-form-section .gform_wrapper .gform_fields {
		grid-gap: 20px 40px !important;
	}
}

@media (min-width: 782px) {
	.contact-form-section .gform_wrapper .ginput_complex {
		grid-gap: 20px 30px !important;
	}
}

.contact-form-section .gform_wrapper input[type=color], .contact-form-section .gform_wrapper input[type=date], .contact-form-section .gform_wrapper input[type=datetime-local], .contact-form-section .gform_wrapper input[type=datetime], .contact-form-section .gform_wrapper input[type=email], .contact-form-section .gform_wrapper input[type=month], .contact-form-section .gform_wrapper input[type=number], .contact-form-section .gform_wrapper input[type=password], .contact-form-section .gform_wrapper input[type=search], .contact-form-section .gform_wrapper input[type=tel], .contact-form-section .gform_wrapper input[type=text], .contact-form-section .gform_wrapper input[type=time], .contact-form-section .gform_wrapper input[type=url], .contact-form-section .gform_wrapper input[type=week], .contact-form-section .gform_wrapper select, .contact-form-section .gform_wrapper textarea {
	background-color: transparent;
	color: var(--wp--preset--color--white);
	border: 0;
	border-bottom: 1px solid var(--wp--preset--color--white);
}

.contact-form-section .gform_wrapper input[type=color]::placeholder, .contact-form-section .gform_wrapper input[type=date]::placeholder, .contact-form-section .gform_wrapper input[type=datetime-local]::placeholder, .contact-form-section .gform_wrapper input[type=datetime]::placeholder, .contact-form-section .gform_wrapper input[type=email]::placeholder, .contact-form-section .gform_wrapper input[type=month]::placeholder, .contact-form-section .gform_wrapper input[type=number]::placeholder, .contact-form-section .gform_wrapper input[type=password]::placeholder, .contact-form-section .gform_wrapper input[type=search]::placeholder, .contact-form-section .gform_wrapper input[type=tel]::placeholder, .contact-form-section .gform_wrapper input[type=text]::placeholder, .contact-form-section .gform_wrapper input[type=time]::placeholder, .contact-form-section .gform_wrapper input[type=url]::placeholder, .contact-form-section .gform_wrapper input[type=week]::placeholder, .contact-form-section .gform_wrapper select::placeholder, .contact-form-section .gform_wrapper textarea::placeholder {
	color: var(--wp--preset--color--white);
}

.contact-form-section .gform_wrapper input[type=color] option, .contact-form-section .gform_wrapper input[type=date] option, .contact-form-section .gform_wrapper input[type=datetime-local] option, .contact-form-section .gform_wrapper input[type=datetime] option, .contact-form-section .gform_wrapper input[type=email] option, .contact-form-section .gform_wrapper input[type=month] option, .contact-form-section .gform_wrapper input[type=number] option, .contact-form-section .gform_wrapper input[type=password] option, .contact-form-section .gform_wrapper input[type=search] option, .contact-form-section .gform_wrapper input[type=tel] option, .contact-form-section .gform_wrapper input[type=text] option, .contact-form-section .gform_wrapper input[type=time] option, .contact-form-section .gform_wrapper input[type=url] option, .contact-form-section .gform_wrapper input[type=week] option, .contact-form-section .gform_wrapper select option, .contact-form-section .gform_wrapper textarea option {
	color: var(--wp--preset--color--secondary);
}

@media (min-width: 782px) {
	.contact-form-section .gform_wrapper input[type=color], .contact-form-section .gform_wrapper input[type=date], .contact-form-section .gform_wrapper input[type=datetime-local], .contact-form-section .gform_wrapper input[type=datetime], .contact-form-section .gform_wrapper input[type=email], .contact-form-section .gform_wrapper input[type=month], .contact-form-section .gform_wrapper input[type=number], .contact-form-section .gform_wrapper input[type=password], .contact-form-section .gform_wrapper input[type=search], .contact-form-section .gform_wrapper input[type=tel], .contact-form-section .gform_wrapper input[type=text], .contact-form-section .gform_wrapper input[type=time], .contact-form-section .gform_wrapper input[type=url], .contact-form-section .gform_wrapper input[type=week], .contact-form-section .gform_wrapper select, .contact-form-section .gform_wrapper textarea {
		font-size: 20px !important;
	}
}

.contact-form-section .gform_wrapper select {
	appearance: none;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/dropdown.png");
	background-position: 98% center;
	background-repeat: no-repeat;
	background-size: 22px;
}

.contact-form-section .gform_wrapper select.nitro-lazy {
	background-image: none !important;
}

.ginput_container_consent label {
	display: flex;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	align-items: center;
}

.ginput_container_consent input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.ginput_container_consent label:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: transparent;
	border: 1px solid #fff;
}

.ginput_container_consent input:checked ~ label:before {
	background-color: var(--wp--preset--color--primary);
}

.ginput_container_consent label:after {
	content: "";
	position: absolute;
	display: none;
}

.ginput_container_consent input:checked ~ label:after {
	display: block;
}

.ginput_container_consent label:after {
	left: 7px;
	top: 4px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media (min-width: 1500px) {
	.wp-block-columns.is-style-text-image-section {
		grid-gap: 100px;
	}
}

.is-style-location-child-section {
	grid-gap: 30px;
	margin-bottom: 30px;
}

.is-style-location-child-section .wp-block-cover {
	position: relative;
	overflow: hidden;
}

.is-style-location-child-section .wp-block-cover img {
	transform: scale(1);
	transition: all .3s ease;
}

.is-style-location-child-section .wp-block-cover:hover img {
	transform: scale(1.1);
	transition: all .3s ease;
}

.plus-more-features {
	margin: auto;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 30px;
	margin-top: 30px;
}

.plus-more-features li {
	list-style: none;
	padding: 0;
	display: flex;
	align-items: center;
	grid-gap: 30px;
	text-align: center;
}

.plus-more-features li img {
	max-width: 30px;
}

@media (min-width: 782px) {
	.plus-more-features {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 40px;
	}
}

@media (min-width: 992px) {
	.plus-more-features {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 50px;
	}
}

@media (min-width: 1200px) {
	.plus-more-features {
		grid-template-columns: repeat(3, 1fr);
		margin-top: 60px;
	}
}

.plus-more-features.gym-features {
	grid-gap: 30px;
}

.plus-more-features.gym-features li {
	flex-direction: column;
	grid-gap: 8px;
	max-width: 180px;
	margin: auto;
}

.plus-more-features.gym-features li img {
	max-width: 36px;
}

@media (min-width: 1200px) {
	.plus-more-features.gym-features {
		grid-gap: 60px 20px;
	}
}

.is-style-medium-max-column-width .wp-block-column .wp-block-columns .wp-block-column:first-child {
	flex-basis: 30px !important;
}

@media (max-width: 781px) {
	.is-style-medium-max-column-width .wp-block-column .wp-block-columns {
		grid-gap: 10px;
	}
}

@media (min-width: 782px) {
	.is-style-medium-max-column-width {
		padding: 0 6%;
		grid-gap: 80px;
	}
}

@media (min-width: 992px) {
	.is-style-medium-max-column-width {
		padding: 0 8%;
		grid-gap: 100px;
	}
}

@media (min-width: 1200px) {
	.is-style-medium-max-column-width {
		padding: 0 10%;
		grid-gap: 120px;
	}
}

@media (min-width: 782px) {
	.single-membership .is-style-medium-max-column-width {
		padding: 0 20px;
	}
}

@media (min-width: 992px) {
	.single-membership .is-style-medium-max-column-width {
		padding: 0 20px;
	}
}

@media (min-width: 1200px) {
	.single-membership .is-style-medium-max-column-width {
		padding: 0 20px;
	}
}

.is-style-slider-section {
	box-sizing: border-box;
	direction: ltr;
	display: grid;
	grid-template-columns: 50% 1fr;
	grid-template-rows: auto;
	grid-gap: 40px;
}

.is-style-slider-section .slider-images {
	grid-column: 1;
	grid-row: 1;
	margin: 0;
	align-self: center;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.is-style-slider-section .slider-images .wp-block-image {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.is-style-slider-section .slider-images .wp-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.is-style-slider-section .slider-images .slick-dots {
	bottom: 26px;
	display: flex;
	justify-content: center;
	grid-gap: 4px;
	align-items: center;
}

.is-style-slider-section .slider-images .slick-dots li button {
	border: 1px solid var(--wp--preset--color--light-theme-grey);
	width: 15px;
	height: 15px;
}

.is-style-slider-section .slider-images .slick-dots li button:before {
	font-size: 15px;
	width: 15px;
	height: 15px;
	content: "";
	opacity: 1;
	color: var(--wp--preset--color--light-theme-grey);
}

.is-style-slider-section .slider-images .slick-dots li.slick-active button {
	background-color: var(--wp--preset--color--light-theme-grey);
}

.is-style-slider-section .slider-images .slick-track {
	display: flex !important;
}

.is-style-slider-section .slider-images .slick-slide {
	height: inherit !important;
}

.is-style-slider-section .slider-content {
	direction: ltr;
	grid-column: 2;
	grid-row: 1;
	padding: 0 20% 0 0%;
	word-break: break-word;
	align-self: center;
}

@media (min-width: 1200px) {
	.is-style-slider-section {
		grid-gap: 70px;
	}
}

@media (min-width: 1500px) {
	.is-style-slider-section {
		grid-gap: 80px;
	}
}

@media (min-width: 1800px) {
	.is-style-slider-section {
		grid-gap: 90px;
	}
}

@media (max-width: 1199px) {
	.is-style-slider-section {
		padding-right: 0px !important;
		padding-left: 0px !important;
	}
	
	.is-style-slider-section .slider-images {
		padding-right: 0px !important;
		padding-left: 0px !important;
	}
}

@media (max-width: 781px) {
	.is-style-slider-section {
		display: flex;
		flex-direction: column;
	}
}

.membership-tab-content {
	color: var(--wp--preset--color--white);
}

.membership-tab-content table {
	width: 100%;
	border-collapse: collapse;
}

.membership-tab-content table .content-td td {
	padding: 8px 4px;
	text-align: center;
}

.membership-tab-content table .content-td td:nth-child(1) {
	width: 35%;
	padding-left: 20px;
	text-align: left;
}

.membership-tab-content table .content-td td:nth-child(2) {
	width: 12%;
}

.membership-tab-content table .content-td td:nth-child(3) {
	width: 12%;
}

.membership-tab-content table .content-td td:nth-child(4) {
	width: 12%;
}

.membership-tab-content table .content-td td:nth-child(5) {
	width: 12%;
}

.membership-tab-content table .heading-td td {
	padding-bottom: 12px;
	border-bottom: 1px solid var(--wp--preset--color--white);
	text-align: center;
}

.membership-tab-content table .heading-td td:nth-child(1) {
	width: 15%;
	padding-left: 20px;
	text-align: left;
}

.membership-tab-content .responsive-table {
	width: 100%;
}

@media (max-width: 781px) {
	.membership-tab-content .responsive-table {
		overflow-y: scroll;
	}
	
	.membership-tab-content .responsive-table table {
		width: 800px;
	}
	
	.membership-tab-content .responsive-table table .content-td td {
		padding: 8px 4px;
		text-align: center;
	}
	
	.membership-tab-content .responsive-table table .content-td td:nth-child(1) {
		width: 20%;
		padding-left: 20px;
		text-align: left;
	}
	
	.membership-tab-content .responsive-table table .content-td td:nth-child(2) {
		width: 6%;
	}
	
	.membership-tab-content .responsive-table table .content-td td:nth-child(3) {
		width: 6%;
	}
	
	.membership-tab-content .responsive-table table .content-td td:nth-child(4) {
		width: 6%;
	}
	
	.membership-tab-content .responsive-table table .heading-td td {
		padding-bottom: 12px;
		border-bottom: 1px solid var(--wp--preset--color--white);
		text-align: center;
	}
	
	.membership-tab-content .responsive-table table .heading-td td:nth-child(1) {
		width: 20%;
		padding-left: 20px;
		text-align: left;
	}
}

.membership-tab-content .accordions {
	display: none;
}

@media (max-width: 781px) {
	.membership-tab-content .responsive-table {
		display: none;
	}
	
	.membership-tab-content .accordions {
		display: block;
	}
	
	.membership-tab-content .accordions .lightweight-accordion .lightweight-accordion-title {
		color: #fff !important;
	}
	
	.membership-tab-content .accordions .lightweight-accordion .lightweight-accordion-title::after {
		background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/white-accordion-arrow.svg");
	}
	
	.membership-tab-content .accordions .lightweight-accordion .lightweight-accordion-title::before {
		background-color: #fff;
	}
	
	.membership-tab-content .accordions .lightweight-accordion .lightweight-accordion-body ul li {
		font-size: 16px;
	}
}

.popup-form-section .gform_wrapper {
	max-width: 725px;
	margin: auto;
}

.popup-form-section .gform_wrapper h2 {
	font-size: 52px;
	margin-bottom: 30px;
	text-align: center;
}

.popup-form-section .gform_wrapper p {
	font-weight: 500;
	text-align: center;
}

@media (min-width: 782px) {
	.popup-form-section .gform_wrapper .gform_fields {
		grid-gap: 20px 40px !important;
	}
}

@media (min-width: 782px) {
	.popup-form-section .gform_wrapper .ginput_complex {
		grid-gap: 20px 30px !important;
	}
}

.popup-form-section .gform_wrapper input[type=color], .popup-form-section .gform_wrapper input[type=date], .popup-form-section .gform_wrapper input[type=datetime-local], .popup-form-section .gform_wrapper input[type=datetime], .popup-form-section .gform_wrapper input[type=email], .popup-form-section .gform_wrapper input[type=month], .popup-form-section .gform_wrapper input[type=number], .popup-form-section .gform_wrapper input[type=password], .popup-form-section .gform_wrapper input[type=search], .popup-form-section .gform_wrapper input[type=tel], .popup-form-section .gform_wrapper input[type=text], .popup-form-section .gform_wrapper input[type=time], .popup-form-section .gform_wrapper input[type=url], .popup-form-section .gform_wrapper input[type=week], .popup-form-section .gform_wrapper select, .popup-form-section .gform_wrapper textarea {
	background-color: transparent;
	color: var(--wp--preset--color--secondary);
	border: 0;
	border-bottom: 1px solid var(--wp--preset--color--secondary);
}

.popup-form-section .gform_wrapper input[type=color]::placeholder, .popup-form-section .gform_wrapper input[type=date]::placeholder, .popup-form-section .gform_wrapper input[type=datetime-local]::placeholder, .popup-form-section .gform_wrapper input[type=datetime]::placeholder, .popup-form-section .gform_wrapper input[type=email]::placeholder, .popup-form-section .gform_wrapper input[type=month]::placeholder, .popup-form-section .gform_wrapper input[type=number]::placeholder, .popup-form-section .gform_wrapper input[type=password]::placeholder, .popup-form-section .gform_wrapper input[type=search]::placeholder, .popup-form-section .gform_wrapper input[type=tel]::placeholder, .popup-form-section .gform_wrapper input[type=text]::placeholder, .popup-form-section .gform_wrapper input[type=time]::placeholder, .popup-form-section .gform_wrapper input[type=url]::placeholder, .popup-form-section .gform_wrapper input[type=week]::placeholder, .popup-form-section .gform_wrapper select::placeholder, .popup-form-section .gform_wrapper textarea::placeholder {
	color: var(--wp--preset--color--secondary);
}

.popup-form-section .gform_wrapper input[type=color] option, .popup-form-section .gform_wrapper input[type=date] option, .popup-form-section .gform_wrapper input[type=datetime-local] option, .popup-form-section .gform_wrapper input[type=datetime] option, .popup-form-section .gform_wrapper input[type=email] option, .popup-form-section .gform_wrapper input[type=month] option, .popup-form-section .gform_wrapper input[type=number] option, .popup-form-section .gform_wrapper input[type=password] option, .popup-form-section .gform_wrapper input[type=search] option, .popup-form-section .gform_wrapper input[type=tel] option, .popup-form-section .gform_wrapper input[type=text] option, .popup-form-section .gform_wrapper input[type=time] option, .popup-form-section .gform_wrapper input[type=url] option, .popup-form-section .gform_wrapper input[type=week] option, .popup-form-section .gform_wrapper select option, .popup-form-section .gform_wrapper textarea option {
	color: var(--wp--preset--color--secondary);
}

@media (min-width: 782px) {
	.popup-form-section .gform_wrapper input[type=color], .popup-form-section .gform_wrapper input[type=date], .popup-form-section .gform_wrapper input[type=datetime-local], .popup-form-section .gform_wrapper input[type=datetime], .popup-form-section .gform_wrapper input[type=email], .popup-form-section .gform_wrapper input[type=month], .popup-form-section .gform_wrapper input[type=number], .popup-form-section .gform_wrapper input[type=password], .popup-form-section .gform_wrapper input[type=search], .popup-form-section .gform_wrapper input[type=tel], .popup-form-section .gform_wrapper input[type=text], .popup-form-section .gform_wrapper input[type=time], .popup-form-section .gform_wrapper input[type=url], .popup-form-section .gform_wrapper input[type=week], .popup-form-section .gform_wrapper select, .popup-form-section .gform_wrapper textarea {
		font-size: 20px !important;
	}
}

.popup-form-section .gform_wrapper select {
	appearance: none;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/dropdown.png");
	background-position: 98% center;
	background-repeat: no-repeat;
	background-size: 22px;
}

.popup-form-section .gform_wrapper select.nitro-lazy {
	background-image: none !important;
}

.popup-form-section .ginput_container_consent label {
	display: flex;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	align-items: center;
}

.popup-form-section .ginput_container_consent input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.popup-form-section .ginput_container_consent label:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: transparent;
	border: 1px solid var(--wp--preset--color--secondary);
}

.popup-form-section .ginput_container_consent input:checked ~ label:before {
	background-color: var(--wp--preset--color--primary);
	border: 1px solid var(--wp--preset--color--primary);
}

.popup-form-section .ginput_container_consent label:after {
	content: "";
	position: absolute;
	display: none;
}

.popup-form-section .ginput_container_consent input:checked ~ label:after {
	display: block;
}

.popup-form-section .ginput_container_consent label:after {
	left: 7px;
	top: 4px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.popup-form-section .gform_button {
	border: 1px solid var(--wp--preset--color--secondary);
	color: var(--wp--preset--color--secondary);
}

.popup-form-section .gform_button:hover, .popup-form-section .gform_button:focus, .popup-form-section .gform_button:focus-within {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--primary);
}

.pum-theme-lightbox .pum-content + .pum-close {
	right: 0px !important;
	top: 8px !important;
}

.pum-theme-lightbox .pum-container {
	margin-bottom: 0px;
	width: 100% !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%);
}

@media (min-width: 1200px) {
	.pum-theme-lightbox .pum-container {
		padding: 58px !important;
		width: 790px !important;
	}
}

.fancybox__container .fancybox__content {
	padding: 0px;
	height: 100% !important;
}

.magazine-section .wp-block-column a img {
	transition: all .3s ease;
}

.magazine-section .wp-block-column a:hover img {
	opacity: .8;
	transition: all .3s ease;
}

@media (min-width: 1200px) {
	.navigation-links {
		margin-top: 90px;
	}
}

/*.page-template-landing-page .site-header .header-middle .wp-block-site-logo {max-width: 186px;}*/
.page-template-landing-page .contact-form-section .gform_wrapper input[type=color], .page-template-landing-page .contact-form-section .gform_wrapper input[type=date], .page-template-landing-page .contact-form-section .gform_wrapper input[type=datetime-local], .page-template-landing-page .contact-form-section .gform_wrapper input[type=datetime], .page-template-landing-page .contact-form-section .gform_wrapper input[type=email], .page-template-landing-page .contact-form-section .gform_wrapper input[type=month], .page-template-landing-page .contact-form-section .gform_wrapper input[type=number], .page-template-landing-page .contact-form-section .gform_wrapper input[type=password], .page-template-landing-page .contact-form-section .gform_wrapper input[type=search], .page-template-landing-page .contact-form-section .gform_wrapper input[type=tel], .page-template-landing-page .contact-form-section .gform_wrapper input[type=text], .page-template-landing-page .contact-form-section .gform_wrapper input[type=time], .page-template-landing-page .contact-form-section .gform_wrapper input[type=url], .page-template-landing-page .contact-form-section .gform_wrapper input[type=week], .page-template-landing-page .contact-form-section .gform_wrapper select, .page-template-landing-page .contact-form-section .gform_wrapper textarea {
	background-color: transparent;
	color: var(--wp--preset--color--secondary);
	border: 0;
	border-bottom: 1px solid var(--wp--preset--color--secondary);
}

.gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
	line-height: normal;
}

.top-bar {
	background: linear-gradient(to right, #1c2b39 0%, #e40571 33%, #00aae7 75%, #1c2b39 100%);
	padding: 0 !important;
	margin: 0;
	height: 5px;
}

.tour-location {
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	padding: 12px 18px !important;
	font-weight: 400;
	font-size: 20px !important;
	line-height: 1.4;
	background-color: transparent;
	color: var(--wp--preset--color--white);
	border: 0;
	border-bottom: 1px solid var(--wp--preset--color--white);
	appearance: none;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/dropdown.png");
	background-position: 98% center;
	background-repeat: no-repeat;
	background-size: 22px;
	width: 100%;
	margin: auto !important;
	max-width: 100% !important;
}

.tour-location.nitro-lazy {
	background-image: none !important;
}

.tour-location option {
	color: var(--wp--preset--color--secondary);
}

.tour-location-section {
	width: 100% !important;
	margin: auto !important;
	max-width: 320px !important;
}

.timetable-section.tour-timetable-section .timetable-tabs-container {
	margin-bottom: 20px;
}

.tour-booking-buttons {
	display: flex;
	grid-gap: 20px;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex-wrap: wrap;
	margin-top: 20px;
}

.tour-booking-buttons button {
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	padding: 12px 24px !important;
	border: 1px solid var(--wp--preset--color--white);
	border-radius: 0px;
	color: var(--wp--preset--color--white);
	background-color: transparent;
	cursor: pointer;
	font-weight: 400;
	min-width: 150px;
	font-size: 16px;
	text-decoration: none !important;
	line-height: normal;
	transition: all .3s ease;
	margin-top: 0px;
	border-radius: 8px;
}

.tour-booking-buttons button:hover, .tour-booking-buttons button:focus, .tour-booking-buttons button:focus-within {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--primary);
	transition: all .3s ease;
}

.tour-booking-buttons .activebt, .tour-booking-buttons .activebt:hover, .tour-booking-buttons .activebt:focus, .tour-booking-buttons .activebt:focus-within {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--primary);
	transition: all .3s ease;
}

#field_9_8 {
	margin-top: 20px;
}

#field_10_8 {
	margin-top: 20px;
}

.page-id-1581 .contact-form-section .gform_wrapper {
	max-width: 100%;
	margin: auto;
}

.gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full), .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
	padding-right: 0;
}

.time_loading {
	position: relative;
}

.time_loading:before {
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/ajax-loader.gif");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px;
	display: block;
	position: absolute;
	top: 20%;
	z-index: 9;
	min-height: 78px;
}

#gform_wrapper_9 {
	display: none;
}

#popmake-1768 .wp-block-buttons {
	justify-content: center;
	width: 100%;
}

#popmake-1768 .wp-block-button {
	display: block;
	width: 100%;
}

#popmake-1768 .wp-block-buttons .wp-element-button, #popmake-1768 .wp-block-buttons .wp-block-button__link {
	display: block;
	width: 100%;
	border: 1px solid var(--wp--preset--color--white);
}

@media (min-width: 1200px) {
	.pum-theme-lightbox #popmake-1747.pum-container {
		padding: 58px !important;
		width: 1084px !important;
	}
	
	.pum-theme-lightbox #popmake-1747.pum-container .wp-block-buttons .wp-element-button, .pum-theme-lightbox #popmake-1747.pum-container .wp-block-buttons .wp-block-button__link {
		min-width: 310px;
	}
}

@media (min-width: 1200px) {
	.tour-location {
		font-size: 20px !important;
	}
}

@media (max-width: 1199px) {
	.page-template-landing-page .site-header .header-middle .wp-block-group {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
}

@media (max-width: 991px) {
	.tour-booking-buttons {
		grid-gap: 12px;
	}
	
	.timetable-section.tour-timetable-section .timetable-tabs-container nav ul li {
		text-align: left;
		font-weight: 400;
	}
	
	.timetable-section.tour-timetable-section .timetable-tabs-container nav ul li.active {
		background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/dropdown.png");
		background-position: 98% center;
		background-repeat: no-repeat;
		background-size: 22px;
	}
	
	.timetable-section.tour-timetable-section .timetable-tabs-container nav ul li.active.nitro-lazy {
		background-image: none !important;
	}
	
	.timetable-section.tour-timetable-section .timetable-tabs-container nav {
		width: 100% !important;
		margin: auto !important;
		max-width: 300px !important;
	}
	
	.timetable-section.tour-timetable-section .timetable-tabs-container nav ul li.active:after {
		height: 1px;
	}
	
	.timetable-section.tour-timetable-section .timetable-tabs-container nav ul li:hover:after {
		height: 1px;
	}
	
	.tour-location {
		padding: 12px 32px 12px 8px !important;
	}
}

@media (max-width: 325px) {
	.timetable-section.tour-timetable-section .timetable-tabs-container nav {
		width: 100% !important;
		margin: auto !important;
		max-width: 240px !important;
	}
}

.is-style-billing-column {
	margin-bottom: 12px;
	grid-gap: 20px;
}

.is-style-billing-column .wp-block-column {
	padding: 24px 18px;
}

.is-style-billing-column .wp-block-column ul {
	padding-left: 22px;
}

@media (min-width: 1200px) {
	.is-style-billing-column {
		width: 800px;
		grid-gap: 76px;
	}
	
	.is-style-billing-column .wp-block-column {
		padding: 30px 18px;
	}
}

.is-style-hide-section {
	display: none !important;
}

.mobile-only {
	display: none !important;
}

.is-style-mobile-only {
	display: none !important;
}

@media (max-width: 991px) {
	.is-style-desktop-only {
		display: none !important;
	}
	
	.is-style-mobile-only {
		display: flex !important;
	}
	
	.mobile-only {
		display: block !important;
	}
}

.is-style-special-offer {
	min-height: 284px;
}

.is-style-special-offer .wp-block-cover__inner-container {
	max-width: var(--wp--style--global--content-size);
	margin-left: auto !important;
	margin-right: auto !important;
}

.is-style-special-offer .wp-block-image {
	max-width: 220px;
	margin: 0 !important;
	margin-bottom: 10px !important;
}

@media (min-width: 782px) {
	.is-style-special-offer .wp-block-image {
		max-width: 400px;
		margin-bottom: 24px !important;
	}
}

@media (min-width: 992px) {
	.is-style-special-offer .wp-block-image {
		max-width: 500px;
		margin-bottom: 26px !important;
	}
}

@media (min-width: 1200px) {
	.is-style-special-offer .wp-block-image {
		max-width: 600px;
		margin-bottom: 30px !important;
	}
}

@media (min-width: 782px) {
	.is-style-special-offer {
		min-height: 440px;
	}
}

@media (min-width: 992px) {
	.is-style-special-offer {
		min-height: 540px;
	}
}

@media (min-width: 1200px) {
	.is-style-special-offer {
		min-height: 640px;
	}
}

@media (min-width: 1500px) {
	.is-style-special-offer {
		min-height: 740px;
	}
}

.is-style-text-image-section:not(.new-about-section-image) .wp-block-image img {
	aspect-ratio: 6/5 !important;
	object-fit: cover !important;
	height: auto !important;
	max-width: 100% !important;
}

.search-results-content h3 span {
	display: block;
	margin-bottom: 8px;
	color: var(--wp--preset--color--secondary);
	font-size: 18px;
}

@media (max-width: 781px) {
	.program-section .is-style-medium-max-column-width .wp-block-column .wp-block-columns {
		margin-bottom: 24px !important;
	}
	
	.program-section figure.wp-block-image.size-full {
		max-width: 34px;
	}
}

.page-id-1592 .contact-form-section .gform_wrapper {
	max-width: var(--wp--style--global--content-size);
}

@media (max-width: 781px) {
	.postid-51 h3.is-style-special-heading br {
		display: block;
	}
	
	.page-id-31 .wp-block-buttons {
		justify-content: center;
	}
}

.personal-trainer h3.wp-block-heading {
	margin-bottom: 8px;
}

.personal-trainer h4.wp-block-heading {
	margin-bottom: 8px;
}

.personal-trainer h5.wp-block-heading {
	margin-bottom: 8px;
}

.personal-trainer h6.wp-block-heading {
	margin-bottom: 8px;
}

.personal-trainer ul {
	padding-left: 30px;
}

.personal-trainer ul li {
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 4px;
}

#pum-3419 {
	display: none !important;
}

@media (max-width: 1199px) {
	#popmake-3419 .pum-close {
		display: none !important;
	}
	
	#pum-3419 {
		display: block !important;
	}
}

.credit_conc span {
	color: #f47920;
}

.credit_conc_center {
	text-align: right;
}

a.credit_conc {
	text-decoration: none;
}

.footer-credit-conc {
	margin: 0;
	justify-content: end;
	display: none;
}

a.credit_conc:hover {
	color: #b6005f;
}

.personal-trainer .wp-block-image img {
	width: 100%;
}

.wp-block-buttons .wp-element-button, .wp-block-buttons .wp-block-button__link {
	text-align: center;
}

@media (max-width: 992px) {
	.footer-credit-conc {
		justify-content: center;
	}
}

@media (max-width: 1199px) {
	.nav-overlay-layout {
		grid-gap: 15px;
	}
}

.fancybox__container {
	z-index: 99999 !important;
}

.page-id-239 .inner_content {
	padding-bottom: 30px;
}

@media (max-width: 495px) {
	.video-banner .mejs__mediaelement {
		position: relative;
	}
	
	.custom-inner-banner.video-banner .custom-inner-banner-content {
		height: 490px !important;
		min-height: 490px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	.video-sec::after {
		content: none !important;
	}
	
	#videobanner {
		display: block;
		height: 490px !important;
		position: relative;
		width: 100%;
		z-index: 9;
		object-fit: cover;
	}
	
	#videobanner #videobanner_html5 {
		position: absolute;
		width: 160% !important;
		height: 160% !important;
		object-fit: cover !important;
		top: 32%;
		left: 50%;
		display: block;
		transform: translate(-50%, -32%);
	}
}

#class_timetables.time_loading {
	margin-bottom: 30px;
}

.footer-credit-conc {
	display: none;
}

/* @media(min-width: 992px){
.credit_conc_center {padding-right: 5%;}
}

@media(min-width: 1200px){
.credit_conc_center {padding-right: 3%;}
}

@media(min-width: 1500px){
.credit_conc_center {padding-right: 1%;}
}

@media(max-width: 991px){
.credit_conc_center {text-align: center;}
}

@media(max-width: 781px){
.credit_conc_center {text-align: left;padding: 10px 72px 0 15px;}
} */
@media (min-width: 1200px) {
	.location-header-overlay #navbar {
		display: none;
	}
	
	.location-header-overlay .navigation-links #navbar {
		display: block;
	}
}

/* (location/ryde/ry-club-video) override the position of the video to look more centred on the page in tablet devices and larger */
@media (min-width: 768px) {
	.ng-centre-yt-video {
		position: relative;
		left: 45px;
	}
}

@media (max-width: 1199px) {
	.location-header-overlay .navigation-links #navbar {
		display: none;
	}
}

.custom-inner-banner {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	color: var(--wp--preset--color--white);
	background-color: var(--wp--preset--color--secondary);
}

.custom-inner-banner .custom-inner-banner-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 582px;
	padding-top: 88px;
	padding-bottom: 40px;
}

.custom-inner-banner .custom-inner-banner-content h1 {
	line-height: normal;
	margin-bottom: 20px;
	color: var(--wp--preset--color--white);
}

.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main {
	margin-bottom: 18px;
	color: var(--wp--preset--color--white);
	padding: 0 22px;
}

.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main p {
	padding-bottom: 10px;
	color: var(--wp--preset--color--white);
	max-width: 582px;
	margin: auto;
}

.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons {
	display: flex;
	grid-gap: 20px;
	justify-content: center;
	align-items: center;
}

.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a {
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	padding: 12px 24px !important;
	border: 1px solid var(--wp--preset--color--white);
	border-radius: 0px;
	color: var(--wp--preset--color--white);
	background-color: transparent;
	cursor: pointer;
	font-weight: 400;
	min-width: 150px;
	font-size: 16px;
	text-decoration: none !important;
	line-height: normal;
	transition: all .3s ease;
}

.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:hover, .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:focus, .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:focus-within {
	background-color: var(--wp--preset--color--secondary);
	color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--secondary);
	transition: all .3s ease;
}

@media (min-width: 1200px) {
	.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a {
		padding: 12px 30px !important;
		min-width: 174px;
	}
}

.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:first-child {
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	padding: 13px 24px !important;
	border: 1px solid var(--wp--preset--color--primary);
	border-radius: 0px;
	color: var(--wp--preset--color--white);
	background-color: var(--wp--preset--color--primary);
	cursor: pointer;
	font-weight: 400;
	min-width: 150px;
	font-size: 16px;
	text-decoration: none !important;
	line-height: normal;
	transition: all .3s ease;
}

.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:first-child:hover, .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:first-child:focus, .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:first-child:focus-within {
	background-color: var(--wp--preset--color--secondary);
	color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--secondary);
	transition: all .3s ease;
}

@media (min-width: 1200px) {
	.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:first-child {
		padding: 13px 30px !important;
		min-width: 174px;
	}
}

@media (max-width: 440px) {
	.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons {
		flex-direction: column;
	}
	
	.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a {
		display: block;
		width: 100%;
	}
}

@media (min-width: 782px) {
	.custom-inner-banner .custom-inner-banner-content {
		min-height: 482px;
	}
	
	.custom-inner-banner .custom-inner-banner-content h1 {
		margin-bottom: 28px;
	}
	
	.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main {
		margin-bottom: 22px;
	}
	
	.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main p {
		padding-bottom: 14px;
	}
}

@media (min-width: 992px) {
	.custom-inner-banner .custom-inner-banner-content {
		min-height: 582px;
	}
	
	.custom-inner-banner .custom-inner-banner-content h1 {
		margin-bottom: 30px;
	}
	
	.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main {
		margin-bottom: 24px;
	}
	
	.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main p {
		padding-bottom: 16px;
	}
}

@media (min-width: 1200px) {
	.custom-inner-banner .custom-inner-banner-content {
		min-height: 782px;
	}
	
	.custom-inner-banner .custom-inner-banner-content h1 {
		margin-bottom: 35px;
	}
	
	.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main {
		margin-bottom: 26px;
	}
	
	.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main p {
		padding-bottom: 18px;
	}
}

@media (min-width: 1500px) {
	.custom-inner-banner .custom-inner-banner-content {
		min-height: 800px;
	}
	
	.custom-inner-banner .custom-inner-banner-content h1 {
		margin-bottom: 30px;
	}
	
	.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main {
		margin-bottom: 22px;
	}
	
	.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main p {
		padding-bottom: 16px;
	}
}

.custom-inner-banner .custom-inner-banner-content.h1-style-update h1 {
	line-height: normal;
	margin-bottom: 20px;
	color: var(--wp--preset--color--white);
	font-size: var(--wp--preset--font-size--large);
}

.custom-inner-banner .custom-inner-banner-content.h1-style-update h2 {
	line-height: normal;
	margin-bottom: 20px;
	color: var(--wp--preset--color--white);
}

@media (min-width: 782px) {
	.custom-inner-banner .custom-inner-banner-content.h1-style-update h2 {
		margin-bottom: 28px;
	}
}

@media (min-width: 992px) {
	.custom-inner-banner .custom-inner-banner-content.h1-style-update h2 {
		margin-bottom: 30px;
	}
}

@media (min-width: 1200px) {
	.custom-inner-banner .custom-inner-banner-content.h1-style-update h2 {
		margin-bottom: 35px;
	}
}

@media (min-width: 1500px) {
	.custom-inner-banner .custom-inner-banner-content.h1-style-update h2 {
		margin-bottom: 30px;
	}
}

.single-post .custom-inner-banner .custom-inner-banner-content {
	justify-content: flex-end;
	align-items: flex-start;
	min-height: 300px;
	padding-top: 74px;
	max-width: var(--wp--style--global--content-size);
	margin-left: auto !important;
	margin-right: auto !important;
}

.single-post .custom-inner-banner .custom-inner-banner-content h1 {
	display: block;
}

@media (min-width: 782px) {
	.single-post .custom-inner-banner .custom-inner-banner-content {
		min-height: 400px;
	}
}

@media (min-width: 992px) {
	.single-post .custom-inner-banner .custom-inner-banner-content {
		min-height: 500px;
	}
}

@media (min-width: 1200px) {
	.single-post .custom-inner-banner .custom-inner-banner-content {
		min-height: 700px;
	}
}

@media (min-width: 1500px) {
	.single-post .custom-inner-banner .custom-inner-banner-content {
		min-height: 736px;
	}
}

@media (max-width: 1199px) {
	.single-post .custom-inner-banner .custom-inner-banner-content {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.single-team .custom-inner-banner .custom-inner-banner-content {
	justify-content: flex-end;
	align-items: flex-start;
	min-height: 300px;
	padding-top: 74px;
	max-width: var(--wp--style--global--content-size);
	margin-left: auto !important;
	margin-right: auto !important;
}

.single-team .custom-inner-banner .custom-inner-banner-content h1 {
	display: block;
}

@media (min-width: 782px) {
	.single-team .custom-inner-banner .custom-inner-banner-content {
		min-height: 400px;
	}
}

@media (min-width: 992px) {
	.single-team .custom-inner-banner .custom-inner-banner-content {
		min-height: 500px;
	}
}

@media (min-width: 1200px) {
	.single-team .custom-inner-banner .custom-inner-banner-content {
		min-height: 700px;
	}
}

@media (min-width: 1500px) {
	.single-team .custom-inner-banner .custom-inner-banner-content {
		min-height: 736px;
	}
}

@media (max-width: 1199px) {
	.single-team .custom-inner-banner .custom-inner-banner-content {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* Location Block
-------------------------------------------------------------- */
.location-grid {
	position: relative;
}

.location-grid a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.location-grid a:hover .location-grid-item-image img {
	transition: all .3s ease;
	transform: scale(1.1);
}

.location-grid a:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .2);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
}

.location-grid .location-grid-item {
	position: relative;
}

.location-grid .location-grid-item .location-grid-item-image {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	z-index: -1;
}

.location-grid .location-grid-item .location-grid-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease;
	transform: scale(1);
}

.location-grid .location-grid-item .location-grid-item-content {
	position: absolute;
	z-index: 9;
	width: 100%;
	padding: 0 15px;
}

.location-grid .location-grid-item .location-grid-item-content h3 {
	color: var(--wp--preset--color--white);
}

.location-grid .slick-dots li button:before {
	color: #243444;
}

.location-grid .slick-dots li.slick-active button:before {
	opacity: 1;
	color: #243444;
}

@media (min-width: 782px) {
	.location-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		margin: auto;
		grid-gap: 0px;
	}
	
	.location-grid .location-grid-item-content {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
	}
}

@media (min-width: 992px) {
	.location-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1200px) {
	.location-grid .location-grid-item {
		width: 100%;
		min-height: 450px;
	}
}

@media (max-width: 781px) {
	.location-grid {
		padding-left: 15px;
	}
	
	.location-grid .location-grid-item-content {
		bottom: 20px;
		left: 6px;
		text-align: left;
	}
	
	.location-grid .location-grid-item-content h3 {
		font-size: 26px;
	}
}

@media (max-width: 360px) {
	.location-grid {
		padding-left: 20px;
	}
	
	.location-grid .location-grid-item-content h3 {
		font-size: 22px;
	}
}

.page-id-309 .testimonial-section .testimonials .slick-next {
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/dark-right-slide.png");
}

.page-id-309 .testimonial-section .testimonials .slick-next.nitro-lazy {
	background-image: none !important;
}

.page-id-309 .testimonial-section .testimonials .slick-prev {
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/dark-left-slide.png");
}

.page-id-309 .testimonial-section .testimonials .slick-prev.nitro-lazy {
	background-image: none !important;
}

.has-light-theme-grey-background-color .testimonial-section .testimonials .slick-next {
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/dark-right-slide.png");
}

.has-light-theme-grey-background-color .testimonial-section .testimonials .slick-next.nitro-lazy {
	background-image: none !important;
}

.has-light-theme-grey-background-color .testimonial-section .testimonials .slick-prev {
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/dark-left-slide.png");
}

.has-light-theme-grey-background-color .testimonial-section .testimonials .slick-prev.nitro-lazy {
	background-image: none !important;
}

.testimonial-section {
	max-width: 870px;
	margin: auto !important;
}

.testimonial-section .testimonials .slick-next {
	top: 48%;
	width: 46px;
	height: 30px;
	right: 40px;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/right-slide.png");
	background-position: center;
	background-repeat: no-repeat;
	transform: translateY(-48%);
	background-size: contain;
}

.testimonial-section .testimonials .slick-next.nitro-lazy {
	background-image: none !important;
}

@media (max-width: 991px) {
	.testimonial-section .testimonials .slick-next {
		top: auto;
		width: 18px;
		height: 18px;
		bottom: 0;
		right: 30%;
	}
}

@media (max-width: 781px) {
	.testimonial-section .testimonials .slick-next {
		right: 20%;
	}
}

@media (max-width: 580px) {
	.testimonial-section .testimonials .slick-next {
		right: 10%;
	}
}

.testimonial-section .testimonials .slick-prev {
	top: 48%;
	width: 46px;
	height: 30px;
	left: 0px;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/left-slide.png");
	background-position: center;
	background-repeat: no-repeat;
	transform: translateY(-48%);
	background-size: contain;
}

.testimonial-section .testimonials .slick-prev.nitro-lazy {
	background-image: none !important;
}

@media (max-width: 991px) {
	.testimonial-section .testimonials .slick-prev {
		top: auto;
		width: 18px;
		height: 18px;
		bottom: 0;
		left: 30%;
	}
}

@media (max-width: 781px) {
	.testimonial-section .testimonials .slick-prev {
		left: 20%;
	}
}

@media (max-width: 580px) {
	.testimonial-section .testimonials .slick-prev {
		left: 10%;
	}
}

.testimonial-section .testimonial-item-content {
	text-align: center;
	max-width: 580px;
	margin: auto !important;
}

.testimonial-section .testimonial-item-content img {
	margin: auto;
	margin-top: 20px;
	max-width: 78px;
}

@media (min-width: 782px) {
	.testimonial-section .testimonial-item-content img {
		margin-top: 22px;
	}
}

@media (min-width: 992px) {
	.testimonial-section .testimonial-item-content img {
		margin-top: 26px;
	}
}

@media (min-width: 1200px) {
	.testimonial-section .testimonial-item-content img {
		margin-top: 28px;
	}
}

/* News Block
-------------------------------------------------------------- */
.news-section .wp-block-buttons {
	margin-top: 20px;
	justify-content: center;
}

@media (min-width: 1200px) {
	.news-section .wp-block-buttons {
		margin-top: 68px;
	}
}

@media (min-width: 1500px) {
	.news-section .wp-block-buttons {
		margin-top: 88px;
	}
}

.news-section .news-grid {
	position: relative;
}

.news-section .news-grid a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}

.news-section .news-grid a:hover h3 {
	color: var(--wp--preset--color--primary);
}

.news-section .news-grid .date-content {
	padding-bottom: 8px;
}

.news-section .news-grid h3 {
	margin-bottom: 10px;
}

.news-section .news-grid .news-grid-item {
	position: relative;
}

.news-section .news-grid .news-grid-item .news-grid-item-image {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 18px;
}

.news-section .news-grid .news-grid-item .news-grid-item-image img {
	width: 100%;
}

@media (max-width: 781px) {
	.news-section .news-grid .news-grid-item {
		margin-bottom: 30px;
		overflow: hidden;
	}
	
	.news-section .news-grid .news-grid-item .news-grid-item-content {
		position: absolute;
		bottom: 4px;
		padding: 0px 10px 14px;
		z-index: 99;
		color: var(--wp--preset--color--white);
	}
	
	.news-section .news-grid .news-grid-item .news-grid-item-image {
		margin-bottom: 0px;
		min-height: 254px;
		position: relative;
		height: 254px;
	}
	
	.news-section .news-grid .news-grid-item .news-grid-item-image:before {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, .25);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 8;
	}
	
	.news-section .news-grid .news-grid-item .news-grid-item-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

@media (min-width: 782px) {
	.news-section .news-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		margin: auto;
		grid-gap: 20px;
	}
}

@media (min-width: 992px) {
	.news-section .news-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 30px;
	}
}

@media (min-width: 1200px) {
	.news-section .news-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 30px;
	}
}

@media (min-width: 1500px) {
	.news-section .news-grid {
		grid-gap: 40px;
	}
}

@media (max-width: 781px) {
	.news-section .news-grid .news-grid-item-content h3 {
		font-size: 26px;
	}
}

@media (max-width: 360px) {
	.news-section .news-grid .news-grid-item-content h3 {
		font-size: 22px;
	}
}

@media (max-width: 781px) {
	.home .news-section {
		padding-bottom: var(--wp--preset--spacing--10) !important;
	}
}

.news-grid-item.class-grid-item {
	position: relative;
	display: flex;
	grid-gap: 30px;
}

.news-grid-item.class-grid-item .news-grid-item-image {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 0px !important;
	text-align: center;
	flex-basis: 15%;
	height: auto !important;
	min-height: auto !important;
}

.news-grid-item.class-grid-item .news-grid-item-image:before {
	content: none !important;
}

.news-grid-item.class-grid-item .news-grid-item-image img {
	width: auto !important;
	height: auto !important;
	max-width: 34px;
}

.news-grid-item.class-grid-item .news-grid-item-content {
	flex-basis: 85%;
	position: relative !important;
	bottom: auto !important;
	padding: 0px !important;
	color: var(--wp--preset--color--secondary) !important;
}

.news-grid-item.class-grid-item .news-grid-item-content h3 {
	font-size: 18px;
	margin-bottom: 12px;
}

@media (min-width: 1200px) {
	.news-grid-item.class-grid-item .news-grid-item-content h3 {
		font-size: 20px;
	}
}

@media (max-width: 781px) {
	.news-grid-item.class-grid-item {
		margin-bottom: 30px;
	}
	
	.news-grid-item.class-grid-item .news-grid-item-content h3 {
		margin-bottom: 8px;
	}
}

@media (min-width: 1200px) {
	.contact-inner-banner .custom-inner-banner-content h1 {
		margin-bottom: 66px;
		margin-top: 30px;
	}
}

@media (min-width: 1500px) {
	.contact-inner-banner .custom-inner-banner-content h1 {
		margin-bottom: 96px;
		margin-top: 30px;
	}
}

.contact-inner-banner .contact-banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.contact-inner-banner .contact-banner-content .custom-inner-banner-content-main {
	margin: 0;
	background-color: var(--wp--preset--color--light-theme-grey);
	width: 100%;
	height: 100%;
	max-width: 378px;
	text-align: left;
	color: var(--wp--preset--color--secondary);
	padding: 30px;
}

.contact-inner-banner .contact-banner-content .custom-inner-banner-content-main h3 {
	margin-bottom: 16px;
}

.contact-inner-banner .contact-banner-content .custom-inner-banner-content-main p {
	color: var(--wp--preset--color--secondary);
}

.contact-inner-banner .contact-banner-content .custom-inner-banner-content-main p:last-child {
	padding-bottom: 0px;
}

.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons {
	flex-direction: column;
}

.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a {
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	padding: 12px 24px !important;
	border: 1px solid var(--wp--preset--color--white);
	border-radius: 0px;
	color: var(--wp--preset--color--white);
	background-color: transparent;
	cursor: pointer;
	font-weight: 400;
	min-width: 150px;
	font-size: 16px;
	text-decoration: none !important;
	line-height: normal;
	transition: all .3s ease;
}

.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:hover, .contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:focus, .contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:focus-within {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--primary);
	transition: all .3s ease;
}

@media (min-width: 1200px) {
	.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a {
		padding: 12px 30px !important;
		min-width: 174px;
	}
}

.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:first-child {
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
	padding: 13px 24px !important;
	border: 1px solid var(--wp--preset--color--primary);
	border-radius: 0px;
	color: var(--wp--preset--color--white);
	background-color: var(--wp--preset--color--primary);
	cursor: pointer;
	font-weight: 400;
	min-width: 150px;
	font-size: 16px;
	text-decoration: none !important;
	line-height: normal;
	transition: all .3s ease;
}

.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:first-child:hover, .contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:first-child:focus, .contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:first-child:focus-within {
	background-color: var(--wp--preset--color--secondary);
	color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--secondary);
	transition: all .3s ease;
}

@media (min-width: 1200px) {
	.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:first-child {
		padding: 13px 30px !important;
		min-width: 174px;
	}
}

.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons .btn {
	min-width: 220px !important;
}

@media (min-width: 992px) {
	.contact-inner-banner .contact-banner-content {
		grid-gap: 80px;
	}
}

@media (min-width: 1200px) {
	.contact-inner-banner .contact-banner-content {
		grid-gap: 160px;
	}
}

@media (min-width: 1500px) {
	.contact-inner-banner .contact-banner-content {
		grid-gap: 274px;
	}
}

@media (max-width: 991px) {
	.contact-inner-banner .contact-banner-content {
		flex-direction: column;
		grid-gap: 30px;
	}
}

.slider-inner-banner {
	margin-bottom: 0px !important;
}

.slider-inner-banner .slick-dots {
	display: flex;
	width: auto;
	padding: 0;
	margin: 0;
	left: 18px;
	top: 50%;
	flex-direction: column;
	transform: translateY(-50%);
	bottom: auto;
}

.slider-inner-banner .slick-dots li button:before {
	color: #fff;
}

.slider-inner-banner .slick-dots li.slick-active button:before {
	color: #fff;
}

@media (max-width: 781px) {
	.slider-inner-banner .slick-dots {
		left: 50%;
		top: auto;
		bottom: 14px;
		flex-direction: row;
		transform: translateX(-50%);
	}
}

.accordions .lightweight-accordion .lightweight-accordion-title {
	list-style: none;
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro) !important;
	background: transparent;
	padding: 16px 36px 16px 0;
	color: #243444 !important;
	font-size: var(--wp--preset--font-size--large);
	font-weight: 500 !important;
	position: relative;
	overflow: hidden;
	border-radius: 0px;
	cursor: pointer;
	line-height: normal;
}

.accordions .lightweight-accordion .lightweight-accordion-title::after {
	content: "";
	width: 22px;
	height: 15px;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/accordion-arrow.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	position: absolute;
	right: 0;
	top: 28px;
	transition: all .3s ease;
}

.lightweight-accordion details[open] .lightweight-accordion-title::after {
	transition: all .3s ease;
	transform: rotate(180deg);
}

.accordions .lightweight-accordion .lightweight-accordion-title span {
	font-family: var(--wp--preset--font-family--avenir-next-lt-pro) !important;
	font-size: var(--wp--preset--font-size--large);
	font-weight: 500 !important;
	position: relative;
}

.accordions .lightweight-accordion .lightweight-accordion-title::before {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0px;
	background-color: #243444;
}

.accordions .lightweight-accordion {
	margin-bottom: 12px;
}

.accordions .lightweight-accordion:last-child {
	margin-bottom: 0px;
}

.accordions .lightweight-accordion .lightweight-accordion-title span b {
	color: #243444 !important;
}

.accordions .lightweight-accordion .lightweight-accordion-title::marker {
	content: none !important;
	display: none !important;
}

.accordions .lightweight-accordion .lightweight-accordion-title::-webkit-details-marker {
	display: none !important;
	color: transparent !important;
	content: none !important;
	padding: 0 !important;
}

.accordions .lightweight-accordion details[open] summary ~ * {
	padding: 20px 0 14px;
}

.lightweight-accordion details[open] .lightweight-accordion-title {
	background: none;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0;
}

.accordions .lightweight-accordion .lightweight-accordion-body p:last-child {
	margin-bottom: 0px;
}

.accordions .lightweight-accordion .lightweight-accordion-body ul {
	padding-left: 22px;
}

.accordions .lightweight-accordion .lightweight-accordion-body ul li {
	margin-bottom: 14px;
	font-weight: 500;
	line-height: 1.4;
}

.accordions .lightweight-accordion .lightweight-accordion-body ul li:last-child {
	margin-bottom: 0px;
}

.accordions .lightweight-accordion .lightweight-accordion-body ol {
	padding-left: 22px;
}

.accordions .lightweight-accordion .lightweight-accordion-body ol li {
	margin-bottom: 14px;
	font-weight: 500;
	line-height: 1.4;
}

.accordions .lightweight-accordion .lightweight-accordion-body ol li:last-child {
	margin-bottom: 0px;
}

@media (max-width: 1199px) {
	.accordions .lightweight-accordion .lightweight-accordion-title span {
		font-size: 26px;
		line-height: normal;
	}
}

@media (max-width: 991px) {
	.accordions .lightweight-accordion .lightweight-accordion-title span {
		font-size: 24px;
		line-height: normal;
	}
}

@media (max-width: 781px) {
	.accordions .lightweight-accordion .lightweight-accordion-title span {
		font-size: 22px;
		line-height: normal;
	}
}

.single-location .accordions .lightweight-accordion .lightweight-accordion-title span {
	font-size: 24px;
	font-weight: 600 !important;
}

.single-location .accordions .lightweight-accordion .lightweight-accordion-title::after {
	width: 18px;
}

.gallery-section {
	padding: 0;
}

@media (min-width: 768px) {
	.gallery-section {
		padding: 0 30px;
	}
}

@media (min-width: 1500px) {
	.gallery-section {
		padding: 0;
	}
}

@media (max-width: 781px) {
	.gallery-section {
		margin-bottom: 44px;
	}
}

.gallery-grid .gallery-grid-item {
	padding: 8px;
}

.gallery-grid .gallery-grid-item a {
	display: block;
}

.gallery-grid .gallery-grid-item a img {
	width: 100%;
	height: 100%;
	margin: auto;
	object-fit: cover;
}

@media (max-width: 767px) {
	.gallery-grid .gallery-grid-item {
		max-width: 480px;
	}
}

@media (max-width: 480px) {
	.gallery-grid .gallery-grid-item {
		max-width: 340px;
	}
}

@media (max-width: 340px) {
	.gallery-grid .gallery-grid-item {
		max-width: 280px;
	}
}

@media (max-width: 767px) {
	.gallery-grid.slick-initialized .slick-slide {
		text-align: center;
	}
}

.gallery-grid .slick-prev {
	width: 36px;
	height: 36px;
	top: 50%;
	left: 10px;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/mobile-project-left.svg");
	background-position: center;
	background-repeat: no-repeat;
	transform: translateY(-50%);
	background-size: contain;
}

.gallery-grid .slick-prev.nitro-lazy {
	background-image: none !important;
}

@media (min-width: 768px) {
	.gallery-grid .slick-prev {
		left: -36px;
	}
}

@media (min-width: 1500px) {
	.gallery-grid .slick-prev {
		left: -50px;
	}
}

@media (max-width: 781px) {
	.gallery-grid .slick-prev {
		bottom: -54px;
		width: 30px;
		height: 30px;
		top: auto;
	}
}

.gallery-grid .slick-next {
	width: 36px;
	height: 36px;
	top: 50%;
	right: 10px;
	left: auto;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/mobile-project-right.svg");
	background-position: center;
	background-repeat: no-repeat;
	transform: translateY(-50%);
	background-size: contain;
}

.gallery-grid .slick-next.nitro-lazy {
	background-image: none !important;
}

@media (min-width: 768px) {
	.gallery-grid .slick-next {
		right: -36px;
	}
}

@media (min-width: 1500px) {
	.gallery-grid .slick-next {
		right: -50px;
	}
}

@media (max-width: 781px) {
	.gallery-grid .slick-next {
		bottom: -54px;
		width: 30px;
		height: 30px;
		top: auto;
	}
}

.video-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
}

.video-banner:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .3);
	z-index: 8;
}

.video-sec {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100% !important;
}

.video-sec::after {
	padding-top: 56.25%;
	display: block;
	content: "";
}

.video-sec iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mejs-controls {
	display: none !important;
}

.mejs-container .mejs-controls {
	visibility: hidden !important;
}

.mejs-mediaelement iframe {
	pointer-events: none !important;
}

.mejs__controls {
	display: none !important;
}

@media (min-width: 782px) {
	.video-sec {
		height: 520px;
	}
}

@media (min-width: 992px) {
	.video-sec {
		height: 620px;
	}
}

@media (min-width: 1200px) {
	.video-sec {
		height: 720px;
	}
}

@media (min-width: 1500px) {
	.video-sec {
		height: 780px;
	}
}

.custom-inner-banner.video-banner .custom-inner-banner-content {
	z-index: 9;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: auto;
	right: auto;
	margin: auto;
}

.nextgen-image-video-section img {
	width: 100%;
	max-width: 100%;
	margin: auto;
	aspect-ratio: 6/5 !important;
	object-fit: cover !important;
	height: auto !important;
	max-width: 100% !important;
}

.nextgen-image-video-section .embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}

.nextgen-image-video-section .embed-container iframe, .nextgen-image-video-section .embed-container object, .nextgen-image-video-section .embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.nextgen-image-video-section.video-only {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

.nextgen-image-video-section.video-only video {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.is-style-special-list {
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
}

.is-style-special-list > li {
	list-style: none;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/special-list-bg.svg");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto;
	line-height: 1.4;
	padding: 4px 0 4px 32px;
}

.is-style-special-list > li.nitro-lazy {
	background-image: none !important;
}

.new-about-section .is-style-special-heading {
	padding-bottom: 14px;
	margin-bottom: 16px;
}

.new-about-section p {
	padding-bottom: 10px !important;
}

.location-child-pages .location-child-pages-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	margin: auto;
	grid-gap: 20px;
}

@media (min-width: 782px) {
	.location-child-pages .location-child-pages-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.location-child-pages .location-child-pages-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item {
	padding: 20px 10px 20px 10px;
	text-align: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 101vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	font-size: 14px;
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, .5);
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .location-child-page-btn-sec {
	text-align: center;
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .location-child-page-btn-sec .location-child-page-btn {
	text-align: center;
	text-decoration: none;
	border-bottom: 1px solid var(--wp--preset--color--white);
	padding-bottom: 4px;
	font-weight: 500;
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion {
	position: relative;
	z-index: 9;
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title {
	background-color: transparent;
	position: relative;
	list-style: none;
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title::marker {
	content: none !important;
	padding: 0 !important;
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title::-webkit-details-marker {
	display: none !important;
	color: transparent !important;
	content: none !important;
	padding: 0 !important;
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -14px;
	width: 40px;
	height: 15px;
	clear: both;
	transform: translateX(-50%);
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/accordion-icon.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title span {
	font-size: 22px;
	color: #fff;
	font-weight: 500;
}

@media (min-width: 782px) {
	.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title span {
		font-size: 24px;
	}
}

@media (min-width: 1200px) {
	.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title span {
		font-size: 26px;
	}
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion details[open] .lightweight-accordion-title::after {
	transition: all .3s ease;
	border: 0 !important;
	border-bottom: 2px solid #fff !important;
	width: 100px !important;
	height: 2px;
	bottom: -10px !important;
	background-image: none;
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body {
	position: relative;
	z-index: 9;
	color: #fff;
	text-align: left;
	font-weight: 400;
	margin-top: 22px;
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul {
	margin: 0;
	padding: 0;
	padding-left: 20px;
	margin-bottom: 18px;
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul li {
	font-size: 14px;
	margin-bottom: 4px;
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul li::marker {
	color: var(--wp--preset--color--primary);
}

.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul li:last-child {
	margin-bottom: 0px;
}

@media (min-width: 782px) {
	.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul li {
		font-size: 14px;
	}
}

@media (min-width: 1200px) {
	.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul li {
		font-size: 15px;
	}
}

@media (min-width: 1500px) {
	.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul li {
		font-size: 17px;
	}
}

@media (min-width: 782px) {
	.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul {
		margin-bottom: 22px;
	}
}

@media (min-width: 1200px) {
	.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul {
		margin-bottom: 24px;
	}
}

@media (min-width: 782px) {
	.location-child-pages .location-child-pages-grid .location-child-pages-grid-item {
		padding: 20px 10px 20px 10px;
		min-height: 93vw;
		font-size: 14px;
	}
}

@media (min-width: 1200px) {
	.location-child-pages .location-child-pages-grid .location-child-pages-grid-item {
		padding: 50px 30px 30px 30px;
		min-height: 71vw;
		font-size: 15px;
	}
}

@media (min-width: 1500px) {
	.location-child-pages .location-child-pages-grid .location-child-pages-grid-item {
		padding: 50px 30px 30px 30px;
		min-height: 55vw;
		font-size: 17px;
	}
}

@media (min-width: 1600px) {
	.location-child-pages .location-child-pages-grid .location-child-pages-grid-item {
		padding: 66px 76px 55px 76px;
		min-height: 872px;
		font-size: 17px;
	}
}

@media (max-width: 991px) {
	.new-about-section {
		padding-top: 30px !important;
		padding-bottom: 0 !important;
	}
	
	.new-location-child-section {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
		padding-right: 15px;
		padding-left: 15px;
	}
	
	.new-location-child-section h3 br {
		display: none !important;
	}
	
	.new-location-child-section p {
		margin-bottom: 8px;
	}
}

.wp-site-blocks, #content {
	overflow: hidden;
}

.home, .blog, .page, .single, .error404, .search {
	overflow: hidden;
	overflow-y: scroll;
}

@media (min-width: 1200px) {
	.pum-open .home, .pum-open .page, .pum-open .single, .pum-open .error404, .pum-open .blog {
		overflow-y: inherit;
	}
}

.tabs-container nav {
	margin: 0 auto;
	background: #fff;
}

.tabs-container nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid #ccc;
	padding: 0 10px;
}

.tabs-container nav ul li {
	padding: 1rem;
	cursor: pointer;
	color: #a7a7a7;
	border-top: 1px solid #eee;
	margin-left: -10px;
	margin-right: -10px;
	padding-left: 25px;
}

.tabs-container nav ul li:hover {
	color: #3e4b58;
}

.tabs-container nav ul li.active {
	color: #3e4b58;
	border-top: none;
}

/* the nitty gritty */
.tabs-container {
	position: relative;
	height: 4em;
}

.tabs-container nav {
	position: absolute;
	width: 100%;
}

.tabs-container nav ul {
	display: flex;
	flex-direction: column;
}

.tabs-container nav ul li {
	order: 1;
}

.tabs-container nav ul li.active {
	order: 0;
}

.tabs-container nav ul li:not(.active) {
	position: absolute;
	top: -999em;
}

.tabs-container nav ul.expanded li:not(.active) {
	position: relative;
	top: auto;
}

@media (max-width: 781px) {
	.tabs-container nav ul.expanded li:not(.active) {
		background-color: rgba(0, 0, 0, .9);
		padding: 8px 15px;
		font-size: 18px;
		border: 0px;
	}
	
	.tabs-container nav ul.expanded li:not(.active):after {
		content: none;
	}
}

@media (min-width: 992px) {
	nav {
		background: transparent;
	}
	
	.tabs-container nav ul {
		display: flex;
		flex-direction: row;
		justify-content: center;
		white-space: nowrap;
		overflow: hidden;
		border: none;
		padding: 0;
	}
	
	.tabs-container nav ul li {
		display: inline-block;
		margin: 0 1rem 0 1rem;
		padding: 0 0 .2rem 0;
		border: none;
	}
	
	.tabs-container nav ul li:not(.active) {
		position: relative;
		top: auto;
	}
	
	.tabs-container nav ul li.active {
		order: 1;
	}
	
	.tabs-container nav ul li.active:after {
		display: none;
	}
}

.tab-content {
	display: none;
	padding: 15px;
}

.tab-content.current {
	display: inherit;
}

.faculty-section-content {
	position: relative;
}

.faculty-section-content .tabs-container {
	height: auto;
	top: 35px;
	z-index: 999;
}

@media (min-width: 992px) {
	.faculty-section-content .tabs-container nav {
		margin: 0 auto;
		background: transparent;
	}
	
	.faculty-section-content .tabs-container nav ul li {
		color: var(--wp--preset--color--white);
		font-size: 20px;
		font-weight: 400;
		min-width: 140px;
		position: relative;
		text-align: center;
		padding: 16px 12px;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		letter-spacing: 1px;
	}
	
	.faculty-section-content .tabs-container nav ul li:after {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background-color: var(--wp--preset--color--white);
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	
	.faculty-section-content .tabs-container nav ul li.active {
		border: 0px;
		box-shadow: none;
		font-weight: 600;
		letter-spacing: .8px;
	}
	
	.faculty-section-content .tabs-container nav ul li.active:after {
		height: 2px;
	}
	
	.faculty-section-content .tabs-container nav ul li:hover {
		border: 0px;
		box-shadow: none;
		font-weight: 600;
		letter-spacing: .8px;
	}
	
	.faculty-section-content .tabs-container nav ul li:hover:after {
		height: 2px;
	}
}

.faculty-section-content .tab-content {
	padding: 165px 18px;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	justify-content: flex-start;
	align-items: center;
	transition: all .3s ease;
	position: relative;
}

.faculty-section-content .tab-content:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .25);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8;
}

.faculty-section-content .tab-content.current {
	display: flex;
	transition: all .3s ease;
}

.faculty-section-content .tab-content .faculty-item {
	max-width: var(--wp--style--global--content-size);
	margin-left: auto !important;
	margin-right: auto !important;
	position: relative;
	height: 100%;
	display: block;
	width: 100%;
	z-index: 99;
}

.faculty-section-content .tab-content .faculty-item-content {
	padding: 20px;
	background: rgba(0, 0, 0, .5);
	max-width: 638px;
	color: var(--wp--preset--color--white);
}

.faculty-section-content .tab-content .faculty-item-content h3 {
	margin-bottom: 16px;
}

@media (min-width: 1200px) {
	.faculty-section-content .tab-content {
		min-height: 700px;
	}
	
	.faculty-section-content .tab-content .faculty-item-content {
		padding: 30px;
	}
	
	.faculty-section-content .tab-content .wp-block-buttons {
		margin-top: 18px;
	}
}

@media (min-width: 1500px) {
	.faculty-section-content .tab-content {
		min-height: 750px;
	}
}

@media (min-width: 1500px) {
	.high-level-content .faculty-section-content .tab-content {
		min-height: 805px;
	}
}

@media (max-width: 991px) {
	.tabs-container nav {
		margin: 0 auto;
		background: transparent;
	}
	
	.tabs-container nav {
		width: auto;
	}
	
	.tabs-container nav ul {
		list-style: none;
		margin: 0;
		border: 0;
		padding: 0;
		color: var(--wp--preset--color--white);
	}
	
	.tabs-container nav ul li {
		color: var(--wp--preset--color--white);
		font-size: 20px;
		font-weight: 600;
		min-width: 140px;
		position: relative;
		text-align: center;
		padding: 10px 30px;
		background-color: var(--wp--preset--color--secondary);
	}
	
	.tabs-container nav ul li:after {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background-color: var(--wp--preset--color--white);
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	
	.tabs-container nav ul li.active {
		border: 0px;
		box-shadow: none;
		color: var(--wp--preset--color--white);
		background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/dropdown-bg.png");
		background-position: 98% center;
		background-repeat: no-repeat;
		background-size: 14px;
		background-color: transparent;
	}
	
	.tabs-container nav ul li.active.nitro-lazy {
		background-image: none !important;
	}
	
	.tabs-container nav ul li.active:after {
		height: 2px;
	}
	
	.tabs-container nav ul li:hover {
		border: 0px;
		box-shadow: none;
		color: var(--wp--preset--color--white);
	}
	
	.tabs-container nav ul li:hover:after {
		height: 2px;
	}
	
	.faculty-section-content .tabs-container {
		display: flex;
		justify-content: center;
	}
}

.inner-faculty-section .faculty-section-content .tab-content {
	padding: 0;
	width: 100%;
	height: auto;
	position: relative;
	min-height: auto !important;
	transition: all .3s ease;
}

.inner-faculty-section .faculty-section-content .tab-content:before {
	content: none;
}

.inner-faculty-section .faculty-section-content .tab-content.current {
	display: block;
	transition: all .3s ease;
}

.inner-faculty-section .faculty-section-content .tab-content .gallery {
	display: flex !important;
	grid-gap: 30px;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin: 0px !important;
	margin-top: 40px !important;
}

.inner-faculty-section .faculty-section-content .tab-content .gallery .gallery-item {
	float: none !important;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	text-align: center !important;
	width: auto !important;
}

.inner-faculty-section .faculty-section-content .tab-content .gallery .gallery-item img {
	border: 0 !important;
	width: 100% !important;
	height: auto !important;
}

@media (max-width: 781px) {
	.inner-faculty-section .faculty-section-content .tab-content .gallery {
		flex-direction: column;
		grid-gap: 20px;
		margin-top: 10px !important;
	}
	
	.inner-faculty-section .faculty-section-content .tab-content .gallery .gallery-item {
		width: 100% !important;
	}
}

.inner-faculty-section .faculty-section-content .tabs-container {
	top: -92px;
}

.inner-faculty-section.policies-inner-faculty-section .faculty-section-content .tabs-container {
	top: -120px;
}

@media (min-width: 1200px) {
	.inner-faculty-section.policies-inner-faculty-section .faculty-section-content .tabs-container li:nth-child(2) {
		margin-right: 60px;
	}
	
	.inner-faculty-section.policies-inner-faculty-section .faculty-section-content .tabs-container li:nth-child(3) {
		margin-left: 60px;
	}
}

@media (min-width: 1500px) {
	.inner-faculty-section.policies-inner-faculty-section .faculty-section-content .tabs-container li:nth-child(2) {
		margin-right: 80px;
	}
	
	.inner-faculty-section.policies-inner-faculty-section .faculty-section-content .tabs-container li:nth-child(3) {
		margin-left: 80px;
	}
}

@media (max-width: 1199px) {
	.inner-faculty-section.policies-inner-faculty-section .faculty-section-content .tabs-container li br {
		display: none;
	}
}

.main-news-section.news-section .news-tabs-container {
	top: -114px;
	height: auto;
}

.main-news-section.news-section .news-tabs-container nav ul li {
	color: var(--wp--preset--color--white);
}

.main-news-section.news-section .news-tabs-container nav ul li:after {
	background-color: var(--wp--preset--color--white);
}

.news-tabs-container nav {
	margin: 0 auto;
	background: #fff;
}

.news-tabs-container nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid #ccc;
	padding: 0 10px;
}

.news-tabs-container nav ul li {
	padding: 1rem;
	cursor: pointer;
	color: #a7a7a7;
	border-top: 1px solid #eee;
	margin-left: -10px;
	margin-right: -10px;
	padding-left: 25px;
}

.news-tabs-container nav ul li:hover {
	color: #3e4b58;
}

.news-tabs-container nav ul li.active {
	color: #3e4b58;
	border-top: none;
}

/* the nitty gritty */
.news-tabs-container {
	position: relative;
	height: 4em;
}

.news-tabs-container nav {
	position: absolute;
	width: 100%;
}

.news-tabs-container nav ul {
	display: flex;
	flex-direction: column;
}

.news-tabs-container nav ul li {
	order: 1;
}

.news-tabs-container nav ul li.active {
	order: 0;
}

.news-tabs-container nav ul li:not(.active) {
	position: absolute;
	top: -999em;
}

.news-tabs-container nav ul.expanded li:not(.active) {
	position: relative;
	top: auto;
}

@media (max-width: 781px) {
	.news-tabs-container nav ul.expanded li:not(.active) {
		background-color: rgba(0, 0, 0, .9);
		padding: 8px 15px;
		font-size: 18px;
		border: 0px;
	}
	
	.news-tabs-container nav ul.expanded li:not(.active):after {
		content: none;
	}
}

@media (min-width: 992px) {
	nav {
		background: transparent;
	}
	
	.news-tabs-container nav ul {
		display: flex;
		flex-direction: row;
		justify-content: center;
		white-space: nowrap;
		overflow: hidden;
		border: none;
		padding: 0;
	}
	
	.news-tabs-container nav ul li {
		display: inline-block;
		margin: 0 1rem 0 1rem;
		padding: 0 0 .2rem 0;
		border: none;
	}
	
	.news-tabs-container nav ul li:not(.active) {
		position: relative;
		top: auto;
	}
	
	.news-tabs-container nav ul li.active {
		order: 1;
	}
	
	.news-tabs-container nav ul li.active:after {
		display: none;
	}
}

.news-tab-content {
	display: none;
	padding: 15px;
}

.news-tab-content.current {
	display: inherit;
}

.news-section {
	position: relative;
}

.news-section .news-tabs-container {
	z-index: 999;
	margin-bottom: 60px;
}

@media (min-width: 992px) {
	.news-section .news-tabs-container nav {
		margin: 0 auto;
		background: transparent;
	}
	
	.news-section .news-tabs-container nav ul li {
		color: var(--wp--preset--color--secondary);
		font-size: 20px;
		font-weight: 400;
		min-width: 140px;
		position: relative;
		text-align: center;
		padding: 16px 12px;
		letter-spacing: 1px;
	}
	
	.news-section .news-tabs-container nav ul li:after {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background-color: var(--wp--preset--color--secondary);
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	
	.news-section .news-tabs-container nav ul li.active {
		border: 0px;
		box-shadow: none;
		font-weight: 600;
		letter-spacing: .8px;
	}
	
	.news-section .news-tabs-container nav ul li.active:after {
		height: 2px;
	}
	
	.news-section .news-tabs-container nav ul li:hover {
		border: 0px;
		box-shadow: none;
		font-weight: 600;
		letter-spacing: .8px;
	}
	
	.news-section .news-tabs-container nav ul li:hover:after {
		height: 2px;
	}
}

.news-section .news-tab-content {
	padding: 0;
	width: 100%;
	position: relative;
}

.news-section .news-tab-content.current {
	display: flex;
}

@media (max-width: 991px) {
	.news-tabs-container nav {
		margin: 0 auto;
		background: transparent;
	}
	
	.news-tabs-container nav {
		width: auto;
	}
	
	.news-tabs-container nav ul {
		list-style: none;
		margin: 0;
		border: 0;
		padding: 0;
		color: var(--wp--preset--color--white);
	}
	
	.news-tabs-container nav ul li {
		color: var(--wp--preset--color--white);
		font-size: 20px;
		font-weight: 600;
		min-width: 140px;
		position: relative;
		text-align: center;
		padding: 10px 15px;
		background-color: var(--wp--preset--color--secondary);
	}
	
	.news-tabs-container nav ul li:after {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background-color: var(--wp--preset--color--secondary);
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	
	.news-tabs-container nav ul li.active {
		border: 0px;
		box-shadow: none;
		color: var(--wp--preset--color--secondary);
		background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/news-dropdown-bg.png");
		background-position: 98% center;
		background-repeat: no-repeat;
		background-size: 14px;
		background-color: transparent;
	}
	
	.news-tabs-container nav ul li.active.nitro-lazy {
		background-image: none !important;
	}
	
	.news-tabs-container nav ul li.active:after {
		height: 2px;
	}
	
	.news-tabs-container nav ul li:hover {
		border: 0px;
		box-shadow: none;
		color: var(--wp--preset--color--secondary);
	}
	
	.news-tabs-container nav ul li:hover:after {
		height: 2px;
	}
}

@media (max-width: 991px) and (max-width: 781px) {
	.news-tabs-container nav ul li {
		padding: 12px 32px 12px 8px;
	}
}

@media (max-width: 991px) {
	.news-tabs-container {
		display: flex;
		justify-content: center;
	}
}

@media (max-width: 781px) {
	.news-section .news-tab-content.current {
		display: block !important;
	}
}

.tennisnews-tabs-container nav {
	margin: 0 auto;
	background: #fff;
}

.tennisnews-tabs-container nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid #ccc;
	padding: 0 10px;
}

.tennisnews-tabs-container nav ul li {
	padding: 1rem;
	cursor: pointer;
	color: #a7a7a7;
	border-top: 1px solid #eee;
	margin-left: -10px;
	margin-right: -10px;
	padding-left: 25px;
}

.tennisnews-tabs-container nav ul li:hover {
	color: #3e4b58;
}

.tennisnews-tabs-container nav ul li.active {
	color: #3e4b58;
	border-top: none;
}

/* the nitty gritty */
.tennisnews-tabs-container {
	position: relative;
	height: 4em;
}

.tennisnews-tabs-container nav {
	position: absolute;
	width: 100%;
}

.tennisnews-tabs-container nav ul {
	display: flex;
	flex-direction: column;
}

.tennisnews-tabs-container nav ul li {
	order: 1;
}

.tennisnews-tabs-container nav ul li.active {
	order: 0;
}

.tennisnews-tabs-container nav ul li:not(.active) {
	position: absolute;
	top: -999em;
}

.tennisnews-tabs-container nav ul.expanded li:not(.active) {
	position: relative;
	top: auto;
}

@media (max-width: 781px) {
	.tennisnews-tabs-container nav ul.expanded li:not(.active) {
		background-color: rgba(0, 0, 0, .9);
		padding: 8px 15px;
		font-size: 18px;
		border: 0px;
	}
	
	.tennisnews-tabs-container nav ul.expanded li:not(.active):after {
		content: none;
	}
}

@media (min-width: 992px) {
	nav {
		background: transparent;
	}
	
	.tennisnews-tabs-container nav ul {
		display: flex;
		flex-direction: row;
		justify-content: center;
		white-space: nowrap;
		overflow: hidden;
		border: none;
		padding: 0;
	}
	
	.tennisnews-tabs-container nav ul li {
		display: inline-block;
		margin: 0 1rem 0 1rem;
		padding: 0 0 .2rem 0;
		border: none;
	}
	
	.tennisnews-tabs-container nav ul li:not(.active) {
		position: relative;
		top: auto;
	}
	
	.tennisnews-tabs-container nav ul li.active {
		order: 1;
	}
	
	.tennisnews-tabs-container nav ul li.active:after {
		display: none;
	}
}

.tennisnews-tab-content {
	display: none;
	padding: 15px;
}

.tennisnews-tab-content.current {
	display: inherit;
}

.news-section {
	position: relative;
}

.news-section .tennisnews-tabs-container {
	z-index: 999;
	margin-bottom: 60px;
}

@media (min-width: 992px) {
	.news-section .tennisnews-tabs-container nav {
		margin: 0 auto;
		background: transparent;
	}
	
	.news-section .tennisnews-tabs-container nav ul li {
		color: var(--wp--preset--color--secondary);
		font-size: 20px;
		font-weight: 400;
		min-width: 140px;
		position: relative;
		text-align: center;
		padding: 16px 12px;
		letter-spacing: 1px;
	}
	
	.news-section .tennisnews-tabs-container nav ul li:after {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background-color: var(--wp--preset--color--secondary);
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	
	.news-section .tennisnews-tabs-container nav ul li.active {
		border: 0px;
		box-shadow: none;
		font-weight: 600;
		letter-spacing: .8px;
	}
	
	.news-section .tennisnews-tabs-container nav ul li.active:after {
		height: 2px;
	}
	
	.news-section .tennisnews-tabs-container nav ul li:hover {
		border: 0px;
		box-shadow: none;
		font-weight: 600;
		letter-spacing: .8px;
	}
	
	.news-section .tennisnews-tabs-container nav ul li:hover:after {
		height: 2px;
	}
}

.news-section .tennisnews-tab-content {
	padding: 0;
	width: 100%;
	position: relative;
}

.news-section .tennisnews-tab-content.current {
	display: flex;
}

@media (max-width: 991px) {
	.tennisnews-tabs-container nav {
		margin: 0 auto;
		background: transparent;
	}
	
	.tennisnews-tabs-container nav {
		width: auto;
	}
	
	.tennisnews-tabs-container nav ul {
		list-style: none;
		margin: 0;
		border: 0;
		padding: 0;
		color: var(--wp--preset--color--white);
	}
	
	.tennisnews-tabs-container nav ul li {
		color: var(--wp--preset--color--white);
		font-size: 20px;
		font-weight: 600;
		min-width: 140px;
		position: relative;
		text-align: center;
		padding: 10px 15px;
		background-color: var(--wp--preset--color--secondary);
	}
	
	.tennisnews-tabs-container nav ul li:after {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background-color: var(--wp--preset--color--secondary);
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	
	.tennisnews-tabs-container nav ul li.active {
		border: 0px;
		box-shadow: none;
		color: var(--wp--preset--color--secondary);
		background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/news-dropdown-bg.png");
		background-position: 98% center;
		background-repeat: no-repeat;
		background-size: 14px;
		background-color: transparent;
	}
	
	.tennisnews-tabs-container nav ul li.active.nitro-lazy {
		background-image: none !important;
	}
	
	.tennisnews-tabs-container nav ul li.active:after {
		height: 2px;
	}
	
	.tennisnews-tabs-container nav ul li:hover {
		border: 0px;
		box-shadow: none;
		color: var(--wp--preset--color--secondary);
	}
	
	.tennisnews-tabs-container nav ul li:hover:after {
		height: 2px;
	}
}

@media (max-width: 991px) and (max-width: 781px) {
	.tennisnews-tabs-container nav ul li {
		padding: 12px 32px 12px 8px;
	}
}

@media (max-width: 991px) {
	.tennisnews-tabs-container {
		display: flex;
		justify-content: center;
	}
}

.timetable-tabs-container nav {
	margin: 0 auto;
	background: #fff;
}

.timetable-tabs-container nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid #ccc;
	padding: 0 10px;
}

.timetable-tabs-container nav ul li {
	padding: 1rem;
	cursor: pointer;
	color: #a7a7a7;
	border-top: 1px solid #eee;
	margin-left: -10px;
	margin-right: -10px;
	padding-left: 25px;
}

.timetable-tabs-container nav ul li:hover {
	color: #3e4b58;
}

.timetable-tabs-container nav ul li.active {
	color: #3e4b58;
	border-top: none;
}

/* the nitty gritty */
.timetable-tabs-container {
	position: relative;
	height: 4em;
}

.timetable-tabs-container nav {
	position: absolute;
	width: 100%;
}

.timetable-tabs-container nav ul {
	display: flex;
	flex-direction: column;
}

.timetable-tabs-container nav ul li {
	order: 1;
}

.timetable-tabs-container nav ul li.active {
	order: 0;
}

.timetable-tabs-container nav ul li:not(.active) {
	position: absolute;
	top: -999em;
}

.timetable-tabs-container nav ul.expanded li:not(.active) {
	position: relative;
	top: auto;
}

@media (max-width: 781px) {
	.timetable-tabs-container nav ul.expanded li:not(.active) {
		background-color: rgba(0, 0, 0, .9);
		padding: 8px 15px;
		font-size: 18px;
		border: 0px;
	}
	
	.timetable-tabs-container nav ul.expanded li:not(.active):after {
		content: none;
	}
}

@media (min-width: 992px) {
	nav {
		background: transparent;
	}
	
	.timetable-tabs-container nav ul {
		display: flex;
		flex-direction: row;
		justify-content: center;
		white-space: nowrap;
		overflow: hidden;
		border: none;
		padding: 0;
	}
	
	.timetable-tabs-container nav ul li {
		display: inline-block;
		margin: 0 1rem 0 1rem;
		padding: 0 0 .2rem 0;
		border: none;
	}
	
	.timetable-tabs-container nav ul li:not(.active) {
		position: relative;
		top: auto;
	}
	
	.timetable-tabs-container nav ul li.active {
		order: 1;
	}
	
	.timetable-tabs-container nav ul li.active:after {
		display: none;
	}
}

.timetable-tab-content {
	display: none;
	padding: 15px;
}

.timetable-tab-content.current {
	display: inherit;
}

.timetable-section {
	position: relative;
}

.timetable-section .timetable-tabs-container {
	z-index: 999;
	margin-bottom: 60px;
}

@media (min-width: 992px) {
	.timetable-section .timetable-tabs-container nav {
		margin: 0 auto;
		background: transparent;
	}
	
	.timetable-section .timetable-tabs-container nav ul li {
		color: var(--wp--preset--color--white);
		font-size: 20px;
		font-weight: 400;
		min-width: 140px;
		position: relative;
		text-align: center;
		padding: 16px 12px;
	}
	
	.timetable-section .timetable-tabs-container nav ul li:after {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background-color: var(--wp--preset--color--white);
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	
	.timetable-section .timetable-tabs-container nav ul li.active {
		border: 0px;
		box-shadow: none;
		color: var(--wp--preset--color--white);
		font-weight: 600;
	}
	
	.timetable-section .timetable-tabs-container nav ul li.active:after {
		height: 2px;
		background-color: var(--wp--preset--color--white);
	}
	
	.timetable-section .timetable-tabs-container nav ul li:hover {
		border: 0px;
		box-shadow: none;
		font-weight: 600;
		color: var(--wp--preset--color--white);
	}
	
	.timetable-section .timetable-tabs-container nav ul li:hover:after {
		height: 2px;
		background-color: var(--wp--preset--color--white);
	}
}

.timetable-section .timetable-tab-content {
	padding: 0;
	width: 100%;
	position: relative;
}

.timetable-section .timetable-tab-content.current {
	display: flex;
}

@media (max-width: 991px) {
	.timetable-tabs-container nav {
		margin: 0 auto;
		background: transparent;
	}
	
	.timetable-tabs-container nav {
		width: auto;
	}
	
	.timetable-tabs-container nav ul {
		list-style: none;
		margin: 0;
		border: 0;
		padding: 0;
		color: var(--wp--preset--color--secondary);
	}
	
	.timetable-tabs-container nav ul li {
		color: var(--wp--preset--color--white);
		font-size: 20px;
		font-weight: 600;
		min-width: 140px;
		position: relative;
		text-align: center;
		padding: 10px 15px;
		background-color: var(--wp--preset--color--white);
		padding: 12px 32px 12px 8px;
	}
	
	.timetable-tabs-container nav ul li:after {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background-color: var(--wp--preset--color--white);
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	
	.timetable-tabs-container nav ul li.active {
		border: 0px;
		box-shadow: none;
		color: var(--wp--preset--color--secondary);
		background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-371e108/www.nextgenclubs.com.au/wp-content/themes/nextgenclubs/assets/images/timetable-dropdown-bg.png");
		background-position: 98% center;
		background-repeat: no-repeat;
		background-size: 14px;
		background-color: transparent;
		color: var(--wp--preset--color--white);
	}
	
	.timetable-tabs-container nav ul li.active.nitro-lazy {
		background-image: none !important;
	}
	
	.timetable-tabs-container nav ul li.active:after {
		height: 2px;
	}
	
	.timetable-tabs-container nav ul li:hover {
		border: 0px;
		box-shadow: none;
		color: var(--wp--preset--color--white);
	}
	
	.timetable-tabs-container nav ul li:hover:after {
		height: 2px;
	}
	
	.timetable-tabs-container {
		display: flex;
		justify-content: center;
	}
}

@media (max-width: 781px) {
	.timetable-tabs-container nav ul li {
		padding: 12px 32px 12px 8px;
	}
}

.timetable-tab-content table {
	width: 100%;
	border-collapse: collapse;
}

.timetable-tab-content table .content-td td {
	padding: 4px;
}

.timetable-tab-content table .content-td td:nth-child(1) {
	width: 14%;
}

.timetable-tab-content table .content-td td:nth-child(2) {
	width: 14%;
}

.timetable-tab-content table .content-td td:nth-child(3) {
	width: 14%;
}

.timetable-tab-content table .content-td td:nth-child(4) {
	width: 14%;
}

.timetable-tab-content table .heading-td td {
	padding-bottom: 12px;
	border-bottom: 1px solid var(--wp--preset--color--white);
}

.responsive-table {
	width: 100%;
}

@media (max-width: 781px) {
	.responsive-table {
		overflow-y: scroll;
	}
	
	.responsive-table table {
		width: 550px;
	}
	
	.responsive-table table .content-td td {
		padding: 6px 4px;
	}
	
	.responsive-table table .content-td td:nth-child(1) {
		width: 4%;
		text-align: left;
		padding-right: 0;
	}
	
	.responsive-table table .content-td td:nth-child(2) {
		width: 4%;
	}
	
	.responsive-table table .content-td td:nth-child(3) {
		width: 8%;
	}
	
	.responsive-table table .content-td td:nth-child(4) {
		width: 8%;
	}
}

@keyframes rotate-forever {
	0% {
		transform: rotate(0);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

@keyframes spinner-loader {
	0% {
		transform: rotate(0);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

.pum-container, .pum-content, .pum-content+.pum-close, .pum-content+.pum-close:active, .pum-content+.pum-close:focus, .pum-content+.pum-close:hover, .pum-overlay, .pum-title {
	background: 0 0;
	border: none;
	bottom: auto;
	clear: none;
	cursor: default;
	float: none;
	font-family: inherit;
	font-size: medium;
	font-style: normal;
	font-weight: 400;
	height: auto;
	left: auto;
	letter-spacing: normal;
	line-height: normal;
	max-height: none;
	max-width: none;
	min-height: 0;
	min-width: 0;
	overflow: visible;
	position: static;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	top: auto;
	visibility: visible;
	white-space: normal;
	width: auto;
	z-index: auto;
}

.pum-container .pum-content+.pum-close>span, .pum-content, .pum-title {
	position: relative;
	z-index: 1;
}

.pum-overlay, html.pum-open.pum-open-overlay-disabled.pum-open-fixed .pum-container, html.pum-open.pum-open-overlay.pum-open-fixed .pum-container {
	position: fixed;
}

.pum-overlay {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1999999999;
	overflow: initial;
	display: none;
	transition: .15s ease-in-out;
}

.pum-overlay.pum-form-submission-detected, .pum-overlay.pum-preview {
	display: block;
}

.pum-overlay, .pum-overlay *, .pum-overlay :after, .pum-overlay :before, .pum-overlay:after, .pum-overlay:before {
	box-sizing: border-box;
}

.pum-container {
	top: 100px;
	position: absolute;
	margin-bottom: 3em;
	z-index: 1999999999;
}

.pum-container.pum-responsive {
	left: 50%;
	margin-left: -47.5%;
	width: 95%;
	height: auto;
	overflow: visible;
}

.pum-container.pum-responsive img {
	max-width: 100%;
	height: auto;
}

@media only screen and (min-width:1024px) {
	.pum-container.pum-responsive.pum-responsive-nano {
		margin-left: -5%;
		width: 10%;
	}
	
	.pum-container.pum-responsive.pum-responsive-micro {
		margin-left: -10%;
		width: 20%;
	}
	
	.pum-container.pum-responsive.pum-responsive-tiny {
		margin-left: -15%;
		width: 30%;
	}
	
	.pum-container.pum-responsive.pum-responsive-small {
		margin-left: -20%;
		width: 40%;
	}
	
	.pum-container.pum-responsive.pum-responsive-medium {
		margin-left: -30%;
		width: 60%;
	}
	
	.pum-container.pum-responsive.pum-responsive-normal {
		margin-left: -30%;
		width: 70%;
	}
	
	.pum-container.pum-responsive.pum-responsive-large {
		margin-left: -35%;
		width: 80%;
	}
	
	.pum-container.pum-responsive.pum-responsive-xlarge {
		margin-left: -47.5%;
		width: 95%;
	}
	
	.pum-container.pum-responsive.pum-position-fixed {
		position: fixed;
	}
}

@media only screen and (max-width:1024px) {
	.pum-container.pum-responsive.pum-position-fixed {
		position: absolute;
	}
}

.pum-container.custom-position {
	left: auto;
	top: auto;
	margin-left: inherit;
}

.pum-container .pum-title {
	margin-bottom: .5em;
}

.pum-container .pum-content>:last-child, .pum-form__message:last-child {
	margin-bottom: 0;
}

.pum-container .pum-content:focus {
	outline: 0;
}

.pum-container .pum-content>:first-child {
	margin-top: 0;
}

.pum-container .pum-content+.pum-close {
	text-decoration: none;
	text-align: center;
	line-height: 1;
	position: absolute;
	cursor: pointer;
	min-width: 1em;
	z-index: 2;
	background-color: transparent;
}

.pum-container.pum-scrollable .pum-content {
	overflow: auto;
	overflow-y: scroll;
	max-height: 95%;
}

.pum-overlay.pum-overlay-disabled {
	visibility: hidden;
}

.pum-overlay.pum-overlay-disabled::-webkit-scrollbar {
	display: block;
}

.pum-overlay.pum-overlay-disabled .pum-container {
	visibility: visible;
}

.popmake-close, .pum-overlay.pum-click-to-close {
	cursor: pointer;
}

html.pum-open.pum-open-overlay, html.pum-open.pum-open-overlay.pum-open-fixed .pum-overlay {
	overflow: hidden;
}

html.pum-open.pum-open-overlay.pum-open-scrollable body>:not([aria-modal=true]) {
	padding-right: 15px;
}

html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

html.pum-open.pum-open-overlay-disabled.pum-open-scrollable .pum-overlay.pum-active {
	position: static;
	height: auto;
	width: auto;
}

.pum-form {
	margin: 0 auto 16px;
}

.pum-form__field {
	margin-bottom: 1em;
}

.pum-form__field label {
	font-weight: 700;
}

.pum-form__field input[type=date], .pum-form__field select {
	margin: 0 auto;
	font-size: 18px;
	line-height: 26px;
	text-align: center;
	padding: 3px;
	vertical-align: middle;
}

.pum-form__field select {
	padding: 5px 3px;
}

.pum-form__loader {
	font-size: 2em;
	animation-duration: .75s;
	animation-iteration-count: infinite;
	animation-name: rotate-forever;
	animation-timing-function: linear;
	height: .75em;
	width: .75em;
	border: .25em solid rgba(0, 0, 0, .5);
	border-right-color: transparent;
	border-radius: 50%;
	display: inline-block;
}

.pum-form__submit {
	position: relative;
}

.pum-form__submit .pum-form__loader {
	margin-left: .5em;
	border: .25em solid rgba(255, 255, 255, .5);
	border-right-color: transparent;
}

.pum-form__messages {
	display: none;
	border: 1px solid rgba(0, 0, 0, .25);
	margin-bottom: .5em;
	padding: 1em;
	position: relative;
}

.pum-form__message {
	margin-bottom: .5em;
}

.pum-form__message--error {
	color: red !important;
	border-color: red;
}

.pum-form__message--success {
	color: green !important;
	border-color: green;
}

.pum-form--loading, .pum-sub-form .pum-sub-form-loading {
	opacity: .5;
}

.pum-alignment-left, .pum-form--alignment-left {
	text-align: left;
}

.pum-alignment-center {
	text-align: center;
}

.pum-alignment-right {
	text-align: right;
}

.pum-form--alignment-center {
	text-align: center;
}

.pum-form--alignment-right {
	text-align: right;
}

.pum-form--layout-standard .pum-form__field>label {
	margin-bottom: .25em;
	display: block;
}

.pum-form--layout-inline .pum-form__field {
	display: inline-block;
}

.pum-form--layout-block .pum-form__field, .pum-form--layout-block button, .pum-form--layout-block div, .pum-form--layout-block input {
	display: block;
	width: 100%;
}

.pum-form--style-default label {
	font-size: 14px;
	font-weight: 700;
}

.pum-form--style-default input[type=email], .pum-form--style-default input[type=text] {
	background-color: #f8f7f7;
	margin-bottom: 5px;
	font-size: 14px;
	padding: 10px 8px;
}

.pum-form--style-default button {
	font-size: 18px;
	margin: 10px 0 0;
	padding: 10px 5px;
	cursor: pointer;
}

.pum-sub-form p.pum-newsletter-error-msg {
	margin: 0;
}

.pum-sub-form .spinner-loader {
	right: 50%;
	position: absolute;
	bottom: 40%;
}

.pum-sub-form .spinner-loader:not(:required) {
	animation: 1.5s linear infinite spinner-loader;
	border-radius: .5em;
	box-shadow: rgba(0, 0, 51, .3) 1.5em 0 0 0, rgba(0, 0, 51, .3) 1.1em 1.1em 0 0, rgba(0, 0, 51, .3) 0 1.5em 0 0, rgba(0, 0, 51, .3) -1.1em 1.1em 0 0, rgba(0, 0, 51, .3) -1.5em 0 0 0, rgba(0, 0, 51, .3) -1.1em -1.1em 0 0, rgba(0, 0, 51, .3) 0 -1.5em 0 0, rgba(0, 0, 51, .3) 1.1em -1.1em 0 0;
	display: inline-block;
	font-size: 10px;
	width: 1em;
	height: 1em;
	margin: 1.5em;
	overflow: hidden;
	text-indent: 100%;
}

.pum-form__field--consent {
	text-align: left;
}

.pum-form__field--consent.pum-form__field--checkbox label, .pum-form__field--consent.pum-form__field--radio .pum-form__consent-radios.pum-form__consent-radios--inline label {
	display: inline-block;
	vertical-align: middle;
}

.pum-form__field--consent.pum-form__field--checkbox label input {
	display: inline-block;
	width: inherit;
	margin: 0;
	vertical-align: middle;
}

.pum-form__field--consent.pum-form__field--radio .pum-form__consent-radios.pum-form__consent-radios--inline label input {
	display: inline-block;
	width: inherit;
	margin: 0;
	vertical-align: middle;
}

.pum-form__field--consent.pum-form__field--radio .pum-form__consent-radios.pum-form__consent-radios--inline label+label {
	margin-left: 1em;
}

.pum-form__field--consent.pum-form__field--radio .pum-form__consent-radios.pum-form__consent-radios--stacked label {
	display: block;
	vertical-align: middle;
}

.pum-form__field--consent.pum-form__field--radio .pum-form__consent-radios.pum-form__consent-radios--stacked label input {
	display: inline-block;
	width: inherit;
	margin: 0;
	vertical-align: middle;
}

.pum-container iframe.formidable {
	width: 100%;
	overflow: visible;
}

.flatpickr-calendar.open, .pika-single, body div#ui-datepicker-div[style] {
	z-index: 9999999999 !important;
}

/* Popup Theme 838: Enterprise Blue */
.pum-theme-838, .pum-theme-enterprise-blue {
	background-color: rgba(0, 0, 0, .7);
}

.pum-theme-838 .pum-container, .pum-theme-enterprise-blue .pum-container {
	padding: 0px;
	border-radius: 0px;
	border: 1px none #000;
	box-shadow: 0px 10px 25px 4px rgba(2, 2, 2, .5);
	background-color: rgba(255, 255, 255, 0);
}

.pum-theme-838 .pum-title, .pum-theme-enterprise-blue .pum-title {
	color: #315b7c;
	text-align: left;
	text-shadow: 0px 0px 0px rgba(2, 2, 2, .23);
	font-family: inherit;
	font-weight: 100;
	font-size: 34px;
	line-height: 36px;
}

.pum-theme-838 .pum-content, .pum-theme-enterprise-blue .pum-content {
	color: #2d2d2d;
	font-family: inherit;
	font-weight: 100;
}

.pum-theme-838 .pum-content + .pum-close, .pum-theme-enterprise-blue .pum-content + .pum-close {
	position: absolute;
	height: 28px;
	width: 28px;
	left: auto;
	right: 8px;
	bottom: auto;
	top: 8px;
	padding: 0px;
	color: #fff;
	font-family: Times New Roman;
	font-weight: 100;
	font-size: 20px;
	line-height: 20px;
	border: 1px none #fff;
	border-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(2, 2, 2, 0);
	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
	background-color: rgba(49, 91, 124, 0);
}

/* Popup Theme 837: Light Box */
.pum-theme-837, .pum-theme-lightbox {
	background-color: rgba(0, 0, 0, .4);
}

.pum-theme-837 .pum-container, .pum-theme-lightbox .pum-container {
	padding: 18px;
	border-radius: 0px;
	border: 8px none #000;
	box-shadow: 0px 0px 0px -100px rgba(2, 2, 2, 0);
	background-color: rgba(231, 233, 234, 1);
}

.pum-theme-837 .pum-title, .pum-theme-lightbox .pum-title {
	color: #243444;
	text-align: left;
	text-shadow: 0px 0px 0px rgba(2, 2, 2, 0);
	font-family: inherit;
	font-weight: 100;
	font-size: 32px;
	line-height: 36px;
}

.pum-theme-837 .pum-content, .pum-theme-lightbox .pum-content {
	color: #243444;
	font-family: inherit;
	font-weight: 100;
}

.pum-theme-837 .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close {
	position: absolute;
	height: 26px;
	width: 26px;
	left: auto;
	right: -13px;
	bottom: auto;
	top: -13px;
	padding: 0px;
	color: #243444;
	font-family: inherit;
	font-weight: 400;
	font-size: 48px;
	line-height: 24px;
	border: 2px none #fff;
	border-radius: 26px;
	box-shadow: 0px 0px 15px 1px rgba(2, 2, 2, 0);
	text-shadow: 0px 0px 0px rgba(36, 52, 68, 0);
	background-color: rgba(255, 255, 255, 0);
}

/* Popup Theme 836: Default Theme */
.pum-theme-836, .pum-theme-default-theme {
	background-color: rgba(255, 255, 255, 1);
}

.pum-theme-836 .pum-container, .pum-theme-default-theme .pum-container {
	padding: 18px;
	border-radius: 0px;
	border: 1px none #000;
	box-shadow: 1px 1px 3px 0px rgba(2, 2, 2, .23);
	background-color: rgba(249, 249, 249, 1);
}

.pum-theme-836 .pum-title, .pum-theme-default-theme .pum-title {
	color: #000;
	text-align: left;
	text-shadow: 0px 0px 0px rgba(2, 2, 2, .23);
	font-family: inherit;
	font-weight: 400;
	font-size: 32px;
	font-style: normal;
	line-height: 36px;
}

.pum-theme-836 .pum-content, .pum-theme-default-theme .pum-content {
	color: #8c8c8c;
	font-family: inherit;
	font-weight: 400;
	font-style: inherit;
}

.pum-theme-836 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close {
	position: absolute;
	height: auto;
	width: auto;
	left: auto;
	right: 0px;
	bottom: auto;
	top: 0px;
	padding: 8px;
	color: #fff;
	font-family: inherit;
	font-weight: 400;
	font-size: 12px;
	font-style: inherit;
	line-height: 36px;
	border: 1px none #fff;
	border-radius: 0px;
	box-shadow: 1px 1px 3px 0px rgba(2, 2, 2, .23);
	text-shadow: 0px 0px 0px rgba(0, 0, 0, .23);
	background-color: rgba(0, 183, 205, 1);
}

/* Popup Theme 839: Hello Box */
.pum-theme-839, .pum-theme-hello-box {
	background-color: rgba(0, 0, 0, .75);
}

.pum-theme-839 .pum-container, .pum-theme-hello-box .pum-container {
	padding: 30px;
	border-radius: 80px;
	border: 14px solid #81d742;
	box-shadow: 0px 0px 0px 0px rgba(2, 2, 2, 0);
	background-color: rgba(255, 255, 255, 1);
}

.pum-theme-839 .pum-title, .pum-theme-hello-box .pum-title {
	color: #2d2d2d;
	text-align: left;
	text-shadow: 0px 0px 0px rgba(2, 2, 2, .23);
	font-family: Montserrat;
	font-weight: 100;
	font-size: 32px;
	line-height: 36px;
}

.pum-theme-839 .pum-content, .pum-theme-hello-box .pum-content {
	color: #2d2d2d;
	font-family: inherit;
	font-weight: 100;
}

.pum-theme-839 .pum-content + .pum-close, .pum-theme-hello-box .pum-content + .pum-close {
	position: absolute;
	height: auto;
	width: auto;
	left: auto;
	right: -30px;
	bottom: auto;
	top: -30px;
	padding: 0px;
	color: #2d2d2d;
	font-family: Times New Roman;
	font-weight: 100;
	font-size: 32px;
	line-height: 28px;
	border: 1px none #fff;
	border-radius: 28px;
	box-shadow: 0px 0px 0px 0px rgba(2, 2, 2, .23);
	text-shadow: 0px 0px 0px rgba(0, 0, 0, .23);
	background-color: rgba(255, 255, 255, 1);
}

/* Popup Theme 840: Cutting Edge */
.pum-theme-840, .pum-theme-cutting-edge {
	background-color: rgba(0, 0, 0, .5);
}

.pum-theme-840 .pum-container, .pum-theme-cutting-edge .pum-container {
	padding: 18px;
	border-radius: 0px;
	border: 1px none #000;
	box-shadow: 0px 10px 25px 0px rgba(2, 2, 2, .5);
	background-color: rgba(30, 115, 190, 1);
}

.pum-theme-840 .pum-title, .pum-theme-cutting-edge .pum-title {
	color: #fff;
	text-align: left;
	text-shadow: 0px 0px 0px rgba(2, 2, 2, .23);
	font-family: Sans-Serif;
	font-weight: 100;
	font-size: 26px;
	line-height: 28px;
}

.pum-theme-840 .pum-content, .pum-theme-cutting-edge .pum-content {
	color: #fff;
	font-family: inherit;
	font-weight: 100;
}

.pum-theme-840 .pum-content + .pum-close, .pum-theme-cutting-edge .pum-content + .pum-close {
	position: absolute;
	height: 24px;
	width: 24px;
	left: auto;
	right: 0px;
	bottom: auto;
	top: 0px;
	padding: 0px;
	color: #1e73be;
	font-family: Times New Roman;
	font-weight: 100;
	font-size: 32px;
	line-height: 24px;
	border: 1px none #fff;
	border-radius: 0px;
	box-shadow: -1px 1px 1px 0px rgba(2, 2, 2, .1);
	text-shadow: -1px 1px 1px rgba(0, 0, 0, .1);
	background-color: rgba(238, 238, 34, 1);
}

/* Popup Theme 841: Framed Border */
.pum-theme-841, .pum-theme-framed-border {
	background-color: rgba(255, 255, 255, .5);
}

.pum-theme-841 .pum-container, .pum-theme-framed-border .pum-container {
	padding: 18px;
	border-radius: 0px;
	border: 20px outset #d33;
	box-shadow: 1px 1px 3px 0px rgba(2, 2, 2, .97) inset;
	background-color: rgba(255, 251, 239, 1);
}

.pum-theme-841 .pum-title, .pum-theme-framed-border .pum-title {
	color: #000;
	text-align: left;
	text-shadow: 0px 0px 0px rgba(2, 2, 2, .23);
	font-family: inherit;
	font-weight: 100;
	font-size: 32px;
	line-height: 36px;
}

.pum-theme-841 .pum-content, .pum-theme-framed-border .pum-content {
	color: #2d2d2d;
	font-family: inherit;
	font-weight: 100;
}

.pum-theme-841 .pum-content + .pum-close, .pum-theme-framed-border .pum-content + .pum-close {
	position: absolute;
	height: 20px;
	width: 20px;
	left: auto;
	right: -20px;
	bottom: auto;
	top: -20px;
	padding: 0px;
	color: #fff;
	font-family: Tahoma;
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	border: 1px none #fff;
	border-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(2, 2, 2, .23);
	text-shadow: 0px 0px 0px rgba(0, 0, 0, .23);
	background-color: rgba(0, 0, 0, .55);
}

/* Popup Theme 842: Floating Bar - Soft Blue */
.pum-theme-842, .pum-theme-floating-bar {
	background-color: rgba(255, 255, 255, 0);
}

.pum-theme-842 .pum-container, .pum-theme-floating-bar .pum-container {
	padding: 8px;
	border-radius: 0px;
	border: 1px none #000;
	box-shadow: 1px 1px 3px 0px rgba(2, 2, 2, .23);
	background-color: rgba(238, 246, 252, 1);
}

.pum-theme-842 .pum-title, .pum-theme-floating-bar .pum-title {
	color: #505050;
	text-align: left;
	text-shadow: 0px 0px 0px rgba(2, 2, 2, .23);
	font-family: inherit;
	font-weight: 400;
	font-size: 32px;
	line-height: 36px;
}

.pum-theme-842 .pum-content, .pum-theme-floating-bar .pum-content {
	color: #505050;
	font-family: inherit;
	font-weight: 400;
}

.pum-theme-842 .pum-content + .pum-close, .pum-theme-floating-bar .pum-content + .pum-close {
	position: absolute;
	height: 18px;
	width: 18px;
	left: auto;
	right: 5px;
	bottom: auto;
	top: 50%;
	padding: 0px;
	color: #505050;
	font-family: Sans-Serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 18px;
	border: 1px solid #505050;
	border-radius: 15px;
	box-shadow: 0px 0px 0px 0px rgba(2, 2, 2, 0);
	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
	background-color: rgba(255, 255, 255, 0);
	transform: translate(0, -50%);
}

/* Popup Theme 843: Content Only - For use with page builders or block editor */
.pum-theme-843, .pum-theme-content-only {
	background-color: rgba(0, 0, 0, .7);
}

.pum-theme-843 .pum-container, .pum-theme-content-only .pum-container {
	padding: 0px;
	border-radius: 0px;
	border: 1px none #000;
	box-shadow: 0px 0px 0px 0px rgba(2, 2, 2, 0);
}

.pum-theme-843 .pum-title, .pum-theme-content-only .pum-title {
	color: #000;
	text-align: left;
	text-shadow: 0px 0px 0px rgba(2, 2, 2, .23);
	font-family: inherit;
	font-weight: 400;
	font-size: 32px;
	line-height: 36px;
}

.pum-theme-843 .pum-content, .pum-theme-content-only .pum-content {
	color: #8c8c8c;
	font-family: inherit;
	font-weight: 400;
}

.pum-theme-843 .pum-content + .pum-close, .pum-theme-content-only .pum-content + .pum-close {
	position: absolute;
	height: 18px;
	width: 18px;
	left: auto;
	right: 7px;
	bottom: auto;
	top: 7px;
	padding: 0px;
	color: #000;
	font-family: inherit;
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
	border: 1px none #fff;
	border-radius: 15px;
	box-shadow: 0px 0px 0px 0px rgba(2, 2, 2, 0);
	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
	background-color: rgba(255, 255, 255, 0);
}

#pum-1768 {
	z-index: 1999999999;
}

#pum-3419 {
	z-index: 1999999999;
}

#pum-1747 {
	z-index: 1999999999;
}

#pum-884 {
	z-index: 1999999999;
}

#pum-860 {
	z-index: 1999999999;
}

#pum-858 {
	z-index: 1999999999;
}

#pum-856 {
	z-index: 1999999999;
}

#pum-854 {
	z-index: 1999999999;
}

#pum-852 {
	z-index: 1999999999;
}

#pum-845 {
	z-index: 1999999999;
}
