
.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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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-96d179a/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;
}

.gform_wrapper.gravity-theme fieldset, .gform_wrapper.gravity-theme legend {
	background: 0 0;
	padding: 0;
}

.gform_wrapper.gravity-theme fieldset {
	border: none;
	display: block;
	margin: 0;
}

.gform_wrapper.gravity-theme legend {
	margin-left: 0;
	margin-right: 0;
}

.gform-icon {
	font-family: gform-icons-theme !important;
	speak: never;
	font-style: normal;
	font-weight: 400;
	font-feature-settings: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.gform-icon--photograph:before {
	content: "";
}

.gform-icon--star-border:before {
	content: "";
}

.gform-icon--star:before {
	content: "";
}

.gform-icon--left-arrow:before {
	content: "";
}

.gform-icon--right-arrow:before {
	content: "";
}

.gform-icon--circle-error:before {
	content: "";
}

.gform-icon--close-small:before {
	content: "";
}

.gform-icon--info:before {
	content: "";
}

.gform-icon--verified:before {
	content: "";
}

.gform-icon--circle-close:before {
	content: "";
}

.gform-icon--close-big:before {
	content: "";
}

.gform-icon--down-arrow:before {
	content: "";
}

.gform-icon--format-bold:before {
	content: "";
}

.gform-icon--format-italic:before {
	content: "";
}

.gform-icon--format-list-bulleted:before {
	content: "";
}

.gform-icon--format-list-numbered:before {
	content: "";
}

.gform-icon--insert-link:before {
	content: "";
}

.gform-icon--line:before {
	content: "";
}

.gform-icon--password-eye:before {
	content: "";
}

.gform-icon--password-eye-closed:before {
	content: "";
}

.gform-icon--redo:before {
	content: "";
}

.gform-icon--schedule:before {
	content: "";
}

.gform-icon--clock:before {
	content: "";
}

.gform-icon--search:before {
	content: "";
}

.gform-icon--star-half:before {
	content: "";
}

.gform-icon--check:before {
	content: "";
}

.gform-icon--undo:before {
	content: "";
}

.gform-icon--unfold-more:before {
	content: "";
}

.gform-icon--create:before {
	content: "";
}

.gform-icon--cog:before {
	content: "";
}

.gform-icon--circle-check:before {
	content: "";
}

.gform_wrapper.gravity-theme .gform-ul-reset {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.gform_wrapper.gravity-theme .gform-text-input-reset, .gform_wrapper.gravity-theme input.gform-text-input-reset, body[class*=avada] .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]).gform-text-input-reset {
	background-color: transparent;
	border: none;
	border-color: transparent;
	border-radius: 0;
	font-family: inherit;
	font-size: inherit;
	outline: 0;
	padding: inherit;
}

.gform_wrapper.gravity-theme .gform_drop_area {
	background: rgba(0, 0, 0, .02);
	border: 1px dashed #ccc;
	border-radius: 4px;
	margin-bottom: 8px;
	padding: 32px;
	text-align: center;
}

.gform_wrapper.gravity-theme .gform_drop_instructions {
	display: block;
	margin-bottom: 8px;
}

.gform_wrapper.gravity-theme .gform_delete, .gform_wrapper.gravity-theme .gform_delete_file {
	cursor: pointer;
	vertical-align: middle;
}

.gform_wrapper.gravity-theme .gform_delete_file {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: 0 0;
	border: none;
}

.gform_wrapper.gravity-theme .gfield_fileupload_filesize {
	padding: 0 6px;
}

.gform_wrapper.gravity-theme .gfield_validation_message ul {
	margin: 16px 0;
	padding-left: 24px;
}

.gform_wrapper.gravity-theme .gfield_validation_message ul:empty {
	display: none;
}

.gform_wrapper.gravity-theme .ginput_preview {
	margin: 16px 0;
}

.gform_wrapper.gravity-theme .gform_fileupload_rules {
	display: block;
	margin-top: 8px;
}

.gform_wrapper.gravity-theme .ginput_container_password>span {
	position: relative;
}

.gform_wrapper.gravity-theme .gform_show_password:focus {
	outline: 0;
}

.gform_wrapper.gravity-theme .gform_show_password {
	background-color: inherit;
	border: none;
	cursor: pointer;
	height: 100%;
	padding: 0;
	position: absolute;
	right: 20px;
	top: 0;
}

.gform_wrapper.gravity-theme .password_input_container {
	display: block;
	position: relative;
}

.gform_wrapper.gravity-theme .gfield_password_strength {
	background-color: #eee;
	border: 1px solid #ddd;
	border-bottom: 3px solid #ddd;
	margin-top: 8px;
	padding: 8px;
	text-align: center;
}

.gform_wrapper.gravity-theme .gfield_password_strength.mismatch, .gform_wrapper.gravity-theme .gfield_password_strength.short {
	background-color: #ffa0a0;
	border-bottom: 3px solid #f04040;
	border-color: #f04040;
}

.gform_wrapper.gravity-theme .gfield_password_strength.bad {
	background-color: #ffb78c;
	border-bottom: 3px solid #ff853c;
	border-color: #ff853c;
}

.gform_wrapper.gravity-theme .gfield_password_strength.good {
	background-color: #ffec8b;
	border-bottom: 3px solid #fc0;
	border-color: #fc0;
}

.gform_wrapper.gravity-theme .gfield_password_strength.strong {
	background-color: #c3ff88;
	border-bottom: 3px solid #8dff1c;
	border-color: #8dff1c;
}

.gform_wrapper.gravity-theme .field_sublabel_above .gfield_password_strength {
	margin-top: 16px;
}

.gravity-theme.ui-datepicker {
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, .1);
	box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
	display: none;
	margin: 2.4px;
	padding: 8px;
}

.gravity-theme.ui-datepicker[style] {
	z-index: 9999 !important;
}

.gravity-theme.ui-datepicker .ui-datepicker-header {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	margin: 0 -8px 8px;
	padding: 0 8px 8px;
	position: relative;
}

.gravity-theme.ui-datepicker .ui-datepicker-next, .gravity-theme.ui-datepicker .ui-datepicker-prev {
	cursor: pointer;
	position: absolute;
}

.gravity-theme.ui-datepicker .ui-datepicker-next::before, .gravity-theme.ui-datepicker .ui-datepicker-prev::before {
	border-style: solid;
	border-width: .18em .18em 0 0;
	content: "";
	display: inline-block;
	height: .55em;
	left: .15em;
	position: relative;
	top: .3em;
	transform: rotate(-135deg);
	vertical-align: top;
	width: .55em;
}

.gravity-theme.ui-datepicker .ui-datepicker-next .ui-icon, .gravity-theme.ui-datepicker .ui-datepicker-prev .ui-icon {
	display: none;
}

.gravity-theme.ui-datepicker .ui-datepicker-prev {
	left: 16px;
}

.gravity-theme.ui-datepicker .ui-datepicker-next {
	right: 16px;
}

.gravity-theme.ui-datepicker .ui-datepicker-next::before {
	left: 0;
	transform: rotate(45deg);
}

.gravity-theme.ui-datepicker .ui-datepicker-title {
	text-align: center;
}

.gravity-theme.ui-datepicker .ui-datepicker-title select {
	margin: 0 4px;
}

.gravity-theme.ui-datepicker .ui-datepicker table {
	border-spacing: 0;
	margin: 0;
}

.gravity-theme.ui-datepicker .ui-datepicker thead {
	font-size: .85em;
}

.gravity-theme.ui-datepicker .ui-datepicker td {
	padding: 0;
	width: 35.2px;
}

.gravity-theme.ui-datepicker a.ui-state-default {
	border-radius: 50%;
	color: #222;
	display: block;
	line-height: 35.2px;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

.gravity-theme.ui-datepicker a.ui-state-default:hover {
	background-color: rgba(0, 0, 0, .1);
}

.gravity-theme.ui-datepicker a.ui-state-active, .gravity-theme.ui-datepicker a.ui-state-active:hover {
	background-color: #3498db;
	color: #fff;
}

.gform_wrapper.gravity-theme ::-ms-reveal {
	display: none;
}

.gform_wrapper.gravity-theme .gform_validation_container, body .gform_wrapper.gravity-theme .gform_body .gform_fields .gfield.gform_validation_container, body .gform_wrapper.gravity-theme .gform_fields .gfield.gform_validation_container, body .gform_wrapper.gravity-theme .gform_validation_container {
	display: none !important;
	left: -9000px;
	position: absolute !important;
}

.gform_wrapper.gravity-theme .chosen-container {
	display: inline-block;
	font-size: 16px;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	vertical-align: middle;
}

.gform_wrapper.gravity-theme .chosen-container * {
	box-sizing: border-box;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-drop {
	background: #fff;
	border: 1px solid #aaa;
	border-top: 0;
	box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
	display: none;
	position: absolute;
	top: 100%;
	width: 100%;
	z-index: 1010;
}

.gform_wrapper.gravity-theme .chosen-container.chosen-with-drop .chosen-drop {
	display: block;
}

.gform_wrapper.gravity-theme .chosen-container a {
	cursor: pointer;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-single .group-name, .gform_wrapper.gravity-theme .chosen-container .search-choice .group-name {
	color: #999;
	font-weight: 400;
	margin-right: 4px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-single .group-name::after, .gform_wrapper.gravity-theme .chosen-container .search-choice .group-name::after {
	content: ":";
	padding-left: 2px;
	vertical-align: top;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single {
	background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
	background-clip: padding-box;
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 5px;
	box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, .1);
	color: #444;
	display: block;
	height: 40px;
	line-height: 24px;
	overflow: hidden;
	padding: 0 0 0 8px;
	position: relative;
	text-decoration: none;
	white-space: nowrap;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single input[type=text] {
	cursor: pointer;
	opacity: 0;
	position: absolute;
	width: 0;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-default {
	color: #999;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single span {
	display: block;
	line-height: 38.4px;
	margin-right: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single-with-deselect span {
	margin-right: 36px;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single abbr {
	background: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-96d179a/www.nextgenclubs.com.au/wp-content/plugins/gravityforms/legacy/css/chosen-sprite.png") -42px 1px no-repeat;
	display: block;
	font-size: 1px;
	height: 12px;
	position: absolute;
	right: 26px;
	top: 6px;
	width: 12px;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single abbr.nitro-lazy {
	background: none !important;
}

.gform_wrapper.gravity-theme .chosen-container-single.chosen-disabled .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single div {
	display: block;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 18px;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single div b {
	background: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-96d179a/www.nextgenclubs.com.au/wp-content/plugins/gravityforms/legacy/css/chosen-sprite.png") no-repeat 0 10px;
	display: block;
	height: 100%;
	width: 100%;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-single div b.nitro-lazy {
	background: none !important;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-search {
	margin: 0;
	padding: 3px 4px;
	position: relative;
	white-space: nowrap;
	z-index: 1010;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-search input[type=text] {
	background: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-96d179a/www.nextgenclubs.com.au/wp-content/plugins/gravityforms/legacy/css/chosen-sprite.png") no-repeat 100% -20px;
	border: 1px solid #aaa;
	border-radius: 0;
	font-family: sans-serif;
	font-size: 1em;
	height: auto;
	line-height: normal;
	margin: 1px 0;
	outline: 0;
	padding: 4px 20px 4px 5px;
	width: 100%;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-search input[type=text].nitro-lazy {
	background: none !important;
}

.gform_wrapper.gravity-theme .chosen-container-single .chosen-drop {
	background-clip: padding-box;
	border-radius: 0 0 4px 4px;
	margin-top: -1px;
}

.gform_wrapper.gravity-theme .chosen-container-single.chosen-container-single-nosearch .chosen-search {
	opacity: 0;
	pointer-events: none;
	position: absolute;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results {
	color: #444;
	margin: 0 4px 4px 0;
	max-height: 240px;
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0 0 0 4px;
	position: relative;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li {
	display: none;
	line-height: 15px;
	list-style: none;
	margin: 0;
	padding: 5px 6px;
	-webkit-touch-callout: none;
	word-wrap: break-word;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li.active-result {
	cursor: pointer;
	display: list-item;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li.disabled-result {
	color: #ccc;
	cursor: default;
	display: list-item;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li.highlighted {
	background-color: #3875d7;
	background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
	color: #fff;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li.no-results {
	background: #f4f4f4;
	color: #777;
	display: list-item;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li.group-result {
	cursor: default;
	display: list-item;
	font-weight: 700;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li.group-option {
	padding-left: 15px;
}

.gform_wrapper.gravity-theme .chosen-container .chosen-results li em {
	font-style: normal;
	text-decoration: underline;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices {
	background-color: #fff;
	border: 1px solid #aaa;
	cursor: text;
	height: auto;
	margin: 0;
	overflow: hidden;
	padding: 8px;
	position: relative;
	width: 100%;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li {
	float: left;
	list-style: none;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field {
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-field input[type=text] {
	background: 0 0 !important;
	border: 0 !important;
	border-radius: 0;
	box-shadow: none;
	color: #999;
	font-family: sans-serif;
	font-size: 100%;
	height: 25px;
	line-height: normal;
	margin: 1px 0;
	outline: 0;
	padding: 0;
	width: 25px;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice {
	background-clip: padding-box;
	background-color: #eee;
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
	background-repeat: repeat-x;
	background-size: 100% 19px;
	border: 1px solid #aaa;
	border-radius: 3px;
	box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .05);
	color: #333;
	cursor: default;
	line-height: 13px;
	margin: 3px 5px 3px 0;
	max-width: 100%;
	padding: 3px 20px 3px 5px;
	position: relative;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice span {
	word-wrap: break-word;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	background: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-96d179a/www.nextgenclubs.com.au/wp-content/plugins/gravityforms/legacy/css/chosen-sprite.png") -42px 1px no-repeat;
	display: block;
	font-size: 1px;
	height: 12px;
	position: absolute;
	right: 3px;
	top: 4px;
	width: 12px;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice .search-choice-close.nitro-lazy {
	background: none !important;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
	background-position: -42px -10px;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice-disabled {
	background-color: #e4e4e4;
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
	border: 1px solid #ccc;
	color: #666;
	padding-right: 5px;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice-focus {
	background: #d4d4d4;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
	background-position: -42px -10px;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-results {
	margin: 0;
	padding: 0;
}

.gform_wrapper.gravity-theme .chosen-container-multi .chosen-drop .result-selected {
	color: #ccc;
	cursor: default;
	display: list-item;
}

.gform_wrapper.gravity-theme .chosen-container-active .chosen-single {
	border: 1px solid #5897fb;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.gform_wrapper.gravity-theme .chosen-container-active.chosen-with-drop .chosen-single {
	background-image: linear-gradient(#eee 20%, #fff 80%);
	border: 1px solid #aaa;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	box-shadow: 0 1px 0 #fff inset;
}

.gform_wrapper.gravity-theme .chosen-container-active.chosen-with-drop .chosen-single div {
	background: 0 0;
	border-left: none;
}

.gform_wrapper.gravity-theme .chosen-container-active.chosen-with-drop .chosen-single div b {
	background-position: -18px 10px;
}

.gform_wrapper.gravity-theme .chosen-container-active .chosen-choices {
	border: 1px solid #5897fb;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.gform_wrapper.gravity-theme .chosen-container-active .chosen-choices li.search-field input[type=text] {
	color: #222 !important;
}

.gform_wrapper.gravity-theme .chosen-disabled {
	cursor: default;
	opacity: .5 !important;
}

.gform_wrapper.gravity-theme .chosen-disabled .chosen-single {
	cursor: default;
}

.gform_wrapper.gravity-theme .chosen-disabled .chosen-choices .search-choice .search-choice-close {
	cursor: default;
}

.gform_wrapper.gravity-theme .chosen-rtl {
	text-align: right;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-single {
	overflow: visible;
	padding: 0 8px 0 0;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-single span {
	direction: rtl;
	margin-left: 26px;
	margin-right: 0;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-single-with-deselect span {
	margin-left: 38px;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-single div {
	left: 3px;
	right: auto;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-single abbr {
	left: 26px;
	right: auto;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-choices li {
	float: right;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-choices li.search-field input[type=text] {
	direction: rtl;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-choices li.search-choice {
	margin: 3px 5px 3px 0;
	padding: 3px 5px 3px 19px;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
	left: 4px;
	right: auto;
}

.gform_wrapper.gravity-theme .chosen-rtl.chosen-container-single .chosen-results {
	margin: 0 0 4px 4px;
	padding: 0 4px 0 0;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-results li.group-option {
	padding-left: 0;
	padding-right: 15px;
}

.gform_wrapper.gravity-theme .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
	border-right: none;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-search input[type=text] {
	background: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-96d179a/www.nextgenclubs.com.au/wp-content/plugins/gravityforms/legacy/css/chosen-sprite.png") no-repeat -30px -20px;
	direction: rtl;
	padding: 4px 5px 4px 20px;
}

.gform_wrapper.gravity-theme .chosen-rtl .chosen-search input[type=text].nitro-lazy {
	background: none !important;
}

.gform_wrapper.gravity-theme .chosen-rtl.chosen-container-single .chosen-single div b {
	background-position: 6px 2px;
}

.gform_wrapper.gravity-theme .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
	background-position: -12px 2px;
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:144dpi),only screen and (min-resolution:1.5dppx) {
	.gform_wrapper.gravity-theme .chosen-container .chosen-results-scroll-down span, .gform_wrapper.gravity-theme .chosen-container .chosen-results-scroll-up span, .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .gform_wrapper.gravity-theme .chosen-container-single .chosen-search input[type=text], .gform_wrapper.gravity-theme .chosen-container-single .chosen-single abbr, .gform_wrapper.gravity-theme .chosen-container-single .chosen-single div b, .gform_wrapper.gravity-theme .chosen-rtl .chosen-search input[type=text] {
		background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-96d179a/www.nextgenclubs.com.au/wp-content/plugins/gravityforms/legacy/css/chosen-sprite@2x.png") !important;
		background-repeat: no-repeat !important;
		background-size: 52px 37px !important;
	}
	
	.gform_wrapper.gravity-theme .chosen-container .chosen-results-scroll-down span.nitro-lazy, .gform_wrapper.gravity-theme .chosen-container .chosen-results-scroll-up span.nitro-lazy, .gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices .search-choice .search-choice-close.nitro-lazy, .gform_wrapper.gravity-theme .chosen-container-single .chosen-search input[type=text].nitro-lazy, .gform_wrapper.gravity-theme .chosen-container-single .chosen-single abbr.nitro-lazy, .gform_wrapper.gravity-theme .chosen-container-single .chosen-single div b.nitro-lazy, .gform_wrapper.gravity-theme .chosen-rtl .chosen-search input[type=text].nitro-lazy {
		background-image: none !important;
	}
}

body .gform_wrapper.gravity-theme .chosen-container a.chosen-single {
	border-radius: inherit;
}

body .gform_wrapper.gravity-theme ul.chosen-results li {
	line-height: inherit;
}

@media only screen and (max-width:641px) {
	.gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
		line-height: 2;
		min-height: 32px;
	}
	
	.gform_wrapper.gravity-theme textarea {
		line-height: 1.5;
	}
	
	.gform_wrapper.gravity-theme .chosen-container.chosen-container-single[style] {
		width: 100% !important;
	}
	
	.gform_wrapper.gravity-theme .chosen-container-single .chosen-single {
		height: 40px;
		line-height: 2.8;
	}
	
	.gform_wrapper.gravity-theme .chosen-container-single .chosen-single div b {
		position: relative;
		top: 10px;
	}
	
	.gform_wrapper.gravity-theme div.chosen-container.chosen-container-multi[style] {
		width: 100% !important;
	}
	
	.gform_wrapper.gravity-theme .chosen-container.chosen-container-multi ul.chosen-choices li.search-choice, .gform_wrapper.gravity-theme .chosen-container.chosen-container-multi ul.chosen-choices li.search-field {
		float: none;
		line-height: inherit;
		width: 100%;
	}
	
	.gform_wrapper.gravity-theme .chosen-container.chosen-container-multi ul.chosen-choices li.search-choice span {
		margin-bottom: 0;
	}
	
	.gform_wrapper.gravity-theme .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
		top: calc(50% - 6px);
	}
	
	.gform_wrapper.gravity-theme .chosen-container span:not(.ginput_price) {
		display: block;
		margin-bottom: 8px;
	}
	
	.gform_wrapper.gravity-theme li.field_sublabel_below .ginput_complex {
		margin-top: 12px !important;
	}
	
	.gform_wrapper.gravity-theme ul.gfield_checkbox li label, .gform_wrapper.gravity-theme ul.gfield_radio li label {
		cursor: pointer;
		width: 85%;
	}
}

@media only screen and (min-width:641px) {
	body .gform_wrapper.gravity-theme select.medium.gfield_select+div.chosen-container-multi[style], body .gform_wrapper.gravity-theme select.medium.gfield_select+div.chosen-container-single[style] {
		width: calc(50% - 8px) !important;
	}
	
	body .gform_wrapper.gravity-theme select.large.gfield_select+div.chosen-container-multi[style], body .gform_wrapper.gravity-theme select.large.gfield_select+div.chosen-container-single[style] {
		width: 100% !important;
	}
	
	body .gform_wrapper.gravity-theme select.small.gfield_select+div.chosen-container-multi[style], body .gform_wrapper.gravity-theme select.small.gfield_select+div.chosen-container-single[style] {
		width: 25% !important;
	}
}

.gform_wrapper.gravity-theme .gf_hide_ampm .gfield_time_ampm {
	display: none !important;
}

.gform_wrapper.gravity-theme .gf_invisible, .gform_wrapper.gravity-theme .gfield_visibility_hidden {
	left: -9999px;
	position: absolute;
	visibility: hidden;
}

.gform_wrapper.gravity-theme .gf_hide_charleft div.charleft {
	display: none !important;
}

.gform_wrapper.gravity-theme .gf_hidden, .gform_wrapper.gravity-theme .gform_hidden {
	display: none;
}

.gform_wrapper.gravity-theme .hidden_label .gfield_label, .gform_wrapper.gravity-theme .hidden_sub_label, .gform_wrapper.gravity-theme .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.gform_wrapper.gravity-theme button.screen-reader-text:focus {
	border: 0;
	clip: auto;
	clip-path: none;
	height: auto;
	margin: 0;
	position: static !important;
	width: auto;
}

@media only screen and (min-width:641px) {
	.gform_wrapper.gravity-theme .gfield.gf_list_2col .gfield_checkbox, .gform_wrapper.gravity-theme .gfield.gf_list_2col .gfield_radio {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(auto-fill, auto);
		grid-column-gap: 2rem;
	}
	
	.gform_wrapper.gravity-theme .gfield.gf_list_3col .gfield_checkbox, .gform_wrapper.gravity-theme .gfield.gf_list_3col .gfield_radio {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(auto-fill, auto);
		grid-column-gap: 2rem;
	}
	
	.gform_wrapper.gravity-theme .gfield.gf_list_4col .gfield_checkbox, .gform_wrapper.gravity-theme .gfield.gf_list_4col .gfield_radio {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: repeat(auto-fill, auto);
		grid-column-gap: 2rem;
	}
	
	.gform_wrapper.gravity-theme .gfield.gf_list_5col .gfield_checkbox, .gform_wrapper.gravity-theme .gfield.gf_list_5col .gfield_radio {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		grid-template-rows: repeat(auto-fill, auto);
		grid-column-gap: 2rem;
	}
	
	.gform_wrapper.gravity-theme .gf_list_2col_vertical .gfield_checkbox, .gform_wrapper.gravity-theme .gf_list_2col_vertical .gfield_radio {
		-moz-column-count: 2;
		column-count: 2;
		grid-column-gap: 2rem;
		display: block;
	}
	
	.gform_wrapper.gravity-theme .gf_list_3col_vertical .gfield_checkbox, .gform_wrapper.gravity-theme .gf_list_3col_vertical .gfield_radio {
		-moz-column-count: 3;
		column-count: 3;
		grid-column-gap: 2rem;
		display: block;
	}
	
	.gform_wrapper.gravity-theme .gf_list_4col_vertical .gfield_checkbox, .gform_wrapper.gravity-theme .gf_list_4col_vertical .gfield_radio {
		-moz-column-count: 4;
		column-count: 4;
		grid-column-gap: 2rem;
		display: block;
	}
	
	.gform_wrapper.gravity-theme .gf_list_5col_vertical .gfield_checkbox, .gform_wrapper.gravity-theme .gf_list_5col_vertical .gfield_radio {
		-moz-column-count: 5;
		column-count: 5;
		grid-column-gap: 2rem;
		display: block;
	}
	
	.gform_wrapper.gravity-theme .gfield.gf_list_height_25 .gfield_checkbox .gchoice, .gform_wrapper.gravity-theme .gfield.gf_list_height_25 .gfield_radio .gchoice {
		height: 25px;
	}
	
	.gform_wrapper.gravity-theme .gfield.gf_list_height_50 .gfield_checkbox .gchoice, .gform_wrapper.gravity-theme .gfield.gf_list_height_50 .gfield_radio .gchoice {
		height: 50px;
	}
	
	.gform_wrapper.gravity-theme .gfield.gf_list_height_75 .gfield_checkbox .gchoice, .gform_wrapper.gravity-theme .gfield.gf_list_height_75 .gfield_radio .gchoice {
		height: 75px;
	}
	
	.gform_wrapper.gravity-theme .gfield.gf_list_height_100 .gfield_checkbox .gchoice, .gform_wrapper.gravity-theme .gfield.gf_list_height_100 .gfield_radio .gchoice {
		height: 100px;
	}
	
	.gform_wrapper.gravity-theme .gfield.gf_list_height_125 .gfield_checkbox .gchoice, .gform_wrapper.gravity-theme .gfield.gf_list_height_125 .gfield_radio .gchoice {
		height: 125px;
	}
	
	.gform_wrapper.gravity-theme .gfield.gf_list_height_150 .gfield_checkbox .gchoice, .gform_wrapper.gravity-theme .gfield.gf_list_height_150 .gfield_radio .gchoice {
		height: 150px;
	}
}

.gform_wrapper.gravity-theme .gfield.gf_list_inline .gfield_checkbox, .gform_wrapper.gravity-theme .gfield.gf_list_inline .gfield_radio, .gform_wrapper.gravity-theme .gfield.gfield--choice-align-horizontal .gfield_checkbox, .gform_wrapper.gravity-theme .gfield.gfield--choice-align-horizontal .gfield_radio {
	display: block;
}

.gform_wrapper.gravity-theme .gfield.gf_list_inline .gfield_checkbox .gchoice, .gform_wrapper.gravity-theme .gfield.gf_list_inline .gfield_radio .gchoice, .gform_wrapper.gravity-theme .gfield.gfield--choice-align-horizontal .gfield_checkbox .gchoice, .gform_wrapper.gravity-theme .gfield.gfield--choice-align-horizontal .gfield_radio .gchoice {
	display: inline-block;
	padding-inline-end: 16px;
	vertical-align: top;
}

.gform_wrapper.gravity-theme .gfield.gf_list_inline .gfield_checkbox .gchoice label, .gform_wrapper.gravity-theme .gfield.gf_list_inline .gfield_radio .gchoice label, .gform_wrapper.gravity-theme .gfield.gfield--choice-align-horizontal .gfield_checkbox .gchoice label, .gform_wrapper.gravity-theme .gfield.gfield--choice-align-horizontal .gfield_radio .gchoice label {
	max-width: none;
}

.gform_wrapper.gravity-theme .gf_hide_ampm .gfield_time_ampm {
	display: none !important;
}

.gform_wrapper.gravity-theme .gsection.gf_scroll_text {
	background-color: #fff;
	border: 1px solid #ccc;
	height: 240px;
	overflow-x: hidden;
	overflow-y: scroll;
	padding: 32px;
}

.gform_wrapper.gravity-theme .gsection.gf_scroll_text .gsection_title {
	margin-top: 0;
}

.gform_wrapper.gravity-theme .gfield.gfield_html.gf_alert_blue, .gform_wrapper.gravity-theme .gfield.gfield_html.gf_alert_gray, .gform_wrapper.gravity-theme .gfield.gfield_html.gf_alert_green, .gform_wrapper.gravity-theme .gfield.gfield_html.gf_alert_red, .gform_wrapper.gravity-theme .gfield.gfield_html.gf_alert_yellow {
	border-radius: 3px;
	margin: 20px 0 !important;
	padding: 20px !important;
}

.gform_wrapper.gravity-theme .gfield.gfield_html.gf_alert_green {
	background-color: #cbeca0;
	border: 1px solid #97b48a;
	color: #030;
	text-shadow: #dfb 1px 1px;
}

.gform_wrapper.gravity-theme .gfield.gfield_html.gf_alert_red {
	background-color: #faf2f5;
	border: 1px solid #cfadb3;
	color: #832525;
	text-shadow: #fff 1px 1px;
}

.gform_wrapper.gravity-theme .gfield.gfield_html.gf_alert_yellow {
	background-color: #fffbcc;
	border: 1px solid #e6db55;
	color: #222;
	text-shadow: #fcfaea 1px 1px;
}

.gform_wrapper.gravity-theme .gfield.gfield_html.gf_alert_gray {
	background-color: #eee;
	border: 1px solid #ccc;
	color: #424242;
	text-shadow: #fff 1px 1px;
}

.gform_wrapper.gravity-theme .gfield.gfield_html.gf_alert_blue {
	background-color: #d1e4f3;
	border: 1px solid #a7c2e7;
	color: #314475;
	text-shadow: #e0f1ff 1px 1px;
}

.gform_wrapper.gravity-theme .gf_simple_horizontal {
	margin: 0 auto;
	width: calc(100% - 16px);
}

.gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body, .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_footer.top_label {
	display: table-cell;
	margin: 0;
	padding: 0;
	position: relative;
	vertical-align: middle;
}

.gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body {
	max-width: 75%;
	width: auto;
}

.gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label {
	display: table;
	width: 100%;
}

.gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield {
	display: table-cell;
	height: auto;
	padding-right: 1em;
}

.gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield .large, .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield .medium, .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield .small {
	width: 100%;
}

.gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield .ginput_container_checkbox .gchoice, .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield .ginput_container_radio .gchoice {
	display: inline-block;
	margin-right: .5em;
}

.gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label.form_sublabel_above .gfield, .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label.form_sublabel_below .gfield {
	vertical-align: middle;
}

.gform_wrapper.gravity-theme .gf_simple_horizontal .gfield, .gform_wrapper.gravity-theme .gf_simple_horizontal .ginput_container {
	margin-top: 0 !important;
}

.gform_wrapper.gravity-theme .gf_simple_horizontal .gform_footer.top_label {
	margin: 0;
	max-width: 25%;
	padding: 0;
	text-align: left;
	width: auto;
}

.gform_wrapper.gravity-theme .gf_simple_horizontal .gform_footer.top_label input[type=button], .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_footer.top_label input[type=image], .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_footer.top_label input[type=submit] {
	height: auto;
}

.gform_wrapper.gravity-theme .gf_simple_horizontal .gfield_description:not(.validation_message), .gform_wrapper.gravity-theme .gf_simple_horizontal .gfield_label, .gform_wrapper.gravity-theme .gf_simple_horizontal .ginput_complex label {
	display: block;
	height: 1px;
	left: -9000px;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 1px;
}

.gform_wrapper.gravity-theme body:not(.rtl) .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label {
	text-align: left;
}

.gform_confirmation_wrapper.gf_confirmation_simple_yellow {
	background-color: #fffbcc;
	border-bottom: 1px solid #e6db55;
	border-top: 1px solid #e6db55;
	color: #424242;
	font-size: 25px;
	margin: 30px 0;
	max-width: 99%;
	padding: 32px;
}

.gform_confirmation_wrapper.gf_confirmation_simple_gray {
	background-color: #eaeaea;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
	color: #424242;
	font-size: 25px;
	margin: 30px 0;
	max-width: 99%;
	padding: 32px;
}

.gform_confirmation_wrapper.gf_confirmation_yellow_gradient {
	background-color: #fffbd2;
	border: 1px solid #e6db55;
	box-shadow: 0 0 5px rgba(221, 215, 131, .75);
	margin: 30px 0;
	position: relative;
}

.gform_confirmation_wrapper.gf_confirmation_yellow_gradient .gform_confirmation_message {
	background: #fffce5;
	background: linear-gradient(to bottom, #fffce5 0, #fff9bf 100%);
	background-color: #fffbcc;
	border-bottom: 1px solid #e6db55;
	border-top: 2px solid #fff;
	color: #424242;
	font-size: 28px;
	margin: 0;
	max-width: 99%;
	padding: 40px;
}

.gform_confirmation_wrapper.gf_confirmation_green_gradient {
	background-color: #f1fcdf;
	border: 1px solid #a7c37c;
	box-shadow: 0 0 5px rgba(86, 122, 86, .4);
	margin: 30px 0;
	position: relative;
}

.gform_confirmation_wrapper.gf_confirmation_green_gradient .gform_confirmation_message {
	background: #dbf2b7;
	background: linear-gradient(to bottom, #dbf2b7 0, #b4d088 100%);
	background-color: #fffbcc;
	border-bottom: 1px solid #a7c37c;
	border-top: 2px solid #effade;
	color: #030;
	font-size: 28px;
	margin: 0;
	max-width: 99%;
	padding: 40px;
	text-shadow: #dfb 1px 1px;
}

.gform_confirmation_wrapper.gf_confirmation_green_gradient::after, .gform_confirmation_wrapper.gf_confirmation_green_gradient::before, .gform_confirmation_wrapper.gf_confirmation_yellow_gradient::after, .gform_confirmation_wrapper.gf_confirmation_yellow_gradient::before {
	background: rgba(0, 0, 0, .2);
	bottom: 15px;
	box-shadow: 0 15px 10px rgba(0, 0, 0, .2);
	content: "";
	left: 10px;
	max-width: 40%;
	position: absolute;
	top: 80%;
	transform: rotate(-3deg);
	width: 50%;
	z-index: -1;
}

.gform_confirmation_wrapper.gf_confirmation_green_gradient::after, .gform_confirmation_wrapper.gf_confirmation_yellow_gradient::after {
	left: auto;
	right: 10px;
	transform: rotate(3deg);
}

.gform_wrapper.gravity-theme .gfield textarea {
	width: 100%;
}

.gform_wrapper.gravity-theme .gfield textarea.small {
	height: 96px;
}

.gform_wrapper.gravity-theme .gfield textarea.medium {
	height: 192px;
}

.gform_wrapper.gravity-theme .gfield textarea.large {
	height: 288px;
}

.gform_wrapper.gravity-theme .gfield input, .gform_wrapper.gravity-theme .gfield select {
	max-width: 100%;
}

.gform_wrapper.gravity-theme .gfield input.small, .gform_wrapper.gravity-theme .gfield select.small {
	width: calc(25% - 16px * 3 / 4);
}

.gform_wrapper.gravity-theme .gfield input.medium, .gform_wrapper.gravity-theme .gfield select.medium {
	width: calc(50% - 16px / 2);
}

.gform_wrapper.gravity-theme .gfield input.large, .gform_wrapper.gravity-theme .gfield select.large {
	width: 100%;
}

.gform_wrapper.gravity-theme * {
	box-sizing: border-box;
}

.gform_wrapper.gravity-theme .gform_fields {
	display: grid;
	grid-column-gap: 2%;
	-ms-grid-columns: (1fr 2%) [12];
	grid-row-gap: 16px;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(auto-fill, auto);
	width: 100%;
}

.gform_wrapper.gravity-theme .gfield {
	grid-column: 1/-1;
	min-width: 0;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-full {
	grid-column: span 12;
	-ms-grid-column-span: 12;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-eleven-twelfths {
	grid-column: span 11;
	-ms-grid-column-span: 11;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-five-sixths {
	grid-column: span 10;
	-ms-grid-column-span: 10;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-three-quarter {
	grid-column: span 9;
	-ms-grid-column-span: 9;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-two-thirds {
	grid-column: span 8;
	-ms-grid-column-span: 8;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-seven-twelfths {
	grid-column: span 7;
	-ms-grid-column-span: 7;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-half {
	grid-column: span 6;
	-ms-grid-column-span: 6;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-five-twelfths {
	grid-column: span 5;
	-ms-grid-column-span: 5;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-third {
	grid-column: span 4;
	-ms-grid-column-span: 4;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-quarter {
	grid-column: span 3;
	-ms-grid-column-span: 3;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-one-sixth {
	-ms-grid-column-span: 2;
	grid-column: span 2;
}

.gform_wrapper.gravity-theme .gfield.gfield--width-one-twelfth {
	-ms-grid-column-span: 1;
	grid-column: span 1;
}

@media (max-width:640px) {
	.gform_wrapper.gravity-theme .gform_fields {
		grid-column-gap: 0;
	}
	
	.gform_wrapper.gravity-theme .gfield:not(.gfield--width-full) {
		grid-column: 1/-1;
	}
}

.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full.gfield--width-full {
	width: 100%;
}

.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full.gfield--width-eleven-twelfths {
	width: 91.6666%;
}

.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full.gfield--width-five-sixths {
	width: 83.3333%;
}

.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full.gfield--width-three-quarter {
	width: 75%;
}

.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full.gfield--width-two-thirds {
	width: 66.6666%;
}

.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full.gfield--width-seven-twelfths {
	width: 58.3333%;
}

.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full.gfield--width-half {
	width: 50%;
}

.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full.gfield--width-five-twelfths {
	width: 41.6666%;
}

.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full.gfield--width-third {
	width: 33.3333%;
}

.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full.gfield--width-quarter {
	width: 25%;
}

.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full.gfield--width-one-sixth {
	width: 16.6666%;
}

.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full.gfield--width-one-twelfth {
	width: 8.3333%;
}

.gform_wrapper.gravity-theme .left_label .gfield:not(.gsection):not(.gfield_html):not(fieldset), .gform_wrapper.gravity-theme .right_label .gfield:not(.gsection):not(.gfield_html):not(fieldset) {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
}

.gform_wrapper.gravity-theme .left_label .gfield_label, .gform_wrapper.gravity-theme .right_label .gfield_label {
	margin: 0;
	padding: 0;
	width: 30%;
}

@media (max-width:640px) {
	.gform_wrapper.gravity-theme .left_label .gfield_label, .gform_wrapper.gravity-theme .right_label .gfield_label {
		width: 100%;
	}
}

.gform_wrapper.gravity-theme .gform_fields.left_label fieldset, .gform_wrapper.gravity-theme .gform_fields.right_label fieldset {
	clear: both;
}

.gform_wrapper.gravity-theme .gform_fields.left_label fieldset .ginput_container, .gform_wrapper.gravity-theme .gform_fields.right_label fieldset .ginput_container {
	float: left;
	width: 70%;
}

@media (max-width:640px) {
	.gform_wrapper.gravity-theme .gform_fields.left_label fieldset .ginput_container, .gform_wrapper.gravity-theme .gform_fields.right_label fieldset .ginput_container {
		width: 100%;
	}
}

@media (max-width:640px) {
	.gform_wrapper.gravity-theme .gform_fields.left_label fieldset>.ginput_complex, .gform_wrapper.gravity-theme .gform_fields.right_label fieldset>.ginput_complex {
		width: 100%;
	}
}

.gform_wrapper.gravity-theme .gform_fields.left_label legend.gfield_label, .gform_wrapper.gravity-theme .gform_fields.right_label legend.gfield_label {
	display: block;
	float: left;
	padding-right: 1em;
	width: 30%;
}

@media (max-width:640px) {
	.gform_wrapper.gravity-theme .gform_fields.left_label legend.gfield_label, .gform_wrapper.gravity-theme .gform_fields.right_label legend.gfield_label {
		width: 100%;
	}
}

.gform_wrapper.gravity-theme .gform_fields.left_label .gfield_validation_message, .gform_wrapper.gravity-theme .gform_fields.right_label .gfield_validation_message {
	float: right;
	width: 70%;
}

@media (max-width:640px) {
	.gform_wrapper.gravity-theme .gform_fields.left_label .gfield_validation_message, .gform_wrapper.gravity-theme .gform_fields.right_label .gfield_validation_message {
		width: 100%;
	}
}

.gform_wrapper.gravity-theme .gform_fields.validation_above.left_label fieldset .ginput_container, .gform_wrapper.gravity-theme .gform_fields.validation_above.right_label fieldset .ginput_container {
	float: right;
}

.gform_wrapper.gravity-theme .left_label .ginput_complex .ginput_container, .gform_wrapper.gravity-theme .right_label .ginput_complex .ginput_container {
	width: auto;
}

.gform_wrapper.gravity-theme .left_label div.gfield>div:not(.ui-resizable-handle):not(.gfield-admin-icons), .gform_wrapper.gravity-theme .right_label div.gfield>div:not(.ui-resizable-handle):not(.gfield-admin-icons) {
	width: 70%;
}

@media (max-width:640px) {
	.gform_wrapper.gravity-theme .left_label div.gfield>div:not(.ui-resizable-handle):not(.gfield-admin-icons), .gform_wrapper.gravity-theme .right_label div.gfield>div:not(.ui-resizable-handle):not(.gfield-admin-icons) {
		width: 100%;
	}
}

.gform_wrapper.gravity-theme .right_label .gfield_label {
	padding-right: 1em;
	text-align: right;
}

.gform_wrapper.gravity-theme .left_label.gform_fields, .gform_wrapper.gravity-theme .right_label.gform_fields {
	position: relative;
}

.gform_wrapper.gravity-theme .left_label .gfield_html_formatted, .gform_wrapper.gravity-theme .right_label .gfield_html_formatted {
	margin-left: 30%;
}

.gform_wrapper.gravity-theme .left_label #field_submit, .gform_wrapper.gravity-theme .right_label #field_submit {
	justify-content: flex-start;
}

.gform_wrapper.gravity-theme .left_label #field_submit input, .gform_wrapper.gravity-theme .right_label #field_submit input {
	margin-left: 30%;
}

.gform_wrapper.gravity-theme .field_sublabel_below .ginput_complex {
	align-items: flex-start;
}

.gform_wrapper.gravity-theme .field_sublabel_above .ginput_complex {
	align-items: flex-end;
}

.gform_wrapper.gravity-theme .left_label.validation_above .copy_values_option_container, .gform_wrapper.gravity-theme .right_label.validation_above .copy_values_option_container {
	float: right;
	width: 70%;
	padding-left: 8px;
}

@media (max-width:640px) {
	.gform_wrapper.gravity-theme .left_label.validation_above .copy_values_option_container, .gform_wrapper.gravity-theme .right_label.validation_above .copy_values_option_container {
		width: 100%;
	}
}

.rtl .gform_wrapper.gravity-theme .left_label legend.gfield_label, .rtl .gform_wrapper.gravity-theme .right_label legend.gfield_label {
	margin-left: 1em;
	position: absolute;
	right: 0;
	text-align: left;
	width: 30%;
}

.rtl .gform_wrapper.gravity-theme .left_label legend.gfield_label {
	width: 30%;
}

.rtl .gform_wrapper.gravity-theme .left_label .gfield_label {
	padding-left: 1em;
	text-align: left !important;
}

.rtl .gform_wrapper.gravity-theme .left_label fieldset.gfield, .rtl .gform_wrapper.gravity-theme .right_label fieldset.gfield {
	margin-left: 0;
	padding-right: 30%;
}

.rtl .gform_wrapper.gravity-theme .right_label .gfield_label, .rtl .gform_wrapper.gravity-theme .right_label legend.gfield_label {
	padding: 0;
	text-align: right;
}

.rtl .gform_wrapper.gravity-theme .right_label label.gfield_label {
	padding-right: 0;
}

.rtl .gform_wrapper.gravity-theme .left_label .gfield_html_formatted, .rtl .gform_wrapper.gravity-theme .right_label .gfield_html_formatted {
	margin-left: 0;
	margin-right: 30%;
}

html[dir=rtl] .gform_wrapper.gravity-theme code, html[dir=rtl] .gform_wrapper.gravity-theme input[type=email], html[dir=rtl] .gform_wrapper.gravity-theme input[type=tel], html[dir=rtl] .gform_wrapper.gravity-theme input[type=url] {
	direction: rtl;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gfield_label {
	direction: rtl;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gfield_required {
	margin-left: 0;
	margin-right: 4px;
}

html[dir=rtl] .gform_wrapper.gravity-theme ::-webkit-input-placeholder {
	text-align: right;
}

html[dir=rtl] .gform_wrapper.gravity-theme ::-moz-placeholder {
	text-align: right;
}

html[dir=rtl] .gform_wrapper.gravity-theme :-ms-input-placeholder {
	text-align: right;
}

html[dir=rtl] .gform_wrapper.gravity-theme :-moz-placeholder {
	text-align: right;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gform_wrapper.gravity-theme fieldset {
	display: block;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gfield_header_item+.gfield_header_item:not(:last-child), html[dir=rtl] .gform_wrapper.gravity-theme .gfield_list_group_item+.gfield_list_group_item {
	margin-left: 0;
	margin-right: 16px;
}

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

@media (min-width:641px) {
	html[dir=rtl] .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full) {
		padding-left: 0;
		padding-right: 16px;
	}
	
	html[dir=rtl] .gform_wrapper.gravity-theme .gform_show_password {
		left: 8px;
		right: unset;
	}
}

@media (max-width:640px) {
	html[dir=rtl] .gform_wrapper.gravity-theme .left_label fieldset.gfield, html[dir=rtl] .gform_wrapper.gravity-theme .right_label fieldset.gfield {
		padding-right: 0;
	}
	
	html[dir=rtl] .gform_wrapper.gravity-theme .left_label legend.gfield_label, html[dir=rtl] .gform_wrapper.gravity-theme .right_label legend.gfield_label {
		margin: 0;
		padding: 0;
		position: relative;
		width: 100%;
	}
	
	html[dir=rtl] .gform_wrapper.gravity-theme .left_label .gfield_label {
		text-align: right !important;
	}
	
	html[dir=rtl] .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full), html[dir=rtl] .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full) {
		padding-right: 0;
	}
}

.gform_wrapper.gravity-theme .ginput_counter {
	color: #767676;
	font-size: .8em;
}

.gform_wrapper.gravity-theme .ginput_counter_tinymce {
	border-top: 1px solid #eee;
	font-size: 12px;
	padding: 2px 10px;
}

.gform_wrapper.gravity-theme .validation_message--hidden-on-empty:empty {
	display: none;
}

.gform_wrapper.gravity-theme .gform_card_icon_container {
	display: flex;
	height: 32px;
	margin: 8px 0 6.4px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon {
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-96d179a/www.nextgenclubs.com.au/wp-content/plugins/gravityforms/images/gf-creditcards.svg");
	background-repeat: no-repeat;
	height: 32px;
	margin-right: 4.8px;
	text-indent: -9000px;
	width: 40px;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.nitro-lazy {
	background-image: none !important;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_amex {
	background-position: -167px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_discover {
	background-position: -221px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_mastercard {
	background-position: -275px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_visa {
	background-position: -59px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_jcb {
	background-position: -329px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_maestro {
	background-position: -5px 0;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_selected {
	position: relative;
}

.gform_wrapper.gravity-theme .gform_card_icon_container div.gform_card_icon.gform_card_icon_selected::after {
	background: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-96d179a/www.nextgenclubs.com.au/wp-content/plugins/gravityforms/images/gf-creditcards-check.svg") center center no-repeat;
	bottom: 4px;
	content: "";
	display: block;
	height: 10px;
	position: absolute;
	right: 0;
	width: 13px;
}

.gform_wrapper.gravity-theme .ginput_container_creditcard .ginput_cardinfo_right {
	align-items: center;
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: flex-start;
}

.gform_wrapper.gravity-theme .ginput_container_creditcard .ginput_cardinfo_right label {
	width: 100%;
}

.gform_wrapper.gravity-theme .ginput_container_creditcard .ginput_card_security_code_icon {
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-96d179a/www.nextgenclubs.com.au/wp-content/plugins/gravityforms/images/gf-creditcards.svg");
	background-position: -382px center;
	background-repeat: no-repeat;
	display: block;
	flex: none;
	height: 32px;
	margin-left: .3em;
	width: 40px;
}

.gform_wrapper.gravity-theme .ginput_container_creditcard .ginput_card_security_code_icon.nitro-lazy {
	background-image: none !important;
}

html[dir=rtl] .gform_wrapper.gravity-theme .ginput_container_creditcard .ginput_card_security_code_icon {
	margin-left: 0;
	margin-right: .3em;
}

.gform_wrapper.gravity-theme .gfield_list_group, .gform_wrapper.gravity-theme .gfield_list_header {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-bottom: 8px;
}

.gform_wrapper.gravity-theme .gfield_list_group:last-child {
	margin-bottom: 0;
}

.gform_wrapper.gravity-theme .gfield_header_item {
	word-break: break-word;
}

.gform_wrapper.gravity-theme .gfield_header_item, .gform_wrapper.gravity-theme .gfield_list_group_item {
	flex-grow: 1;
	width: 0;
}

.gform_wrapper.gravity-theme .gfield_header_item+.gfield_header_item:not(.gfield_header_item--icons), .gform_wrapper.gravity-theme .gfield_list_group_item+.gfield_list_group_item {
	margin-left: 2%;
}

.gform_wrapper.gravity-theme .gfield_list_group_item input, .gform_wrapper.gravity-theme .gfield_list_group_item select {
	width: 100%;
}

.gform_wrapper.gravity-theme .gfield_header_item--icons, .gform_wrapper.gravity-theme .gfield_list_icons {
	align-items: center;
	display: flex;
	flex: none;
	justify-content: center;
	width: 48px;
}

.gform_wrapper.gravity-theme .gfield_list_icons button {
	background: transparent url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-96d179a/www.nextgenclubs.com.au/wp-content/plugins/gravityforms/images/list-add.svg");
	border: none;
	font-size: 0;
	height: 16px;
	opacity: .5;
	padding: 0;
	transition: opacity .5s ease-out;
	width: 16px;
}

.gform_wrapper.gravity-theme .gfield_list_icons button.nitro-lazy {
	background: none !important;
}

.gform_wrapper.gravity-theme .gfield_list_icons button:focus, .gform_wrapper.gravity-theme .gfield_list_icons button:hover {
	opacity: 1;
	outline: 0;
}

.gform_wrapper.gravity-theme .gfield_list_icons button.delete_list_item {
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/optimized/rev-96d179a/www.nextgenclubs.com.au/wp-content/plugins/gravityforms/images/list-remove.svg");
	margin-left: 5px;
}

.gform_wrapper.gravity-theme .gfield_list_icons button.delete_list_item.nitro-lazy {
	background-image: none !important;
}

@media (max-width:640px) {
	.gform_wrapper.gravity-theme .gfield_list_header {
		display: none;
	}
	
	.gform_wrapper.gravity-theme .gfield_list_group {
		border: 1px solid rgba(0, 0, 0, .2);
		display: block;
		margin-bottom: 16px;
		padding: 16px;
	}
	
	.gform_wrapper.gravity-theme .gfield_header_item, .gform_wrapper.gravity-theme .gfield_list_group_item {
		width: auto;
	}
	
	.gform_wrapper.gravity-theme .gfield_list_group:last-child {
		margin-bottom: 0;
	}
	
	.gform_wrapper.gravity-theme .gfield_list_group_item:not(:last-child) {
		margin-bottom: 8px;
	}
	
	.gform_wrapper.gravity-theme .gfield_list_group_item::before {
		content: attr(data-label);
		font-size: 14.992px;
	}
	
	.gform_wrapper.gravity-theme .gfield_list_icons {
		background-color: rgba(0, 0, 0, .1);
		line-height: 0;
		margin: 16px -16px -16px;
		padding: 12px 16px;
		text-align: left;
		width: auto;
	}
	
	.gform_wrapper.gravity-theme .gfield_header_item+.gfield_header_item:not(.gfield_header_item--icons), .gform_wrapper.gravity-theme .gfield_list_group_item+.gfield_list_group_item {
		margin-left: 0;
	}
}

html[dir=rtl] .gform_wrapper.gravity-theme .gfield_header_item+.gfield_header_item:not(.gfield_header_item--icons), html[dir=rtl] .gform_wrapper.gravity-theme .gfield_list_group_item+.gfield_list_group_item {
	margin-left: 0;
	margin-right: 16px;
}

@media (max-width:640px) {
	html[dir=rtl] .gform_wrapper.gravity-theme .gfield_header_item+.gfield_header_item:not(.gfield_header_item--icons), html[dir=rtl] .gform_wrapper.gravity-theme .gfield_list_group_item+.gfield_list_group_item {
		margin-right: 0;
	}
}

html[dir=rtl] .gform_wrapper.gravity-theme .gfield_list_icons button.delete_list_item {
	margin-left: 0;
	margin-right: 5px;
}

.gform_wrapper.gravity-theme .gfield_label {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
	padding: 0;
}

.gform_wrapper.gravity-theme .gfield_header_item, .gform_wrapper.gravity-theme .gform_fileupload_rules, .gform_wrapper.gravity-theme .ginput_complex label {
	font-size: 15px;
	padding-top: 5px;
}

.gform_wrapper.gravity-theme.left_label fieldset.gfield, .gform_wrapper.gravity-theme.right_label fieldset.gfield {
	padding: 16px 16px 16px 30%;
}

.gform_wrapper.gravity-theme.left_label fieldset.gfield .gfield_description, .gform_wrapper.gravity-theme.left_label fieldset.gfield .ginput_container:not(.ginput_container_time), .gform_wrapper.gravity-theme.right_label fieldset.gfield .gfield_description, .gform_wrapper.gravity-theme.right_label fieldset.gfield .ginput_container:not(.ginput_container_time) {
	width: 100%;
}

.gform_wrapper.gravity-theme.left_label legend.gfield_label, .gform_wrapper.gravity-theme.right_label legend.gfield_label {
	left: 0;
}

.gform_wrapper.gravity-theme.left_label .gfield:not(.gsection):not(.gfield_html):not(fieldset), .gform_wrapper.gravity-theme.right_label .gfield:not(.gsection):not(.gfield_html):not(fieldset) {
	justify-content: flex-start;
}

.gform_wrapper.gravity-theme.left_label .gfield_html.gfield_html_formatted, .gform_wrapper.gravity-theme.right_label .gfield_html.gfield_html_formatted {
	display: flex;
}

.gform_wrapper.gravity-theme.left_label .gfield.gfield_html:not(.gfield_html_formatted) .gf-html-container, .gform_wrapper.gravity-theme.right_label .gfield.gfield_html:not(.gfield_html_formatted) .gf-html-container {
	width: 100%;
}

.gform_wrapper.gravity-theme.right_label legend.gfield_label {
	text-align: right;
}

.gform_wrapper.gravity-theme:not(.top_label) .ginput_container.ginput_single_email {
	margin-left: 0;
}

.gform_wrapper.gravity-theme .gform_validation_errors {
	background: #fff9f9;
	border-radius: 5px;
	border: 1.5px solid #c02b0a;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .11), 0 0 4px rgba(18, 25, 97, .0405344);
	margin-block-end: 8px;
	margin-block-start: 8px;
	padding-block: 16px;
	padding-inline-end: 16px;
	padding-inline-start: 48px;
	position: relative;
	width: 100%;
}

.gform_wrapper.gravity-theme .gform_validation_errors:focus {
	outline: 2px solid #c02b0a;
	outline-offset: 2px;
}

.gform_wrapper.gravity-theme .gform_validation_errors>h2 {
	color: #c02b0a;
	font-size: 13.2px;
	font-weight: 500;
	line-height: 17.6px;
	margin-block-end: 12px;
	margin-block-start: 0;
	margin-inline: 0;
}

.gform_wrapper.gravity-theme .gform_validation_errors>h2::before {
	display: none;
}

.gform_wrapper.gravity-theme .gform_validation_errors>h2 .gform-icon {
	align-items: center;
	display: flex;
	font-size: 28px;
	height: 100%;
	inset-inline-start: 12px;
	position: absolute;
	inset-block-start: 0;
}

.gform_wrapper.gravity-theme .gform_validation_errors>h2.hide_summary {
	margin: 0;
	padding: 0;
}

.gform_wrapper.gravity-theme .gform_validation_errors>ol {
	padding-inline-start: 20px;
}

.gform_wrapper.gravity-theme .gform_validation_errors>ol a {
	color: #c02b0a;
	font-size: 13.2px;
}

.gform_wrapper.gravity-theme .gform_validation_errors>ol a:focus {
	outline: 2px solid #c02b0a;
	outline-offset: 2px;
}

.gform_wrapper.gravity-theme .gform_validation_errors>ol li {
	color: #c02b0a;
	font-size: 13.2px;
	list-style-type: disc !important;
	margin-block-end: 8px;
	margin-block-start: 0;
	margin-inline: 0;
}

.gform_wrapper.gravity-theme .gform_validation_errors>ol li:last-of-type {
	margin-block-end: 0;
}

.gform_wrapper.gravity-theme .gfield_required {
	color: #c02b0a;
	display: inline-block;
	font-size: 13.008px;
	padding-inline-start: .125em;
}

.gform_wrapper.gravity-theme .gfield_required .gfield_required_custom, .gform_wrapper.gravity-theme .gfield_required .gfield_required_text {
	font-style: italic;
	font-weight: 400;
}

.gform_wrapper.gravity-theme .gform_required_legend .gfield_required {
	padding-inline-start: 0;
}

.gform_wrapper.gravity-theme .validation_error {
	border-block-end: 2px solid #c02b0a;
	border-block-start: 2px solid #c02b0a;
	color: #c02b0a;
	font-size: 1em;
	font-weight: 700;
	margin-block-end: 32px;
	padding: 16px;
	text-align: center;
}

.gform_wrapper.gravity-theme .gfield_error .gfield_repeater_cell label, .gform_wrapper.gravity-theme .gfield_error label, .gform_wrapper.gravity-theme .gfield_error legend, .gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message, .gform_wrapper.gravity-theme [aria-invalid=true]+label, .gform_wrapper.gravity-theme label+[aria-invalid=true] {
	color: #c02b0a;
}

.gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message {
	background: #fff9f9;
	border: 1px solid #c02b0a;
	font-size: 14.992px;
	margin-block-start: 8px;
	padding: 12.992px 24px;
}

.gform_wrapper.gravity-theme .left_label.validation_above fieldset .gfield_validation_message, .gform_wrapper.gravity-theme .left_label.validation_above fieldset .validation_message, .gform_wrapper.gravity-theme .right_label.validation_above fieldset .gfield_validation_message, .gform_wrapper.gravity-theme .right_label.validation_above fieldset .validation_message {
	clear: right;
}

.gform_wrapper.gravity-theme .validation_above .gfield_validation_message, .gform_wrapper.gravity-theme .validation_above .validation_message {
	margin-block-end: 16px;
}

.gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
	border: 1px solid #c02b0a;
}

.gform_wrapper.gravity-theme .gform_previous_button.button, .gform_wrapper.gravity-theme .gform_save_link.button {
	-webkit-appearance: none !important;
	background-color: #fff;
	color: #6b7280;
	text-decoration: none;
}

.gform_wrapper.gravity-theme .gform_previous_button.button svg, .gform_wrapper.gravity-theme .gform_save_link.button svg {
	display: inline-block;
	margin-right: 4px;
}

.gform_wrapper.gravity-theme button.button:disabled {
	opacity: .6;
}

.gform_wrapper.gravity-theme #field_submit, .gform_wrapper.gravity-theme .gform_footer {
	display: flex;
}

.gform_wrapper.gravity-theme #field_submit input, .gform_wrapper.gravity-theme .gform_footer input {
	align-self: flex-end;
}

.gform_wrapper.gravity-theme #field_submit .gform_image_button, .gform_wrapper.gravity-theme .gform_footer .gform_image_button {
	background-color: transparent;
	border: none;
	border-radius: 0;
	height: auto;
	padding: 0;
	width: auto;
}

.gform_wrapper.gravity-theme #field_submit .gform-button--width-full, .gform_wrapper.gravity-theme .gform_footer .gform-button--width-full {
	text-align: center;
	width: 100%;
}

.gform_wrapper.gravity-theme .ginput_complex {
	display: flex;
	flex-flow: row wrap;
}

.gform_wrapper.gravity-theme .ginput_complex fieldset, .gform_wrapper.gravity-theme .ginput_complex span {
	flex: 1;
}

.gform_wrapper.gravity-theme .ginput_complex .ginput_full {
	flex: 0 0 100%;
}

.gform_wrapper.gravity-theme .ginput_complex .clear-multi {
	display: flex;
}

.gform_wrapper.gravity-theme .ginput_complex label, .gform_wrapper.gravity-theme .ginput_complex legend {
	display: block;
}

.gform_wrapper.gravity-theme .ginput_complex input, .gform_wrapper.gravity-theme .ginput_complex select {
	width: 100%;
}

.gform_wrapper.gravity-theme .ginput_container_address {
	margin-left: -1%;
	margin-right: -1%;
}

.gform_wrapper.gravity-theme .ginput_container_address span {
	flex: 0 0 50%;
	padding-left: .9804%;
	padding-right: .9804%;
}

@media (min-width:641px) {
	.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: 1%;
	}
	
	.gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full), .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full) {
		padding-left: 1%;
		padding-right: 0;
	}
	
	.gform_wrapper.gravity-theme .ginput_container_address span, .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
		margin-bottom: 8px;
	}
	
	.gform_wrapper.gravity-theme .ginput_container_address {
		margin-bottom: -8px;
	}
	
	html[dir=rtl] .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full), html[dir=rtl] .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
		padding-left: 1%;
		padding-right: 0;
	}
	
	html[dir=rtl] .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full), html[dir=rtl] .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full) {
		padding-left: 0;
		padding-right: 1%;
	}
}

@media (max-width:640px) {
	.gform_wrapper.gravity-theme .ginput_complex span {
		flex: 0 0 100%;
		margin-bottom: 8px;
		padding-left: 0;
	}
	
	.gform_wrapper.gravity-theme .ginput_complex.ginput_container_address span {
		padding-left: .9804%;
	}
}

.gform_wrapper.gravity-theme .description, .gform_wrapper.gravity-theme .gfield_description, .gform_wrapper.gravity-theme .gsection_description, .gform_wrapper.gravity-theme .instruction {
	clear: both;
	font-family: inherit;
	font-size: 15px;
	letter-spacing: normal;
	line-height: inherit;
	padding-top: 13px;
	width: 100%;
}

.gform_wrapper.gravity-theme .field_description_above .description, .gform_wrapper.gravity-theme .field_description_above .gfield_description, .gform_wrapper.gravity-theme .field_description_above .gsection_description, .gform_wrapper.gravity-theme .field_description_above .instruction {
	padding-bottom: 16px;
}

.gform_wrapper.gravity-theme .field_sublabel_above .description, .gform_wrapper.gravity-theme .field_sublabel_above .gfield_description, .gform_wrapper.gravity-theme .field_sublabel_above .gsection_description {
	margin-top: 9.008px;
}

.gform_wrapper.gravity-theme .top_label .gsection_description {
	margin-bottom: 9.008px;
	width: 100%;
}

.gform_wrapper.gravity-theme .field_description_below .gfield_consent_description, .gform_wrapper.gravity-theme .gfield_consent_description {
	border: 1px solid #ddd;
	font-size: 13.008px;
	margin-top: 12.8px;
	max-height: 240px;
	overflow-y: scroll;
	padding: 6.4px 8px;
	width: 100%;
}

.gform_wrapper.gravity-theme .field_description_above .gfield_choice_limit_message, .gform_wrapper.gravity-theme .field_sublabel_above .gfield_choice_limit_message, .gform_wrapper.gravity-theme .gfield_choice_limit_message {
	display: block;
	margin-bottom: 8px;
	margin-top: 0;
	padding-bottom: 0;
	padding-top: 0;
}

.gform_wrapper.gravity-theme .gfield_creditcard_warning {
	background-color: rgba(255, 223, 224, .25);
	border-bottom: 4px solid #c02b0a;
	border-top: 2px solid #c02b0a;
	padding: 16px;
}

.gform_wrapper.gravity-theme .gfield_creditcard_warning .gfield_creditcard_warning_message {
	color: #c02b0a;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	min-height: 32px;
	position: relative;
}

.gform_wrapper.gravity-theme .gfield_creditcard_warning .gfield_creditcard_warning_message span {
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSItMTA2NyAyODY1IDI0IDMyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IC0xMDY3IDI4NjUgMjQgMzI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOiM3OTAwMDA7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMTA1MywyODY1Yy01LjUsMC0xMCw0LjUtMTAsMTBoNGMwLTMuMywyLjctNiw2LTZjMy4zLDAsNiwyLjcsNiw2djJoLTIwdjE0YzAsMy4zLDIuNyw2LDYsNmgxMg0KCWMzLjMsMCw2LTIuNyw2LTZ2LTE2Qy0xMDQzLDI4NjkuNS0xMDQ3LjUsMjg2NS0xMDUzLDI4NjV6IE0tMTA0OSwyODkzaC0xMmMtMS4xLDAtMi0wLjktMi0ydi0xMGgxNnYxMA0KCUMtMTA0NywyODkyLjEtMTA0Ny45LDI4OTMtMTA0OSwyODkzeiBNLTEwNTMsMjg4N2MwLDEuMS0wLjksMi0yLDJzLTItMC45LTItMmMwLTEuMSwwLjktMiwyLTJTLTEwNTMsMjg4NS45LTEwNTMsMjg4N3oiLz4NCjwvc3ZnPg0K");
	background-position: 0 3.2px;
	background-repeat: no-repeat;
	background-size: 24px 16px;
	border-bottom: 1px solid #c02b0a;
	display: block;
	letter-spacing: .1pt;
	margin-bottom: 16px;
	padding: 0 0 16px 24px;
	text-transform: uppercase;
}

.gform_wrapper.gravity-theme .gfield_creditcard_warning .gfield_creditcard_warning_message span.nitro-lazy {
	background-image: none !important;
}

.gform_wrapper.gravity-theme .ginput_cardextras {
	display: flex;
	flex-wrap: wrap;
}

.gform_wrapper.gravity-theme .ginput_complex .ginput_cardinfo_right input {
	max-width: 112px;
	width: 30%;
}

.gform_wrapper.gravity-theme .ginput_card_expiration_container {
	display: flex;
	flex-wrap: wrap;
}

.gform_wrapper.gravity-theme .ginput_card_expiration_month {
	flex: 1;
	margin-right: 16px;
}

.gform_wrapper.gravity-theme .ginput_card_expiration_year {
	flex: 1;
}

.gform_wrapper.gravity-theme .ginput_cardinfo_left label, .gform_wrapper.gravity-theme .ginput_cardinfo_left legend, .gform_wrapper.gravity-theme .ginput_cardinfo_right label, .gform_wrapper.gravity-theme .ginput_cardinfo_right legend {
	flex: 1 1 100%;
}

.gform_wrapper.gravity-theme fieldset.ginput_cardinfo_left {
	display: flex;
	flex-direction: column;
}

.gform_wrapper.gravity-theme fieldset.ginput_cardinfo_left legend {
	float: left;
	padding-top: 5px;
}

.gform_wrapper.gravity-theme .field_sublabel_below fieldset.ginput_cardinfo_left {
	flex-direction: column-reverse;
}

html[dir=rtl] .gform_wrapper.gravity-theme .ginput_card_expiration_month {
	margin-left: 16px;
	margin-right: 0;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gform_card_icon {
	float: right;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gfield_creditcard_warning .gfield_creditcard_warning_message span {
	background-position: right 3.2px;
	background-repeat: no-repeat;
	background-size: 24px 16px;
	display: block;
	margin-bottom: 16px;
	padding: 0 24px 16px 0;
}

html[dir=rtl] .gform_wrapper.gravity-theme fieldset.ginput_cardinfo_left {
	display: flex;
}

@media (max-width:640px) {
	.gform_wrapper.gravity-theme .ginput_card_expiration {
		flex: none;
	}
	
	.gform_wrapper.gravity-theme .ginput_card_expiration_month {
		margin-bottom: 8px;
	}
}

.gform_wrapper.gravity-theme .ginput_container_date+.ginput_container_date {
	margin-left: 2%;
}

.gform_wrapper.gravity-theme .ginput_container_date[style*="display:none"]+.ginput_container_date {
	margin-left: 0;
}

.gform_wrapper.gravity-theme .ginput_container_date label {
	display: block;
}

html[dir=rtl] .gform_wrapper.gravity-theme .ginput_container_date+.ginput_container_date {
	margin-left: 0;
	margin-right: 16px;
}

html[dir=rtl] .gform_wrapper.gravity-theme .ginput_container_date[style*="display:none"]+.ginput_container_date {
	margin-right: 0;
}

.gravity-theme.ui-datepicker {
	background: #fff;
	border: 1px solid #d0d1d3;
	border-radius: 3px;
	box-shadow: 0 .0625rem .25rem rgba(0, 0, 0, .11), 0 0 .25rem rgba(18, 25, 97, .0405344);
	color: #607382;
	font-size: .8125rem;
	font-weight: var(--gform-theme-font-weight-medium);
	margin-top: 5px;
	max-width: 400px;
	padding: 18px 15px;
	width: auto;
}

.gravity-theme.ui-datepicker table, .gravity-theme.ui-datepicker td, .gravity-theme.ui-datepicker th, .gravity-theme.ui-datepicker thead, .gravity-theme.ui-datepicker tr {
	background: 0 0;
	border: 0;
	margin: 0;
}

.gravity-theme.ui-datepicker td, .gravity-theme.ui-datepicker th {
	padding: 5px;
	text-shadow: none;
	text-transform: none;
}

.gravity-theme.ui-datepicker .ui-datepicker-header {
	border: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin: 0 0 5px;
	padding: 0;
	position: relative;
	width: 100%;
}

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next, .gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
	align-items: center;
	background: 0 0;
	border: 0;
	color: #607382;
	cursor: pointer;
	display: flex;
	font-family: gform-icons-theme !important;
	font-size: 24px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	height: 30px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	speak: never;
	text-decoration: none;
	top: 50%;
	transform: translateY(-50%);
	transition: color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
	width: 30px;
}

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next:focus, .gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover, .gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:focus, .gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover {
	color: #2f4054;
}

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next .ui-icon, .gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev .ui-icon {
	display: none;
}

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next::before, .gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before {
	border: 0;
	height: auto;
	position: static;
	transform: none;
	width: auto;
}

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
	left: 0;
}

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before {
	content: "";
}

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
	right: 0;
}

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next::before {
	content: "";
}

.gravity-theme.ui-datepicker .ui-datepicker-header select {
	-webkit-appearance: none;
	background-color: transparent;
	background-image: url("https://cdn-ldmfj.nitrocdn.com/sbhYwmFMjvMnpeFnYHlBlkQteRqQVeBV/assets/images/source/rev-96d179a/www.nextgenclubs.com.au/wp-content/plugins/gravityforms/images/theme/down-arrow.svg");
	background-position: 100% 50%;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: #585e6a;
	cursor: pointer;
	display: inline-block;
	font-size: .875rem;
	font-weight: var(--gform-theme-font-weight-medium);
	height: auto;
	min-height: 0;
	padding: 0 22px 0 0;
	width: auto;
}

.gravity-theme.ui-datepicker .ui-datepicker-header select.nitro-lazy {
	background-image: none !important;
}

.gravity-theme.ui-datepicker .ui-datepicker-header select.ui-datepicker-month {
	margin-right: 20px;
	-moz-text-align-last: right;
	text-align-last: right;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar {
	table-layout: fixed;
	width: 100%;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar a, .gravity-theme.ui-datepicker .ui-datepicker-calendar span {
	font-weight: var(--gform-theme-font-weight-normal);
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar th span {
	align-items: center;
	color: #2f4054;
	display: flex;
	font-size: .8125rem;
	font-weight: var(--gform-theme-font-weight-medium);
	height: 40px;
	justify-content: center;
	width: 40px;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar td {
	font-size: .8125rem;
	height: 50px;
	width: 50px;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default {
	align-items: center;
	background: 0 0;
	border: 1px solid transparent;
	border-radius: 100%;
	box-shadow: none;
	color: #2f4054;
	display: flex;
	height: 40px;
	justify-content: center;
	text-decoration: none;
	transition: color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
	width: 40px;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:focus, .gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:hover {
	background: 0 0;
	border-color: #607382;
	outline: 0;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:active {
	background: #f2f3f5;
	border-color: #607382;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default {
	background: #607382;
	border-color: #607382;
	box-shadow: 0 .125rem .125rem rgba(58, 58, 87, .0596411);
	color: #fff;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:focus, .gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:hover {
	border-color: #607382;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled {
	background: 0 0;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default {
	align-items: center;
	background: #f2f3f5;
	border: 1px solid rgba(32, 32, 46, .079);
	border-radius: 100%;
	box-shadow: 0 .125rem .125rem rgba(58, 58, 87, .0596411);
	color: #686e77;
	cursor: text;
	display: flex;
	height: 40px;
	justify-content: center;
	text-decoration: none;
	width: 40px;
}

@media (max-width:640px) {
	.gravity-theme.ui-datepicker {
		max-width: 235px;
	}
	
	.gravity-theme.ui-datepicker .ui-datepicker-header {
		margin-bottom: 10px;
	}
	
	.gravity-theme.ui-datepicker td, .gravity-theme.ui-datepicker th {
		padding: 3px;
	}
	
	.gravity-theme.ui-datepicker .ui-datepicker-calendar th span {
		height: 20px;
		width: 20px;
	}
	
	.gravity-theme.ui-datepicker .ui-datepicker-calendar td {
		height: 30px;
		width: 30px;
	}
	
	.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default {
		height: 20px;
		width: 20px;
	}
	
	.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default {
		height: 20px;
		width: 20px;
	}
}

html[dir=rtl] #ui-datepicker-div.gform-theme-datepicker[style] {
	right: auto !important;
}

.gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer {
	margin: 6px 0 0;
	padding: 16px 0;
}

.gform_wrapper.gravity-theme .gform_footer.left_label, .gform_wrapper.gravity-theme .gform_footer.right_label, .gform_wrapper.gravity-theme .gform_page_footer.left_label, .gform_wrapper.gravity-theme .gform_page_footer.right_label {
	padding: 16px 0 10px 30%;
}

.gform_wrapper.gravity-theme .gform_footer button, .gform_wrapper.gravity-theme .gform_footer input, .gform_wrapper.gravity-theme .gform_page_footer button, .gform_wrapper.gravity-theme .gform_page_footer input {
	margin-bottom: 8px;
}

.gform_wrapper.gravity-theme .gform_footer button.button:disabled, .gform_wrapper.gravity-theme .gform_footer input.button:disabled, .gform_wrapper.gravity-theme .gform_page_footer button.button:disabled, .gform_wrapper.gravity-theme .gform_page_footer input.button:disabled {
	opacity: .6;
}

.gform_wrapper.gravity-theme .gform_footer button+input, .gform_wrapper.gravity-theme .gform_footer input+button, .gform_wrapper.gravity-theme .gform_footer input+input, .gform_wrapper.gravity-theme .gform_page_footer button+input, .gform_wrapper.gravity-theme .gform_page_footer input+button, .gform_wrapper.gravity-theme .gform_page_footer input+input {
	margin-left: 8px;
}

html[dir=rtl] .gform_wrapper.gravity-theme button+input, html[dir=rtl] .gform_wrapper.gravity-theme input+button, html[dir=rtl] .gform_wrapper.gravity-theme input+input {
	margin-right: 8px;
}

.gform_wrapper.gravity-theme .gfield_checkbox label, .gform_wrapper.gravity-theme .gfield_radio label {
	display: inline-block;
	font-size: 15px;
}

.gform_wrapper.gravity-theme .gfield_checkbox button, .gform_wrapper.gravity-theme .gfield_checkbox input[type=text], .gform_wrapper.gravity-theme .gfield_radio button, .gform_wrapper.gravity-theme .gfield_radio input[type=text] {
	margin-top: 16px;
}

.gform_wrapper.gravity-theme .gfield-choice-input {
	display: inline-block;
	margin-top: 0;
	top: 0;
	vertical-align: middle;
}

.gform_wrapper.gravity-theme .gfield-choice-input+label {
	margin-bottom: 0;
	max-width: calc(100% - 32px);
	vertical-align: middle;
}

.gform_wrapper.gravity-theme .gfield-choice-input:disabled+label {
	color: #757575;
}

.gform_wrapper.gravity-theme input[type=number] {
	display: inline-block;
}

.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
	font-size: 15px;
	margin-bottom: 0;
	margin-top: 0;
	padding: 8px;
}

.gform_wrapper.gravity-theme .chosen-container-multi, .gform_wrapper.gravity-theme .ginput_product_price, .gform_wrapper.gravity-theme .ginput_product_price_label, .gform_wrapper.gravity-theme .ginput_quantity_label {
	font-size: 15px;
}

.gform_wrapper.gravity-theme .chosen-choices {
	padding: 8px;
}

.gform_wrapper.gravity-theme .ginput_container_date {
	align-content: flex-start;
	align-items: center;
	display: flex;
}

.gform_wrapper.gravity-theme .ginput_container_date input {
	width: auto;
}

.gform_wrapper.gravity-theme .ginput_container_date .datepicker_with_icon.large {
	width: calc(100% - 48px);
}

.gform_wrapper.gravity-theme .ginput_container_date img.ui-datepicker-trigger {
	display: block;
	margin-left: 12.8px;
	max-height: 25.6px;
	max-width: 25.6px;
}

.gform_wrapper.gravity-theme .ginput_complex .ginput_container_date {
	flex-basis: min-content;
	flex-flow: row wrap;
	max-width: 30%;
}

.gform_wrapper.gravity-theme .ginput_complex .ginput_container_date input, .gform_wrapper.gravity-theme .ginput_complex .ginput_container_date select {
	min-width: 84px;
	width: 100%;
}

.gform_wrapper.gravity-theme .gfield_chainedselect.horizontal select {
	min-width: 100px;
}

.gform_wrapper.gravity-theme .gform_show_password {
	align-items: center;
	background: 0 0;
	color: inherit;
	display: flex;
	height: 100%;
}

.gform_wrapper.gravity-theme .gform_show_password:focus, .gform_wrapper.gravity-theme .gform_show_password:hover {
	background: 0 0;
}

.gform_wrapper.gravity-theme .gfield_consent_description {
	border: 1px solid #ddd;
	font-size: .8em;
	margin-top: 8px;
	max-height: 240px;
	overflow-y: scroll;
	padding: 8px;
}

.gform_wrapper.gravity-theme .gfield .ginput_quantity {
	width: auto;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gfield_checkbox, .gform_wrapper.gravity-theme .ginput_container_image_choice .gfield_radio {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice {
	align-self: start;
	display: block;
	inline-size: 200px;
	max-inline-size: 200px;
	min-inline-size: 200px;
	position: relative;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice .gfield-image-choice-wrapper-outer {
	display: block;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice label {
	display: inline;
	margin: 0;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice input {
	margin-inline-start: 0;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice:where([\:has\(input\:checked\)])::after {
	font-family: gform-icons-theme !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: none;
	text-transform: none;
	align-items: center;
	background-color: #607382;
	block-size: 38px;
	border-radius: 50%;
	color: #fff;
	content: "";
	display: flex;
	filter: drop-shadow(0 1px 1px rgba(18, 25, 97, .15)) drop-shadow(0 2px 5px rgba(18, 25, 97, .1)) drop-shadow(0 0 0 rgba(18, 25, 97, .05));
	font-size: 32px;
	inline-size: 38px;
	inset-block-start: 10px;
	inset-inline-end: 10px;
	justify-content: center;
	position: absolute;
	z-index: 5;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice:where([\:has\(input\:checked\)])::after {
	font-family: gform-icons-theme !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: none;
	text-transform: none;
	align-items: center;
	background-color: #607382;
	block-size: 38px;
	border-radius: 50%;
	color: #fff;
	content: "";
	display: flex;
	filter: drop-shadow(0 1px 1px rgba(18, 25, 97, .15)) drop-shadow(0 2px 5px rgba(18, 25, 97, .1)) drop-shadow(0 0 0 rgba(18, 25, 97, .05));
	font-size: 32px;
	inline-size: 38px;
	inset-block-start: 10px;
	inset-inline-end: 10px;
	justify-content: center;
	position: absolute;
	z-index: 5;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice:where([\:has\(input\:checked\)])::after {
	font-family: gform-icons-theme !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: none;
	text-transform: none;
	align-items: center;
	background-color: #607382;
	block-size: 38px;
	border-radius: 50%;
	color: #fff;
	content: "";
	display: flex;
	filter: drop-shadow(0 1px 1px rgba(18, 25, 97, .15)) drop-shadow(0 2px 5px rgba(18, 25, 97, .1)) drop-shadow(0 0 0 rgba(18, 25, 97, .05));
	font-size: 32px;
	inline-size: 38px;
	inset-block-start: 10px;
	inset-inline-end: 10px;
	justify-content: center;
	position: absolute;
	z-index: 5;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice:where(:has(input:checked))::after {
	font-family: gform-icons-theme !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: none;
	text-transform: none;
	align-items: center;
	background-color: #607382;
	block-size: 38px;
	border-radius: 50%;
	color: #fff;
	content: "";
	display: flex;
	filter: drop-shadow(0 1px 1px rgba(18, 25, 97, .15)) drop-shadow(0 2px 5px rgba(18, 25, 97, .1)) drop-shadow(0 0 0 rgba(18, 25, 97, .05));
	font-size: 32px;
	inline-size: 38px;
	inset-block-start: 10px;
	inset-inline-end: 10px;
	justify-content: center;
	position: absolute;
	z-index: 5;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice:where([focus-within]) .gfield-choice-image-wrapper::before {
	border-color: currentColor;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice:where(:focus-within) .gfield-choice-image-wrapper::before {
	border-color: currentColor;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice:where([\:has\(.gfield-choice-input\:disabled\)]) .gfield-choice-image-wrapper {
	opacity: .5;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice:where(:has(.gfield-choice-input:disabled)) .gfield-choice-image-wrapper {
	opacity: .5;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gfield-choice-image-wrapper {
	aspect-ratio: 1/1;
	margin-block-end: 8px;
	opacity: 1;
	overflow: hidden;
	position: relative;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gfield-choice-image-wrapper::before {
	border: 2px solid transparent;
	content: "";
	display: block;
	inset-block: 0;
	inset-inline: 0;
	position: absolute;
	z-index: 1;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gfield-choice-image-no-image {
	font-family: gform-icons-theme !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: none;
	text-transform: none;
	background-color: #d0d1d3;
	block-size: 100%;
	color: #607382;
	display: block;
	inline-size: 100%;
	position: relative;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gfield-choice-image-no-image::before {
	content: "";
	font-size: 60px;
	inset-block-start: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gfield-choice-image-no-image span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gfield-choice-image {
	block-size: auto !important;
	display: block;
	inline-size: 100%;
	max-block-size: 100%;
	max-inline-size: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.gform_wrapper.gravity-theme .ginput_container_image_choice .gchoice_other_control {
	margin-block-start: 16px;
	max-inline-size: 100%;
}

.gform_wrapper.gravity-theme .gfield_error .ginput_container_image_choice .gfield-choice-image-wrapper::before {
	border-color: #c02b0a;
}

.gform_wrapper.gravity-theme:where(:not(.gform_wrapper_edit_form_entry)) .ginput_container_image_choice.ginput_container_image_choice--label-hide .gchoice .gfield-choice-image-wrapper {
	margin-block-end: 0;
}

.gform_wrapper.gravity-theme:where(:not(.gform_wrapper_edit_form_entry)) .ginput_container_image_choice.ginput_container_image_choice--label-hide .gchoice .gfield-choice-input, .gform_wrapper.gravity-theme:where(:not(.gform_wrapper_edit_form_entry)) .ginput_container_image_choice.ginput_container_image_choice--label-hide .gchoice .gfield-image-choice-wrapper-inner, .gform_wrapper.gravity-theme:where(:not(.gform_wrapper_edit_form_entry)) .ginput_container_image_choice.ginput_container_image_choice--label-hide .gchoice .gform-field-label {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.gform_wrapper.gravity-theme:where(:not(.gform_wrapper_edit_form_entry)) .ginput_container_image_choice.ginput_container_image_choice--input-hide .gchoice .gform-field-label {
	margin-inline-start: 0;
}

.gform_wrapper.gravity-theme:where(:not(.gform_wrapper_edit_form_entry)) .ginput_container_image_choice.ginput_container_image_choice--input-hide .gchoice .gfield-choice-input {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.gform_wrapper.gravity-theme:where(.gform_wrapper_edit_form_entry) .ginput_container_image_choice .gchoice:where([\:has\(input\:checked\)])::after {
	font-family: gform-icons-common !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: none;
	text-transform: none;
	content: "";
	font-size: 20px;
}

.gform_wrapper.gravity-theme:where(.gform_wrapper_edit_form_entry) .ginput_container_image_choice .gchoice:where([\:has\(input\:checked\)])::after {
	font-family: gform-icons-common !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: none;
	text-transform: none;
	content: "";
	font-size: 20px;
}

.gform_wrapper.gravity-theme:where(.gform_wrapper_edit_form_entry) .ginput_container_image_choice .gchoice:where([\:has\(input\:checked\)])::after {
	font-family: gform-icons-common !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: none;
	text-transform: none;
	content: "";
	font-size: 20px;
}

.gform_wrapper.gravity-theme:where(.gform_wrapper_edit_form_entry) .ginput_container_image_choice .gchoice:where(:has(input:checked))::after {
	font-family: gform-icons-common !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: none;
	text-transform: none;
	content: "";
	font-size: 20px;
}

.gform_wrapper.gravity-theme:where(.gform_wrapper_edit_form_entry) .ginput_container_image_choice .gfield-choice-image-no-image {
	font-family: gform-icons-common !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: none;
	text-transform: none;
}

.gform_wrapper.gravity-theme:where(.gform_wrapper_edit_form_entry) .ginput_container_image_choice .gfield-choice-image-no-image::before {
	content: "";
}

html[dir=rtl] .gform_wrapper.gravity-theme .ginput_container_date img.ui-datepicker-trigger {
	margin-left: 0;
	margin-right: 12.8px;
	order: 1;
}

.gform_wrapper.gravity-theme .gsection {
	border-bottom: 1px solid #ccc;
	padding: 0 16px 8px 0;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gsection {
	padding: 0 0 8px 16px;
}

.gform_wrapper.gravity-theme .gf_progressbar_title {
	color: #767676;
	font-size: 12.992px;
	font-weight: 400;
	margin: 0 0 4.8px 0;
}

.gform_wrapper.gravity-theme .gf_progressbar {
	background: #e8e8e8;
	border-radius: 10.5px;
	margin-bottom: 16px;
	position: relative;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage {
	border-radius: 10.5px;
	height: 20.992px;
	text-align: right;
	vertical-align: middle;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage:not(.percentbar_100) {
	border-radius: 10.5px 0 0 10.5px;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage span {
	display: block;
	float: right;
	font-size: 13px;
	line-height: 21px;
	margin-left: 8px;
	margin-right: 8px;
	min-width: 2em;
	width: auto;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_0 span {
	color: #959595;
	float: none;
	margin-left: 9.6px;
	text-shadow: none;
}

.gform_wrapper.gravity-theme .gf_progressbar_blue {
	background: #d2d6dc;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_blue {
	background-color: #1e7ac4;
	color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_gray {
	background: #d2d6dc;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_gray {
	background-color: #6b7280;
	color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_green {
	background: #e8e8e8;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_green {
	background-color: #aac138;
	color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_orange {
	background: #e8eaec;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_orange {
	background-color: #ff5d38;
	color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_red {
	background: #e8eaec;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_red {
	background-color: #ec1e31;
	color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_spring {
	background: #d2d6dc;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_spring {
	background: linear-gradient(270deg, #9cd790 0, #76d7db 100%);
	color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_blues {
	background: #d2d6dc;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_blues {
	background: linear-gradient(270deg, #00c2ff 0, #7838e2 100%);
	color: #fff;
}

.gform_wrapper.gravity-theme .gf_progressbar_rainbow {
	background: #d2d6dc;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_rainbow {
	background: linear-gradient(270deg, #1dbeea 0, #cd6ad6 50%, #f35160 100%);
	color: #fff;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gf_progressbar_percentage:not(.percentbar_100) {
	border-radius: 0 10.5px 10.5px 0;
}

.gform_wrapper.gravity-theme .gf_page_steps {
	border-bottom: 1px solid #e5e7eb;
	margin-bottom: 16px;
}

.gform_wrapper.gravity-theme .gf_step {
	display: inline-block;
	margin: 8px 32px 8px 0;
}

.gform_wrapper.gravity-theme .gf_step_label, .gform_wrapper.gravity-theme .gf_step_number {
	display: table-cell;
	vertical-align: middle;
}

.gform_wrapper.gravity-theme .gf_step_number {
	background: 0 0;
	border: 2px solid #cfd3d9;
	border-radius: 20px;
	color: #585e6a;
	font-size: 14px;
	font-weight: 500;
	height: 40px;
	text-align: center;
	width: 40px;
}

.gform_wrapper.gravity-theme .gf_step_active .gf_step_number {
	background: #cfd3d9;
	color: #607382;
}

.gform_wrapper.gravity-theme .gf_step_completed .gf_step_number {
	position: relative;
}

.gform_wrapper.gravity-theme .gf_step_completed .gf_step_number::before {
	background: #607382;
	border: 2px solid #607382;
	border-radius: 20px;
	content: "";
	display: table-cell;
	height: 40px;
	left: -2px;
	position: absolute;
	top: -2px;
	width: 40px;
}

.gform_wrapper.gravity-theme .gf_step_completed .gf_step_number::after {
	align-items: center;
	color: #fff;
	content: "";
	display: flex;
	font-family: gform-icons-theme;
	font-size: 24px;
	height: 100%;
	justify-content: center;
	left: 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 5;
}

.gform_wrapper.gravity-theme .gf_step_label {
	color: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 16px;
	padding-left: 16px;
}

.gform_wrapper.gravity-theme .gf_step_hidden {
	display: none;
}

.gform_wrapper.gravity-theme .ginput_product_price_wrapper {
	display: inline-block;
}

.gform_wrapper.gravity-theme .ginput_product_price_wrapper input:-moz-read-only {
	background: 0 0;
	border: none;
	padding: 0;
}

.gform_wrapper.gravity-theme .ginput_product_price_wrapper input:read-only {
	background: 0 0;
	border: none;
	padding: 0;
}

.gform_wrapper.gravity-theme .ginput_product_price, .gform_wrapper.gravity-theme .ginput_shipping_price {
	color: #900;
}

.gform_wrapper.gravity-theme .ginput_total {
	color: #060;
}

.gform_wrapper.gravity-theme .gfield_repeater_cell {
	margin-top: 8px;
}

.gform_wrapper.gravity-theme .gfield_repeater_cell label {
	color: #9b9a9a;
	font-size: 12.8px;
	font-weight: 400;
	padding-top: 8px;
}

.gform_wrapper.gravity-theme .gfield_repeater_items .gfield_repeater_cell:not(:first-child) {
	padding-top: 8px;
}

.gform_wrapper.gravity-theme .gfield_repeater_wrapper input {
	border: 1px solid #c5c6c5;
	border-radius: 4px;
}

.gform_wrapper.gravity-theme .gfield_repeater_cell>.gfield_repeater_wrapper {
	background-color: rgba(1, 1, 1, .02);
	border-bottom: 1px solid #eee;
	border-left: 8px solid #f1f1f1;
	border-radius: 8px;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .06), 0 2px 1px -1px rgba(0, 0, 0, .06), 0 1px 5px 0 rgba(0, 0, 0, .06);
	padding: 10px 20px;
}

.gform_wrapper.gravity-theme .gfield_repeater_buttons {
	padding-top: 16px;
}

.gform_wrapper.gravity-theme .gfield_repeater_buttons .add_repeater_item_plus:hover, .gform_wrapper.gravity-theme .gfield_repeater_buttons .add_repeater_item_text:hover, .gform_wrapper.gravity-theme .gfield_repeater_buttons .remove_repeater_item_minus:hover, .gform_wrapper.gravity-theme .gfield_repeater_buttons .remove_repeater_item_text:hover {
	background: #fafafa;
	border: 1px solid #757575;
	color: #374750;
}

.gform_wrapper.gravity-theme .gfield_repeater_buttons .add_repeater_item_plus:focus, .gform_wrapper.gravity-theme .gfield_repeater_buttons .add_repeater_item_text:focus, .gform_wrapper.gravity-theme .gfield_repeater_buttons .remove_repeater_item_minus:focus, .gform_wrapper.gravity-theme .gfield_repeater_buttons .remove_repeater_item_text:focus {
	outline: 0;
}

.gform_wrapper.gravity-theme .gfield_repeater_buttons .add_repeater_item_text, .gform_wrapper.gravity-theme .gfield_repeater_buttons .remove_repeater_item_text {
	background: rgba(242, 242, 242, .5);
	border: 1px solid rgba(117, 117, 117, .4);
	border-radius: 20px;
	color: #757575;
	font-size: 12px;
	font-weight: 400;
	height: 32px;
	margin-bottom: 8px;
	margin-right: 8px;
	min-width: 100px;
	transition: all .3s cubic-bezier(.67, .17, .4, .83);
}

.gform_wrapper.gravity-theme .gfield_repeater_buttons .add_repeater_item_plus, .gform_wrapper.gravity-theme .gfield_repeater_buttons .remove_repeater_item_minus {
	background: rgba(242, 242, 242, .5);
	border: 1px solid rgba(117, 117, 117, .4);
	border-radius: 50%;
	color: #757575;
	font-size: 16px;
	font-weight: 700;
	height: 24px;
	margin: 10px 5px 0 5px;
	padding: 0;
	transition: all .3s cubic-bezier(.67, .17, .4, .83);
	width: 24px;
}

.gform_wrapper.gravity-theme .gfield_repeater .gfield_repeater_items .gfield_repeater_item:not(:last-child) {
	border-bottom: 2px solid #e0e0e6;
	margin-bottom: 20px;
	margin-right: 8px;
	padding-bottom: 20px;
}

.gform_wrapper.gravity-theme .gform-loader {
	align-self: center;
	animation: gformLoader 1.1s infinite linear;
	block-size: 8em;
	border-block-end: 1.1em solid #000;
	border-block-start: 1.1em solid #fff;
	border-inline-end: 1.1em solid #fff;
	border-inline-start: 1.1em solid #000;
	border-radius: 50%;
	display: inline-block;
	font-size: 2px;
	inline-size: 8em;
	margin-inline-start: 2em;
	position: relative;
	transform: translateZ(0);
	vertical-align: middle;
}

@keyframes gformLoader {
	0% {
		transform: rotate(0);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

.gform_wrapper.gravity-theme .gfield_time_hour label.hour_label, .gform_wrapper.gravity-theme .gfield_time_minute label.minute_label {
	display: block;
	font-size: 15px;
	margin: 0;
	padding-top: 5px;
}

.gform_wrapper.gravity-theme .ginput_container_time {
	flex-basis: min-content;
	max-width: 64px;
	min-width: 64px;
}

.gform_wrapper.gravity-theme .ginput_container_time input {
	margin-left: 0;
	margin-right: 0;
	min-width: 100%;
}

.gform_wrapper.gravity-theme .gfield_time_minute {
	position: relative;
}

.gform_wrapper.gravity-theme .hour_minute_colon {
	line-height: 2;
	padding: 0 8px;
}

.gform_wrapper.gravity-theme .field_sublabel_above .hour_minute_colon {
	align-self: flex-end;
}

.gform_wrapper.gravity-theme .gfield_time_ampm {
	align-items: flex-end;
	display: flex;
	margin-left: 16px;
}

.gform_wrapper.gravity-theme .gfield_time_ampm.below, .gform_wrapper.gravity-theme .hour_minute_colon.below {
	align-items: flex-start;
}

html[dir=rtl] .gform_wrapper.gravity-theme .gfield_time_ampm {
	margin-left: 0;
	margin-right: 16px;
}
